*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  transition: all .3s;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: #fff;
  background-color: #134848;
  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: unset;
}

.container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1140px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-icon {
  width: 41px;
  height: 45px;
}
.header__logo-name {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 57px;
}
.header__menu-navigation__list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__menu-navigation__list li a {
  color: #FFF;
  font-size: 18px;
}
.header__menu-navigation__phone {
  display: none;
}
.header__menu-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__menu-toggle span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #FFFFFF;
  left: 5px;
  transition: transform .5s, opacity .5s, background-color .5s;
}
.header__menu-toggle span:nth-child(1) {
  transform: translateY(-10px);
}
.header__menu-toggle span:nth-child(3) {
  transform: translateY(10px);
}
.header__menu-phone {
  border-radius: 11px;
  border: 1px solid #FFF;
  background: rgba(217, 217, 217, 0.08);
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration-line: underline;
  padding: 15px 50px;
}
.header__menu-close {
  display: none;
}
.header.opened .header__menu-close {
  display: block;
  background-color: transparent;
  position: absolute;
  bottom: -60px;
  max-width: 43px;
  width: 100%;
  height: 43px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.header.opened .header__inner {
  z-index: 11;
}
.header.opened .header__menu-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header.opened .header__menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.opened .header__menu-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.header.opened ~ main::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 111px;
  left: 0;
}
.header.opened ~ body {
  overflow-y: hidden;
}

