*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  transition: all .3s;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Inter", sans-serif;
}

ul {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: unset;
}

.container {
  margin: 0 auto;
  padding: 0 18px;
  max-width: 1176px;
  display: flex;
  justify-content: center;
}

.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.header__logo {
  gap: 10px;
  display: flex;
  align-items: center;
}
.header__logo-icon {
  width: 38px;
  height: 45px;
}
.header__logo-icon--mobile {
  display: none;
}
.header__logo-name {
  color: #2C5181;
  font-weight: 600;
  font-size: 22px;
}
.header__navigation {
  gap: 30px;
  display: flex;
  align-items: center;
}
.header__navigation-list {
  gap: 30px;
  display: flex;
  align-items: center;
}
.header__navigation-list a {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}
.header__navigation-phone {
  background: #FA8E06;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 69px;
  border: 2px solid #FA8E06;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 16px 5px 0 rgba(250, 142, 6, 0), 0 10px 4px 0 rgba(250, 142, 6, 0.01), 0 6px 3px 0 rgba(250, 142, 6, 0.05), 0 3px 3px 0 rgba(250, 142, 6, 0.09), 0 1px 1px 0 rgba(250, 142, 6, 0.1);
  padding: 17px 30px;
}
@media (max-width: 480px) {
  .header__navigation-phone {
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .header__navigation-phone:hover {
    background-color: transparent;
    color: #FA8E06;
  }
  .header__navigation-phone:hover svg path {
    fill: #FA8E06;
  }
}
@media (hover: none) {
  .header__navigation-phone:active {
    background-color: #fff;
    color: #FA8E06;
  }
  .header__navigation-phone:active svg path {
    fill: #FA8E06;
  }
}
.header__navigation-close {
  display: none;
}
.header__toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__toggle span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #FFFFFF;
  left: 5px;
  transition: transform .5s, opacity .5s, background-color .5s;
}
.header__toggle span:nth-child(1) {
  transform: translateY(-10px);
}
.header__toggle span:nth-child(3) {
  transform: translateY(10px);
}
.header.opened .header__navigation-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__toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header.opened .header__toggle span:nth-child(2) {
  opacity: 0;
}
.header.opened .header__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;
}

