@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lato:wght@400;700&display=swap');

:root {
  --bg-green: #006137;
  --bg-grey: #F3F5FA;
  --main-green: #00A961;
  --main-black: #333;
  --main-grey: #5D6167;
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  color: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
}

html {
  height: 100%;
}

body {
  line-height: 1;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-size: 14px;
  color: var(--main-black);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.sectionTitle {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

ul.ticks li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}

ul.ticks li strong,
ul.ticks li b {
  font-weight: 600;
}

ul.ticks li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 10.25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.7071 0.792893C14.0976 1.18342 14.0976 1.81658 13.7071 2.20711L5.45711 10.4571C5.06658 10.8476 4.43342 10.8476 4.04289 10.4571L0.292893 6.70711C-0.0976311 6.31658 -0.0976311 5.68342 0.292893 5.29289C0.683417 4.90237 1.31658 4.90237 1.70711 5.29289L4.75 8.33579L12.2929 0.792893C12.6834 0.402369 13.3166 0.402369 13.7071 0.792893Z' fill='%2300A961'/%3E%3C/svg%3E%0A");
}

.tac {
  text-align: center;
}

.button {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: var(--main-green);
  padding: 11px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: all ease-in-out 0.3s;
  border: 1px solid var(--main-green);
}

.button:hover {
  background-color: #fff;
  color: var(--main-green);
}

.button.white {
  color: var(--main-green);
  background-color: #fff;
  border: 1px solid #fff;
}

.button.white:hover {
  border-color: var(--main-green);
}

.header .mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header .mobile .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.header .mobile .hamburger span {
  width: 32px;
  height: 2px;
  background-color: #fff;
  margin: 4px 0;
}

.header.white .mobile .hamburger span {
  background-color: var(--main-grey);
}

.header .desktop {
  display: none;
  color: #fff;
  font-weight: 600;
}

.header .mobileMenu {
  height: 100%;
  background-color: #006137;
  position: fixed;
  top: 0;
  left: -100%;
  max-width: 425px;
  width: 100%;
  padding: 20px 15px;
  transition: all ease-in-out 0.5s;
  z-index: 1;
  color: #fff;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.header .mobileMenu.show {
  left: 0;
}

