@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

.section__title {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 54px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
  color: #283a54;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 36px;
  }
}

.section__subtitle {
  color: #283a54;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrap {
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

.breadcrumbs {
  padding: 20px 0;
}
.breadcrumbs ul {
  display: flex;
  list-style: none;
  gap: 5px;
}
.breadcrumbs ul li a {
  text-decoration: none;
  color: #283a54;
  font-size: 16px;
}
.breadcrumbs ul li a.active {
  color: #e74d3d;
  pointer-events: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
}
.header__left a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__left {
    display: flex;
    gap: 70px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 59px;
}
.header__nav ul li {
  list-style: none;
}
.header__nav ul li:nth-child(2) {
  position: relative;
}
.header__nav ul li:nth-child(2):hover ul {
  opacity: 1;
  visibility: visible;
}
.header__nav ul li ul {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  flex-direction: column;
  gap: 10px;
  height: auto;
  z-index: 999;
  width: 325px;
  text-align: left;
  align-items: flex-start;
  top: 30px;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.header__nav ul li ul li a:hover {
  color: #e74d3d;
}
.header__nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #283a54;
}
.header__right .language__dropdown {
  background: #e74d3d;
  border-radius: 20px;
  padding: 5px 20px;
  position: relative;
  color: white;
  transition: 0.1s border-radius ease-in-out;
}
.header__right .language__dropdown:hover {
  border-radius: 15px 15px 0 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header__right .language__dropdown:hover ul {
  opacity: 1;
}
.header__right .language__dropdown::after {
  content: "";
  position: absolute;
  background-image: url("../img/drop-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: -3px;
  top: 55%;
  transform: translate(-50%, -50%);
}
.header__right ul {
  list-style: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 30px;
  background: #e74d3d;
  width: 100%;
  border-radius: 0 0 15px 15px;
  transition: 0.2s all ease-in-out;
}
.header__right ul li {
  padding: 5px 0;
}
.header__right ul li a {
  color: white;
  position: relative;
  text-decoration: none;
  padding: 5px 20px;
}

.open--mobile-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .open--mobile-nav {
    display: block;
  }
}

.mobile__nav {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
  padding: 100px 30px;
  transform: translateY(100%);
}
.mobile__nav.active {
  transform: translateY(0);
  display: block;
}
.mobile__nav-list {
  display: flex;
  flex-direction: column;
  gap: 59px;
  transition: 0.5s all ease-in-out;
}
.mobile__nav-list img {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
}
.mobile__nav-list li {
  list-style: none;
}
.mobile__nav-list li:nth-child(3) {
  position: relative;
}
.mobile__nav-list li:nth-child(3):hover ul.submenu {
  opacity: 1;
  visibility: visible;
}
.mobile__nav-list li ul.submenu {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  flex-direction: column;
  gap: 20px;
  height: auto;
  z-index: 999;
  width: 325px;
  text-align: left;
  align-items: flex-start;
  top: 30px;
  left: 0;
  opacity: 0;
  display: flex;
  visibility: hidden;
}
.mobile__nav-list li ul.submenu li a:hover {
  color: #e74d3d;
}
.mobile__nav-list li a {
  text-decoration: none;
  font-size: 16px;
  color: #283a54;
}

.main__carousel {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__carousel {
    min-height: 260px;
  }
}
@media screen and (max-width: 768px) {
  .main__carousel .desktop-slide {
    display: none;
  }
}
.main__carousel .show-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .main__carousel .show-mobile {
    display: block;
  }
}

.swiper {
  height: 100%;
  min-height: 430px;
}
.swiper-img {
  width: 100%;
  height: 100%;
}
.swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .swiper {
    min-height: 300px;
  }
}
.swiper-slide__content {
  display: flex;
  justify-content: space-between;
  padding: 55px 85px 40px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .swiper-slide__content {
    flex-direction: column-reverse;
    padding: 10px;
    height: auto;
  }
}

