:root {
  --font-family: "Poppins", sans-serif;
  --content-width: 1520px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light: #fff;
  --dark: #000;
  --blue-dark: #233189;
  --green: #5bb281;
  --light-green: #2eb67d;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gunship";
  src: url("../fonts/../fonts/gunshipcondital.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

._container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn-bg {
  color: var(--light);
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: var(--green);
  border: 2px solid var(--green);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-bg:hover {
  background-color: var(--light);
  color: var(--green);
}
@media (max-width: 768px) {
  .btn-bg {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 480px) {
  .btn-bg {
    font-size: 12px;
    line-height: 12px;
  }
}

.title {
  font-family: "Gunship";
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 56px;
}
@media (max-width: 992px) {
  .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 28px;
    line-height: 36px;
  }
}

.title-green {
  color: var(--green);
}

.title-blue {
  color: var(--blue-dark);
}

.title64 {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
}
@media (max-width: 992px) {
  .title64 {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .title64 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 576px) {
  .title64 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 480px) {
  .title64 {
    font-size: 32px;
    line-height: 40px;
  }
}

.btn-outline {
  color: var(--green);
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  border: 1px solid var(--light-green);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: var(--light);
}
.btn-outline:hover {
  background-color: var(--light-green);
  color: var(--light);
}

.btn-white {
  color: #4eacea;
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: var(--light);
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-white:hover {
  background-color: #4eacea;
  color: var(--light);
}

@-webkit-keyframes opacity {
  0% {
    fill: var(--light);
  }
  50% {
    fill: var(--light-green);
  }
  100% {
    fill: var(--green);
  }
}

@keyframes opacity {
  0% {
    fill: var(--light);
  }
  50% {
    fill: var(--light-green);
  }
  100% {
    fill: var(--green);
  }
}
.signal-1 {
  -webkit-animation: opacity 0.5s linear alternate infinite;
  animation: opacity 0.5s linear alternate infinite;
}

.signal-2 {
  -webkit-animation: opacity 0.7s linear 0.5s alternate infinite;
  animation: opacity 0.7s linear 0.5s alternate infinite;
}

.signal-3 {
  -webkit-animation: opacity 0.9s linear 1s alternate infinite;
  animation: opacity 0.9s linear 1s alternate infinite;
}

@-webkit-keyframes circle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes circle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes transf {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes transf {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.circle-1 {
  -webkit-animation: circle 0.5s linear alternate infinite;
  animation: circle 0.5s linear alternate infinite;
}

.circle-2 {
  -webkit-animation: circle 0.7s linear 0.5s alternate infinite;
  animation: circle 0.7s linear 0.5s alternate infinite;
}

.circle-3 {
  -webkit-animation: circle 0.9s linear 1s alternate infinite;
  animation: circle 0.9s linear 1s alternate infinite;
}

.transformation-1 {
  -webkit-animation: transf 1s linear 0.5s alternate infinite;
  animation: transf 1s linear 0.5s alternate infinite;
}

.transformation-2 {
  -webkit-animation: transf 1s linear 0.7s alternate infinite;
  animation: transf 1s linear 0.7s alternate infinite;
}

.transformation-3 {
  -webkit-animation: transf 1s linear 0.9s alternate infinite;
  animation: transf 1s linear 0.9s alternate infinite;
}

.transformation-4 {
  -webkit-animation: transf 1s linear 1s alternate infinite;
  animation: transf 1s linear 1s alternate infinite;
}

.transformation-5 {
  -webkit-animation: transf 1s linear 1.2s alternate infinite;
  animation: transf 1s linear 1.2s alternate infinite;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
}
.all_pages ul {
  background: #00d2ff;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

body.lock {
  overflow: hidden;
}

.header {
  padding: 12px 60px;
  background-color: var(--light);
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .header {
    padding: 10px 15px;
  }
}
.header.scroll {
  background-color: white;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
.header__wrap {
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  position: relative;
  z-index: 101;
}
@media (max-width: 480px) {
  .header__logo {
    max-width: 110px;
  }
}
.header__btn {
  padding: 12px 40px;
}
@media (max-width: 992px) {
  .header__btn {
    padding: 10px 30px;
  }
}
@media (max-width: 768px) {
  .header__btn {
    padding: 8px 20px;
  }
}
@media (max-width: 480px) {
  .header__btn {
    padding: 6px 12px;
  }
}
.header nav {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header nav {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 102;
    overflow-y: auto;
    width: 35%;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.3);
  }
  .header nav.menu--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .header nav {
    width: 45%;
  }
}
@media (max-width: 576px) {
  .header nav {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .header nav {
    width: 100%;
  }
}
.header nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 96px;
  -moz-column-gap: 96px;
  column-gap: 96px;
}
@media (max-width: 1400px) {
  .header nav > ul {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .header nav > ul {
    width: 100%;
    height: 100%;
    background: rgb(69, 102, 17);
    background: -webkit-gradient(linear, left top, right bottom, from(var(--green)), to(var(--light-green)));
    background: linear-gradient(to right bottom, var(--green), var(--light-green));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 20px;
  }
}
.header nav > ul > li > a {
  color: #767676;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (min-width: 993px) {
  .header nav > ul > li > a:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0px;
    height: 4px;
    border-radius: 2px;
    background-color: #00aff0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header nav > ul > li > a:hover:after {
    width: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .header nav > ul > li > a:hover {
    color: #00aff0;
  }
  .header nav > ul > li > a.active {
    color: #00aff0;
  }
  .header nav > ul > li > a.active:after {
    width: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .header nav > ul > li > a {
    color: var(--light);
    font-size: 20px;
  }
}
.header nav > ul li:nth-child(3) {
  color: #767676;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header nav > ul li:nth-child(3) {
    color: var(--light);
    font-size: 20px;
    display: inline-block;
    text-align: center;
  }
}
.header nav > ul li:nth-child(3).show:after {
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: 7px;
}
.header nav > ul li:nth-child(3):after {
  content: "";
  position: absolute;
  top: 5px;
  right: -18px;
  border: 2px solid #767676;
  width: 6px;
  height: 6px;
  background-color: var(--light);
  border-right: none;
  border-top: none;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header nav > ul li:nth-child(3):after {
    background-color: var(--light-green);
    border-color: var(--light);
    right: -18px;
  }
}
@media (min-width: 993px) {
  .header nav > ul li:nth-child(3):hover {
    color: #00aff0;
  }
}
@media (min-width: 993px) {
  .header nav > ul li:nth-child(3):hover:after {
    border-color: #00aff0;
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
    top: 7px;
  }
}
.header nav > ul li:nth-child(3):hover > ul {
  opacity: 1;
  visibility: visible;
}
.header nav > ul li:nth-child(3) > ul {
  position: absolute;
  width: 250%;
  top: 150%;
  padding: 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  background-color: var(--light);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header nav > ul li:nth-child(3) > ul {
    visibility: visible;
    opacity: 1;
    position: static;
    width: 100%;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 0 0;
    display: none;
  }
  .header nav > ul li:nth-child(3) > ul.show {
    display: block;
  }
}
.header nav > ul li:nth-child(3) > ul > li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .header nav > ul li:nth-child(3) > ul > li:not(:last-child) {
    margin-bottom: 2px;
  }
}
.header nav > ul li:nth-child(3) > ul > li > a {
  color: #767676;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header nav > ul li:nth-child(3) > ul > li > a {
    color: var(--light);
    font-size: 14px;
  }
}
@media (min-width: 993px) {
  .header nav > ul li:nth-child(3) > ul > li > a:hover {
    color: #00aff0;
  }
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light);
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light);
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
    z-index: 102;
  }
}

.hero {
  margin-top: var(--header-height);
  position: relative;
  padding-top: 231px;
  padding-bottom: 273px;
  overflow: hidden;
  background-image: url("../img/hero-ellipse.webp");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 450px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 380px;
  }
}
@media (max-width: 380px) {
  .hero {
    padding-bottom: 340px;
  }
}
@media (max-width: 360px) {
  .hero {
    padding-bottom: 310px;
  }
}
@media (max-width: 340px) {
  .hero {
    padding-bottom: 290px;
  }
}
.hero__wrap {
  max-width: 845px;
}
.hero__bg_green {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .hero__bg_green {
    max-width: 200px;
  }
}
.hero__bg_blue {
  position: absolute;
  top: 5%;
  right: 0;
}
@media (max-width: 1600px) {
  .hero__bg_blue {
    top: 15%;
  }
}
@media (max-width: 1400px) {
  .hero__bg_blue {
    top: 30%;
  }
}
@media (max-width: 992px) {
  .hero__bg_blue {
    top: 40%;
  }
}
@media (max-width: 768px) {
  .hero__bg_blue {
    max-width: 100px;
    top: 45%;
  }
}
@media (max-width: 576px) {
  .hero__bg_blue {
    top: 0;
  }
}
.hero__bg_dark-blue {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1800px) {
  .hero__bg_dark-blue {
    left: 40%;
  }
}
@media (max-width: 1200px) {
  .hero__bg_dark-blue {
    left: 35%;
  }
}
@media (max-width: 992px) {
  .hero__bg_dark-blue {
    left: 0;
    max-width: 350px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .hero__bg_dark-blue {
    left: 5%;
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .hero__bg_dark-blue {
    max-width: 200px;
    left: 0;
  }
}
@media (max-width: 400px) {
  .hero__bg_dark-blue {
    display: none;
  }
}
.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1800px) {
  .hero__image {
    max-width: 800px;
  }
}
@media (max-width: 1600px) {
  .hero__image {
    max-width: 700px;
    bottom: -50px;
    right: -50px;
    z-index: -1;
  }
}
@media (max-width: 1400px) {
  .hero__image {
    max-width: 600px;
  }
}
@media (max-width: 992px) {
  .hero__image {
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .hero__image {
    max-width: 460px;
  }
}
@media (max-width: 576px) {
  .hero__image {
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .hero__image {
    max-width: 100%;
    height: auto;
  }
}
.hero__title {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .hero__title {
    margin-bottom: 25px;
  }
}
.hero__subtitle {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .hero__subtitle {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    max-width: none;
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 400px) {
  .hero__subtitle {
    margin-bottom: 25px;
  }
}
.hero__btn {
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  padding: 12px 38px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.hero__btn:hover {
  background-color: var(--light);
  color: var(--blue-dark);
}
@media (max-width: 400px) {
  .hero__btn {
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 10px 0;
    max-width: none;
  }
}

.statistic {
  background-repeat: no-repeat;
  background-size: cover;
}
.statistic__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.statistic__item {
  color: var(--light);
  font-family: "Gunship";
  font-size: 64px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  width: 33.3333%;
  position: relative;
  height: 100%;
  padding-top: 38px;
  padding-bottom: 38px;
}
@media (max-width: 1200px) {
  .statistic__item {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .statistic__item {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .statistic__item {
    font-size: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .statistic__item {
    font-size: 26px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .statistic__item:after, .statistic__item:before {
    background-image: none !important;
  }
}
.statistic__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 107px;
  background-image: url("../img/line.webp");
}
.statistic__item:nth-child(1):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 107px;
  background-image: url("../img/line.webp");
}
.statistic__item:nth-child(1) b {
  width: 100px;
}
@media (max-width: 768px) {
  .statistic__item:nth-child(1) b {
    width: 60px;
  }
}
@media (max-width: 576px) {
  .statistic__item:nth-child(1) b {
    width: 50px;
  }
}
.statistic__item:nth-child(2) b {
  width: 150px;
}
@media (max-width: 768px) {
  .statistic__item:nth-child(2) b {
    width: 90px;
  }
}
@media (max-width: 576px) {
  .statistic__item:nth-child(2) b {
    width: 70px;
  }
}
.statistic__item:nth-child(3) b {
  width: 110px;
}
@media (max-width: 768px) {
  .statistic__item:nth-child(3) b {
    text-align: center;
  }
}
.statistic__item span {
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  display: inline-block;
  max-width: 140px;
  margin-left: 30px;
  text-align: left;
}
@media (max-width: 1200px) {
  .statistic__item span {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .statistic__item span {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 480px) {
  .statistic__item span {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 400px) {
  .statistic__item span {
    font-size: 12px;
  }
}
.statistic__item b {
  display: inline-block;
  text-align: right;
}

.about-statistic {
  max-width: 1520px;
  margin: 70px auto 0 auto;
  border-radius: 8px;
}
.about-statistic .statistic__item:after, .about-statistic .statistic__item:before {
  content: none;
}
@media (max-width: 992px) {
  .about-statistic {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .about-statistic {
    margin-top: 0px;
  }
}

.products {
  padding-top: 160px;
  padding-bottom: 140px;
  position: relative;
}
.products:before {
  content: "";
  position: absolute;
  background-image: url("../img/circles.webp");
  width: 1508px;
  height: 1664px;
  top: -10%;
  left: 20%;
  z-index: 0;
}
@media (max-width: 1500px) {
  .products:before {
    left: 10%;
  }
}
@media (max-width: 1400px) {
  .products:before {
    left: 5%;
    top: -15%;
  }
}
@media (max-width: 1200px) {
  .products:before {
    left: 0;
    top: -20%;
  }
}
@media (max-width: 1100px) {
  .products:before {
    top: -25%;
    left: -10%;
  }
}
@media (max-width: 992px) {
  .products:before {
    left: 50%;
    -webkit-transform: translateX(-55%);
    -ms-transform: translateX(-55%);
    transform: translateX(-55%);
    background-size: 1000px 1000px;
    width: 1000px;
    height: 1000px;
    top: 20%;
  }
}
@media (max-width: 768px) {
  .products:before {
    top: 18%;
  }
}
@media (max-width: 576px) {
  .products:before {
    top: 13%;
  }
}
@media (max-width: 400px) {
  .products:before {
    top: 14%;
    background-size: 800px 800px;
    width: 800px;
    height: 800px;
  }
}
@media (max-width: 1200px) {
  .products {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .products {
    padding-top: 60px;
  }
}
.products__title {
  position: relative;
  display: inline-block;
  margin-bottom: 100px;
}
.products__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
@media (max-width: 992px) {
  .products__title {
    margin-bottom: 60px;
  }
}
.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 200px;
  -moz-column-gap: 200px;
  column-gap: 200px;
  margin-bottom: 150px;
}
.products__item:first-child .products__content {
  position: relative;
}
@media (max-width: 400px) {
  .products__item:first-child {
    margin-bottom: 100px;
  }
}
.products__item:last-child {
  margin-bottom: 0;
}
.products__item:last-child .products__content {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  padding-left: 180px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 680px;
  flex: 0 1 680px;
  position: relative;
}
@media (max-width: 1600px) {
  .products__item:last-child .products__content {
    padding-left: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 550px;
    flex: 0 1 550px;
  }
}
@media (max-width: 992px) {
  .products__item:last-child .products__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 0;
  }
}
.products__item:last-child .products__content:after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0%;
  z-index: 0;
  background-image: url("../img/circle.webp");
  width: 382px;
  height: 382px;
}
.products__item:last-child .products__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 930px);
  flex: 0 1 calc(100% - 930px);
}
@media (max-width: 1600px) {
  .products__item:last-child .products__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 800px);
    flex: 0 1 calc(100% - 800px);
  }
}
@media (max-width: 992px) {
  .products__item:last-child .products__img {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .products__item:last-child {
    row-gap: 60px;
  }
}
@media (max-width: 480px) {
  .products__item:last-child {
    row-gap: 40px;
  }
}
@media (max-width: 1500px) {
  .products__item {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
}
@media (max-width: 992px) {
  .products__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 120px;
  }
}
@media (max-width: 480px) {
  .products__item {
    row-gap: 80px;
  }
}
.products__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 750px);
  flex: 0 1 calc(100% - 750px);
}
.products__img svg {
  position: relative;
  z-index: 1;
  height: auto;
}
@media (max-width: 1500px) {
  .products__img {
    -ms-flex-preferred-size: calc(55% - 50px) !important;
    flex-basis: calc(55% - 50px) !important;
  }
}
@media (max-width: 992px) {
  .products__img {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    text-align: center;
  }
  .products__img svg {
    max-width: 80%;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .products__img svg {
    max-width: 90%;
  }
}
.products__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}
@media (max-width: 1500px) {
  .products__content {
    -ms-flex-preferred-size: calc(45% - 50px);
    flex-basis: calc(45% - 50px);
  }
}
@media (max-width: 992px) {
  .products__content {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 1 100% !important;
    flex: 0 1 100% !important;
    text-align: center;
  }
  .products__content:after {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 250px !important;
    height: 250px !important;
    background-size: 250px 250px !important;
  }
}
@media (max-width: 480px) {
  .products__content:after {
    top: -15% !important;
    width: 200px !important;
    height: 200px !important;
    background-size: 200px 200px !important;
  }
}
.products__name {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 400px;
}
@media (max-width: 992px) {
  .products__name {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .products__name {
    margin-bottom: 20px;
  }
}
.products__text {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .products__text {
    font-size: 16px;
    line-height: 140%;
  }
}

.testimonials__wrap {
  -webkit-box-shadow: 0px 0 170px 0px rgba(0, 175, 240, 0.2);
  box-shadow: 0px 0 170px 0px rgba(0, 175, 240, 0.2);
  border-radius: 16px;
  background-color: var(--light);
  max-width: 1686px;
  margin: 0 auto;
  padding-top: 108px;
  padding-bottom: 108px;
}
@media (max-width: 992px) {
  .testimonials__wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.testimonials__header {
  position: relative;
}
.testimonials__title {
  position: relative;
  display: inline-block;
}
.testimonials__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
@media (max-width: 480px) {
  .testimonials__title {
    margin-bottom: 60px;
  }
}
.testimonials__slider {
  margin-top: 87px;
}
@media (max-width: 992px) {
  .testimonials__slider {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .testimonials__slider {
    margin-top: 0;
  }
}
.testimonials__text {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}
.testimonials__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials__names h5 {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 5px;
}
.testimonials__names h6 {
  color: #8b8b8b;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.testimonials .testimonials-swiper-button-prev {
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonials .testimonials-swiper-button-prev img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-swiper-button-prev {
    width: 36px;
    height: 36px;
    right: 48px;
  }
}
@media (max-width: 480px) {
  .testimonials .testimonials-swiper-button-prev {
    top: auto;
    bottom: -5px;
  }
}
.testimonials .testimonials-swiper-button-next {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonials .testimonials-swiper-button-next svg {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .testimonials .testimonials-swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .testimonials .testimonials-swiper-button-next {
    top: auto;
    bottom: -5px;
  }
}
.testimonials .testimonials-swiper-button-prev,
.testimonials .testimonials-swiper-button-next {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.testimonials .testimonials-swiper-button-prev:hover,
.testimonials .testimonials-swiper-button-next:hover {
  background-color: #4eacea;
}
.testimonials .testimonials-swiper-button-prev:hover svg path,
.testimonials .testimonials-swiper-button-next:hover svg path {
  fill: var(--light);
}
.testimonials .swiper-button-prev {
  display: none;
}
.testimonials .swiper-button-next {
  display: none;
}
.testimonials .swiper-slide {
  border: 1px solid #4eacea;
  border-radius: 8px;
  background-color: #f9fcfe;
  padding: 30px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .testimonials .swiper-slide {
    padding: 20px;
  }
}
.testimonials .swiper-slide:hover {
  -webkit-box-shadow: inset 0 0 80px 0 rgba(78, 172, 234, 0.2);
  box-shadow: inset 0 0 80px 0 rgba(78, 172, 234, 0.2);
  border-color: #c1dbec;
}

.blog {
  margin-top: 152px;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .blog {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .blog {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
.blog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog__title {
  position: relative;
  display: inline-block;
}
.blog__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
.blog__view-all {
  background-color: var(--light);
  outline: none;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--green);
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.28px;
  padding: 8px 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__view-all:hover {
  color: var(--light);
  background-color: var(--green);
}
@media (max-width: 480px) {
  .blog__view-all {
    font-size: 12px;
    padding: 6px 8px;
  }
}
.blog__wrapper {
  margin-top: 90px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  row-gap: 80px;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media (max-width: 1200px) {
  .blog__wrapper {
    row-gap: 60px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-top: 50px;
  }
}
@media (max-width: 992px) {
  .blog__wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .blog__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media (max-width: 480px) {
  .blog__wrapper {
    margin-top: 30px;
  }
}
.blog__item:first-child .blog__card {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.blog__top {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  background-color: #eff5f2;
  border-radius: 16px;
  padding: 0px 46px 0 90px;
}
.blog__top .blog__name {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 1200px) {
  .blog__top .blog__name {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .blog__top .blog__name {
    font-size: 28px;
  }
}
.blog__top .blog__descr {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 480px) {
  .blog__top .blog__descr {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 1400px) {
  .blog__top {
    padding-left: 45px;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
}
@media (max-width: 1200px) {
  .blog__top {
    padding-left: 0;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 25px 15px;
  }
}
@media (max-width: 992px) {
  .blog__top {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    display: block;
    padding: 0;
  }
  .blog__top .blog__card {
    padding: 0 15px 25px;
  }
}
@media (max-width: 576px) {
  .blog__top {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
.blog__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-height: 485px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .blog__img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .blog__img {
    margin-bottom: 40px;
  }
}
.blog__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .blog__avatar {
    margin-bottom: 15px;
  }
}
.blog__avatar_wr {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}
.blog__avatar_wr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog__author {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.blog__name {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .blog__name {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .blog__name {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
  }
}
.blog__descr {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 24px;
}
.blog__btn {
  padding: 8px 24px;
  display: inline-block;
}
@media (max-width: 480px) {
  .blog__btn {
    padding: 6px 20px;
  }
}

.question {
  padding-top: 111px;
  padding-bottom: 111px;
  text-align: center;
}
@media (max-width: 768px) {
  .question {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.question__title {
  color: var(--light);
  text-align: center;
  font-family: "Gunship";
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto 48px auto;
  text-transform: uppercase;
  max-width: 1200px;
}
@media (max-width: 992px) {
  .question__title {
    font-size: 46px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .question__title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .question__title {
    font-size: 32px;
  }
}
.question__descr {
  color: var(--light);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 1200px;
  margin: 0 auto 48px auto;
}
@media (max-width: 992px) {
  .question__descr {
    font-size: 20px;
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .question__descr {
    font-size: 16px;
  }
}
.question__btn {
  padding: 12px 40px;
}
@media (max-width: 576px) {
  .question__btn {
    padding: 10px 30px;
  }
}

.about {
  margin-top: var(--header-height);
  background-blend-mode: multiply;
  background-image: url("../img/about-ellipse-bg.webp"), url("../img/about-hero-bg.svg");
  background-repeat: no-repeat no-repeat;
  background-position: center center, center 20px;
  background-size: contain contain;
  padding-top: 185px;
  padding-bottom: 180px;
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 140px;
  }
}
@media (max-width: 576px) {
  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.about__wrap {
  text-align: center;
}
.about__title {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.about__subtitle {
  text-align: center;
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 480px) {
  .about__subtitle {
    font-size: 16px;
  }
}

.about-descr {
  padding-top: 130px;
  padding-bottom: 80px;
  background-position: right 150px, center 600px;
  background-repeat: no-repeat no-repeat;
  background-size: contain contain;
}
@media (max-width: 992px) {
  .about-descr {
    background-position: right -150px, center 600px;
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .about-descr {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .about-descr {
    padding-top: 30px;
  }
}
.about-descr__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.about-descr__item:first-child .about-descr__text {
  max-width: 600px;
}
@media (max-width: 1400px) {
  .about-descr__item:first-child .about-descr__text {
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  .about-descr__item:first-child .about-descr__text {
    max-width: none;
  }
}
.about-descr__item:first-child .about-descr__img {
  max-width: 700px;
}
.about-descr__item:first-child .about-descr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .about-descr__item:first-child .about-descr__img {
    max-width: 90%;
  }
}
@media (max-width: 992px) {
  .about-descr__item:first-child {
    margin-bottom: 50px;
  }
}
.about-descr__item:last-child .about-descr__text {
  max-width: 830px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (max-width: 1400px) {
  .about-descr__item:last-child .about-descr__text {
    max-width: 550px;
  }
}
@media (max-width: 992px) {
  .about-descr__item:last-child .about-descr__text {
    max-width: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.about-descr__item:last-child .about-descr__img {
  max-width: 550px;
}
.about-descr__item:last-child .about-descr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .about-descr__item:last-child .about-descr__img {
    max-width: 90%;
  }
}
@media (max-width: 992px) {
  .about-descr__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.about-descr__wr {
  padding-left: 150px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1500px) {
  .about-descr__wr {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .about-descr__wr {
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.about-descr__mission {
  color: var(--green);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  height: 150px;
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 992px) {
  .about-descr__mission {
    position: static;
    -webkit-transform: rotate(0deg) translateX(0);
    -ms-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    height: initial;
    text-align: center;
  }
}
.about-descr__text {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1500px) {
  .about-descr__text {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .about-descr__text {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .about-descr__text {
    text-align: center;
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .about-descr__text {
    font-size: 18px;
  }
}
.about-descr__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-top: 64px;
  row-gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about-descr__images {
    margin-top: 35px;
  }
}
.about-descr__image {
  max-width: 300px;
  overflow: hidden;
  max-height: 436px;
  border-radius: 8px;
  position: relative;
}
.about-descr__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.about-descr__image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 400px) {
  .about-descr__image {
    max-width: 85%;
  }
}
.about-descr__im {
  height: 100%;
}
.about-descr__team {
  margin-top: 200px;
}
@media (max-width: 1200px) {
  .about-descr__team {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .about-descr__team {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .about-descr__team {
    margin-top: 60px;
  }
}
.about-descr__centered {
  text-align: center;
}
@media (max-width: 768px) {
  .about-descr__centered {
    text-align: left;
  }
}
.about-descr__title {
  position: relative;
  display: inline-block;
}
.about-descr__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
@media (max-width: 400px) {
  .about-descr__title {
    font-size: 25px;
  }
}
.about-descr__position {
  background-color: var(--light);
  padding: 16px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  border-radius: 6px;
}
@media (max-width: 480px) {
  .about-descr__position {
    padding: 10px;
  }
}
.about-descr__position h5 {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 480px) {
  .about-descr__position h5 {
    font-size: 16px;
  }
}
.about-descr__position h6 {
  color: #979797;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 480px) {
  .about-descr__position h6 {
    font-size: 14px;
  }
}

.partners {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 1200px) {
  .partners {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
.partners__wrap {
  padding-top: 130px;
}
@media (max-width: 1200px) {
  .partners__wrap {
    padding-top: 80px;
  }
}
@media (max-width: 576px) {
  .partners__wrap {
    padding-top: 60px;
  }
}
.partners__wrap h4 {
  color: var(--blue-dark);
  text-align: center;
  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 992px) {
  .partners__wrap h4 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .partners__wrap h4 {
    font-size: 24px;
    line-height: 130%;
  }
}
@media (max-width: 480px) {
  .partners__wrap h4 {
    font-size: 18px;
  }
}

.product {
  margin-top: var(--header-height);
  background-image: url("../img/product-bd-ellipse.webp");
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 120px;
  padding-bottom: 128px;
  background-position: center -50px;
  text-align: center;
}
@media (max-width: 992px) {
  .product {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .product {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.product.product-2 {
  padding-top: 50px;
  background-blend-mode: multiply;
  background-image: url("../img/product-2-bg-top.svg"), url("../img/product-bd-ellipse.webp");
  background-repeat: no-repeat no-repeat;
  background-size: contain contain;
  background-position: center 0px, center -50px;
  padding-bottom: 0;
}
.product__image-top {
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .product__image-top {
    margin-bottom: 60px;
  }
}
.product__title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .product__title {
    margin-bottom: 25px;
  }
}
.product__text {
  max-width: 1130px;
  margin: 0 auto;
  color: var(--dark);
  font-family: "Poppins";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 992px) {
  .product__text {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .product__text {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .product__text {
    font-size: 18px;
  }
}
.product__cards {
  margin-top: 85px;
  margin-bottom: 95px;
}
@media (max-width: 992px) {
  .product__cards {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .product__cards {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.product__divider {
  width: 356px;
  height: 1px;
  background-color: var(--green);
  margin: 48px auto;
}
@media (max-width: 992px) {
  .product__divider {
    margin: 30px auto;
    width: 300px;
  }
}
@media (max-width: 576px) {
  .product__divider {
    width: 150px;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .cards {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
  }
}
.cards__card {
  width: calc(33.3333333333% - 32px);
  padding: 30px;
  border-radius: 8px;
  background: var(--light);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cards__card:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
@media (max-width: 1200px) {
  .cards__card {
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cards__card {
    width: calc(50% - 25px);
  }
}
@media (max-width: 650px) {
  .cards__card {
    width: 100%;
    max-width: 450px;
  }
}
.cards__img {
  height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cards__name {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .cards__name {
    font-size: 22px;
  }
}
.cards__text {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.features {
  padding-top: 140px;
  padding-bottom: 140px;
  background-repeat: no-repeat;
  background-size: 539px 735px;
  background-position: 100% bottom;
  background-color: #EEF7F2;
}
@media (max-width: 1200px) {
  .features {
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: 35%;
  }
}
@media (max-width: 992px) {
  .features {
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: 40%;
  }
}
@media (max-width: 768px) {
  .features {
    background-size: 60%;
  }
}
@media (max-width: 576px) {
  .features {
    background-size: 80%;
  }
}
.features__title {
  position: relative;
  display: inline-block;
  margin-bottom: 56px;
}
.features__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
@media (max-width: 576px) {
  .features__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .features__title {
    max-width: 50%;
  }
}
@media (max-width: 380px) {
  .features__title {
    max-width: 60%;
  }
}
.features__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .features__items {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.features__item {
  background-color: var(--light);
  border-radius: 8px;
  padding: 20px 20px 20px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.features__item:after {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #00AFF0;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .features__item:after {
    width: 20px;
    height: 20px;
    left: 15px;
  }
}
@media (max-width: 480px) {
  .features__item:after {
    width: 15px;
    height: 15px;
    left: 15px;
  }
}
@media (min-width: 993px) {
  .features__item:hover {
    background-color: #00AFF0;
    color: var(--light);
  }
  .features__item:hover:after {
    background-color: var(--light);
  }
}
@media (max-width: 1200px) {
  .features__item {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 992px) {
  .features__item {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .features__item {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .features__item {
    padding: 10px 10px 10px 40px;
    font-size: 16px;
  }
}

.sms {
  padding-top: 150px;
  background-image: url("../img/produc-2-ellipse.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -250px;
}
@media (max-width: 1600px) {
  .sms {
    background-position: center -200px;
  }
}
@media (max-width: 1400px) {
  .sms {
    background-position: center -150px;
  }
}
@media (max-width: 1200px) {
  .sms {
    padding-top: 50px;
  }
}
.sms__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
@media (max-width: 1200px) {
  .sms__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.sms__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 617px;
  flex: 0 1 617px;
}
.sms__title {
  max-width: 450px;
  position: relative;
  display: inline-block;
  margin-bottom: 64px;
}
.sms__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
@media (max-width: 1400px) {
  .sms__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .sms__title {
    max-width: 60%;
  }
}
@media (max-width: 480px) {
  .sms__title {
    max-width: 70%;
  }
}
@media (max-width: 360px) {
  .sms__title {
    max-width: 80%;
  }
}
.sms__item {
  background-color: var(--light);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 16px;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  -webkit-box-shadow: 0 0 15px 0px rgba(0, 175, 240, 0.1);
  box-shadow: 0 0 15px 0px rgba(0, 175, 240, 0.1);
}
.sms__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .sms__item {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .sms__item {
    padding: 15px 10px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (min-width: 993px) {
  .sms__item:hover {
    background-color: #00AFF0;
  }
  .sms__item:hover .sms__name, .sms__item:hover .sms__text {
    color: var(--light);
    opacity: 1;
  }
  .sms__item:hover .sms__icon svg path {
    stroke: var(--light);
  }
  .sms__item:hover .sms__icon svg rect {
    stroke: var(--light);
  }
}
.sms__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 56px;
  flex: 0 1 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.sms__icon svg {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .sms__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40px;
    flex: 0 1 40px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 400px) {
  .sms__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30px;
    flex: 0 1 30px;
    width: 30px;
    height: 30px;
  }
}
.sms__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 70px);
  flex: 0 1 calc(100% - 70px);
}
.sms__name {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 16px;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
@media (max-width: 992px) {
  .sms__name {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .sms__name {
    font-size: 18px;
    line-height: 18px;
  }
}
.sms__text {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
@media (max-width: 992px) {
  .sms__text {
    font-size: 14px;
    line-height: 130%;
  }
}
@media (max-width: 400px) {
  .sms__text {
    font-size: 13px;
  }
}
.sms__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 667px);
  flex: 0 1 calc(100% - 667px);
  text-align: right;
}
@media (max-width: 1200px) {
  .sms__img {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
  }
  .sms__img img {
    width: 70%;
  }
}
@media (max-width: 400px) {
  .sms__img {
    max-width: 100%;
  }
  .sms__img img {
    width: 60%;
  }
}

@media (max-width: 1400px) {
  .access {
    padding-top: 10px;
  }
}
@media (max-width: 1350px) {
  .access {
    padding-top: 50px;
  }
}
@media (max-width: 1200px) {
  .access {
    padding-top: 0;
  }
}
.access__centered {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 576px) {
  .access__centered {
    text-align: left;
    margin-bottom: 40px;
  }
}
.access__title {
  display: inline;
  position: relative;
}
.access__title:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background-image: url("../img/after-title.svg");
}
.access__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media (max-width: 992px) {
  .access__items {
    row-gap: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.access__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
  border-radius: 8px;
  background-color: rgba(91, 178, 129, 0.2);
  padding: 45px 70px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.access__item:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
@media (max-width: 1400px) {
  .access__item {
    padding: 30px 25px;
  }
}
@media (max-width: 992px) {
  .access__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 10px);
    flex: 0 1 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .access__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .access__item {
    padding: 20px 10px;
  }
}
.access__name {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 22px;
}
@media (max-width: 480px) {
  .access__name {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
.access__descr {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

._blog {
  margin-top: var(--header-height);
  padding-top: 72px;
  background-image: url("../img/product-bd-ellipse.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media (max-width: 768px) {
  ._blog {
    padding-top: 60px;
  }
}
._blog ._blog-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  ._blog ._blog-title {
    margin-bottom: 30px;
  }
}
._blog__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 370px;
  grid-template-columns: 1fr 1fr 370px;
  -ms-grid-rows: (285px)[2];
  grid-template-rows: repeat(2, 285px);
  grid-auto-rows: auto;
  gap: 30px 24px;
  margin-bottom: 56px;
}
@media (max-width: 1600px) {
  ._blog__head {
    -ms-grid-columns: 550px 550px;
    grid-template-columns: 550px 550px;
    -ms-grid-rows: 285px 285px auto;
    grid-template-rows: 285px 285px auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  ._blog__head {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  ._blog__head {
    display: block;
  }
}
._blog__head-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
._blog__head-item:hover ._blog__head-img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
._blog__head-item:hover ._blog__head-title {
  color: #55f89c;
}
._blog__head-item:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
._blog__head-item:nth-of-type(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
._blog__head-item:nth-of-type(3) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
@media (max-width: 1600px) {
  ._blog__head-item:nth-of-type(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
._blog__head-item:last-of-type {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
@media (max-width: 1600px) {
  ._blog__head-item:last-of-type {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
._blog__head-item:nth-of-type(3), ._blog__head-item:last-of-type {
  border: 1px solid #9ECBB2;
  border-radius: 8px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  background-color: var(--light);
  padding: 45px 45px 45px;
}
@media (max-width: 1600px) {
  ._blog__head-item:nth-of-type(3), ._blog__head-item:last-of-type {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
@media (max-width: 992px) {
  ._blog__head-item:nth-of-type(3), ._blog__head-item:last-of-type {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  ._blog__head-item:nth-of-type(3), ._blog__head-item:last-of-type {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  ._blog__head-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
._blog__head-img {
  height: 100%;
}
._blog__head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
._blog__head-title {
  max-width: 420px;
  display: inline-block;
  position: absolute;
  left: 48px;
  bottom: 48px;
  color: var(--light);
  font-family: "Poppins";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  ._blog__head-title {
    left: 25px;
    bottom: 25px;
    max-width: 80%;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  ._blog__head-title {
    font-size: 20px;
  }
}
._blog__head-title-sm {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
._blog__head-title-sm:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  ._blog__head-title-sm {
    margin-bottom: 25px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  ._blog__head-title-sm {
    font-size: 18px;
  }
}
._blog__head-author {
  color: #00AFF0;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 992px) {
  ._blog__head-author {
    font-size: 16px;
  }
}
._blog__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 56px 24px;
}
@media (max-width: 1400px) {
  ._blog__main {
    gap: 40px 20px;
  }
}
@media (max-width: 992px) {
  ._blog__main {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  ._blog__main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
._blog__main-item {
  max-width: 490px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
._blog__main-item:hover ._blog__main-img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
._blog__main-item:hover ._blog__main-title {
  color: var(--light-green);
}
._blog__main-img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-height: 72%;
  overflow: hidden;
  margin-bottom: 23px;
}
._blog__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  ._blog__main-img {
    max-height: 69%;
  }
}
@media (max-width: 1200px) {
  ._blog__main-img {
    max-height: 66%;
  }
}
@media (max-width: 992px) {
  ._blog__main-img {
    max-height: 70%;
  }
}
@media (max-width: 768px) {
  ._blog__main-img {
    max-height: 65%;
  }
}
@media (max-width: 576px) {
  ._blog__main-img {
    max-height: 74%;
  }
}
@media (max-width: 400px) {
  ._blog__main-img {
    max-height: 64%;
  }
}
._blog__main-title {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 23px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  ._blog__main-title {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  ._blog__main-title {
    font-size: 18px;
  }
}
._blog__main-btn {
  display: inline-block;
  padding: 8px 24px;
}
@media (max-width: 400px) {
  ._blog__main-btn {
    padding: 6px 20px;
  }
}

.breadcrumb {
  margin-bottom: 38px;
  padding: 0 4px;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.breadcrumb a {
  color: #00AFF0;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 25px;
    font-size: 16px;
  }
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb ul li span {
  color: #aaaaaa;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin: 0 16px;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #aaaaaa;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
@media (max-width: 576px) {
  .breadcrumb li:not(:last-child)::after {
    width: 5px;
    height: 5px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    margin: 0 12px;
  }
}

._blog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 480px) {
  ._blog__pagination {
    margin-top: 50px;
  }
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination li {
  width: 40px;
  height: 40px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark);
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.pagination li a span {
  width: 24px;
  height: 24px;
}
@media (max-width: 576px) {
  .pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 70%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 10px;
  }
}
@media (max-width: 480px) {
  .pagination {
    max-width: 85%;
  }
}
@media (max-width: 400px) {
  .pagination {
    max-width: 100%;
  }
}

.pagination li:not(:first-child) {
  margin-left: 8px;
}

.pagination a {
  display: block;
  border: 1px solid #dddddd;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.pagination a:hover {
  background-color: var(--green);
  color: #fff;
}

.pagination li.pag-arrows a:hover {
  background-color: transparent;
  color: var(--dark);
}

.pagination a[aria-current=page] {
  background-color: var(--green);
  color: #fff;
}

.pag-arrows_left {
  margin-left: 33px !important;
}

.single {
  margin-top: var(--header-height);
  padding-top: 72px;
  background-image: url("../img/product-bd-ellipse.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media (max-width: 1200px) {
  .single {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .single {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.single .blog-title {
  margin-bottom: 38px;
  max-width: 940px;
}
@media (max-width: 576px) {
  .single .blog-title {
    margin-bottom: 25px;
  }
}
.single__author {
  margin-bottom: 36px;
}
@media (max-width: 576px) {
  .single__author {
    margin-bottom: 20px;
  }
}
.single__author span {
  color: #00AFF0;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  position: relative;
}
.single__author span:after {
  display: inline-block;
  margin: 0 8px;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--light-green);
  -webkit-transform: translate(2px, -2px);
  -ms-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
}
@media (max-width: 480px) {
  .single__author span {
    font-size: 14px;
  }
}
.single__author time {
  color: #AAAAAA;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 480px) {
  .single__author time {
    font-size: 14px;
  }
}
.single__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 1200px) {
  .single__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.single__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 940px;
  flex: 0 1 940px;
}
@media (max-width: 1400px) {
  .single__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 490px);
    flex: 0 1 calc(100% - 490px);
  }
}
@media (max-width: 1200px) {
  .single__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.single__content img:not([class=social__img]) {
  width: 100%;
  max-height: 420px;
  display: block;
  margin: 40px 0;
}
@media (max-width: 1200px) {
  .single__content img:not([class=social__img]) {
    margin: 10px 0;
  }
}
.single__content p {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 17px 0;
}
@media (max-width: 576px) {
  .single__content p {
    font-size: 18px;
    line-height: 150%;
    padding: 12px 0;
  }
}
.single__content h4 {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 39px 0 8px 0;
}
@media (max-width: 576px) {
  .single__content h4 {
    font-size: 22px;
    line-height: 130%;
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .single__content h4 {
    font-size: 20px;
  }
}
.single__content > ul {
  padding-left: 30px;
}
.single__content > ul > li {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 576px) {
  .single__content > ul > li {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 10px;
  }
}
.single__content article {
  margin-top: 60px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 4px solid var(--green);
  border-radius: 8px;
  padding: 70px 45px 70px 70px;
}
@media (max-width: 1400px) {
  .single__content article {
    padding: 40px 20px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media (max-width: 1200px) {
  .single__content article {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .single__content article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }
}
.single__content article h5 {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-right: 40px;
}
@media (max-width: 1400px) {
  .single__content article h5 {
    font-size: 26px;
    line-height: 140%;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
  }
}
@media (max-width: 768px) {
  .single__content article h5 {
    padding-right: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.single__content article blockquote {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 350px);
  flex: 0 1 calc(100% - 350px);
  color: var(--dark);
  margin: 0;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .single__content article blockquote {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.single__share {
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .single__share {
    margin-bottom: 0;
    margin-top: 40px;
    padding: 15px 0;
  }
}
.single__share p {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 480px) {
  .single__share p {
    font-size: 16px;
  }
}
.single__share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single__share ul li {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 8px;
}
.single__share ul li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(91, 178, 129, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single__share ul li a:hover {
  background-color: rgba(91, 178, 129, 0.6);
}
.single__aside {
  padding-top: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 450px;
  flex: 0 1 450px;
}
@media (max-width: 1200px) {
  .single__aside {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 0;
  }
}
.single__form-wrap {
  background-color: var(--light);
  padding: 25px 40px 20px;
}
@media (max-width: 576px) {
  .single__form-wrap {
    padding: 20px 10px;
  }
}
.single__contact-us {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .single__contact-us {
    margin-bottom: 15px;
  }
}

form.feed-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
}
form.feed-form input,
form.feed-form textarea {
  width: 100%;
}
form.feed-form textarea {
  height: 190px;
  resize: vertical;
}
form.feed-form input[type=submit] {
  margin-top: 26px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: var(--light);
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
  border: 1px solid var(--light-green);
  border-radius: 5px;
  background-color: var(--light-green);
  padding: 19px 32px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
form.feed-form input[type=submit]:hover {
  background-color: var(--light);
  color: var(--light-green);
}
@media (max-width: 576px) {
  form.feed-form input[type=submit] {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 15px;
  }
}

.inputBox {
  position: relative;
}
.inputBox input {
  width: 100%;
  color: var(--dark);
  outline: none;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 24px 32px;
}
@media (max-width: 400px) {
  .inputBox input {
    padding: 24px 20px;
  }
}
.inputBox input:not([type=submit]), .inputBox textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
}
.inputBox span {
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (max-width: 400px) {
  .inputBox span {
    left: 20px;
  }
}
.inputBox textarea {
  padding: 30px 32px;
  outline: none;
}
.inputBox textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputBox textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputBox textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputBox textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputBox textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 400px) {
  .inputBox textarea {
    padding: 30px 20px;
  }
}
.inputBox textarea ~ span {
  top: 40px;
}
.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
  font-size: 14px;
  top: 15px;
}

.contact-us {
  margin-top: var(--header-height);
  padding-top: 72px;
  padding-bottom: 188px;
  background-image: url("../img/product-bd-ellipse.webp"), url("../img/ellipse-contact-us.webp");
  background-repeat: no-repeat no-repeat;
  background-size: 1920px auto 748px 748px;
  background-position: center top, 70% 730px;
}
@media (max-width: 1400px) {
  .contact-us {
    padding-bottom: 120px;
  }
}
@media (max-width: 1200px) {
  .contact-us {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .contact-us {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 1920px auto 500px 500px;
    background-position: center top, 70% 1200px;
  }
}
.contact-us__title {
  max-width: 710px;
  margin-bottom: 54px;
}
.contact-us__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
@media (max-width: 768px) {
  .contact-us__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.contact-us__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 730px;
  flex: 0 1 730px;
}
@media (max-width: 1400px) {
  .contact-us__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(35% - 25px);
    flex: 0 1 calc(35% - 25px);
  }
}
@media (max-width: 768px) {
  .contact-us__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.contact-us__items {
  padding-top: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  row-gap: 90px;
}
@media (max-width: 1500px) {
  .contact-us__items {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 1400px) {
  .contact-us__items {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding-top: 0;
    row-gap: 25px;
  }
}
.contact-us__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 50px);
  flex: 0 1 calc(50% - 50px);
}
.contact-us__item a {
  display: inline-block;
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-us__item a:hover {
  color: var(--light-green);
}
@media (max-width: 768px) {
  .contact-us__item a {
    font-size: 18px;
    line-height: 22px;
  }
}
.contact-us__item svg {
  width: 24px;
  height: 24px;
}
.contact-us__item svg path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .contact-us__item svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 650px) {
  .contact-us__item {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.contact-us__name {
  color: var(--light-green);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .contact-us__name {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.contact-us__user {
  color: var(--dark);
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .contact-us__user {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.contact-us__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.contact-us__links:hover svg path {
  fill: var(--light-green);
}
@media (max-width: 650px) {
  .contact-us__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.contact-us__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 628px;
  flex: 0 1 628px;
}
@media (max-width: 1400px) {
  .contact-us__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(65% - 25px);
    flex: 0 1 calc(65% - 25px);
  }
}
@media (max-width: 768px) {
  .contact-us__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.page-404 {
  margin-top: var(--header-height);
  background-image: url("../img/product-bd-ellipse.webp");
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center top;
  padding-top: 97px;
  padding-bottom: 83px;
}
.page-404__wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-404__img {
  max-width: 584px;
  margin: 0 auto;
  margin-bottom: 69px;
}
@media (max-width: 768px) {
  .page-404__img {
    max-width: 80%;
    margin-bottom: 40px;
  }
}
@media (max-width: 400px) {
  .page-404__img {
    max-width: 100%;
  }
}
.page-404__title {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  margin-bottom: 17px;
}
@media (max-width: 576px) {
  .page-404__title {
    font-size: 36px;
    line-height: 48px;
  }
}
.page-404__subtitle {
  color: var(--blue-dark);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 38px;
}
@media (max-width: 576px) {
  .page-404__subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}
.page-404__btn {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  color: var(--light);
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  outline: none;
  border: 1px solid var(--light-green);
  border-radius: 4px;
  background-color: var(--light-green);
  padding: 12px 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.page-404__btn:hover {
  background-color: var(--light);
  color: var(--light-green);
}
@media (max-width: 576px) {
  .page-404__btn {
    padding: 10px 25px;
    font-size: 16px;
    margin-top: 15px;
  }
}

.footer {
  padding-top: 45px;
  padding-bottom: 40px;
  background-color: var(--blue-dark);
  color: var(--light);
  background-image: url("../img/rectangle-footer.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 768px) {
  .footer {
    background-position: 0% bottom;
  }
}
@media (max-width: 576px) {
  .footer {
    background-position: -50% 110%;
  }
}
.footer__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
@media (max-width: 1600px) {
  .footer__wrap {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__wrap {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 400px) {
  .footer__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 30px;
  }
}
.footer__item:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media (max-width: 1600px) {
  .footer__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media (max-width: 768px) {
  .footer__item:first-child {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
  }
}
.footer__item a:not([class=footer__logo]) {
  color: var(--light);
  position: relative;
}
.footer__item a:not([class=footer__logo]):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--light);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__item a:not([class=footer__logo]):hover:after {
  width: 100%;
}
.footer__item:not(:first-child) {
  padding-left: 70px;
}
@media (max-width: 1600px) {
  .footer__item:not(:first-child) {
    padding-left: 0;
  }
}
.footer__item:last-child ul > li {
  padding-left: 24px;
}
@media (max-width: 400px) {
  .footer__item:last-child ul > li {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.footer__item:last-child ul > li:first-child {
  background-image: url("../img/location-footer.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left top;
}
.footer__item:last-child ul > li:nth-child(2) {
  background-image: url("../img/phonefooter.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left top;
}
.footer__item:last-child ul > li:nth-child(3) {
  background-image: url("../img/message-footer.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left -2px;
}
@media (max-width: 400px) {
  .footer__item:last-child ul > li:nth-child(3) {
    background-position: left 0px;
  }
}
@media (max-width: 400px) {
  .footer__item:last-child ul > li {
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .footer__item:last-child {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 400px) {
  .footer__item:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__logo {
  margin-bottom: 25px;
  display: inline-block;
}
.footer__offer {
  max-width: 240px;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 400px) {
  .footer__offer {
    margin: 0 auto;
  }
}
.footer__title {
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 15px;
  margin-bottom: 20px;
}
.footer__link {
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.footer__link:not(:last-child) {
  margin-bottom: 12px;
}
.footer__copyright {
  margin-top: 36px;
}
.footer__copyright-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 400px) {
  .footer__copyright-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 20px;
    text-align: center;
  }
}
.footer__copyright-links a {
  color: var(--light);
  display: inline-block;
  margin-top: 5px;
}
.footer__copyright-links a:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .footer__copyright-links a {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .footer__copyright-links * {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__copyright-links .year {
    font-size: 16px;
  }
}
.footer__social {
  margin-right: 77px;
}
@media (max-width: 1600px) {
  .footer__social {
    margin-right: 0;
  }
}
.footer__social > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.footer__social > ul > li {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__social > ul > li:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
/*# sourceMappingURL=main.css.map */