.strengths {
  background: linear-gradient(90deg, #2E5383 0%, #2A4F7F 100%);
}
.strengths__inner {
  width: 100%;
  padding: 30px 0;
}
.strengths__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strengths__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.introduction {
  background: url("../../assets/images/introduction/bg.png") no-repeat center;
  background-size: cover;
  padding: 140px 0 300px 0;
}
.introduction__inner {
  width: 100%;
  color: #fff;
}
.introduction__title {
  font-size: 70px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
}
.introduction__text {
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.96px;
  margin-bottom: 40px;
  max-width: 535px;
}
.introduction__strengths {
  display: none;
}
.introduction__phone {
  background: #FA8E06;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 69px;
  border: 2px solid #FA8E06;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 16px 5px 0 rgba(250, 142, 6, 0), 0 10px 4px 0 rgba(250, 142, 6, 0.01), 0 6px 3px 0 rgba(250, 142, 6, 0.05), 0 3px 3px 0 rgba(250, 142, 6, 0.09), 0 1px 1px 0 rgba(250, 142, 6, 0.1);
  font-size: 18px;
}
@media (max-width: 480px) {
  .introduction__phone {
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .introduction__phone:hover {
    background-color: transparent;
    color: #FA8E06;
  }
  .introduction__phone:hover svg path {
    fill: #FA8E06;
  }
}
@media (hover: none) {
  .introduction__phone:active {
    background-color: #fff;
    color: #FA8E06;
  }
  .introduction__phone:active svg path {
    fill: #FA8E06;
  }
}

.advantages {
  padding: 140px 0;
}
.advantages__inner {
  width: 100%;
}
.advantages__block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.advantages__block:first-child {
  margin-bottom: 16px;
}
.advantages__block-image {
  width: 466px;
  height: 357px;
}
.advantages__block-cards {
  display: flex;
  align-items: center;
  gap: 16px;
}
.advantages__block-card {
  color: #2C5181;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
  max-width: 321px;
  width: 100%;
  height: 357px;
  padding: 29px 17px 0 17px;
}
.advantages__block-card__icon {
  margin-bottom: 26px;
}
.advantages__block-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.28px;
  margin-bottom: 23px;
}
.advantages__block-card__text {
  max-width: 292px;
  font-size: 16px;
  line-height: 140%;
}

.about {
  background: #2C5181;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.about__inner {
  width: 100%;
  display: flex;
  align-items: center;
}
.about__column:first-child {
  padding-right: 20px;
}
.about__column:last-child {
  padding-left: 20px;
}
.about__column:nth-child(2) {
  background-color: #fff;
  text-align: center;
  color: #4174C3;
  padding: 0 15px;
  height: 100%;
  position: relative;
  z-index: 10;
}
.about__column-services {
  max-width: 325px;
  width: 100%;
}
.about__column-service:first-child {
  padding-bottom: 40px;
}
.about__column-service:last-child {
  padding-top: 40px;
}
.about__column-service__name {
  color: #E8AE5D;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.32px;
  margin-bottom: 18px;
}
.about__column-service__description {
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}
.about__column-service__phone {
  background: #FA8E06;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 69px;
  border: 2px solid #FA8E06;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 16px 5px 0 rgba(250, 142, 6, 0), 0 10px 4px 0 rgba(250, 142, 6, 0.01), 0 6px 3px 0 rgba(250, 142, 6, 0.05), 0 3px 3px 0 rgba(250, 142, 6, 0.09), 0 1px 1px 0 rgba(250, 142, 6, 0.1);
  padding: 18px 19px;
}
@media (max-width: 480px) {
  .about__column-service__phone {
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .about__column-service__phone:hover {
    background-color: transparent;
    color: #FA8E06;
  }
  .about__column-service__phone:hover svg path {
    fill: #FA8E06;
  }
}
@media (hover: none) {
  .about__column-service__phone:active {
    background-color: #fff;
    color: #FA8E06;
  }
  .about__column-service__phone:active svg path {
    fill: #FA8E06;
  }
}
.about__column-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 20px;
  color: #2C5181;
}
.about__column-text {
  font-size: 18px;
  line-height: 150%;
  max-width: 380px;
  margin-bottom: 34px;
}

.services {
  padding: 140px 0;
}
.services__inner {
  width: 100%;
}
.services__title {
  color: #2C5181;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .services__title {
    font-size: 32px;
  }
}
.services__text {
  text-align: center;
  max-width: 726px;
  color: #2C5181;
  font-size: 18px;
  line-height: 150%;
  margin: 0 auto 49px;
}
.services__block {
  display: flex;
  justify-content: space-between;
  gap: 13px;
}
.services__block-column {
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
  padding: 18px 12px 21px 18px;
  max-width: 370px;
  width: 100%;
  max-height: 483px;
}
.services__block-column:nth-child(2) {
  margin-top: 40px;
}
.services__block-column:nth-child(3) {
  margin-top: 80px;
}
.services__block-column .services__elem + .services__elem {
  margin-top: 24px;
}
.services__block-column .services__elem {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services__block-column .services__elem + .services__block-column .services__elem {
  margin-top: 24px;
}
.services__block-column .services__elem-icon {
  width: 80px;
  height: 80px;
}
.services__block-column .services__elem-info__name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 6px;
}
.services__block-column .services__elem-info__description {
  color: #000;
  font-size: 14px;
  line-height: 140%;
}

