@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

*, html {
  scroll-behavior: smooth !important;
}

body {
  margin: 0px;
  padding: 0px;
  background: #FFFFFF;
  min-width: 320px;
  background-color: #ffffff;
  color: #3d3c3b;
  background-repeat: no-repeat;
  background-size: 36% auto;
  background-position: bottom 50px right;
  min-height: 100vh;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow: hidden;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, span, a {
  color: #000000;
}

.sub-title {
  font-size: 30px;
  color: #04D47C;
  font-weight: 800;
}
@media screen and (max-width: 1440px) {
  .sub-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 650px) {
  .sub-title {
    font-size: 22px;
  }
}

p {
  font-size: 18px;
}
@media screen and (max-width: 1660px) {
  p {
    font-size: 16px;
  }
}

h1, h2 {
  font-size: 54px;
  font-weight: 800;
}
@media screen and (max-width: 1660px) {
  h1, h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1440px) {
  h1, h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 650px) {
  h1, h2 {
    font-size: 32px;
  }
}

.container {
  width: 1920px;
  max-width: 93.8%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1660px) {
  .container {
    width: 1440px;
  }
}
@media screen and (max-width: 1040px) {
  .container {
    max-width: 90%;
  }
}

.container-lg {
  width: 1430px;
  max-width: 93.8%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1660px) {
  .container-lg {
    width: 1220px;
  }
}
@media screen and (max-width: 1040px) {
  .container-lg {
    max-width: 90%;
  }
}

.flex-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.col-50 {
  flex: 50%;
  max-width: 50%;
}

header {
  padding-top: 26px;
  padding-bottom: 9px;
  background-color: #FFFFFF;
}
header .flex-box {
  align-items: center;
}
header .main-logo {
  display: flex;
  align-items: center;
}
header .main-logo svg {
  width: auto;
  height: 60px;
  display: block;
}
header .main-logo .main-title {
  font-size: 41px;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 14px;
}
header .main-logo .main-title span {
  color: #04D47C;
}
header .nav-btn {
  display: none;
}
@media screen and (max-width: 1500px) {
  header .main-logo svg {
    height: 46px;
  }
  header .main-logo .main-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1260px) {
  header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 100;
  }
  header .main-logo svg {
    height: 40px;
  }
  header .main-logo .main-title {
    font-size: 26px;
  }
  header .nav-btn {
    display: initial;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    outline: none;
    margin-left: 20px;
  }
  header .nav-btn svg {
    display: block;
  }
}
@media screen and (max-width: 760px) {
  header .main-logo .main-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 610px) {
  header .main-logo .main-title span {
    display: block;
  }
  header .nav-btn {
    margin-left: auto;
  }
}

.desktop-nav {
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 100;
  background-color: #FFFFFF;
}
.desktop-nav .nav-menu {
  list-style: none;
  list-style-type: none;
  display: flex;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0;
}
.desktop-nav .nav-menu li:not(:last-child) {
  margin-right: 70px;
}
.desktop-nav .nav-menu li a {
  font-size: 18px;
  position: relative;
}
.desktop-nav .nav-menu li a:before {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  background-color: #04D47C;
  transition: 0.3s opacity;
  bottom: -26px;
  opacity: 0;
}
.desktop-nav .nav-menu li a.active:before, .desktop-nav .nav-menu li a:hover:before {
  opacity: 1;
}
@media screen and (max-width: 1740px) {
  .desktop-nav .nav-menu li:not(:last-child) {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1500px) {
  .desktop-nav .nav-menu li:not(:last-child) {
    margin-right: 30px;
  }
  .desktop-nav .nav-menu li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .desktop-nav {
    display: none;
  }
}

.mobile-nav-bg {
  position: fixed;
  z-index: 99998;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
}
.mobile-nav-bg.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: 0.5s;
  background-color: #FFFFFF;
  padding: 20px 28px;
  height: 100%;
  display: none;
}
@media screen and (max-width: 1260px) {
  .mobile-nav {
    display: inline-block;
  }
}
.mobile-nav.active {
  transform: translateX(0%);
}
.mobile-nav .nav-menu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .nav-menu li:not(:last-child) {
  margin-bottom: 18px;
}
.mobile-nav .close-btn {
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  outline: none;
  margin-left: auto;
  margin-right: 0;
  display: block;
  margin-bottom: 20px;
}
.mobile-nav .close-btn svg {
  display: block;
}

