html {
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-family: 'Martian Mono', 'Arial', sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #007bff;
}

button, html input[type=button], input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}

button {
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05) !important;
}



.header {
  z-index: 9999999999;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
  border-bottom: 1px solid #eee;
  height: 64px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px -2px rgba(24, 39, 75, 0.12), 0px 4px 4px -2px rgba(24, 39, 75, 0.08);
  background: #ffffff;
}

.header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.header__logo {
  max-width: 90%;
}

.header__logo--habr {
  width: 29%;
}

.header__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.header__link-logo {
  transition: all 0.3s ease;
  line-height: 1;
  margin-top: 2px;
}

.header__link-logo:hover {
  opacity: 0.7;
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__links {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.header__links-item {
  height: 100%;
}

.header__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  margin-left: 0px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.header__logo-link {
  margin-top: 7px;
}

.header__link::after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #33BBFF;
  opacity: 0;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #33BBFF;
}

.header__link:hover::after {
  opacity: 1;
}

.header__btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__btn {
    display: block;
    width: 30px;
    height: 30px;
    background-size: 30px;
    border: none;
    background-repeat: no-repeat;
    background-color: transparent;
  }

  .header__btn-open {
    background-image: url('open-menu.svg');
  }

  .header__btn-close {
    background-image: url('close-menu.svg');
  }

  .hidden {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .opened .header__nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #FFFFFF;
    width: 100%;
    top: 54px;
    left: 0;
    z-index: 99999;
  }

  .opened .header__links {
    padding: 0px;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #FFFFFF;
    width: 100%;
    top: 54px;
    left: 0;
    z-index: 99999;
    box-shadow: 0px 2px 4px -2px rgba(24,39,75,0.12), 0px 4px 4px -2px rgba(24,39,75,0.08);
  }
}

@media screen and (max-width: 480px) {
  .header {
    padding: 15px;
    max-width: 100%;
    width: 100%;
  } 

  .header--opened .header__links {
    padding: 32px 15px;
  }
}




.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px 40px;
  background: url('hero.png') center no-repeat;
  background-position-x: calc(50% + 520px);
  background-position-y: 40px;
  color: #1D1D1B;
}

.hero__inner {
  max-width: 1200px;
  width: 100%;
  z-index: 999;
}

.hero__h1 {
  font-size: 66px;
  line-height: 76px;
  color: #1D1D1B;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 560px;
}

.hero__h2 {
  font-size: 42px;
  line-height: 1;
  color: #1D1D1B;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 18px;
}


.hero .buttons {
  margin-top: 46px;
  display: flex;
  gap: 24px;
}

.hero button {
  font-family: 'Inter', 'Arial', sans-serif;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 24px;
  height: 64px;
}

.hero .btn-blue {
  background: #33BBFF;
  color: #fff;
  box-shadow: 0px 8px 32px 0 #56C7FF;
}

.hero .btn-light {
  background: #fff;
  border: 2px solid #33BBFF;
  color: #33BBFF;
}

.hero__spot-top {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.hero__spot-bottom {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 10%;
  width: 80%;
}

@media screen and (min-width: 1900px){
  .hero {
    background-position-x: calc(50% + 520px);
  }
}

@media screen and (max-width: 1200px){
  .hero {
    background-position-x: calc(50% + 620px);
  }

  .hero__spot-bottom {
    left: 10px;
    width: 50%;
  }
}

@media screen and (max-width: 980px) {
  .hero {
    background-position-x: calc(50% + 620px);
  }

  .hero__spot-bottom {
    left: 10px;
    width: 50%;
  }

  .hero__h1 {
    font-size: 56px;
  }

  .hero__h2 {
    font-size: 36px;
  }

  .hero {
    background-position-x: calc(50% + 540px);
  }
}

@media screen and (max-width: 760px) {
  .hero {
    background-position-x: calc(-120px);
    background-position-y: 100px;
    background-size: 680px;
    background-image: url(hero--mobile.png);
    padding-bottom: 40px;
  }

  .hero__content {
    margin-top: 360px;
  }

  .hero__spot-bottom {
    left: 10px;
    width: 50%;
  }

  .hero__h1 {
    font-size: 56px;
  }

  .hero__h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 620px) {
  .hero {
    background-position-x: calc(120%);
    background-position-y: 100px;
    background-size: 680px;
    background-image: url(hero--mobile.png);
    padding-bottom: 40px;
  }

  .hero .buttons {
    margin-top: 40px;
  }

  .hero button {
    height: 74px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    background-size: 570px;
    padding: 135px 20px 80px 20px;
  }

  .hero__h1 {
    line-height: 68px;
  }

  .hero__content {
    margin-top: 310px;
  }
}


@media screen and (max-width: 440px) {
  .hero {
    background-size: 570px;
    padding: 135px 20px 40px 20px;
  }

  .hero__content {
    margin-top: 310px;
  }

  .hero__h1 {
    font-size: 48px;
    line-height: 1.25;
  }

  .hero__h2 {
    font-size: 32px;
  }

  .hero .buttons {
    flex-direction: column;
    gap: 18px;
  }

  .hero .btn-blue,
  .hero .btn-light {
    width: 100%;
  }
}





section {
  padding: 60px 40px;
}


h2 {
  font-size: 60px;
  line-height: 1.1;
}




.stats {
  display: flex;
  justify-content: center;
  background-color: #ECEFF3;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.stats__inner {
  position: relative;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stats__inner::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -100px;
  background-image: url('[.svg');
  background-repeat: no-repeat;
  width: 110px;
  height: 306px;
  z-index: 0;
}

.stats__inner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -90px;
  background-image: url('].svg');
  background-repeat: no-repeat;
  width: 77px;
  height: 198px;
  z-index: 0;
}