.slide__content-text h4 {
  color: white;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .slide__content-text h4 {
    font-size: 24px;
  }
}
.slide__content-text p {
  font-family: "Montserrat Alternates", sans-serif;
  color: #ffa198;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .slide__content-text p {
    font-size: 18px;
  }
}
.slide__content-logo p {
  color: #e74d3d;
  font-size: 54px;
}
.slide__content-logo p span {
  color: white;
}

.slider__nav {
  display: flex;
  position: absolute;
  bottom: 50px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.slider__nav .swiper-pagination {
  text-align: left;
  display: flex;
  align-items: center;
}
.slider__nav .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}
.slider__nav .swiper-pagination .swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background: #9bbded;
  width: 12px;
  height: 12px;
}
.slider__nav-arrows {
  display: flex;
  gap: 25px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .slider__nav-arrows {
    display: none;
  }
}
.slider__nav-arrows .swiper-button-next,
.slider__nav-arrows .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  width: auto;
}
.slider__nav-arrows .swiper-button-next::after,
.slider__nav-arrows .swiper-button-prev::after {
  content: "";
  font-family: serif;
}

.carousel {
  padding: 0;
}
.carousel__btn {
  position: absolute;
  top: 374px;
  width: 100%;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .carousel__btn {
    display: none;
  }
}

.main--btn {
  border-radius: 50px;
  color: white;
  text-decoration: none;
  background: #e74d3d;
  display: flex;
  height: 82px;
  width: 100%;
  max-width: 354px;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}

.services {
  background-image: url(../img/service-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-bottom: 0;
}
.services__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.services__items-item {
  padding: 50px 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  height: 100%;
  min-height: 280px;
  width: 100%;
  max-width: 370px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .services__items-item {
    min-height: 250px;
    max-width: 100%;
    padding: 30px;
    background-size: contain;
  }
}
.services__items-item p {
  font-size: 36px;
  color: #141414;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}
.services__items-link {
  border-radius: 50%;
  background: #e74d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
  position: absolute;
  bottom: 35px;
  right: 5px;
}
@media screen and (max-width: 768px) {
  .services__items-link {
    width: 55px;
    height: 55px;
    bottom: 10px;
  }
}

.down {
  display: none;
}
@media screen and (max-width: 768px) {
  .down {
    display: block;
    position: absolute;
    right: 0;
    bottom: -10px;
  }
}

.card--1 {
  background-image: url(../img/card-1.png);
}

.card--2 {
  background-image: url(../img/card-2.png);
}

.card--3 {
  background-image: url(../img/card-3.png);
}

.card--4 {
  background-image: url(../img/card-4.png);
}

.card--5 {
  background-image: url(../img/card-5.png);
}

.about {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 0;
  }
}
.about__description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about__description {
    flex-direction: column;
  }
}
.about__description-left, .about__description-right {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .about__description-left, .about__description-right {
    max-width: 100%;
  }
}
.about__description-right p {
  font-size: 16px;
  color: #283a54;
  line-height: 24px;
}
.about__description-bottom {
  margin-top: 10px;
  position: relative;
}
.about__description-bottom .services__items-link {
  width: 64px;
  height: 64px;
  bottom: 0;
  right: 0;
}
.about__description-bottom img:not(.services__items-link img) {
  margin-top: -50px;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.about__description-bottom img.img-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .about__description-bottom {
    margin-top: 0;
  }
  .about__description-bottom img:not(.services__items-link img) {
    margin-top: 20px;
  }
  .about__description-bottom img.img-mobile {
    display: block;
  }
  .about__description-bottom img.img-desktop {
    display: none;
  }
  .about__description-bottom .list__breadcrumbs {
    display: none;
  }
  .about__description-bottom .services__items-link {
    bottom: 0;
  }
}

.list__breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .list__breadcrumbs {
    gap: 8px;
    margin-bottom: 20px;
  }
}
.list__breadcrumbs li {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #a1b1be;
}

