/* start fonts */
@font-face {
  font-family: "roboto";
  src: url(../fonts/Roboto/Roboto-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "roboto";
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "roboto";
  src: url(../fonts/Roboto/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "roboto";
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
  font-weight: 600;
}
/* end fonts */

/* stsrt global */
:root {
  --main-color: #0e6248;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition-duration: 0.2s;
}
body {
  font-family: "roboto", sans-serif, Arial;
  position: relative;
}
/* Extra small devices (portraitphones, less than 576px) */
@media (max-width: 576px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* Small devices (landscape phones,576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
/* Medium devices (tablets,768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
/* Large devices (desktops,992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
/* Extra large devices (large desktops,1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container {
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
/* end global */

/* start header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0e6248;
  z-index: 100;
  /* box-shadow: 1px 1px 5px 1px #222; */
}
header .container {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  align-items: center;
}
header .container > i {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  position: relative;
  height: 100%;
}
header .container ul {
  display: flex;
  padding: 0;
  margin: 0;
}
header ul li {
  list-style-type: none;
  margin-right: 30px;
}
header ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
  color: #fff;
}
header .share {
  color: #fff;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 5px;
}
header .share span {
  margin-right: 5px;
}
@media (max-width: 768px) {
  header .container > i {
    display: block;
  }
  header .container ul {
    position: absolute;
    display: none;
    background-color: #272727;
    top: 58px;
    left: 12px;
    right: 12px;
    font-weight: 300;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
  }
  header ul li {
    padding: 6px 20px;
  }
  header ul li a:hover {
    color: var(--main-color);
    font-weight: 500;
  }
  header ul li:hover {
    background-color: #333;
    margin: 0;
    padding-left: 22px;
  }
  header .container i:hover + ul {
    display: block;
  }
  header .container ul:hover {
    display: block;
  }
}
/* end header */

/* start landing */
.landing {
  height: 680px;
  max-height: 77vh;
  position: relative;
  overflow: hidden;
}
.landing img {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}
.landing .container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.landing .center {
  max-width: 450px;
  color: #fff;
}
.landing .center p {
  font-size: 30px;
  text-align: center;
}
.landing .center .bottom {
  width: fit-content;
  margin: auto;
}
.landing .bottom span {
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  margin-top: 25px;
  display: inline-block;
}
.landing .bottom span:first-child {
  padding: 8px 20px;
  border-radius: 4px;
  background-color: var(--main-color);
  margin-right: 30px;
}
.landing .bottom span:last-child {
  padding: 8px 20px;
  border-radius: 4px;
  background-color: #ffffffc2;
  color: var(--main-color);
  font-weight: 400;
}
@media (max-width: 576px) {
  .landing .center p {
    font-size: 25px;
    text-align: start;
  }
  .landing .center .bottom {
    width: 100%;
  }
}
/* end landing */

/* start under */
.under-land {
  background-color: #fbf8f6;
  padding-top: 40px;
  padding-bottom: 40px;
}
.under-land p {
  font-size: 17px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.5em;
  color: #272727;
}
/* end under */

/* start about */
.about {
  padding-top: 90px;
  padding-bottom: 50px;
  background-color: #fff;
}
.about p {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}
.about .container > p {
  color: var(--main-color);
  font-size: 14px;
}
.about span {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  display: block;
  width: fit-content;
  color: #fff;
  background-color: var(--main-color);
  padding: 8px 20px;
  border-radius: 4px;
}
.about .heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 90px;
  flex-wrap: wrap;
}
.about .heading p:first-child {
  max-width: 680px;
  display: inline-block;
}
.about .cards {
  display: flex;
  margin-bottom: 70px;
  justify-content: space-between;
}
.about .cards .card {
  max-width: 304px;
}
.about .card .inner-card {
  max-width: 280px;
  margin-right: 24px;
  padding: 0 24px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.about .card img {
  margin-top: -24px;
}
.about .card .inner-card span {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: -12px;
}
.about .analysis {
  display: flex;
  justify-content: space-around;
  background-color: #fbf8f6;
  padding-top: 35px;
  padding-bottom: 35px;
  flex-wrap: wrap;
}
.about .analysis div {
  padding: 10px;
  width: 150px;
}
@media (max-width: 992px) {
  .about .heading span {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .about .cards {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .about .cards .card {
    margin-top: 70px;
  }
  .about .heading {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .about .container > p {
    text-align: center;
    font-size: 18px;
  }
  .about .heading {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .about .cards .card img {
    width: 200px;
  }
  .about .cards .card {
    width: 224px;
  }
}
/* end about */

/* start contact */
.contact {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .container .left {
  max-width: 440px;
}
.contact .left p:first-child {
  font-size: 23px;
}
.contact .left p:not(:first-child) {
  font-size: 17px;
}
.contact .container form {
  width: 380px;
  border-radius: 6px;
  box-shadow: 1px 1px 15px 2px #cdcdcd;
  padding: 25px;
}
.contact form h5 {
  font-weight: 400;
  margin: 0;
}
.contact form input:not(input.noo) {
  width: 100%;
  outline: none;
  border-radius: 5px;
  margin-bottom: 26px;
  border: 2px solid #ddd;
  height: 38px;
  padding-left: 8px;
}
.contact form input:not(input.noo):focus {
  border: 2px solid var(--main-color);
}
.contact form div.sub input {
  width: fit-content;
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: white;
}
.contact form > div:last-child {
  width: fit-content;
  background-color: var(--main-color);
  border-radius: 4px;
  padding: 6px 12px 5px;
  color: white;
}
.contact form i {
  font-size: 12px;
}
.contact form .list {
  padding-left: 12px;
  padding-right: 25px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #ddd;
  border-right: none;
  display: block;
  border-radius: 5px 0 0 5px;
  position: relative;
}
.contact form .comp {
  display: flex;
}
.contact form .comp input:last-child {
  border-radius: 0 5px 5px 0;
}
.contact form .list::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 9px;
  width: 0;
  height: 0;
  border-color: black transparent transparent transparent;
  border-style: solid;
  border-width: 4px;
}
@media (max-width: 992px) {
  .contact .container {
    justify-content: space-around;
  }
  .contact .container .left {
    max-width: 380px;
    margin-bottom: 40px;
  }
}
/* end contact */

/* start resources */
.resources {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}
.resources .cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.resources .cards .card {
  max-width: 280px;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.resources span {
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  display: block;
  width: fit-content;
  color: #fff;
  background-color: var(--main-color);
  padding: 8px 20px;
  border-radius: 4px;
}
.resources .card span {
  margin-left: auto;
  margin-right: auto;
  margin-top: -7px;
}
.resources p {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}
.resources .container > p {
  color: var(--main-color);
  font-size: 14px;
}
.resources .heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 90px;
  flex-wrap: wrap;
}
.resources .heading p:first-child {
  max-width: 680px;
  display: inline-block;
}
@media (max-width: 992px) {
  .resources .cards {
    justify-content: space-around;
  }
  .resources .cards .card {
    margin-bottom: 70px;
  }
  .resources .heading span {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .resources .heading {
    text-align: center;
  }
  .resources .container > p {
    text-align: center;
    font-size: 18px;
  }
}
/* end resources */

/* start helps */
.helps {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 100px;
}
.helps .container {
  background-color: var(--main-color);
  border-radius: 8px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.helps p {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.helps .mail {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  justify-content: center;
}
.helps .mail input {
  border: 1px solid #ddd;
  height: 33px;
  outline: none;
  font-size: 15px;
}
.helps .mail input:first-child {
  padding-left: 8px;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
}
.helps .mail input:first-child:focus::-webkit-input-placeholder {
  color: transparent;
}
.helps .mail input:last-child {
  color: var(--main-color);
  border-radius: 0 4px 4px 0;
  background-color: #dbe8e4;
}
.helps .container p:first-child {
  font-size: 22px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.helps .container p:last-of-type {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (max-width: 576px) {
  .helps .container {
    margin-left: 18px;
    margin-right: 18px;
  }
}
/* end helps */

/* start footer */
footer {
  background-color: #272727;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .container .left img {
  margin-top: 15px;
  margin-bottom: 15px;
}
footer .container .right p {
  text-align: end;
  line-height: 1.5em;
}
footer .container .right p:first-child {
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .right p {
    text-align: start;
  }
}
/* end footer */