.introduction {
  background: url("../../assets/images/section-bg.png");
  background-size: cover;
  padding: 155px 0 206px;
}
.introduction__inner {
  width: 100%;
  display: flex;
  gap: 35px;
  position: relative;
}
.introduction__info {
  max-width: 600px;
  padding-top: 95px;
}
.introduction__info-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1.12px;
  margin-bottom: 25px;
}
.introduction__info-text {
  max-width: 544px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 190%;
}
.introduction__info-strengths {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 50px;
}
.introduction__info-strengths__card {
  border-radius: 51px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  text-align: center;
  padding: 12px 24px 17px 24px;
  width: 184px;
  height: 84px;
}
.introduction__info-strengths__card:first-child img {
  margin-bottom: 0;
}
.introduction__info-strengths__card img {
  display: block;
  margin: 0 auto 8px;
}
.introduction__info-strengths__card span {
  font-size: 11px;
  font-weight: 700;
}
.introduction__info-experience {
  display: none;
}
.introduction__info-phone {
  border-radius: 20px;
  background: #F9BC60;
  color: #134848;
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  text-transform: uppercase;
  border: 2px solid #F9BC60;
  display: block;
  width: fit-content;
  padding: 22px 135px;
}
@media (max-width: 480px) {
  .introduction__info-phone {
    width: 100%;
    text-align: center;
  }
}
@media (hover: hover) {
  .introduction__info-phone:hover {
    background-color: transparent;
    color: #F9BC60;
  }
  .introduction__info-phone:hover svg path {
    fill: #F9BC60;
  }
}
@media (hover: none) {
  .introduction__info-phone:active {
    background-color: transparent;
    color: #F9BC60;
  }
  .introduction__info-phone:active svg path {
    fill: #F9BC60;
  }
}
.introduction__images {
  position: relative;
}
.introduction__images-top {
  border-radius: 0 95px 81px 81px;
  border: 11px solid #FFF;
  width: 277px;
  height: 295px;
  margin: 0 123px 10px auto;
  display: block;
  position: relative;
  z-index: 10;
}
.introduction__images-group {
  display: flex;
  gap: 30px;
}
.introduction__images-group__box:first-child {
  margin-top: 55px;
  position: relative;
}
.introduction__images-group__box:first-child::before {
  position: absolute;
  content: url("../../assets/icons/introduction/dots.svg");
  left: 11px;
  top: -145px;
}
.introduction__images-group__box:first-child img {
  width: 266px;
  height: 276px;
  border-radius: 49px 72px 111px 0;
  border: 11px solid #FFF;
}
.introduction__images-group__box:first-child div {
  border-radius: 0 24px 60px 0;
  background: rgba(255, 255, 255, 0.41);
  backdrop-filter: blur(8px);
  position: absolute;
  bottom: 7px;
  left: 0;
  padding: 15px 61px 15px 57px;
  color: #323434;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}
.introduction__images-group__box:last-child {
  position: relative;
}
.introduction__images-group__box:last-child img {
  width: 223px;
  height: 306px;
  border-radius: 80px 0 80px 80px;
  border: 11px solid #FFF;
}
.introduction__images-group__box:last-child div {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.41);
  backdrop-filter: blur(8px);
  position: absolute;
  top: 18px;
  right: 12px;
  padding: 22px;
  color: #323434;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.welcome {
  background-color: #E0E9E9;
  color: #134848;
  padding: 120px 0 100px;
}
.welcome__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.welcome__info-title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  max-width: 470px;
  margin-bottom: 35px;
}
.welcome__info-title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .welcome__info-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .welcome__info-title {
    font-size: 32px;
  }
  .welcome__info-title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .welcome__info-title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .welcome__info-title::after {
    content: unset;
  }
}
.welcome__info-title::after {
  content: unset;
}
.welcome__info-strengths {
  max-width: 435px;
}
.welcome__info-strength {
  padding: 24px 15px 15px 52px;
}
.welcome__info-strength:nth-child(1) {
  border-radius: 8px;
  background-color: #FFFFFF19;
  margin-bottom: 15px;
}
.welcome__info-strength:nth-child(2) {
  border-radius: 8px;
  background: #FFFFFF33;
  margin-bottom: 15px;
}
.welcome__info-strength:nth-child(3) {
  border-radius: 8px;
  background: #FFF;
}
.welcome__info-strength__subtitle {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
  margin-bottom: 17px;
  position: relative;
}
.welcome__info-strength__subtitle::before {
  position: absolute;
  content: url("../../assets/icons/welcome/checkmark.svg");
  left: -36px;
  top: 5px;
  width: 25px;
  height: 25px;
}
.welcome__info-strength__text {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.16px;
}
.welcome__image {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.welcome__image::before {
  content: url("../../assets/icons/welcome/arrow.svg");
  position: absolute;
  left: -29px;
  top: 74px;
}
.welcome__image::after {
  content: url("../../assets/icons/welcome/dots.svg");
  position: absolute;
  right: 50px;
  top: -65px;
}
.welcome__image-first {
  width: 305px;
  height: 310px;
  border-radius: 50%;
  border: 4px solid #0E7777;
  margin-right: -89px;
}
.welcome__image-middle {
  border-radius: 88px 88px 0 0;
  border: 4px solid #0E7777;
  width: 220px;
  height: 552px;
}
.welcome__image-last {
  border-radius: 95px 95px 56px 0;
  border: 4px solid #0E7777;
  width: 221px;
  height: 508px;
}

.services {
  padding: 95px 0 86px;
  background: url("../../assets/images/section-bg.png") no-repeat center;
  background-size: cover;
}
.services__inner {
  width: 100%;
  position: relative;
}
.services__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.services__top-title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  color: #fff;
}
.services__top-title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .services__top-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .services__top-title {
    font-size: 32px;
  }
  .services__top-title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .services__top-title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .services__top-title::after {
    content: unset;
  }
}
.services__top-title::after {
  content: url("../../assets/icons/title-arrow-light.svg");
}
.services__top-switch {
  color: #F9BC60;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: transparent;
  border: unset;
  cursor: pointer;
}
.services__cards {
  margin-bottom: 47px;
}
.services .swiper-slide {
  max-width: 274px;
  width: 100%;
  height: 400px;
}
.services__card {
  text-align: center;
  padding: 22px 11px;
  position: relative;
}
.services__card--green_bg {
  background: url("../../assets/images/services/cards-bg/1.png") no-repeat center;
  background-size: cover;
}
.services__card--green_bg .services__card-image {
  border-radius: 0 57px 57px 62px;
  border: 5px solid #134848;
}
.services__card--yellow_bg {
  background: url("../../assets/images/services/cards-bg/2.png") no-repeat center;
  background-size: cover;
}
.services__card--yellow_bg .services__card-image {
  border-radius: 57px 62px 0 57px;
  border: 5px solid #134848;
}
.services__card--red_bg {
  background: url("../../assets/images/services/cards-bg/3.png") no-repeat center;
  background-size: cover;
}
.services__card--red_bg .services__card-image {
  border-radius: 62px 57px 57px 0;
  border: 5px solid #134848;
}
.services__card--blue_bg {
  background: url("../../assets/images/services/cards-bg/4.png") no-repeat center;
  background-size: cover;
}
.services__card--blue_bg .services__card-image {
  border-radius: 57px 0 62px 57px;
  border: 5px solid #134848;
}
.services__card-image {
  margin-bottom: 17px;
}
.services__card-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.services__card-description {
  color: #FFF;
  font-size: 14px;
  line-height: 150%;
}
.services__card-phone {
  right: 0;
  bottom: 0;
  position: absolute;
  background: #134848;
  border-radius: 25px 0 0 0;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__prev, .services__next {
  width: 42px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 312px;
  z-index: 10;
}
.services__prev {
  left: -25px;
}
.services__next {
  right: -25px;
}
.services__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 14px;
  background: url("../../assets/icons/slider-dot-inactive.svg") no-repeat center;
  background-size: 11px 11px;
}
.services__pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 14px;
  background: url("../../assets/icons/slider-dot-active.svg") no-repeat center;
  background-size: 11px 11px;
}