.team {
  background-image: url(../img/background-line.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .team {
    padding-top: 0;
  }
}
.team .section__title {
  text-align: center;
}
.team .section__subtitle {
  text-align: center;
}
.team__members {
  position: relative;
}
.team__members-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .team__members-head {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .team__members-carousel .team__members-photo img {
    width: 100%;
    height: 100%;
  }
}
.team__members-img {
  width: 100%;
  max-width: 526px;
  position: relative;
}
.team__members-img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .team__members-img img {
    width: 100%;
    height: 100%;
  }
}
.team__members-img p {
  position: absolute;
  right: 40px;
  top: 40px;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #283a54;
}
@media screen and (max-width: 768px) {
  .team__members-img p {
    right: 20px;
    font-size: 20px;
  }
}
.team__members-img .job {
  background: radial-gradient(81.89% 348.92% at 18.11% 50%, #9bbded 0%, #d4e6ff 100%);
  padding: 13px 74px;
  border-radius: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .team__members-img .job {
    padding: 5px 44px;
  }
}
.team__members-img .job span {
  color: #242424;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.team__members-text {
  width: 100%;
  max-width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .team__members-text {
    max-width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
}
.team__members-text p {
  color: #e74d3d;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Montserrat Alternates", sans-serif;
  line-height: 54px;
}
.team__members-job {
  padding: 15px 30px;
  height: 115px;
  border-radius: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .team__members-job {
    text-align: center;
  }
}
.team__members-job p {
  text-transform: uppercase;
  font-family: "Montserrat Alternates", sans-serif;
  color: #283a54;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .team__members-job p {
    font-size: 16px;
  }
}
.team__members-job span {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #283a54;
  text-transform: lowercase;
}
.team__members-carousel .swiper-wrapper {
  width: 100vw;
}
.team__members-carousel .prev-slide,
.team__members-carousel .next-slide {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  background: #9bbded;
  position: absolute;
  top: 40%;
  z-index: 99;
  transform: translateY(-40%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .team__members-carousel .prev-slide,
  .team__members-carousel .next-slide {
    width: 45px;
    height: 45px;
  }
  .team__members-carousel .prev-slide img,
  .team__members-carousel .next-slide img {
    width: 60%;
    height: 60%;
  }
}
.team__members-carousel .next-slide {
  right: 0;
}

.blue {
  background: #e8f5ff;
}

.pink {
  background: #ffa198;
}

.partners .section__title {
  text-align: center;
}
.partners .section__subtitle {
  text-align: center;
}
.partners__grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "label0 label0 label2 label3" "label1 label1 label2 label3";
  gap: 25px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .partners__grid {
    display: flex;
    flex-direction: column;
  }
}
.partners__grid-item {
  box-shadow: 0px 10px 26px 16px rgba(155, 189, 237, 0.18);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 94px;
}
@media screen and (max-width: 768px) {
  .partners__grid-item {
    height: 200px;
  }
  .partners__grid-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.partners__grid .grid-item-1 {
  grid-area: label0;
}
.partners__grid .grid-item-2 {
  grid-area: label1;
}
.partners__grid .grid-item-3 {
  grid-area: label2;
}
.partners__grid .grid-item-4 {
  grid-area: label3;
}

.customers .section__title,
.customers .section__subtitle {
  text-align: center;
}
.customers .section__subtitle {
  font-size: 26px;
  font-weight: 600;
  font-family: "Montserrat Alternates", sans-serif;
}
.customers__grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: "label0 label1 label1 label3" "label0 label2 label2 label3";
  gap: 25px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .customers__grid {
    display: flex;
    flex-direction: column;
  }
}
.customers__grid-item {
  box-shadow: 0px 10px 26px 16px rgba(155, 189, 237, 0.18);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
}
@media screen and (max-width: 768px) {
  .customers__grid-item {
    height: 200px;
  }
  .customers__grid-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.customers .customer-item-1 {
  grid-area: label0;
}
.customers .customer-item-2 {
  grid-area: label1;
}
.customers .customer-item-3 {
  grid-area: label2;
}
.customers .customer-item-4 {
  grid-area: label3;
}

.news__items {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .news__items {
    flex-direction: column;
    gap: 10px;
  }
}
.news__items-left, .news__items-right {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .news__items-left, .news__items-right {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news__items-left img {
    width: 100%;
    height: 100%;
  }
}
.news__items-item {
  position: relative;
  margin-top: -90px;
}
@media screen and (max-width: 768px) {
  .news__items-item {
    margin-top: -20px;
  }
}
.news__items-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
}
.news__items-content p {
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .news__items-content p {
    font-size: 22px;
  }
}
.news__items-content span {
  color: white;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .news__items-content span {
    display: none;
  }
}
.news__items-right {
  display: grid;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .news__items-right {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
}
.news__items-right .news__items-item {
  border-radius: 50px;
}
.news__items-right .news-item-1 {
  grid-area: 1/1/4/2;
  background: #e74d3d;
  padding: 30px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.news__items-right .news-item-1 .date {
  margin: 0 auto auto;
}
.news__items-right .news-item-1 p {
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
.news__items-right .news-item-1 .read-more {
  margin: auto auto 0;
}
.news__items-right .news-item-2 {
  grid-area: 1/2/3/4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__items-right .news-item-2 {
    margin-top: 0;
  }
}
.news__items-right .news-item-2 .news__item-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.news__items-right .news-item-2 .news__item-content .date {
  margin: 0 0 auto;
}
.news__items-right .news-item-2 .news__item-content p {
  color: white;
  font-weight: 600;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
}
.news__items-right .news-item-2 .news__item-content .read-more {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__items-right .news-item-2 img {
    width: 100%;
    height: 100%;
  }
}
.news__items-right .news-item-3 {
  grid-area: 3/2/4/4;
  background: #9bbded;
  margin-top: -40px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .news__items-right .news-item-3 {
    margin-top: 0;
    flex-direction: column;
  }
}
.news__items-right .news-item-3 p {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 36px;
}
.news__items-right .news-item-3 .links {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.news__items-right .news-item-3 .links .date {
  background: white;
  color: #e74d3d;
}
.news__items-right .news-item-3 .links .read-more {
  color: #e74d3d;
  padding: 5px 15px;
}
.news .see-all {
  border-radius: 50px;
  background: #caddf9;
  padding: 25px 57px;
  margin: auto -29px -29px auto;
}
@media screen and (max-width: 768px) {
  .news .see-all {
    padding: 10px 20px;
  }
}
.news .see-all a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #283a54;
}

.date {
  color: #283a54;
  background: #ffa198;
  font-size: 16px;
  font-weight: 600;
  border-radius: 32px;
  display: inline-block;
  padding: 8px;
  margin: 0 0 auto auto;
}

.read-more {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  background: #e74d3d;
  border-radius: 30px;
  padding: 5px 25px;
  height: 35px;
  line-height: 0;
  margin: auto auto 0 0;
}

.white--bg {
  background: #fff;
  color: #283a54;
}

.contact {
  background-image: url(../img/contact-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.contact-cards {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-cards {
    display: block;
    margin-top: 30px;
  }
  .contact-cards .contact-address-items {
    flex-direction: column;
  }
  .contact-cards .contact-address-item {
    max-width: 100%;
  }
}
.contact .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact .wrap {
    flex-direction: column;
  }
}
.contact__form {
  max-width: 415px;
  width: 100%;
  border-radius: 50px;
  background: #fff;
  padding: 40px 48px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    max-width: 100%;
    padding: 25px;
  }
}
.contact__form h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat Alternates", sans-serif;
  color: #283a54;
  padding-bottom: 10px;
}
.contact__form p {
  font-size: 16px;
  color: #486287;
  padding-bottom: 30px;
}
.contact__form form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
.contact__form form label {
  position: relative;
}
.contact__form form label span {
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 11px;
  color: #606060;
  background: #fff;
  display: block;
  padding: 0 10px;
}
.contact__form form label input {
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  width: 100%;
  max-width: 320px;
  height: 48px;
  padding-left: 30px;
  outline: none;
}
.contact__form form label textarea {
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  width: 100%;
  max-width: 320px;
  height: 150px;
  padding: 15px;
  outline: none;
  resize: none;
}
.contact__form form label button {
  background: #e74d3d;
  color: white;
  border: none;
  border-radius: 15px;
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.map {
  position: relative;
}
@media screen and (max-width: 768px) {
  .map {
    display: none;
  }
}
.map #address-2 {
  width: 250px;
}
.map .popup {
  display: none;
  position: absolute;
  background-color: #3d3d3d;
  padding: 10px 25px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.map .popup ul {
  list-style: none;
}
.map .popup ul li {
  color: white;
  font-size: 14px;
  padding: 3px;
}
.map .popup ul li span {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 0;
  }
}
.faq .swiper-wrapper {
  height: 480px;
  padding: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .faq .swiper-wrapper {
    height: auto;
    padding: 0;
  }
}
.faq__nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 50px;
  margin-top: 50px;
}
.faq__carousel .prev-slide,
.faq__carousel .next-slide {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  background: #e74d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.faq__slide {
  background: #caddf9;
  display: flex;
  border-radius: 50px;
  gap: 55px;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .faq__slide {
    max-width: 100%;
    gap: 10px;
    padding: 20px;
  }
}
.faq__slide-img {
  border-radius: 50px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .faq__slide-img {
    display: none;
  }
}
.faq__slide-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__text {
  display: flex;
  flex-direction: column;
}
.faq__text ul {
  max-width: 70%;
  margin: auto 0 100px 0;
}
@media screen and (max-width: 768px) {
  .faq__text ul {
    max-width: 100%;
    margin: 20px 0;
    list-style: none;
  }
}
.faq__head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 80px 0 0;
}
@media screen and (max-width: 768px) {
  .faq__head {
    padding: 0;
  }
}
.faq__head h5 {
  font-size: 36px;
  font-weight: 800;
  color: #283a54;
  max-width: 70%;
  font-family: "Montserrat Alternates", sans-serif;
}
@media screen and (max-width: 768px) {
  .faq__head h5 {
    font-size: 16px;
  }
}
.faq__head p {
  font-size: 54px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
}
@media screen and (max-width: 768px) {
  .faq__head p {
    font-size: 20px;
  }
}

footer {
  background: radial-gradient(406.11% 1232.52% at 2.69% 0%, #192434 0%, #ffa198 100%);
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 30px 20px;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
  }
}
.footer__content-left {
  display: flex;
  width: 100%;
  max-width: 30%;
  flex-direction: column;
}
.footer__content-left p {
  color: white;
  font-size: 14px;
  padding-bottom: 30px;
  padding-top: 15px;
}
.footer__content-left .supports {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__content-left .supports img {
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .footer__content-left {
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.footer__content-right {
  width: 100%;
  max-width: 70%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content-right {
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.footer__content-social {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.footer__content-social ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding-bottom: 10px;
}
.footer__content-column {
  width: 100%;
  max-width: 33.3333%;
}
@media screen and (max-width: 768px) {
  .footer__content-column {
    max-width: 46%;
  }
}
.footer__content-column:nth-child(2) {
  max-width: 170px;
}
@media screen and (max-width: 768px) {
  .footer__content-column:nth-child(2) {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.footer__content-column:nth-child(3) {
  min-width: 240px;
}
.footer__content-column h4 {
  color: white;
  font-weight: 700;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 20px;
  padding-bottom: 15px;
}
.footer__content-column ul {
  list-style: none;
}
.footer__content-column ul li {
  margin-bottom: 5px;
}
.footer__content-column ul li span {
  color: white;
  font-size: 14px;
}
.footer__content-column ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.footer__content-column ul li a:hover {
  text-decoration: underline;
}
.footer__copy {
  text-align: center;
}
.footer__copy p {
  color: white;
  font-size: 14px;
}

.service {
  padding-top: 20px;
}
.service__header {
  display: flex;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service__header {
    padding-bottom: 10px;
    flex-direction: column;
  }
}
.service__header-description {
  background: #e74d3d;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 15px 0px 15px 0px rgba(0, 0, 0, 0.3019607843) inset;
}
@media screen and (max-width: 768px) {
  .service__header-description {
    padding: 40px;
  }
}
.service__header-description h3 {
  font-size: 54px;
  font-family: "Montserrat Alternates", sans-serif;
  text-transform: uppercase;
  color: white;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__header-description h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .service__header-img img {
    width: 100%;
    height: 100%;
  }
}
.service__body .section__title {
  text-transform: none;
  font-size: 36px;
  padding-bottom: 60px;
}
.service__body-items {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.service__body-item {
  border-radius: 50px;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  width: 100%;
  max-width: 306px;
}
.service__body-item h5 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.service__body-item .divider {
  width: 100%;
  height: 1px;
  background: #141414;
  margin: 40px auto 25px;
}
.service__body-item p {
  font-size: 16px;
  line-height: 30px;
}

.service-item-1 {
  background-image: url(../img/service-bg-1.png);
}

.service-item-2 {
  background-image: url(../img/service-bg-2.png);
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .service-item-2 {
    margin-top: 0;
  }
}

.service-item-3 {
  background-image: url(../img/service-bg-3.png);
}

.service--body {
  padding: 0 0 80px 0;
  background: url(../img/service-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
}

.about-us {
  padding-top: 0;
}
.about-us .about__content {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-us .about__content {
    flex-direction: column-reverse;
  }
  .about-us .about__content .desktop-img {
    display: none;
  }
  .about-us .about__content .mobile-img {
    display: block;
    position: relative;
    order: 2;
  }
}
.about-us .about__content p {
  max-width: 50%;
  font-size: 16px;
  color: #283a54;
  line-height: 26px;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .about-us .about__content p {
    max-width: 100%;
    margin-top: 30px;
  }
}
.about-us .about__content img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about-us .about__content img {
    margin-top: 0;
  }
}
.about-us .list__breadcrumbs {
  max-width: 50%;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .about-us .list__breadcrumbs {
    order: 2;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.values {
  padding-top: 0;
  padding-bottom: 0;
}
.values__content {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .values__content {
    flex-direction: column-reverse;
  }
}
.values__content-left, .values__content-right {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .values__content-left, .values__content-right {
    max-width: 100%;
  }
}
.values__content-text {
  padding-bottom: 40px;
}
.values__content-text span {
  font-family: "Montserrat Alternates", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  color: #283a54;
  font-weight: 600;
}
.values__content-text p {
  font-size: 16px;
  color: #283a54;
  padding-top: 10px;
}
.values__content-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.values__content-right img {
  width: 100%;
  max-width: 48%;
}
@media screen and (max-width: 768px) {
  .values__content-right {
    gap: 0;
  }
  .values__content-right img {
    width: 100%;
    max-width: 50%;
    padding: 10px;
  }
}

.contact-us {
  padding-bottom: 0;
  padding-top: 0;
}
.contact-us-content .section__title {
  text-transform: none;
  font-size: 36px;
  padding-bottom: 20px;
}
.contact-us-content .section__subtitle {
  text-align: center;
}

.contact-address {
  background-image: url(../img/tiles-bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}
.contact-address-items {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact-address-items {
    flex-direction: column;
  }
}
.contact-address-item {
  width: 100%;
  max-width: 50%;
  border-radius: 50px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .contact-address-item {
    max-width: 100%;
  }
}
.contact-address-item p {
  font-size: 36px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 800;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
}
.contact-address-item ul {
  list-style: none;
}
.contact-address-item ul li {
  font-size: 24px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact-address-item ul li {
    font-size: 18px;
  }
}
.contact-address-item ul li span {
  font-weight: 600;
}

.fill-pink {
  background: linear-gradient(105.64deg, rgba(232, 232, 232, 0.41) 3.23%, rgba(255, 216, 204, 0.5) 98.34%);
  border: 2px solid;
  border-image-source: linear-gradient(106.07deg, rgba(255, 255, 255, 0.2) 3.73%, rgba(255, 161, 152, 0.26) 96.22%);
}

.fill-blue {
  background: linear-gradient(105.64deg, rgba(232, 232, 232, 0.41) 3.23%, rgba(155, 189, 237, 0.63) 98.34%);
  border: 2px solid;
  border-image-source: linear-gradient(106.07deg, rgba(255, 255, 255, 0.2) 3.73%, rgba(155, 189, 237, 0.265) 96.22%);
}

.news-bg {
  background-image: url(../img/news-page-bg.svg);
  background-position: center 300px;
  background-repeat: no-repeat;
}

.news-page-items {
  display: grid;
  gap: 25px;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .news-page-items {
    display: flex;
    flex-direction: column;
    margin-top: -40px;
  }
  .news-page-items .news-page-item-1 img {
    width: 100%;
    height: 100%;
  }
  .news-page-items .news-page-item-1 span {
    display: none;
  }
  .news-page-items .news-item-3 .news-item-top {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .news-page-items .news-item-4 {
    margin-top: 0 !important;
    display: block !important;
  }
  .news-page-items .news-item-5 .news-page-content p {
    font-size: 16px;
  }
  .news-page-items .news-item-6 {
    display: none !important;
  }
}
.news-page-item {
  position: relative;
  border-radius: 50px;
}
.news-page-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
}
.news-page-content p {
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
  font-weight: 600;
}
.news-page-content span {
  color: white;
  font-size: 24px;
}
.news-page .news-page-item-1 {
  grid-area: 1/1/3/3;
}
.news-page .news-item-2 {
  grid-area: 1/3/3/4;
  background: #e74d3d;
  padding: 30px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.news-page .news-item-2 .date {
  margin: 0 auto auto;
}
.news-page .news-item-2 p {
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
.news-page .news-item-2 .read-more {
  margin: auto auto 0;
}
.news-page .news-item-3 {
  grid-area: 1/4/2/6;
  box-shadow: 0px 3px 7px 0px rgba(16, 76, 173, 0.1019607843);
  background: #fff;
  padding: 30px;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}
.news-page .news-item-3 .news-item-top {
  display: flex;
}
.news-page .news-item-3 .news-item-top p {
  color: #e74d3d;
  font-size: 36px;
  font-weight: 700;
  font-family: "Montserrat Alternates", sans-serif;
}
.news-page .news-item-3 .news-page-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.news-page .news-item-3 .news-page-content .date {
  margin: 0 0 auto;
}
.news-page .news-item-3 .news-page-content p {
  color: white;
  font-weight: 600;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 36px;
}
.news-page .news-item-3 .news-page-content .read-more {
  margin: 0 auto;
}
.news-page .news-item-4 {
  grid-area: 2/4/3/6;
  background: #9bbded;
  margin-top: -40px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 50px;
}
.news-page .news-item-4 p {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 36px;
}
.news-page .news-item-4 .links {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.news-page .news-item-4 .links .date {
  background: white;
  color: #e74d3d;
}
.news-page .news-item-4 .links .read-more {
  color: #e74d3d;
  padding: 5px 15px;
}
.news-page .news-item-5 {
  grid-area: 3/1/4/3;
  max-height: 300px;
}
.news-page .news-item-5 .news-page-content {
  height: auto;
  gap: 40px;
}
.news-page .news-item-5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.news-page .news-item-5 .date {
  background: white;
  color: #e74d3d;
}
.news-page .news-item-5 .read-more {
  color: #e74d3d;
  padding: 5px 15px;
}
.news-page .news-item-6 {
  grid-area: 3/3/4/6;
  display: flex;
  position: relative;
}
.news-page .news-item-6 img {
  width: 100%;
  height: 100%;
}
.news-page .news-item-6 .see-all {
  margin: initial;
  position: absolute;
  bottom: 0;
  right: 0;
}
.news-page .news-item-6 .news-item-info {
  position: absolute;
  background: #e74d3d;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 245px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: flex;
  flex-direction: column;
}
.news-page .news-item-6 .news-item-info p {
  color: white;
  font-size: 32px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
}

.detailed__header {
  background-image: url(../img/full-news-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.detailed__header .section__title {
  max-width: 700px;
}
.detailed-post {
  background-image: url(../img/news-detailed-bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.detailed-post .post {
  background: radial-gradient(100% 352.79% at 0% 3.7%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 0px 10px 26px 16px rgba(155, 189, 237, 0.18);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  border: 2px solid;
  border-image-source: linear-gradient(105.42deg, rgba(255, 255, 255, 0.56) 0.34%, rgba(255, 255, 255, 0.56) 98.15%);
}
@media screen and (max-width: 768px) {
  .detailed-post .post {
    flex-direction: column-reverse;
  }
}
.detailed-post .post__text {
  max-width: 70%;
  width: 100%;
  padding: 45px 60px;
}
@media screen and (max-width: 768px) {
  .detailed-post .post__text {
    max-width: 100%;
    padding: 20px;
  }
}
.detailed-post .post__text p {
  font-size: 54px;
  color: #e74d3d;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .detailed-post .post__text p {
    font-size: 32px;
  }
}
.detailed-post .post__text span {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.detailed-post .post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .detailed-post .post__image .desktop-image {
    display: none;
  }
}
.detailed-post .post__image .mobile-image {
  display: none;
}
@media screen and (max-width: 768px) {
  .detailed-post .post__image .mobile-image {
    display: block;
  }
}

.recomendation {
  padding-top: 0;
}
.recomendation__title {
  border-bottom: 2px solid #caddf9;
  padding: 10px 0;
}
.recomendation__title p {
  color: #6f8eba;
  font-size: 24px;
  font-family: "Montserrat Alternates", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.recomendation .news-page-items {
  margin-top: 40px;
}

.message {
  height: 100%;
  min-height: 150px;
}

.overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  max-width: 500px;
  max-height: 300px;
  padding: 20px;
  border-radius: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
}
.modal__header {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 0 0 20px 0;
}
.modal__header-close button {
  background: none;
  border: none;
  font-size: 16px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.modal__header-close button img {
  width: 100%;
  height: 100%;
}
.modal__body {
  text-align: center;
  height: 100%;
}
.modal__body p {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}
.modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__footer button {
  padding: 10px 25px;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  background: #283a54;
  color: white;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}/*# sourceMappingURL=main.css.map */
.header__nav ul li {
  position: relative;
}

.header__nav ul li ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.2s ease-in-out;
}
.header__nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.header__nav ul li ul li a {
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  display: block;
  white-space: nowrap;
}
.header__nav ul li ul li a:hover {
  background-color: #f0f0f0;
  color: #003366;
}
.header__nav ul li.has-submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.service-box {
  max-height: 400px;
  overflow: hidden;
}
.service-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 100%;
}
.service__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-height: 400px;
  overflow: hidden;
}
.service__header-img img {
  max-height: 350px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.service__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
}
.service__header-description {
  flex: 1;
}
.service__header-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
.service__header-img img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}