.stats__h2 {
  font-size: 60px;
  text-align: center;
  font-weight: 500;
}

.stats__cards {
  display: flex;
  gap: 24px;
  z-index: 9;
}

.stats__card {
  background-color: #111;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  padding: 24px 32px 40px 32px;
  width: 100%;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.3);
}

.stats__icon {
  width: 64px;
  height: 64px;
}

.stats__number {
  margin: 0;
  margin-top: 16px;
  font-size: 50px;
  line-height: 1;
}

.stats__desc--bold {
  margin: 0;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.stats__desc {
  margin: 0;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
  opacity: 0.6;
  font-weight: 400;
}

@media screen and (max-width: 1400px) {
  .stats__inner::before {
    left: -5%;
  }

  .stats__inner::after {
    right: -5%;
  }
}

@media screen and (max-width: 1140px) {
  .stats__cards {
    display: grid;
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .stats__card {
    padding: 18px 22px 27px 22px;
    box-sizing: border-box;
  }

  .stats__number {
    font-size: 36px;
    margin-top: 5px;
  }

  .stats__desc--bold,
  .stats__desc {
    font-size: 16px;
    margin-top: 8px;
  }

  .stats__icon {
    width: 56px;
    height: 56px;
  }
}

@media screen and (max-width: 980px) {
  .stats__h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 530px) {
  .stats__cards {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 480px) {
  .stats {
    padding: 60px 20px;
  }

  .stats__inner {
    gap: 36px;
  }

  .stats__h2 {
    font-size: 36px;
  }

  .stats__inner::before {
    left: -11%;
    top: -90px;
    transform: rotate(10deg) scale(0.7);
  }

  .stats__inner::after {
    right: -12%;
    bottom: -70px;
    transform: rotate(10deg) scale(0.8);
  }
}


@media screen and (max-width: 370px) {
  
}




.articles {
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
  gap: 32px;
  background-image: url('articles__bg.png');
  background-repeat: no-repeat;
}

.articles__inner {
  position: relative;
  height: 100%;
  padding-bottom: 50px !important;
  margin: 0 !important;
}

.articles__h2 {
  text-align: center;
}

.articles__articles {
  max-width: 1200px;
  width: auto;
  margin-top: 42px;
}

.articles__article {
  color: #1D1D1B;
  border-radius: 16px;
  max-width: 380px;
  box-sizing: border-box;
  padding: 30px 32px;
  border-radius: 16px;
  margin: 0 0px;
  background-color: #ffffff;
  margin-left: 6px;
  transition: all 0.3s ease-in-out;
}

.articles__article:hover {
  transform: scale(1.05) !important;
}

.articles__cover {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.articles__title {
  color: #1D1D1B;
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  margin-top: 10px;
}

.articles__desc {
  color: #1D1D1B;
  margin: 0;
  margin-top: 16px;
  line-height: 1.3;
}

.articles__author {
  color: #1D1D1B;
  margin: 0;
  margin-top: 16px;
  line-height: 1.3;
}

.articles__read {
  color: #1D1D1B;
  margin: 0;
  margin-top: 12px;
}

.articles__read--blue {
  font-size: 19px;
  color: #33BBFF;
}

.articles__author--bold,
.articles__bold {
  font-weight: 700;
}

.articles__pagination {
  bottom: 0px;
  margin: auto;
  margin-top: 12px;
}

.articles__prev {
  z-index: 999;
  min-width: 27px;
  height: 21px;
  background-image: url('arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

.articles__prev:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.articles__next {
  z-index: 999;
  min-width: 27px;
  height: 21px;
  background-image: url('arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(-1, -1);
  transition: all 0.3s ease-in-out;
}

.articles__next:hover {
  cursor: pointer;
  transform: scale(-1.2);
}

.articles .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.articles .swiper-pagination-bullet:hover {
  background-color: #33BBFF;
}

.articles .swiper-pagination-bullet-active {
  width: 70px;
  transition: all 0.3s ease;
  background-color: #33BBFF;
}


@media screen and (max-width: 1280px) {
  .articles__article {
    padding: 20px 22px;
    margin-left: 0px;
  }

  .articles__title {
    font-size: 21px;
  }

 .articles__desc {
    margin-top: 14px;
  }
}

@media screen and (max-width: 1080px) {
  .articles__author {
    margin-top: 10px;
  }

  .articles__cover {
    border-radius: 8px;
  }
}

@media screen and (max-width: 980px) {
  .articles__articles {
    margin-top: 32px;
  }

  .articles__h2 {
    font-size: 42px;
  }



  .articles__title {
    font-size: 21px;
  }

  .articles__desc,
  .articles__author,
  .articles__read {
    font-size: 14px;
  }
}

@media screen and (max-width: 820px) {
  .articles {
    padding: 60px 20px;
    gap: 20px;
  }
}

@media screen and (max-width: 640px) {
  .articles {
    padding: 60px 20px;
    gap: 20px;
    background-image: url('articles__bg--mobile.png');
  }

  .articles__title {
    font-size: 18px;
  }

  .articles__desc {
    margin-top: 12px;
  }
}

@media screen and (max-width: 590px) {
    .articles {
        padding: 60px 15px;
        gap: 15px;
    }

    .articles__article {
      max-width: 100%;
    }

    .articles__prev,
    .articles__next {
      display: none;
    }

    .articles__title {
      font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
  .articles {
    padding: 30px 15px;
  }
  .articles__h2 {
    font-size: 36px;
  }
}




@media screen and (max-width: 480px) {
  .hero {
    background-size: 460px;
    padding: 135px 20px 80px 20px;
    background-position-x: -80px;
    background-position-y: 85px;
  }

  .hero__spot-top {
    width: 100%;
  }

  .hero__h1 {
    font-size: 40px;
    line-height: 1.25;
  }

  .hero__h2 {
    font-size: 26px;
  }

  .hero__content {
    margin-top: 220px;
  }

  .hero .buttons {
    margin-top: 32px;
  }

  .hero button {
    height: 68px;
  }

}

@media screen and (max-width: 400px) {
  .hero {
    background-position-x: calc(180%);
    background-size: 110%;
    padding: 40px 20px 40px 20px;
  }

  .hero__content {
    margin-top: 305px;
  }
  
  .hero__h1 {
    font-size: 40px;
  }

  .hero .buttons {
    margin-top: 26px;
    gap: 10px;
  }

  .hero button {
    font-size: 19px;
  }
}

@media screen and (max-width: 400px) {
  .hero__content {
      margin-top: 280px;
  }
}




.pilot {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  background-color: #f6f6f6;
}

.pilot__inner {
  position: relative;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pilot__inner::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: -25px;
  width: 76px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url('star-end.svg');
  z-index: -1;
}

.pilot__top {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.pilot__h2 {
  position: relative;
  font-size: 60px;
  line-height: 1.25;
  max-width: 400px;
}

.pilot__h2::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -115px;
  width: 182px;
  height: 173px;
  background-repeat: no-repeat;
  background-image: url('star.svg');
  z-index: -1;
}

.pilot__lead {
  font-family: 'Inter', 'Arial', sans-serif;
  font-size: 21px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}

.pilot__quote {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.pilot__quote-text {
  font-family: 'Inter', 'Arial', sans-serif;
  font-size: 24px;
  line-height: 32px;
  border: 2px solid #33BBFF;
  border-radius: 30px;
  padding: 30px;
  border: 2px solid #33BBFF;
  border-radius: 30px;
  padding: 30px;
  margin: 0;
  max-width: 770px;
  height: fit-content;
}

.pilot__quote-author {
  position: relative;
}

.pilot__quote-photo {
  position: absolute;
  z-index: 0;
  top: -17%;
  left: -39%;
  width: 150%;
  height: auto;
}

.pilot__quote-name {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin: 0;
  margin-top: 96%;
}

.pilot__quote-post {
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  margin: 0;
  margin-top: 10px;
}

@media screen and (max-width: 1280px) {
  .pilot__h2::after {
    top: -40px;
    left: -45px;
  }

  .pilot__inner::after {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .pilot__quote-author {
    min-width: 256px;
  }

  .pilot__quote-photo {
    width: 384px;
    height: 376px;
  } 
}

@media screen and (max-width: 1100px) {
  .pilot__quote-text {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    border: 2px solid #33BBFF;
    border-radius: 30px;
    padding: 30px;
    border: 2px solid #33BBFF;
    border-radius: 30px;
    padding: 30px;
    margin: 0;
    max-width: 770px;
    height: fit-content;
  }

  .pilot__quote-name {
    font-size: 24px;
  }

  .pilot__quote-post {
    font-size: 15px;
    margin-top: 7px;
  }

  .pilot__quote-text {
    padding: 24px;
  }

  .pilot__inner::after {
    display: block;
    bottom: 71px;
  }
}


@media screen and (max-width: 980px) {
  .pilot__h2 {
    font-size: 42px;
  }

  .pilot__lead {
    font-size: 18px;
    line-height: 25px;
  }

  .pilot__quote-text {
    padding: 21px;
    font-size: 16px;
  }

  .pilot__quote-photo {
    width: 310px;
    height: auto;
    left: -21%;
    bottom: 38%;
  }

  .pilot__quote-name {
    margin-top: 80%;
  }

  .pilot__inner::after {
    bottom: -44px;
  }
}

@media screen and (max-width: 780px) {
  .pilot__inner {
    gap: 30px;
  }

  .pilot__top {
    gap: 20px;
    flex-direction: column;
  }

  .pilot__h2 {
    max-width: 100%;
  }

  .pilot__quote {
    flex-direction: column;
  }

  .pilot__quote-photo {
    width: 310px;
    height: auto;
    left: calc(50% - 170px);
    top: -15%;  
  }

  .pilot__quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pilot__quote-name {
    margin-top: 220px;
  }

  .pilot__quote-post {
    max-width: 260px;
  }

  .pilot__quote-text {
    position: relative;
  }

  .pilot__inner::after {
    bottom: -30px;
    right: -5px;
  }

  .pilot__quote-text::after {
    content: '';
    position: absolute;
    width: 41px;
    height: 42px;
    bottom: -41px;
    right: calc(50% - 120px);
    background-image: url('speech-direction.svg');
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 480px) {
  .pilot {
    padding: 60px 20px;
  }

  .pilot__h2 {
    font-size: 36px;
  }

  .pilot__lead {
    font-size: 16px;
  }

  .pilot__quote {
    font-size: 14px;
  }

  .pilot__quote-text::after {
    right: calc(50% - 110px);
  }
}


@media screen and (max-width: 420px) {
  .pilot__inner::after {
    bottom: 60px;
    right: -20px;
    width: 74px;
    background-size: 80%;
  }
}




.experts {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: #ECEFF3;
  padding: 60px 0px 60px 0px;
}

.experts::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 22px;
  background-image: url('tag--open.svg');
  background-repeat: no-repeat;
  width: 98px;
  height: 137px;
  background-size: 100px 135px;
  z-index: 0;
}

.experts::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-image: url('tag--close.svg');
  background-repeat: no-repeat;
  width: 155px;
  height: 132px;
  z-index: 0;
}

.experts__inner {
  height: 100%;
}

.experts__experts {
  margin-top: -30px;
}

.experts__expert {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.experts__text-container {
  padding-right: 110px;
  max-width: 700px;
}

.experts__expert .swiper-slide {

}

.experts__h2 {
  font-size: 60px;
  line-height: 1.1;
  text-align: center;
  margin: auto;
  max-width: 800px;
}

.experts__name {
  font-size: 42px;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.experts__post {
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  margin-top: 12px;
  font-weight: 400;
  opacity: 0.7;
}

.experts__quote {
  font-size: 21px;
  line-height: 1.35;
  margin: 0;
  margin-top: 18px;
}

.experts__pagination {
  bottom: 0px;
  margin: auto;
  margin-top: 12px;
}

.experts__prev {
  position: absolute;
  left: 40px;
  top: 50%;
  z-index: 999;
  min-width: 53px;
  height: 39px;
  background-image: url('arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

.experts__prev:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.experts__next {
  position: absolute;
  right: 40px;
  top: 50%;
  z-index: 999;
  min-width: 53px;
  height: 39px;
  background-image: url('arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(-1, -1);
  transition: all 0.3s ease-in-out;
}

.experts__next:hover {
  cursor: pointer;
  transform: scale(-1.2);
}

.experts .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.experts .swiper-pagination-bullet:hover {
  background-color: #33BBFF;
}

.experts .swiper-pagination-bullet-active {
  width: 70px;
  transition: all 0.3s ease;
  background-color: #33BBFF;
}

.experts__expert {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}


@media screen and (max-width: 1200px) {
  .experts__name {
    font-size: 30px;
  }
  
  .experts__post {
    font-size: 16px;
  }

  .experts__quote {
    font-size: 18px;
  }

  .experts__img {
    width: 39%;
    height: auto;
  }

  .experts__prev,
  .experts__next {
    min-width: 44px;
  }

  .experts::after {
    bottom: 40px;
    right: 40px;
    width: 82px;
    height: 72px;
    background-size: contain;
  }
}

@media screen and (max-width: 1080px) {
  .experts__name {
    font-size: 28px;
  }
  
  .experts__post {
    font-size: 14px;
  }

  .experts__quote {
    font-size: 16px;
  }

  .experts__img {
    width: 39%;
    height: auto;
    padding-left: 30px;
  }

  .experts__prev,
  .experts__next {
    min-width: 44px;
    top: 60%;
  }

  .experts::before {
    top: 20px;
    left: 22px;
    width: 70px;
    height: 91px;
    background-size: 70px 91px;
  }
}

@media screen and (max-width: 980px) {
  .experts__h2 {
      font-size: 42px;
  }
}

@media screen and (max-width: 900px) {
  .experts {
    padding: 60px 0px;
  }

  .experts__experts {
    padding-bottom: 50px;
  }

  
  .experts__text-container {
    margin-top: 70px;
  }
  .experts__name {
      font-size: 24px;
  }

  .experts__prev,
  .experts__next {
    min-width: 44px;
    top: 50%;
  }

  .experts__img {
    width: 34%;
    height: auto;
    padding-left: 50px;
  }
}

@media screen and (max-width: 810px) {
  [aria-label="1 / 7"] .experts__img {
    margin-top: -90px;
  }

  [aria-label="2 / 7"],
  [aria-label="3 / 7"],
  [aria-label="4 / 7"],
  [aria-label="5 / 7"],
  [aria-label="6 / 7"] {
    margin-top: 30px;
  }
}

@media screen and (max-width: 760px) {
  .experts {
    padding-left: 15px;
    padding-right: 15px;
  }
  .experts__expert {
    flex-direction: column;
  }

  .experts__experts {
    padding-bottom: 70px;
  }

  [aria-label="1 / 7"] .experts__img,
  .experts__img {
    margin-top: 10px;
    padding-left: 0;
  }

  .experts__prev, .experts__next {
    top: 35%;
  }

  .experts__text-container {
    margin-top: -30px;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .experts__name {
    margin-top: 9px;
  }

  .experts__post {
    max-width: 60%;
  }

  .experts__quote {
    max-width: 80%;
    margin-top: 14px;
  }

  .experts__pagination {
    bottom: -6px !important;
  }

  .experts::before {
    display: none;
  }
}

@media screen and (max-width: 590px) {
  .experts__h2 {
      font-size: 36px;
  }
  
  .experts__name {
    margin-top: 14px;
  }

  .experts::before {
    width: 50px;
    height: 65px;
    background-size: 50px 65px;
  }

  .experts::after {
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 56px;
    background-size: contain;
  }

  .experts__img {
    width: 55%;
  }
}

@media screen and (max-width: 490px) {
  [aria-label="6 / 7"].experts__img {
    margin-top: 10px;
  }

  [aria-label="2 / 7"], [aria-label="3 / 7"], [aria-label="4 / 7"], [aria-label="5 / 7"], [aria-label="6 / 7"] {
    margin-top: 0;
  }

  .experts__next,
  .experts__prev {
    display: none;
  }

  .experts__post {
    line-height: 1.35;
  }

  .experts__quote {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
    .experts__h2 {
        font-size: 36px;
    }

    .experts__pagination {
      bottom: 14px !important;
    }
    .experts::after {
      bottom: 20px;
      right: 20px;
      width: 52px;
      height: 46px;
      background-size: contain;
    }
}

@media screen and (max-width: 360px) {
  
}



.cta {
  display: flex;
  justify-content: center;
  background-color: #1E1E1E;
  position: relative;
}

.cta::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: '';
  background-image: url('spot3.png');
  width: 770px;
  height: 582px;
  background-repeat: no-repeat;
  max-width: 90%;
}

.cta__inner {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 996px;
  background-color: #E5E5E5;
  position: relative;
  z-index: 9;
  height: auto;
}

.cta__inner-left {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta__h2 {
  color: #000000;
  font-size: 36px;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}

.cta__p {
  color: #000000;
  font-size: 21px;
  line-height: 1.15;
  text-align: left;
  margin: 0;
}

.cta__buttons {
  margin-top: 0px;
  display: flex;
  gap: 24px;
}

.cta__button {
  font-family: 'Inter', 'Arial', sans-serif;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 18px 18px;
  width: auto;
}

.cta__button--blue {
  background: #33BBFF;
  color: #fff;
  box-shadow: 0px 8px 32px 0 #56C7FF;
}

.cta__button--light {
  background: #1D1D1B;
  color: #ffffff;
}

.cta__img {
  border-radius: 0 16px 16px 0;
  aspect-ratio: 77 / 88;
  height: 100%;
}

.cta__divider {
  width: 100%;
  min-height: 1px;
  background-color: #8F8F8F;
}

.cta__button-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #E5E5E5;
  padding: 40px 48px;
}


@media screen and (max-width: 1080px) {
  .cta__inner-left {
    justify-content: space-evenly;
    width: 100%;
  }

  .cta__button-block {
    padding: 30px 36px;
  }

  .cta__h2 {
    font-size: 36px;
  }

  .cta__p {
    font-size: 18px;
  }

  .cta__buttons {
    gap: 18px;
  }

  .cta__button {
    font-size: 18px;
    margin-top: 4px;
  }

  .cta__img {
    border-radius: 0 16px 16px 0;
    aspect-ratio: 1 / 1.375;
    height: 100%;
    max-width: 386px;
    width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .cta__h2 {
    font-size: 30px;
  }

  .cta__img {
    max-width: 336px;
  }
}

@media screen and (max-width: 810px) {
  .cta__h2 {
    font-size: 28px;
  }

  .cta__p {
    font-size: 16px;
  }
  
  .cta__img {
    max-width: 330px;
  }
}


@media screen and (max-width: 790px) {
 .cta__button-block {
    padding: 24px 30px;
    gap: 14px;
  }
}



@media screen and (max-width: 770px) {
  .cta__img {
    max-width: 300px;
  }

  .cta__h2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 710px) {
  .cta {
    padding: 40px 40px;
  }

  .cta__button-block {
    gap: 16px;
    padding: 24px 30px;
  }

  .cta__inner {
    height: auto;
    flex-direction: column-reverse;
  }

  .cta__img {
    height: auto;
    width: 100%;
    max-width: 100%;
    border-radius:  0;
  }

  .cta__h2 {
    font-size: 36px;
  }
}


@media screen and (max-width: 630px) {
  .cta {
    padding: 30px 20px;
  }

  .cta::after {
    max-width: 100%;
  }

  .cta__buttons {
    flex-direction: column;
    margin-top: 18px;
    gap: 16px;
  }

  .cta__button {
    padding: 19px 19px;
  }
}

@media screen and (max-width: 630px) {
  .cta__button-block {
    gap: 16px;
    padding: 24px 24px;
  }
}

@media screen and (max-width: 480px) {
  .cta__button-block {
    gap: 14px;
    padding: 24px 24px;
  }

  .cta__h2 {
    font-size: 28px;
  }
}



.footer {
  position: relative;
  z-index: 999999;
  padding: 20px;
  background: #21272F;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 40px;
  box-sizing: border-box;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.footer__link {
  transition: all 0.3s ease;
  line-height: 1;
  margin-top: 7px;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #999999;
  margin: 0;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 20px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
  }

  .footer__logo {

  }

  .footer__copy {
    font-size: 12px;
    text-align: center;
  }
}

@media screen and (max-width: 350px) {
  .footer__logo {
    max-width: 60%;
  }
}