.workflow {
  background-color: #E0E9E9;
  color: #134848;
  padding: 100px 0;
}
.workflow__inner {
  width: 100%;
}
.workflow__title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  margin-bottom: 64px;
}
.workflow__title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .workflow__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .workflow__title {
    font-size: 32px;
  }
  .workflow__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .workflow__title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .workflow__title::after {
    content: unset;
  }
}
.workflow__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.workflow__steps::before {
  position: absolute;
  content: url("../../assets/icons/workflow/cards-connecting-line.svg");
  left: 121px;
  top: -8px;
}
.workflow__steps-card {
  border-radius: 67px 98px 87px 0;
  background: #134848;
  color: #fff;
  width: 250px;
  height: 222px;
  text-align: center;
  position: relative;
  padding: 20px;
}
.workflow__steps-card:nth-child(1) {
  top: 3px;
  left: 0;
  margin-top: 42px;
}
.workflow__steps-card:nth-child(1) .workflow__steps-card__number {
  top: 0;
  left: 0;
}
.workflow__steps-card:nth-child(2) {
  border-radius: 0 65px 87px 87px;
  background: #134848;
}
.workflow__steps-card:nth-child(2) .workflow__steps-card__number {
  left: -13px;
  top: -12px;
}
.workflow__steps-card:nth-child(3) {
  margin-top: 42px;
}
.workflow__steps-card:nth-child(3) .workflow__steps-card__number {
  bottom: 4px;
  left: -18px;
}
.workflow__steps-card:nth-child(4) {
  border-radius: 98px 87px 0 67px;
  background: #134848;
  height: 250px;
  width: 222px;
}
.workflow__steps-card:nth-child(4) .workflow__steps-card__number {
  top: 12px;
  left: 13px;
}
.workflow__steps-card__number {
  color: #134848;
  font-size: 20px;
  font-weight: 700;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E0E9E9;
  position: absolute;
}
.workflow__steps-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.workflow__steps-card__description {
  font-size: 12px;
  line-height: 160%;
}

