@import url("https://fonts.googleapis.com/css2?family=Anek+Kannada:wght@400;500;600;700&display=swap");
html,
body {
  font-family: "Anek Kannada", sans-serif;
  font-size: 14px;
  color: #0f2320;
}

.color-white {
  color: #ffffff;
}

.color-aqua {
  color: #cde4e0;
}

.color-green {
  color: #00be68;
}

.color-dark-green {
  color: #0f2320;
}

.bg-color-white {
  background-color: #ffffff;
}

.bg-color-aqua {
  background-color: #cde4e0;
}

.bg-color-green {
  background-color: #00be68;
}

.bg-color-dark-green {
  background-color: #0f2320;
}

h1 {
  font-size: 6.571rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 576px) {
  h1 {
    font-size: 4.5rem;
  }
}

h4 {
  font-size: 2.857rem;
  font-weight: normal;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

a {
  text-decoration: none;
  color: #00be68;
}

a:hover {
  text-decoration: none;
  color: #559679;
}

.ht-100 {
  height: 100px;
}
.ht-80 {
  height: 80px;
}

.logo {
  height: 150px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.logo-footer {
  width: 190px;
  height: auto;
}

header {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  header {
    text-align: center;
  }
}

.main-title {
  position: relative;
  margin-bottom: 10px;
  z-index: 10;
}
.main-title::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: -3px;
  height: 6px;
  width: 92px;
  background-color: #00be68;
  border-radius: 3px;
}
@media (max-width: 576px) {
  .main-title::after {
    bottom: 5px;
  }
}

.lead-img {
  position: relative;
}
.lead-img .leaf {
  position: absolute;
  top: -53px;
  left: -53px;
}
@media (max-width: 576px) {
  .lead-img .leaf {
    top: -30px;
    left: -30px;
    width: 60%;
  }
}
.lead-img .lead {
  position: relative;
  width: 100%;
}

footer {
  background-color: #0f2320;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.43;
  padding-top: 35px;
  padding-bottom: 50px;
}
footer .footer-el {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  footer .footer-el {
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  footer .footer-el div {
    margin-bottom: 25px;
  }
}
footer .social-link {
  display: flex;
  flex-direction: row;
}
footer .social-link li:not(:first-child) {
  margin-left: 35px;
}
@media (max-width: 1200px) {
  footer .social-link {
    flex-direction: column;
  }
  footer .social-link li:not(:first-child) {
    margin-left: 0;
  }
}