.contact-link {
  margin-left: auto;
}
.contact-link a {
  padding: 15px 27px;
  border: 3px solid #04D47C;
  background-color: rgba(255, 255, 255, 0);
  align-items: center;
  font-weight: 700;
  border-radius: 6px;
  color: #000000;
  transition: 0.3s;
  transition-property: color, background-color;
}
.contact-link a svg {
  margin-right: 20px;
}
.contact-link a svg path {
  transition: 0.3s stroke;
  stroke: #04D47C;
}
.contact-link a:hover {
  background-color: #04D47C;
  color: #FFFFFF;
}
.contact-link a:hover svg path {
  stroke: #FFFFFF;
}
.contact-link.mobile {
  display: none;
}
@media screen and (max-width: 1500px) {
  .contact-link a {
    padding: 11px 18px;
  }
}
@media screen and (max-width: 1260px) {
  .contact-link a {
    padding: 8px 15px;
  }
}
@media screen and (max-width: 610px) {
  .contact-link {
    display: none;
  }
  .contact-link.mobile {
    display: block;
    margin-top: 28px;
  }
}

footer {
  position: relative;
  background-color: #222222;
  background-image: url(./../img/footer-inside-mask.svg);
  background-repeat: no-repeat;
  background-size: 73.4% 100%;
}
footer .contact-ways .item {
  align-items: center;
}
footer .contact-ways .item:not(:last-child) {
  margin-bottom: 20px;
}
footer .contact-ways .item .phone {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-left: 10px;
  color: #FFFFFF;
}
footer .contact-ways .item .mail {
  font-weight: 300;
  font-size: 20px;
  margin-left: 12px;
  color: #FFFFFF;
}
footer .footer-mask {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 61.82%;
}
footer .footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #919191;
  margin: 0;
}
footer .footer-col-items {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  margin-top: 20px;
  display: inline-block;
}
footer .footer-col-items li:not(:last-child) {
  margin-bottom: 20px;
}
footer .footer-col-items li a {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}
footer .footer-products {
  justify-content: space-between;
}
footer .footer-products .footer-col-items li a {
  font-weight: 500;
}
footer .follow-us-box {
  text-align: center;
}
footer .follow-us-box span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 26px;
}
footer .follow-us-box a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 3px;
  position: relative;
  transform: scale(1);
  transition: 0.3s transform;
}
footer .follow-us-box a:hover {
  transform: scale(1.1);
}
footer .mt-footer-content {
  margin-top: 36px;
  display: block;
}
footer .copyright-text {
  font-size: 16px;
  color: #ffffff;
}
footer .copyright-text a {
  color: #ffffff;
}
footer .copyright-text span {
  color: #919191;
}
footer .f-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1702px;
  padding-top: 86px;
  padding-bottom: 62px;
}
footer .f-container .col-1 {
  flex: 0 0 12%;
}
footer .f-container .col-2 {
  flex: 0 0 16%;
}
footer .f-container .col-3 {
  flex: 0 0 13%;
}
footer .f-container .col-4 {
  flex: 1;
  padding-top: 24px;
}
footer .f-container .col-5 {
  flex: 0 0 100%;
  padding-top: 62px;
}
@media screen and (max-width: 1550px) {
  footer .f-container .col-1 {
    flex: 0 0 15%;
  }
  footer .f-container .col-2 {
    flex: 0 0 18%;
  }
  footer .f-container .col-3 {
    flex: 0 0 16%;
  }
}
@media screen and (max-width: 1440px) {
  footer .f-container .col-1 {
    flex: 0 0 17%;
  }
  footer .f-container .col-2 {
    flex: 0 0 21%;
  }
  footer .f-container .col-3 {
    flex: 0 0 24%;
  }
}
@media screen and (max-width: 1200px) {
  footer {
    background-image: none;
  }
  footer:before {
    content: "";
    z-index: 10;
    position: absolute;
    transform: translateY(40%);
    right: 0;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 36px 80px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  footer .footer-mask {
    width: 100%;
    height: 39px;
  }
  footer .follow-us-box span {
    display: inline-block;
    margin-right: 17px;
  }
  footer .f-container {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  footer .f-container .f-row {
    justify-content: center;
    padding-top: 62px;
    background-color: #2F2F2F;
  }
  footer .f-container .col-1 {
    flex: 0 0 30%;
    text-align: center;
    padding-bottom: 44px;
  }
  footer .f-container .col-2 {
    flex: 0 0 30%;
    text-align: center;
  }
  footer .f-container .col-3 {
    flex: 0 0 30%;
    padding-bottom: 50px;
    text-align: center;
  }
  footer .f-container .col-4 {
    flex: 0 0 100%;
    padding-bottom: 50px;
    background-color: #2F2F2F;
    text-align: center;
  }
  footer .f-container .col-4 .contact-ways {
    text-align: left;
    display: inline-block;
  }
  footer .f-container .col-5 {
    order: 5;
    -webkit-order: 5;
    padding-top: 90px;
    padding-bottom: 44px;
    background-color: #222222;
  }
  footer .copyright-text {
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  footer .contact-ways .item .phone {
    font-size: 24px;
  }
  footer .contact-ways .item .mail {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  footer .footer-products {
    justify-content: center;
    margin-bottom: 28px;
  }
  footer .f-container .col-1 {
    padding-bottom: 32px;
  }
  footer .f-container .col-1, footer .f-container .col-2 {
    flex: 0 0 100%;
  }
  footer .f-container .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-bottom: 16px;
  }
}

button {
  cursor: pointer;
}

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 17px;
  padding: 11px 27px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.3s color, 0.3s background-color, 0.3s border;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn span {
  color: inherit;
}
.btn svg {
  margin-right: 10px;
}
.btn svg path {
  stroke: currentColor;
}
.btn svg, .btn span {
  vertical-align: middle;
}
.btn.btn-green {
  color: #FFFFFF;
  background-color: #04D47C;
  border: 3px solid #04D47C;
}
.btn.btn-green:hover {
  color: #04D47C;
  background-color: #FFFFFF;
  border: 3px solid #FFFFFF;
}
.btn.btn-white {
  color: #04D47C;
  background-color: #FFFFFF;
  border: 3px solid #FFFFFF;
}
.btn.btn-white:hover {
  color: #FFFFFF;
  background-color: #04D47C;
  border: 3px solid #04D47C;
}
.btn.btn-green-reverse {
  color: #04D47C;
  background-color: rgba(255, 255, 255, 0);
  border: 3px solid #04D47C;
}
.btn.btn-green-reverse:hover {
  color: #FFFFFF;
  background-color: #04D47C;
  border: 3px solid #04D47C;
}
.btn.btn-green-outline {
  color: #04D47C;
  background-color: rgba(255, 255, 255, 0);
  border: 3px solid #04D47C;
}
.btn.btn-green-outline:hover {
  background-color: #FFFFFF;
}
.btn.btn-white-outline {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0);
  border: 3px solid #FFFFFF;
}
.btn.btn-white-outline:hover {
  color: #04D47C;
  background-color: #FFFFFF;
}

.base-list {
  padding-left: 0px;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  list-style: none;
}
.base-list li {
  font-size: 23px;
  position: relative;
  padding-left: 26px;
}
.base-list li:not(:last-child) {
  margin-bottom: 20px;
}
.base-list li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("./../img/ok-mark-green.svg");
  background-size: contain;
  left: 0;
  top: 6px;
}
@media screen and (max-width: 1500px) {
  .base-list li {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .base-list li {
    font-size: 16px;
  }
}

.accordion-box {
  border-bottom: 1px solid #D9D1D1;
}
.accordion-box .accordion {
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
  background-color: #FFFFFF;
  position: relative;
  padding-right: 30px;
}
.accordion-box .accordion svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease-out;
}
.accordion-box .accordion.active svg {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-box .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, padding-bottom 0.2s ease-out;
  padding-bottom: 0px;
}
.accordion-box .panel p, .accordion-box .panel .base-list {
  margin: 0;
  padding-bottom: 13px;
}
.accordion-box .panel .base-list li {
  font-size: 18px;
  line-height: 1.5em;
}
.accordion-box .panel .base-list li:before {
  top: 3px;
}
@media screen and (max-width: 1660px) {
  .accordion-box .panel .base-list li {
    font-size: 16px;
  }
}

.check-box {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  padding-left: 0px;
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
}
.check-box input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  display: none;
}
.check-box input:checked ~ .checkmark:before {
  display: inline-block;
}
.check-box input[type=radio] ~ .checkmark {
  border-radius: 100%;
}
.check-box .check-box-text {
  margin-left: 8px;
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  position: relative;
  font-family: "Montserrat", sans-serif;
  top: 2px;
  vertical-align: top;
  max-width: calc(100% - 50px);
}
.check-box .check-box-text a {
  text-decoration: underline;
  color: inherit;
}
.check-box .checkmark {
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ffffff;
  background: #212121;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.check-box .checkmark:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  top: 5px;
  left: 4px;
  display: none;
}
.check-box-white input:checked ~ .checkmark {
  background-color: #ffffff;
}
.check-box-white input:checked ~ .checkmark:before {
  border-left: 2px solid #04D47C;
  border-bottom: 2px solid #04D47C;
}
.check-box-white .required {
  color: #222222;
}
.check-box-white .check-box-text {
  color: #ffffff;
}
.check-box-white .checkmark {
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0);
}
.check-box-white .checkmark:before {
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.check-box-orange input:checked ~ .checkmark {
  background-color: #04D47C;
}
.check-box-orange .required {
  color: #04D47C;
}
.check-box-orange .check-box-text {
  color: #222222;
}
.check-box-orange .checkmark {
  border: 1px solid #04D47C;
  background-color: rgba(255, 255, 255, 0);
}

.hero {
  background-color: #F2F2F2;
  position: relative;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero .container .left-side {
  background-color: #F2F2F2;
  -webkit-mask-image: url(./../img/hero-mask.svg);
  mask-image: url(./../img/hero-mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding-top: 109px;
  padding-bottom: 118px;
  flex: 0 0 63.5%;
}
.hero .container .left-side h1 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .container .left-side .base-list {
  margin-top: 32px;
}
.hero .container .left-side .btn-row {
  margin-top: 60px;
}
.hero .container .left-side .btn-row .btn:not(:last-child) {
  margin-right: 15px;
}
.hero .hero-img {
  position: absolute;
  object-fit: cover;
  width: 57%;
  height: 100%;
  right: 0;
  top: 0;
}
.hero .hero-mask-under {
  position: absolute;
  right: 0;
  width: 37.4%;
}
@media screen and (max-width: 1440px) {
  .hero .container .left-side {
    padding-top: 78px;
    padding-bottom: 82px;
  }
  .hero .container .left-side h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1040px) {
  .hero .container .left-side {
    padding-top: 48px;
    padding-bottom: 50px;
  }
  .hero .container .left-side h1 {
    font-size: 28px;
  }
  .hero .container .left-side .btn-row .btn {
    display: block;
    max-width: 300px;
    width: 100%;
  }
  .hero .container .left-side .btn-row .btn:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 916px) {
  .hero .hero-img {
    width: 100%;
    position: relative;
    display: block;
  }
  .hero .container .left-side {
    -webkit-mask-image: none;
    mask-image: none;
    flex: 0 0 100%;
  }
  .hero .hero-mask-under {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .hero .container .left-side {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero .container .left-side .btn-row {
    margin-top: 24px;
  }
  .hero .container .left-side .btn-row .btn {
    max-width: 380px;
  }
}

.about-grants {
  padding-top: 159px;
  padding-bottom: 149px;
}
.about-grants .sub-title {
  display: block;
  text-transform: uppercase;
  text-align: center;
}
.about-grants h2 {
  margin-top: 5px;
  margin-bottom: 37px;
  text-align: center;
  text-transform: uppercase;
}
.about-grants p {
  display: block;
  margin-top: 0;
  margin-bottom: 58px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  text-align: center;
}
.about-grants .card-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
}
.about-grants .card-grid .card {
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  padding: 35px 47px;
  align-items: center;
  flex-direction: row;
}
.about-grants .card-grid .card .card-text {
  font-size: 23px;
  font-weight: 800;
  padding-left: 35px;
  flex: 0 0 calc(100% - 90px);
}
.about-grants .card-grid .card .icon {
  width: 90px;
  height: 83px;
}
.about-grants .card-grid .card .icon svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (max-width: 1660px) {
  .about-grants {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .about-grants .card-grid .card .card-text {
    font-size: 20px;
    padding-left: 26px;
  }
  .about-grants .card-grid .card .icon {
    width: 70px;
    height: 75px;
  }
}
@media screen and (max-width: 1266px) {
  .about-grants .card-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 650px) {
  .about-grants {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-grants .card-grid {
    gap: 20px;
  }
  .about-grants .card-grid .card {
    padding: 24px 28px;
  }
  .about-grants .card-grid .card .card-text {
    font-size: 18px;
    flex: 0 0 calc(100% - 54px);
  }
  .about-grants .card-grid .card .icon {
    width: 54px;
    height: 78px;
  }
}
@media screen and (max-width: 370px) {
  .about-grants .card-grid .card .card-text {
    font-size: 16px;
  }
}

.we-can-help {
  padding-bottom: 221px;
}
.we-can-help .wch-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 53%;
  background-color: #F2F2F2;
}
.we-can-help .wch-container {
  width: 90%;
  max-width: 1478px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 115px;
}
.we-can-help h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.we-can-help .card-row {
  margin-top: 56px;
  display: grid;
  width: 100%;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.we-can-help .card-row .card {
  border-radius: 6px;
  border: 1px solid #DDD;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  transition: 0.5s box-shadow;
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0);
}
.we-can-help .card-row .card:hover {
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.2);
}
.we-can-help .card-row .card img {
  display: block;
  width: 100%;
}
.we-can-help .card-row .card .card-footer {
  text-align: center;
  padding: 44px 85px;
}
.we-can-help .card-row .card .card-footer .title {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}
.we-can-help .card-row .card .card-footer .text {
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
}
.we-can-help .card-row .card .btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1660px) {
  .we-can-help {
    padding-bottom: 100px;
  }
  .we-can-help .wch-bg {
    height: 46.6%;
  }
  .we-can-help .wch-container {
    max-width: 1200px;
    padding-top: 100px;
  }
  .we-can-help .card-row .card .card-footer {
    padding: 44px 50px;
  }
}
@media screen and (max-width: 870px) {
  .we-can-help .card-row {
    grid-template-columns: 1fr;
  }
  .we-can-help .card-row .card .card-footer {
    padding: 36px 30px;
  }
  .we-can-help .card-row .card .card-footer .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 650px) {
  .we-can-help {
    padding-bottom: 60px;
  }
  .we-can-help .wch-container {
    padding-top: 60px;
  }
  .we-can-help .card-row .card .card-footer {
    padding: 30px 24px;
  }
}

.who-can-benefit .row {
  background-color: #F2F2F2;
}
.who-can-benefit .row:nth-child(even) .col:nth-child(1) {
  order: 2;
}
.who-can-benefit .row:nth-child(even) .col:nth-child(2) {
  order: 1;
}
.who-can-benefit .row .col {
  flex: 0 0 50%;
}
.who-can-benefit .row .col.text {
  padding: 0px 82px;
  display: flex;
  align-items: center;
}
.who-can-benefit .row h2 {
  text-transform: uppercase;
  display: block;
  margin-top: 0px;
  margin-bottom: 30px;
}
.who-can-benefit .row p, .who-can-benefit .row ul {
  margin: 0;
  line-height: 1.8rem;
}
.who-can-benefit .row .base-list li {
  font-size: 18px;
}
@media screen and (max-width: 1660px) {
  .who-can-benefit .row .base-list li {
    font-size: 16px;
  }
}
.who-can-benefit .row img {
  display: block;
  width: 100%;
}
.who-can-benefit .row .info-box {
  border-radius: 4px;
  border: 1px solid #C1C1C1;
  background-color: #FFFFFF;
  padding: 26px 46px;
  margin-top: 50px;
  align-items: center;
}
.who-can-benefit .row .info-box .icon {
  flex: 0 0 55px;
}
.who-can-benefit .row .info-box .icon svg {
  display: block;
  width: 100%;
}
.who-can-benefit .row .info-box .ib-text {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  padding-left: 36px;
}
.who-can-benefit .row .info-box .ib-text span {
  color: #04D47C;
}
@media screen and (max-width: 1660px) {
  .who-can-benefit .row .info-box {
    padding: 20px 30px;
  }
  .who-can-benefit .row .info-box .ib-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1660px) {
  .who-can-benefit .row .col.text {
    padding: 0px 46px;
  }
  .who-can-benefit .row .info-box {
    margin-top: 36px;
  }
}
@media screen and (max-width: 1366px) {
  .who-can-benefit .row {
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .who-can-benefit .row:not(:last-child) {
    margin-bottom: 32px;
  }
  .who-can-benefit .row:nth-child(even) .col:nth-child(1) {
    order: 1;
  }
  .who-can-benefit .row:nth-child(even) .col:nth-child(2) {
    order: 2;
  }
  .who-can-benefit .row .col {
    flex: 0 0 100%;
  }
  .who-can-benefit .row .col.text {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 650px) {
  .who-can-benefit .row .col.text {
    padding: 32px 24px;
  }
  .who-can-benefit .row .info-box .ib-text {
    padding-left: 0px;
    margin-top: 32px;
    flex: 0 0 100%;
  }
}

.banner {
  padding-top: 132px;
}
.banner .banner-box {
  border-radius: 4px;
  background: #04D47C;
  max-width: 1628px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 42px 54px;
  align-items: center;
}
.banner .banner-box .title {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  flex: 1;
}
.banner .banner-box .box-img {
  position: relative;
  width: 248px;
  margin-left: auto;
  margin-right: 48px;
}
.banner .banner-box .box-img svg {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: -50%;
  transform: translateY(-50%);
}
.banner .banner-box .btn-box {
  width: 257px;
}
.banner .banner-box .btn-box .btn {
  max-width: 100%;
}
@media screen and (max-width: 1500px) {
  .banner .banner-box {
    padding: 30px 36px;
  }
  .banner .banner-box .title {
    font-size: 32px;
  }
  .banner .banner-box .box-img {
    width: 190px;
    margin-left: auto;
    margin-right: 32px;
  }
}
@media screen and (max-width: 1040px) {
  .banner .banner-box {
    padding: 30px 36px;
  }
  .banner .banner-box .title {
    order: 2;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .banner .banner-box .box-img {
    order: 1;
    width: 100%;
    margin-right: 0px;
    text-align: center;
    margin-top: -62px;
  }
  .banner .banner-box .box-img svg {
    position: relative;
    top: 0%;
    transform: translateY(0%);
    width: 120px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .banner .banner-box .btn-box {
    order: 3;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .banner .banner-box {
    padding: 26px 20px;
  }
  .banner .banner-box .title {
    font-size: 28px;
  }
}

.how-it-works {
  padding-top: 180px;
}
.how-it-works .col {
  flex: 0 0 50%;
}
.how-it-works .col:nth-child(1) {
  padding-top: 66px;
  padding-right: 102px;
}
.how-it-works .col h2 {
  margin-top: 0;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.how-it-works .col .img-box {
  overflow: hidden;
  width: 100%;
  box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.25);
}
.how-it-works .col .img-box img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1660px) {
  .how-it-works .col {
    flex: 0 0 40%;
  }
  .how-it-works .col:nth-child(1) {
    flex: 0 0 60%;
    padding-top: 36px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1040px) {
  .how-it-works {
    padding-top: 100px;
  }
  .how-it-works .flex-box {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .how-it-works .col {
    flex: 0 0 100%;
  }
  .how-it-works .col:nth-child(1) {
    flex: 0 0 100%;
    padding-top: 0px;
    padding-right: 0px;
    margin-bottom: 40px;
  }
  .how-it-works .col h2 {
    margin-bottom: 30px;
  }
}

.who-are-ac-heating {
  margin-top: 134px;
}
.who-are-ac-heating .box {
  width: 100%;
  padding-top: 105px;
  padding-bottom: 125px;
  background-image: url(./../img/who-are-ac-heating.jpg);
  background-size: cover;
  position: relative;
}
.who-are-ac-heating .box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.who-are-ac-heating .box .foreground {
  position: relative;
  z-index: 2;
}
.who-are-ac-heating .box h2 {
  margin: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
}
.who-are-ac-heating .box .flex-box {
  justify-content: center;
  margin-top: 60px;
}
.who-are-ac-heating .box .flex-box .card {
  margin-left: 20px;
  margin-right: 20px;
  padding: 58px 18px 56px 18px;
  border-radius: 6px;
  background-color: rgba(237, 237, 237, 0.27);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.8);
  text-align: center;
  width: 320px;
}
.who-are-ac-heating .box .flex-box .card .icon {
  width: 100%;
  height: 96px;
}
.who-are-ac-heating .box .flex-box .card .icon svg {
  width: auto;
  height: 100%;
}
.who-are-ac-heating .box .flex-box .card span {
  font-size: 23px;
  font-weight: 800;
  margin-top: 28px;
  color: #FFFFFF;
  display: block;
}
@media screen and (max-width: 1440px) {
  .who-are-ac-heating .box {
    padding-top: 90px;
    padding-bottom: 102px;
  }
  .who-are-ac-heating .box .flex-box .card {
    padding: 46px 18px 42px 18px;
    width: 268px;
  }
  .who-are-ac-heating .box .flex-box .card .icon {
    height: 76px;
  }
  .who-are-ac-heating .box .flex-box .card span {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1266px) {
  .who-are-ac-heating .box {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .who-are-ac-heating .box .flex-box {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .who-are-ac-heating .box .flex-box .card {
    margin-bottom: 40px;
  }
  .who-are-ac-heating .box .flex-box .card .icon {
    height: 60px;
  }
}

.contact {
  padding-top: 108px;
  padding-bottom: 148px;
  text-align: center;
}
.contact h2 {
  margin: 0;
  text-transform: uppercase;
}
.contact .contact-row {
  margin-top: 58px;
  justify-content: center;
}
.contact .contact-box {
  flex-direction: column;
  align-items: center;
  width: 628px;
  margin-right: 60px;
  padding-top: 62px;
  padding-bottom: 80px;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.15);
}
.contact .contact-box .contact-img {
  border-radius: 100%;
  overflow: hidden;
  width: 352px;
  box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.25);
}
.contact .contact-box .contact-img img {
  width: 100%;
  display: block;
}
.contact .contact-box .contact-info {
  text-align: center;
  margin-top: 40px;
}
.contact .contact-box .contact-info .full-name {
  font-weight: 800;
  font-size: 40px;
  margin-top: 0;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact .contact-box .contact-info .position {
  font-weight: 800;
  font-size: 30px;
  color: #04D47C;
}
.contact .contact-box .contact-info .contact-ways {
  margin-top: 40px;
  margin-bottom: 60px;
}
.contact .contact-box .contact-info .contact-ways .item {
  align-items: center;
  justify-content: center;
}
.contact .contact-box .contact-info .contact-ways .item:not(:last-child) {
  margin-bottom: 20px;
}
.contact .contact-box .contact-info .contact-ways .item .phone {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-left: 10px;
}
.contact .contact-box .contact-info .contact-ways .item .mail {
  font-weight: 300;
  font-size: 20px;
  margin-left: 12px;
}
.contact .contact-form {
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.15);
  padding: 48px 60px;
  width: 628px;
  text-align: left;
}
.contact .contact-form .input-group {
  margin-bottom: 26px;
  text-align: left;
}
.contact .contact-form .input-group label {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}
.contact .contact-form .input-group input, .contact .contact-form .input-group textarea {
  border-radius: 5px;
  border: 1px solid #C9C9C9;
  outline: none;
  font-size: 18px;
  padding: 18px 24px;
  width: 100%;
}
.contact .contact-form .input-group textarea {
  height: 178px;
  resize: vertical;
  font-family: "Montserrat", sans-serif;
}
.contact .contact-form .required-inputs {
  font-size: 14px;
  display: block;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}
.contact .contact-form .form-msg {
  font-size: 14px;
  display: block;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
}
.contact .contact-form .form-msg.error {
  color: #e74c3c;
  display: none;
}
.contact .contact-form .form-msg.success {
  color: #04D47C;
  display: none;
}
.contact .contact-form .form-msg.show {
  display: block !important;
}
.contact .contact-form .submit-btn.hide {
  display: none;
}
@media screen and (max-width: 1660px) {
  .contact .contact-form {
    width: 530px;
  }
  .contact .contact-box {
    width: 530px;
  }
  .contact .contact-box .contact-img {
    width: 250px;
  }
}
@media screen and (max-width: 1266px) {
  .contact .contact-form {
    width: 450px;
    padding: 48px 40px;
  }
  .contact .contact-box {
    width: 450px;
    margin-right: 40px;
  }
  .contact .contact-box .contact-info .full-name {
    font-size: 30px;
  }
}
@media screen and (max-width: 1040px) {
  .contact .contact-form {
    width: 100%;
    max-width: 700px;
  }
  .contact .contact-box {
    width: 100%;
    max-width: 700px;
    margin-right: 0px;
    margin-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact .contact-box .contact-info .position {
    font-size: 24px;
  }
  .contact .contact-box .contact-info .contact-ways {
    margin-top: 34px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-box {
    flex-direction: column;
  }
  .contact .contact-box .contact-img {
    width: 200px;
  }
  .contact .contact-box .contact-info {
    margin-top: 32px;
    padding-left: 0px;
  }
  .contact .contact-box .contact-info .contact-ways {
    margin-top: 34px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 650px) {
  .contact .contact-form {
    padding: 36px 20px;
  }
  .contact .contact-box .contact-info .full-name {
    font-size: 24px;
  }
  .contact .contact-box .contact-info .position {
    font-size: 20px;
  }
  .contact .contact-box .contact-info .contact-ways .item .phone {
    font-size: 24px;
  }
  .contact .contact-box .contact-info .contact-ways .item .mail {
    font-size: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