.banner {
  background: url("../../assets/images/section-bg.png") no-repeat center;
  background-size: cover;
  padding: 67px 0;
}
.banner__inner {
  gap: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner__icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__icon img {
  width: 70px;
  height: 70px;
}
.banner__title {
  font-size: 29px;
}
.banner__phone {
  border-radius: 20px;
  background: #F9BC60;
  color: #134848;
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  text-transform: uppercase;
  border: 2px solid #F9BC60;
  display: block;
  width: fit-content;
  padding: 15px 67px;
}
@media (max-width: 480px) {
  .banner__phone {
    width: 100%;
    text-align: center;
  }
}
@media (hover: hover) {
  .banner__phone:hover {
    background-color: transparent;
    color: #F9BC60;
  }
  .banner__phone:hover svg path {
    fill: #F9BC60;
  }
}
@media (hover: none) {
  .banner__phone:active {
    background-color: transparent;
    color: #F9BC60;
  }
  .banner__phone:active svg path {
    fill: #F9BC60;
  }
}

.about {
  background-color: #E0E9E9;
  color: #134848;
  padding: 120px 0 100px;
}
.about__inner {
  width: 100%;
}
.about__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
}
.about__main-team__image {
  display: flex;
  position: relative;
  align-items: center;
}
.about__main-team__image::before {
  position: absolute;
  content: url("../../assets/icons/about/dots.svg");
  right: -52px;
  top: -14px;
}
.about__main-team__image img:first-child {
  width: 218px;
  height: 218px;
  border-radius: 50%;
}
.about__main-team__image img:nth-child(2) {
  width: 284px;
  height: 284px;
  border-radius: 50%;
  margin-left: -108px;
  position: relative;
}
.about__main-team__image img:last-child {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  margin-left: -102px;
}
.about__main-team__experience {
  border-radius: 100px 0;
  background: #134848;
  box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 153px;
  margin-top: -40px;
  position: relative;
}
.about__main-info__title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  margin-bottom: 25px;
}
.about__main-info__title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .about__main-info__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .about__main-info__title {
    font-size: 32px;
  }
  .about__main-info__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .about__main-info__title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .about__main-info__title::after {
    content: unset;
  }
}
.about__main-info__subtitle {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about__main-info__text {
  max-width: 536px;
  color: #134848;
  font-size: 14px;
  line-height: 180%;
}
.about__strengths {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__strengths-item {
  border-radius: 50px;
  border: 1px solid #134848;
  text-align: center;
  padding: 0 10px 10px 10px;
  max-width: 220px;
  width: 100%;
}
.about__strengths-item__icon {
  margin-top: -30px;
}
.about__strengths-item__title {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}

.testimonials {
  background: url("../../assets/images/section-bg.png") no-repeat center;
  background-size: cover;
  padding: 100px 0 70px;
}
.testimonials__inner {
  width: 100%;
}
.testimonials__title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  margin-bottom: 50px;
  color: #FFF;
}
.testimonials__title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 32px;
  }
  .testimonials__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .testimonials__title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .testimonials__title::after {
    content: unset;
  }
}
.testimonials__title::after {
  content: url("../../assets/icons/title-arrow-light.svg");
}
.testimonials__cards {
  margin-bottom: 40px;
}
.testimonials .swiper-slide {
  max-width: 606px;
  width: 100%;
}
.testimonials__card-text {
  height: 237px;
  color: #134848;
  font-size: 16px;
  line-height: 170%;
  margin-bottom: 48px;
  padding: 28px 52px;
  background-color: #ffffff;
  border: 1px solid #B9FF66;
  border-radius: 45px;
  position: relative;
}
.testimonials__card-text::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 38px;
  height: 38px;
  bottom: -20px;
  left: 51px;
  border-right: 1px solid #B9FF66;
  border-bottom: 1px solid #B9FF66;
  transform: rotate(45deg);
}
.testimonials__card-info__name {
  color: #B9FF66;
  font-size: 20px;
  font-weight: 500;
}
.testimonials__card-info-position {
  color: #FFF;
  font-size: 18px;
}
.testimonials__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}
.testimonials__pagination-prev, .testimonials__pagination-next {
  width: 42px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.testimonials__pagination-dots {
  width: fit-content !important;
}
.testimonials__pagination-dots .swiper-pagination-bullet {
  width: 13px;
  height: 14px;
  background: url("../../assets/icons/slider-dot-inactive.svg") no-repeat center;
  background-size: 11px 11px;
}
.testimonials__pagination-dots .swiper-pagination-bullet-active {
  width: 13px;
  height: 14px;
  background: url("../../assets/icons/slider-dot-active.svg") no-repeat center;
  background-size: 11px 11px;
}

.advantages {
  background-color: #E0E9E9;
  color: #134848;
  padding: 80px 0;
}
.advantages__inner {
  width: 100%;
}
.advantages__title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  margin-bottom: 64px;
}
.advantages__title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .advantages__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .advantages__title {
    font-size: 32px;
  }
  .advantages__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .advantages__title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .advantages__title::after {
    content: unset;
  }
}
.advantages__cards {
  margin-bottom: 58px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.advantages__cards::before {
  position: absolute;
  content: url("../../assets/icons/advantages/line-connector.svg");
}
.advantages__cards-elem {
  width: 220px;
  height: 117px;
  text-align: center;
  background-color: #134848;
  border-radius: 50px;
  position: relative;
  z-index: 10;
}
.advantages__cards-elem:nth-child(even) {
  margin-top: 53px;
}
.advantages__cards-elem__icon {
  margin: -34px 0 3px 0;
  border-radius: 50%;
  border: 3px solid #134848;
}
.advantages__cards-elem__title {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  max-width: 159px;
  margin: 0 auto;
}
.advantages__phone {
  border-radius: 20px;
  background: #F9BC60;
  color: #134848;
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  text-transform: uppercase;
  border: 2px solid #F9BC60;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 18px 133px;
  position: relative;
  z-index: 10;
}
@media (max-width: 480px) {
  .advantages__phone {
    width: 100%;
    text-align: center;
  }
}
@media (hover: hover) {
  .advantages__phone:hover {
    background-color: transparent;
    color: #F9BC60;
  }
  .advantages__phone:hover svg path {
    fill: #F9BC60;
  }
}
@media (hover: none) {
  .advantages__phone:active {
    background-color: transparent;
    color: #F9BC60;
  }
  .advantages__phone:active svg path {
    fill: #F9BC60;
  }
}

.faq {
  color: #134848;
  position: relative;
  padding: 40px 0 80px;
  background-color: #E0E9E9;
}
.faq__inner {
  width: 100%;
}
.faq__title {
  color: #134848;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.48px;
  position: relative;
  width: fit-content;
  margin-bottom: 40px;
}
.faq__title::after {
  content: url("../../assets/icons/title-arrow-green.svg");
  position: absolute;
  right: -76px;
  bottom: 0;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .faq__title {
    font-size: 32px;
  }
  .faq__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
}
@media (max-width: 429px) {
  .faq__title {
    font-size: 29px;
  }
}
@media (max-width: 374px) {
  .faq__title::after {
    content: unset;
  }
}
.faq__elem {
  border-radius: 45px;
  border: 1px solid #A7A7A7;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 0 0 rgba(19, 72, 72, 0.5);
  padding: 41px 60px;
  color: #000;
}
.faq__elem--opened {
  border: 1px solid #134848;
  background: #004C4C;
}
.faq__elem--opened .faq__elem-question {
  padding-bottom: 13px;
}
.faq__elem--opened .faq__elem-question__number, .faq__elem--opened .faq__elem-question__subtitle {
  color: #fff;
}
.faq__elem--opened .faq__elem-question__button span:first-child {
  transform: rotate(0);
}
.faq__elem--opened .faq__elem-answer {
  color: #fff;
  border-top: 1px solid #FFFFFF33;
  padding-top: 26px;
}
.faq__elem + .faq__elem {
  margin-top: 20px;
}
.faq__elem-question {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq__elem-question__number {
  font-size: 60px;
  font-weight: 500;
  margin-right: 25px;
}
.faq__elem-question__subtitle {
  font-size: 30px;
  font-weight: 500;
  max-width: 741px;
}
.faq__elem-question__button {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #F9BC60;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.faq__elem-question__button span {
  height: 6px;
  width: 25px;
  background-color: #F9BC60;
  position: absolute;
  left: 16px;
  top: 25px;
}
.faq__elem-question__button span:first-child {
  transform: rotate(90deg);
}
.faq__elem-answer {
  height: 0;
  overflow: hidden;
}

.footer {
  background: url("../../assets/images/section-bg.png") no-repeat center;
  background-size: cover;
  padding: 80px 0 60px;
  text-align: center;
}
.footer__logo {
  gap: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 23px;
}
.footer__logo-icon {
  height: 54px;
}
.footer__logo-name {
  font-weight: 700;
  font-size: 32px;
}
.footer__text {
  font-size: 18px;
  line-height: 33px;
  margin: 0 auto 40px;
  max-width: 617px;
  opacity: 0.8;
}
.footer__phone {
  border-radius: 30px;
  border: 2px solid #F9BC60;
  background: #F9BC60;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.11);
  color: #134848;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 138px;
  width: fit-content;
  margin: 0 auto 21px;
  cursor: pointer;
  text-transform: uppercase;
  display: block;
}
.footer__phone-number {
  text-decoration: underline;
}
.footer__privacy {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 23px;
  display: inline-block;
  color: #fff;
}
.footer__divider {
  opacity: 0.2;
  margin-bottom: 34px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-copyright {
  font-size: 14px;
}
.footer__bottom-navigation__list {
  gap: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-navigation__list li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.footer__bottom-social {
  gap: 25px;
  display: flex;
}
.footer__bottom-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.footer__inner {
  width: 100%;
}

@media (max-width: 1200px) {
  .introduction__images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .introduction__images-top {
    margin: unset;
  }
  .introduction__images-group {
    display: none;
  }

  .welcome__inner {
    gap: 30px;
  }
  .welcome__info-strengths {
    max-width: unset;
  }
  .welcome__image::before {
    content: unset;
  }
  .welcome__image-first {
    display: none;
  }

  .services__prev, .services__next {
    display: none;
  }

  .advantages__cards::before {
    left: -70px;
  }
}
@media (max-width: 1100px) {
  .header__menu-navigation__list {
    gap: 20px;
  }
  .header__menu-phone {
    display: none;
  }

  .workflow__steps {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .workflow__steps::before {
    content: unset;
  }
  .workflow__steps-card {
    width: 100%;
    height: unset;
    padding: 20px;
  }
  .workflow__steps-card:nth-child(1) {
    margin-top: unset;
  }
  .workflow__steps-card:nth-child(1)::after {
    content: unset;
  }
  .workflow__steps-card:nth-child(3) {
    margin-top: unset;
  }
  .workflow__steps-card:nth-child(3)::before {
    content: unset;
  }
  .workflow__steps-card:nth-child(4) {
    width: 100%;
    height: unset;
  }

  .banner__title {
    font-size: 22px;
  }

  .about {
    padding: 60px 0;
  }
  .about__main-team {
    display: none;
  }
  .about__main-info__text {
    max-width: unset;
  }
  .about__strengths {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonials__title::after {
    content: unset;
  }

  .advantages__cards {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .advantages__cards::before {
    content: unset;
  }
  .advantages__cards-elem:nth-child(even) {
    margin: unset;
  }

  .faq__title::after {
    content: unset;
  }
  .faq__elem {
    padding: 20px;
  }
  .faq__elem--opened .faq__elem-answer {
    padding-top: 20px;
  }
  .faq__elem-question__subtitle {
    max-width: 600px;
  }
}
@media (max-width: 900px) {
  .introduction {
    padding: 112px 0 0 0;
  }
  .introduction__inner {
    justify-content: center;
  }
  .introduction__inner::after {
    content: unset;
  }
  .introduction__info {
    padding: 40px 0;
  }
  .introduction__images {
    display: none;
  }

  .welcome__info-title {
    font-size: 32px;
  }
  .welcome__image-middle {
    position: relative;
    z-index: 10;
  }
  .welcome__image-last {
    display: none;
  }

  .advantages__title::after {
    content: unset;
  }

  .faq__elem-question__number {
    font-size: 40px;
    margin-right: 15px;
  }
  .faq__elem-question__subtitle {
    font-size: 17px;
  }

  .footer__bottom {
    gap: 35px;
    flex-wrap: wrap;
  }
  .footer__bottom-social {
    display: none;
  }
}
@media (max-width: 768px) {
  html {
    overflow-y: visible;
  }
  html.menu-opened {
    overflow-y: hidden;
  }

  main.menu-opened::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #393939B2;
    z-index: 10;
  }

  .header {
    z-index: 100;
  }
  .header__inner {
    padding: 20px 0;
  }
  .header__logo {
    gap: 5px;
  }
  .header__logo-icon {
    width: 32px;
    height: 35px;
  }
  .header__menu-navigation {
    display: none;
    padding: 0 18px;
  }
  .header__menu-navigation.opened {
    display: block;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    background-color: #fff;
  }
  .header__menu-navigation.opened .header__menu-navigation__list {
    padding: 42px 0;
    display: block;
  }
  .header__menu-navigation.opened .header__menu-navigation__list li a {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    padding: 28px 0;
    display: inline-block;
  }
  .header__menu-navigation__phone {
    border-radius: 20px;
    background: #F9BC60;
    color: #134848;
    font-size: 24px;
    font-weight: 700;
    line-height: 170%;
    text-transform: uppercase;
    border: 2px solid #F9BC60;
    display: block;
    width: fit-content;
    padding: 11px 74px;
    margin-bottom: 52px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .header__menu-navigation__phone {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) and (hover: hover) {
  .header__menu-navigation__phone:hover {
    background-color: transparent;
    color: #F9BC60;
  }
  .header__menu-navigation__phone:hover svg path {
    fill: #F9BC60;
  }
}
@media (max-width: 768px) and (hover: none) {
  .header__menu-navigation__phone:active {
    background-color: transparent;
    color: #F9BC60;
  }
  .header__menu-navigation__phone:active svg path {
    fill: #F9BC60;
  }
}
@media (max-width: 768px) {
  .header__menu-toggle {
    display: block;
  }

  .introduction__info {
    width: 100%;
    max-width: unset;
  }
  .introduction__info-title {
    max-width: unset;
  }
  .introduction__info-text {
    max-width: unset;
  }
  .introduction__info-strengths {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .introduction__info-strengths__card {
    border-radius: 51px;
    border: 1px solid #fff;
    background: transparent;
    backdrop-filter: unset;
    padding: unset;
    width: 191px;
    height: 60px;
  }
  .introduction__info-strengths__card img {
    margin-top: -18px;
  }
  .introduction__info-phone {
    width: 100%;
    text-align: center;
    padding: 22px 0;
  }

  .welcome__image {
    display: none;
  }

  .banner__inner {
    display: block;
  }
  .banner__icon {
    margin: 0 auto 20px;
  }
  .banner__title {
    max-width: 400px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .banner__phone {
    margin: 0 auto;
  }

  .footer__bottom-copyright {
    margin: 0 auto;
  }
  .footer__bottom-navigation {
    width: 100%;
  }
  .footer__bottom-navigation__list {
    gap: 15px;
  }
}
@media (max-width: 650px) {
  .introduction__info-strengths {
    justify-content: center;
  }

  .testimonials__card-text {
    height: unset;
  }
  .testimonials__pagination-prev, .testimonials__pagination-next {
    display: none;
  }

  .advantages__cards {
    margin-bottom: unset;
  }
  .advantages__phone {
    display: none;
  }
}
@media (max-width: 510px) {
  .about__strengths-item {
    width: 100%;
    max-width: unset;
  }

  .advantages__cards {
    gap: unset;
    flex-direction: column;
  }
  .advantages__cards::before {
    top: 0;
    left: 120px;
    content: url(../../assets/icons/advantages/line-connector--mobile.svg);
  }
  .advantages__cards-elem:nth-child(even) {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .header__menu-navigation__phone {
    padding: 11px 0;
    text-align: center;
  }

  .introduction {
    padding: 77px 0 0 0;
  }
  .introduction__info-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    text-transform: capitalize;
  }
  .introduction__info-text {
    font-size: 16px;
    max-width: 349px;
    text-align: center;
    font-style: normal;
    margin: 0 auto 30px;
    text-transform: capitalize;
  }
  .introduction__info-strengths {
    margin-bottom: 40px;
  }
  .introduction__info-strengths__card span {
    font-size: 14px;
  }
  .introduction__info-experience {
    display: block;
    margin-bottom: 44px;
    text-align: center;
  }
  .introduction__info-experience__image {
    width: 100%;
  }
  .introduction__info-experience__text {
    color: #134848;
    font-size: 20px;
    font-weight: 700;
    background: #fff;
    text-align: center;
    border-radius: 100px 0;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    margin-top: -60px;
    z-index: 10;
    position: relative;
  }
  .introduction__info-phone {
    padding: 11px 0;
    font-size: 20px;
  }

  .welcome {
    padding: 40px 0;
  }
  .welcome__inner {
    display: block;
  }
  .welcome__info {
    margin-bottom: 30px;
  }
  .welcome__info-title {
    margin-bottom: 30px;
  }
  .welcome__info-strength__subtitle {
    font-size: 18px;
  }
  .welcome__info-strength__text {
    font-size: 14px;
  }
  .welcome__image {
    display: flex;
    justify-content: center;
  }
  .welcome__image::before {
    top: -22px;
    left: 52px;
    content: url(../../assets/icons/welcome/arrow--mobile.svg);
  }
  .welcome__image::after {
    top: -22px;
    right: 34px;
    content: url(../../assets/icons/welcome/dots--mobile.svg);
  }
  .welcome__image-first {
    width: 182px;
    height: 185px;
    display: block;
    margin-right: -47px;
  }
  .welcome__image-middle {
    width: 131px;
    height: 329px;
  }
  .welcome__image-last {
    z-index: 10;
    width: 129px;
    height: 296px;
    display: block;
    position: relative;
  }

  .services {
    padding: 40px 0;
  }
  .services__top {
    margin-bottom: 40px;
  }
  .services__top-title::after {
    right: -39px;
    content: url(../../assets/icons/title-arrow-light--mobile.svg);
  }
  .services__cards {
    margin-bottom: 30px;
  }

  .workflow {
    padding: 40px 0;
  }
  .workflow__title {
    margin-bottom: 60px;
  }
  .workflow__steps {
    gap: 24px;
  }
  .workflow__steps::before {
    left: 58px;
    top: 124px;
    content: url(../../assets/icons/workflow/cards-connecting-line--mobile.svg);
  }
  .workflow__steps-card {
    max-width: 250px;
  }
  .workflow__steps-card:nth-child(even) {
    margin-left: auto;
  }
  .workflow__steps-card:nth-child(odd) {
    margin-right: auto;
  }
  .workflow__steps-card:nth-child(4) {
    height: 250px;
    width: 222px;
  }

  .banner {
    padding: 40px 0;
  }
  .banner__title {
    font-size: 18px;
  }
  .banner__phone {
    padding: 8px 0;
  }

  .about {
    padding: 40px 0;
  }
  .about__main {
    gap: 25px;
    margin-bottom: 40px;
    flex-direction: column-reverse;
  }
  .about__main-team {
    display: block;
  }
  .about__main-team__image {
    justify-content: center;
  }
  .about__main-team__image::before {
    content: unset;
  }
  .about__main-team__image img:first-child {
    width: 160px;
    height: 168px;
  }
  .about__main-team__image img:nth-child(2) {
    width: 208px;
    height: 219px;
    margin-left: -79px;
  }
  .about__main-team__image img:last-child {
    width: 160px;
    height: 168px;
    margin-left: -74px;
  }
  .about__main-team__experience {
    padding: 16px 0;
  }
  .about__main-info__title {
    margin-bottom: 10px;
  }
  .about__main-info__title::after {
    right: -53px;
    content: url("../../assets/icons/title-arrow-green--mobile.svg");
  }
  .about__main-info__subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .about__main-info__text {
    font-size: 12px;
  }
  .about__strengths {
    display: grid;
    grid-template-columns: repeat(2, 190px);
    grid-template-rows: auto auto auto;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
  }
  .about__strengths-item {
    max-width: 191px;
  }
  .about__strengths-item:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
  }
  .about__strengths-item__title {
    font-size: 10px;
    font-weight: 500;
  }

  .testimonials {
    padding: 40px 0;
  }
  .testimonials__title {
    max-width: 301px;
    margin-bottom: 30px;
  }
  .testimonials__title::after {
    top: 0;
    right: 0;
    bottom: unset;
    content: url(../../assets/icons/title-arrow-light--mobile.svg);
  }
  .testimonials__cards {
    margin-bottom: 33px;
  }
  .testimonials__card-text {
    padding: 24px;
    font-size: 12px;
  }
  .testimonials__card-info__name {
    font-size: 18px;
  }
  .testimonials__card-info__position {
    font-size: 14px;
  }

  .advantages {
    padding: 40px 0;
  }
  .advantages__title {
    max-width: 271px;
  }
  .advantages__title::after {
    top: 0;
    right: -40px;
    content: url(../../assets/icons/title-arrow-green--mobile.svg);
  }
  .advantages__cards::before {
    left: 78px;
  }

  .faq {
    padding: 40px 0;
  }
  .faq__title {
    margin-bottom: 20px;
  }
  .faq__elem-question__number {
    font-size: 32px;
    margin-right: 7px;
  }
  .faq__elem-question__subtitle {
    font-size: 14px;
    font-weight: 700;
  }
  .faq__elem-question__button {
    width: 27px;
    min-width: 27px;
    height: 27px;
  }
  .faq__elem-question__button span {
    width: 9px;
    height: 3px;
    left: 8px;
    top: 11px;
  }
  .faq__elem-answer {
    font-size: 12px;
  }

  .footer {
    padding: 40px 0;
  }
  .footer__logo {
    margin-bottom: 5px;
  }
  .footer__logo-name {
    font-size: 25px;
  }
  .footer__logo-icon {
    height: 40px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .footer__phone {
    width: 100%;
    padding: 14.5px 0;
    margin-bottom: 29px;
  }
  .footer__privacy {
    margin-bottom: 29px;
  }
  .footer__bottom {
    display: flex;
    flex-direction: column;
  }
  .footer__bottom-copyright {
    order: 3;
  }
  .footer__bottom-navigation__list {
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__bottom-social {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 429px) {
  .header__logo-name {
    font-size: 20px;
  }

  .introduction__info-strengths__card {
    width: 100%;
    max-width: unset;
  }

  .welcome__image-last {
    display: none;
  }

  .workflow__title::after {
    right: -35px;
  }
  .workflow__steps::before {
    left: 0;
  }
  .workflow__steps-card:nth-child(1)::after {
    right: -80px;
  }

  .about__main-team__image img:nth-child(2) {
    margin-left: -120px;
  }
  .about__main-team__image img:last-child {
    margin-left: -120px;
  }
  .about__strengths {
    display: flex;
  }
  .about__strengths-item {
    max-width: unset;
  }
  .about__strengths-item:nth-child(3) {
    grid-column: unset;
  }

  .advantages__title::after {
    right: -10px;
  }
  .advantages__cards {
    gap: 40px;
  }
  .advantages__cards::before {
    content: unset;
  }
  .advantages__cards-elem {
    width: unset;
    height: unset;
    padding-bottom: 20px;
  }
  .advantages__cards-elem:nth-child(even) {
    margin: unset;
  }
  .advantages__cards-elem__title {
    max-width: unset;
  }
}
@media (max-width: 375px) {
  .header__menu-navigation__phone {
    font-size: 16px;
  }

  .services__top-title::after {
    content: unset;
  }

  .workflow__title {
    margin-bottom: 30px;
  }
  .workflow__steps::before {
    left: -25px;
  }
  .workflow__steps-card:nth-child(1)::after {
    top: -62px;
    right: -50px;
  }
  .workflow__steps-card:nth-child(4)::before {
    left: -75px;
  }

  .faq__elem {
    padding: 10px;
  }
  .faq__elem--opened .faq__elem-answer {
    padding-top: 10px;
  }
}
@media (hover: hover) {
  .header__menu-phone:hover {
    background-color: #fff;
    color: #134848;
  }
  .header__menu-navigation__list li a:hover {
    color: #F9BC60;
  }
  .header__logo:hover .header__logo-name {
    color: #F9BC60;
  }

  .services__card-phone:hover {
    background-color: #F9BC60;
  }
  .services__prev:hover, .services__next:hover {
    opacity: .6;
  }

  .testimonials__pagination-prev:hover, .testimonials__pagination-next:hover {
    opacity: .6;
  }

  .advantages__phone:hover {
    border-color: #134848;
    background-color: #134848;
  }

  .faq__elem:hover {
    border: 1px solid #134848;
    background: #004C4C;
  }
  .faq__elem:hover .faq__elem-question__number, .faq__elem:hover .faq__elem-question__subtitle {
    color: #fff;
  }

  .footer__logo:hover {
    color: #F9BC60;
  }
  .footer__logo-name {
    transition: unset;
  }
  .footer__phone:hover {
    background-color: transparent;
    color: #F9BC60;
  }
  .footer__phone:hover .footer__phone-number {
    color: #F9BC60;
  }
  .footer__privacy:hover {
    color: #F9BC60;
  }
  .footer__bottom-navigation__list li a:hover {
    color: #F9BC60;
  }
  .footer__bottom-social a:hover {
    opacity: .5;
  }
}
@media (hover: none) {
  .header__menu-phone:active {
    background-color: #fff;
    color: #134848;
  }
  .header__menu-navigation__list li a:active {
    color: #F9BC60;
  }
  .header__logo:active .header__logo-name {
    color: #F9BC60;
  }

  .services__card-phone:active {
    background-color: #F9BC60;
  }
  .services__prev:active, .services__next:active {
    opacity: .6;
  }

  .testimonials__pagination-prev:active, .testimonials__pagination-next:active {
    opacity: .6;
  }

  .advantages__phone:active {
    border-color: #134848;
    background-color: #134848;
  }

  .faq__elem:active {
    border: 1px solid #134848;
    background: #004C4C;
  }
  .faq__elem:active .faq__elem-question__number, .faq__elem:active .faq__elem-question__subtitle {
    color: #fff;
  }

  .footer__logo:active {
    color: #F9BC60;
  }
  .footer__logo-name {
    transition: unset;
  }
  .footer__phone:active {
    background-color: transparent;
    color: #F9BC60;
  }
  .footer__phone:active .footer__phone-number {
    color: #F9BC60;
  }
  .footer__privacy:active {
    color: #F9BC60;
  }
  .footer__bottom-navigation__list li a:active {
    color: #F9BC60;
  }
  .footer__bottom-social a:active {
    opacity: .5;
  }
}