.testimonials {
  background: #2C5181;
  padding: 70px 0;
}
.testimonials__inner {
  width: 100%;
  position: relative;
}
.testimonials__title {
  color: #2C5181;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 32px;
  }
}
.testimonials__text {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 150%;
  margin: 0 auto 50px;
  max-width: 607px;
}
.testimonials__cards {
  margin: 40px;
  justify-content: center;
  max-width: 1023px !important;
}
.testimonials .swiper-slide {
  max-width: 331px !important;
}
.testimonials__card {
  background: #fff;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.15);
  padding: 30px 23px 34px 23px;
}
.testimonials__card-assessment {
  margin-bottom: 27px;
}
.testimonials__card-text {
  color: #2D2C2C;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 22px;
}
.testimonials__card-name {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.testimonials__buttons-prev, .testimonials__buttons-next {
  background: #FA8E06;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.15);
  border: 2px solid #FA8E06;
  width: 74px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
  bottom: 155px;
  cursor: pointer;
  border-radius: 10px;
}
.testimonials__buttons-prev {
  left: 0;
}
.testimonials__buttons-next {
  right: 6px;
}
.testimonials__pagination {
  display: flex;
  justify-content: center;
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #FA8E06;
}
.testimonials__pagination .swiper-pagination-bullet-active {
  background-color: #FA8E06;
}

.contacts {
  padding: 140px 0;
}
.contacts__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.contacts__image {
  max-width: 500px;
}
.contacts__info-title {
  color: #2C5181;
  font-size: 32px;
  font-weight: 700;
  line-height: 53px;
  margin-bottom: 16px;
}
.contacts__info-text {
  color: #2C5181;
  font-size: 16px;
  line-height: 181%;
  margin-bottom: 34px;
  max-width: 605px;
}
.contacts__info-links {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 44px;
}
.contacts__info-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contacts__info-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2C5181;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts__info-link__group {
  color: #3A3A3A;
  font-size: 14px;
  line-height: 24px;
}
.contacts__info-link__group strong {
  margin-top: 2px;
  color: #2C5181;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}
.contacts__info-phone {
  background: #FA8E06;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 69px;
  border: 2px solid #FA8E06;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 16px 5px 0 rgba(250, 142, 6, 0), 0 10px 4px 0 rgba(250, 142, 6, 0.01), 0 6px 3px 0 rgba(250, 142, 6, 0.05), 0 3px 3px 0 rgba(250, 142, 6, 0.09), 0 1px 1px 0 rgba(250, 142, 6, 0.1);
}
@media (max-width: 480px) {
  .contacts__info-phone {
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .contacts__info-phone:hover {
    background-color: transparent;
    color: #FA8E06;
  }
  .contacts__info-phone:hover svg path {
    fill: #FA8E06;
  }
}
@media (hover: none) {
  .contacts__info-phone:active {
    background-color: #fff;
    color: #FA8E06;
  }
  .contacts__info-phone:active svg path {
    fill: #FA8E06;
  }
}

.footer {
  background: #2C5181;
  padding: 90px 0 0 0;
}
.footer__inner {
  width: 100%;
  color: #fff;
  text-align: center;
}
.footer__supertitle {
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}
.footer__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 19px;
}
.footer__text {
  max-width: 782px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 33px;
  opacity: 0.8;
}
.footer__phone {
  background: #FA8E06;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 69px;
  border: 2px solid #FA8E06;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 16px 5px 0 rgba(250, 142, 6, 0), 0 10px 4px 0 rgba(250, 142, 6, 0.01), 0 6px 3px 0 rgba(250, 142, 6, 0.05), 0 3px 3px 0 rgba(250, 142, 6, 0.09), 0 1px 1px 0 rgba(250, 142, 6, 0.1);
  margin: 0 auto 40px;
}
@media (max-width: 480px) {
  .footer__phone {
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .footer__phone:hover {
    background-color: transparent;
    color: #FA8E06;
  }
  .footer__phone:hover svg path {
    fill: #FA8E06;
  }
}
@media (hover: none) {
  .footer__phone:active {
    background-color: #fff;
    color: #FA8E06;
  }
  .footer__phone:active svg path {
    fill: #FA8E06;
  }
}
.footer__copyright {
  opacity: .8;
  font-size: 14px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__copyright-links {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copyright-links a {
  color: #fff;
}
.footer__divider {
  opacity: .2;
}
.footer__bottom {
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__bottom-logo__icon {
  width: 38px;
  height: 45px;
}
.footer__bottom-logo__name {
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}
.footer__bottom-navigation__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__bottom-navigation__list li a {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}
.footer__bottom-social {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer__bottom-social a {
  width: 45px;
  height: 45px;
  border: 2px solid #FFFFFF33;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .advantages__block-card {
    padding: 17px;
  }

  .testimonials__buttons-prev, .testimonials__buttons-next {
    display: none;
  }
}
@media (max-width: 1100px) {
  .header__navigation-phone {
    display: none;
  }

  .advantages__block-image {
    display: none;
  }
  .advantages__block-cards {
    width: 100%;
  }
  .advantages__block-card {
    max-width: unset;
    width: 49%;
  }
  .advantages__block-card__text {
    margin: 0 auto;
  }

  .services__block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .services__block-column {
    max-width: 359px;
  }
  .services__block-column:nth-child(2) {
    margin-top: unset;
  }
  .services__block-column:nth-child(3) {
    margin-top: unset;
  }

  .contacts__image {
    max-width: 400px;
  }

  .footer__bottom-navigation__list {
    gap: 15px;
  }
  .footer__bottom-social {
    display: none;
  }
}
@media (max-width: 1000px) {
  .strengths {
    display: none;
  }

  .about__column:first-child {
    padding: 20px 20px 20px 0;
  }
  .about__column:last-child {
    padding: 20px 0 20px 20px;
  }
  .about__column:nth-child(2) .about__column-image {
    width: 100%;
  }
  .about__column-service__phone {
    display: none;
  }
}
@media (max-width: 920px) {
  .contacts__image {
    display: none;
  }
  .contacts__info-text {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  main.menu-opened::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 10;
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: #393939B2;
  }

  .header {
    z-index: 100;
    position: relative;
    background-color: #2D5282;
  }
  .header__inner {
    padding: 20px 0;
  }
  .header__logo-icon {
    display: none;
  }
  .header__logo-icon--mobile {
    width: 26px;
    height: 35px;
    display: block;
  }
  .header__logo-name {
    color: #fff;
  }
  .header__navigation {
    display: none;
    padding: 60px 18px 46px 18px;
  }
  .header__navigation.opened {
    display: block;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background-color: #fff;
  }
  .header__navigation.opened .header__navigation-list {
    gap: 74px;
    align-items: unset;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(44, 81, 129, 0.2);
    margin-bottom: 45px;
  }
  .header__navigation.opened .header__navigation-list__item a {
    font-size: 32px;
    font-weight: 700;
  }
  .header__navigation-phone {
    display: flex;
  }
  .header__toggle {
    display: block;
  }

  .introduction__title {
    font-size: 51px;
  }
  .introduction__text {
    font-size: 21px;
  }

  .advantages {
    padding: 40px 0;
  }
  .advantages__block {
    flex-wrap: wrap;
  }
  .advantages__block:last-child {
    flex-direction: column-reverse;
  }
  .advantages__block-image {
    width: 100%;
    object-fit: cover;
    display: block;
    height: unset;
  }
  .advantages__block-cards {
    align-items: unset;
  }
  .advantages__block-card {
    height: unset;
  }

  .about {
    padding: 40px 0;
    position: unset;
  }
  .about::before {
    content: unset;
  }
  .about__inner {
    gap: 40px;
    flex-direction: column;
  }
  .about__column-services {
    max-width: unset;
  }
  .about__column:first-child {
    padding: unset;
    width: 100%;
  }
  .about__column:first-child .about__column-services {
    gap: 20px;
    display: flex;
    justify-content: space-between;
  }
  .about__column:last-child {
    padding: unset;
    width: 100%;
  }
  .about__column:last-child .about__column-services {
    gap: 20px;
    display: flex;
    justify-content: space-between;
  }
  .about__column:nth-child(2) {
    order: -1;
    background-color: transparent;
    padding: unset;
  }
  .about__column:nth-child(2) .about__column-title {
    color: #E8AE5D;
  }
  .about__column:nth-child(2) .about__column-text {
    color: #fff;
    max-width: unset;
    margin-bottom: unset;
  }
  .about__column:nth-child(2) .about__column-image {
    display: none;
  }
  .about__column-service {
    max-width: 320px;
  }
  .about__column-service:first-child {
    padding: unset;
  }
  .about__column-service:last-child {
    padding: unset;
  }
  .about__column-service__phone {
    display: flex;
  }

  .services {
    padding: 40px 0;
  }
  .services__block-column {
    max-width: unset;
  }

  .testimonials {
    padding: 40px 0;
  }

  .contacts {
    padding: 40px 0;
  }

  .footer {
    padding-top: 40px;
  }
  .footer__divider {
    display: none;
  }
  .footer__bottom {
    display: none;
  }
}
@media (max-width: 700px) {
  .about__column-services {
    flex-direction: column;
  }
  .about__column:first-child .about__column-services {
    gap: 40px;
  }
  .about__column:first-child .about__column-service:last-child {
    margin-left: auto;
  }
  .about__column:last-child .about__column-services {
    gap: 40px;
  }
  .about__column:last-child .about__column-services .about__column-service:last-child {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .introduction {
    padding: 40px 0;
  }
  .introduction__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 18px;
  }
  .introduction__text {
    font-size: 18px;
    text-align: center;
  }
  .introduction__strengths {
    gap: 24px;
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
  }
  .introduction__strengths-item {
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 17px 20px;
    border-radius: 20px;
    background: rgba(43, 80, 128, 0.8);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
  }

  .advantages__block-image {
    height: 357px;
  }
  .advantages__block-card {
    padding: 10px;
    text-align: unset;
  }
  .advantages__block-card__icon {
    width: 79px;
    height: 79px;
    margin-bottom: 13px;
  }
  .advantages__block-card__title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .advantages__block-card__text {
    font-size: 12px;
    max-width: unset;
  }

  .about__column:last-child .about__column-service:last-child .about__column-service__phone {
    display: flex;
    margin-top: 24px;
  }
  .about__column:nth-child(2) .about__column-title {
    font-size: 32px;
  }
  .about__column:nth-child(2) .about__column-text {
    line-height: 160%;
    margin-bottom: 18px;
  }
  .about__column:nth-child(2) .about__column-image {
    width: 100%;
    display: block;
  }
  .about__column-service__description {
    margin-bottom: unset;
  }
  .about__column-service__phone {
    display: none;
  }

  .services__title {
    margin-bottom: 18px;
  }
  .services__text {
    margin-bottom: 40px;
  }
  .services__block-column .services__elem {
    gap: 6px;
  }

  .testimonials__text {
    margin-bottom: 40px;
  }

  .contacts__inner {
    flex-wrap: wrap;
  }
  .contacts__image {
    width: 100%;
    display: block;
    max-width: unset;
  }
  .contacts__info-title {
    line-height: 40px;
    text-align: center;
    margin-bottom: 24px;
  }
  .contacts__info-text {
    text-align: center;
  }
  .contacts__info-links {
    margin: 0 auto;
    max-width: 338px;
    justify-content: space-between;
  }
  .contacts__info-link {
    gap: 15px;
    text-align: center;
    flex-direction: column;
  }
  .contacts__info-link__group {
    gap: 7px;
    display: flex;
    flex-direction: column;
  }
  .contacts__info-phone {
    display: none;
  }

  .footer__supertitle {
    font-size: 10px;
    margin-bottom: 12px;
    letter-spacing: unset;
  }
  .footer__title {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 28px;
  }
  .footer__phone {
    padding: 16.5px 0;
  }
  .footer__divider {
    display: block;
  }
  .footer__bottom {
    gap: 50px;
    display: flex;
    flex-direction: column;
  }
  .footer__bottom-logo__name {
    font-size: 34px;
  }
  .footer__bottom-navigation__list {
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__bottom-social {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 375px) {
  .introduction__strengths-item {
    font-size: 13px;
  }

  .advantages__block-image {
    height: unset;
  }
  .advantages__block-cards {
    flex-wrap: wrap;
  }
  .advantages__block-card {
    width: 100%;
    text-align: center;
  }

  .services__block-column .services__elem-icon {
    width: 60px;
    height: 60px;
  }
  .services__block-column .services__elem-info__name {
    font-size: 14px;
  }
  .services__block-column .services__elem-info__description {
    font-size: 12px;
  }

  .contacts__inner {
    gap: 20px;
  }
  .contacts__info-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .contacts__info-text {
    font-size: 14px;
  }
  .contacts__info-links {
    justify-content: center;
  }
  .contacts__info-link__group {
    display: none;
  }

  .footer__title {
    font-size: 21px;
  }
  .footer__bottom {
    gap: 40px;
  }
  .footer__bottom-logo__name {
    font-size: 26px;
  }
  .footer__bottom-navigation__list {
    gap: 30px;
  }
  .footer__bottom-navigation__list li {
    width: 100%;
  }
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: .6;
  }
  .header__navigation-list li a:hover {
    color: #FA8E06;
  }

  .testimonials__buttons-prev:hover, .testimonials__buttons-next:hover {
    background-color: #2C5181;
  }
  .testimonials__buttons-prev:hover svg path, .testimonials__buttons-next:hover svg path {
    fill: #FA8E06;
  }

  .contacts__info-link:hover {
    opacity: .6;
  }

  .footer__copyright-links a:hover {
    color: #FA8E06;
  }
  .footer__bottom-logo:hover {
    opacity: .6;
  }
  .footer__bottom-navigation__list li a:hover {
    color: #FA8E06;
  }
  .footer__bottom-social a:hover {
    opacity: .4;
  }
}
@media (hover: none) {
  .header__logo:active {
    opacity: .6;
  }
  .header__navigation-list li a:active {
    color: #FA8E06;
  }

  .testimonials__buttons-prev:active, .testimonials__buttons-next:active {
    background-color: #fff;
  }
  .testimonials__buttons-prev:active svg path, .testimonials__buttons-next:active svg path {
    fill: #FA8E06;
  }

  .contacts__info-link:active {
    opacity: .6;
  }

  .footer__copyright-links a:active {
    color: #FA8E06;
  }
  .footer__bottom-logo:active {
    opacity: .6;
  }
  .footer__bottom-navigation__list li a:active {
    color: #FA8E06;
  }
  .footer__bottom-social a:active {
    opacity: .4;
  }
}