.header .mobileMenu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header .mobileMenu .closeMenu {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.header .mobileMenu .closeMenu svg {
  margin-right: 10px;
}

.header .mobileMenu .middle {
  border-bottom: 1px solid #D6E8F0;
  margin-bottom: 60px;
}

.header .mobileMenu .middle nav a {
  padding: 15px 0;
  border-bottom: 1px solid #D6E8F0;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.header .mobileMenu .middle .language {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.header .mobileMenu .middle .language svg:first-child {
  margin-right: 5px;
}

.header .mobileMenu .middle .language svg:last-child {
  margin-left: auto;
  transform: rotate(180deg);
}

.header .mobileMenu .middle .langCont {
  display: none;
  flex-direction: column;
  font-size: 16px;
  background-color: #fff;
  padding: 15px;
  border-radius: 4px;
}

.header .mobileMenu .middle .langCont a {
  margin-bottom: 20px;
  color: var(--main-black);
}

.header .mobileMenu .middle .langCont a:last-child {
  margin-bottom: 0;
}

.header .mobileMenu .middle .langCont a.activeLang {
  color: var(--main-green);
}

.header .mobileMenu .middle .language:hover+.langCont {
  display: flex;
}

.header .mobileMenu .middle .language:hover svg:last-child {
  transform: rotate(0deg);
}

.header .mobileMenu .bottom {
  text-align: center;
  margin-top: auto;
}

.header .mobileMenu .button {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.header .mobileMenu .button+a {
  font-weight: 600;
}

.footer {
  background-color: #222;
  padding: 20px 0 25px;
  color: #828282;
}

.footer .footLogo a {
  display: block;
}

.footer .footLogo img {
  max-width: 125px;
  margin-bottom: 15px;
}

.footer .footLogo p {
  color: #fff;
  font-size: 15px;
}

.footer .footTitle {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer .footerMenu {
  margin-bottom: 20px;
}

.footer .footerMenu ul li a {
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
}

.footer .footContact  {
  margin-bottom: 50px;
}

.footer .footContact .footTitle {
  margin-bottom: 15px;
  width: 100%;
}

.footer .footContact p {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer .footContact p span {
  margin-bottom: 7px;
  display: block;
}

.footer .green {
  color: #00A961;
  display: block;
}

.footer .copyright {
  padding-top: 30px;
  border-top: 1px solid #4E4E4E;
  font-size: 14px;
  margin: 0 -20px;
}

.footer .copyright a {
  padding-left: 20px;
  font-size: 14px;
}

.footer .copyright p {
  padding: 20px 20px 0;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .footer .container {
    display: flex;
    flex-wrap: wrap;
  }

  .footer .footLogo,
  .footer .footerMenu {
    width: 50%;
  }

  .footer .footerMenu nav {
    display: flex;
  }

  .footer .footerMenu nav ul:first-child {
    margin-right: 50px;
  }

  .footer .footContact {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .footer .footContact .left,
  .footer .footContact .right {
    width: 50%;
  }

  .footer .copyright {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .footer .copyright p {
    padding: 0;
    margin: 0;
    order: 1;
  }

  .footer .copyright a:first-child {
    order: 2;
    margin-left: auto;
  }

  .footer .copyright a:nth-child(2) {
    order: 3;
  }
  .footer .copyright a:nth-child(3) {
    order: 4;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }

  .sectionTitle {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .title {
    font-size: 38px;
  }

  ul.ticks li {
    line-height: 1.5;
  }

  .header .mobile {
    display: none;
  }

  .header .desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }

  .header.white .desktop {
    color: var(--main-black);
  }

  .header .desktop .left {
    display: flex;
    align-items: center;
  }

  .header .desktop nav {
    margin-left: 10px;
  }

  .header .desktop nav ul {
    display: flex;
  }

  .header .desktop nav ul li a {
    font-size: 15px;
    margin: 0 5px;
    display: block;
  }

  .header .desktop .right {
    display: flex;
    align-items: center;
    position: relative;
  }

  .header .desktop .right>* {
    margin: 0 10px;
  }

  .header.white .desktop .right .signIn {
    color: var(--main-green);
  }

  .header .desktop .right .language {
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .header.white .desktop .language svg path {
    stroke: var(--main-black);
  }

  .header.white .desktop .language span+svg path {
    fill: var(--main-black);
  }

  .header .desktop .language>* {
    margin: 0 3px;
  }

  .header .desktop .language span {
    font-size: 15px;
  }

  .header .desktop .langCont {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 13px 25px 13px 15px;
    border-radius: 4px;
    box-shadow: 0px 20px 60px rgba(131, 111, 61, 0.15);
    max-height: 180px;
    overflow-y: scroll;
  }

  .header .desktop .langCont::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
    border-radius: 100%;
  }

  .header .desktop .langCont::-webkit-scrollbar-button {
    display: none;
  }

  .header .desktop .langCont::-webkit-scrollbar-thumb {
    background-color: #9fe3c5;
    border-radius: 3px;
    height: 30px;
  }

  .header .desktop .langCont a {
    color: #2B3A42;
    margin: 10px 0;
    font-weight: 400;
  }

  .header .desktop .langCont a.activeLang {
    color: var(--main-green);
  }

  .header .desktop .language:hover .langCont {
    display: flex;
  }

  .header .desktop .language:hover>span+svg {
    transform: rotate(180deg);
  }

  .header .desktop .button {
    font-size: 14px;
  }

  .header.white .desktop .button.white {
    color: #fff;
    background-color: var(--main-green);
    border-color: var(--main-green);
  }

  .header.white .desktop .button.white:hover {
    background-color: #fff;
    color: var(--main-green);
  }

  .footer {
    padding-top: 50px;
  }

  .footer .footLogo {
    width: 28%;
    margin-right: 15px;
  }

  .footer .footerMenu {
    width: 28%;
    margin-right: 15px;
  }

  .footer .footerMenu ul li a {
    margin-bottom: 15px;
  }

  .footer .footContact {
    width: 40%;
  }

}

@media (min-width: 1440px) {

  .container {
    padding: 0;
  }

  .header .desktop nav {
    margin-left: 35px;
  }

  .header .desktop nav ul li a {
    margin: 0 12px;
  }

  .footer .footLogo {
    width: 25%;
    margin-right: 85px;
  }

  .footer .footerMenu {
    width: 20%;
    margin-right: 100px;
  }

  .footer .footContact {
    width: 38%;
  }

  .footer .footContact .left {
    width: 45%;
  }

  .footer .footContact .right {
    width: 55%;
  }

  .footer .copyright {
    margin-top: 120px;
  }
}