*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  transition: all .3s;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: #4174C3;
  font-family: "Inika", sans-serif;
}

ul {
  list-style: none;
}

a {
  color: #333;
  cursor: pointer;
  text-decoration: unset;
}

.container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1176px;
  padding: 0 18px;
}

.header__burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__burger span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #4174C3;
  left: 5px;
  transition: transform .5s, opacity .5s, background-color .5s;
}
.header__burger span:nth-child(1) {
  transform: translateY(-10px);
}
.header__burger span:nth-child(3) {
  transform: translateY(10px);
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 0 27px;
}
.header__logo {
  gap: 10px;
  display: flex;
  align-items: center;
}
.header__logo-icon {
  width: 50px;
  height: 46px;
}
.header__logo-name {
  color: #4174C3;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 800;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 67px;
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header__menu ul li a {
  font-size: 16px;
  font-weight: 700;
}
.header__menu-phone {
  border-radius: 7px;
  background: #4174C3;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: fit-content;
  border: 2px solid #4174C3;
  padding: 9px 31px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (hover: hover) {
  .header__menu-phone:hover {
    color: #4174C3;
    background-color: #fff;
  }
  .header__menu-phone:hover svg path {
    fill: #4174C3;
  }
}
@media (hover: none) {
  .header__menu-phone:active {
    color: #4174C3;
    background-color: #fff;
  }
  .header__menu-phone:active svg path {
    fill: #4174C3;
  }
}
.header__menu-close {
  display: none;
}
.header.open .header__menu {
  border-top: 1px solid #000000;
}
.header.open .header__menu .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.open .header__inner {
  z-index: 11;
}
.header.open .header__burger span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header.open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header.open .header__burger span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.header.open ~ main::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 111px;
  left: 0;
}
.header.open ~ body {
  overflow-y: hidden;
}

.introduction {
  background: url("../../assets/images/introduction/bg.png") no-repeat center;
  background-size: cover;
  padding: 138px 0 155px;
}
.introduction__inner {
  width: 100%;
  color: #fff;
}
.introduction__title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.introduction__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.introduction__text {
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 24px;
  max-width: 702px;
}
.introduction__price {
  color: #FF6464;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 36px;
  padding-left: 174px;
  position: relative;
}
.introduction__price::before {
  position: absolute;
  content: '';
  width: 159px;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 15px;
}
.introduction__phone {
  border-radius: 7px;
  background: #4174C3;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: fit-content;
  border: 2px solid #4174C3;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 82px;
}
@media (hover: hover) {
  .introduction__phone:hover {
    color: #4174C3;
    background-color: #fff;
  }
  .introduction__phone:hover svg path {
    fill: #4174C3;
  }
}
@media (hover: none) {
  .introduction__phone:active {
    color: #4174C3;
    background-color: #fff;
  }
  .introduction__phone:active svg path {
    fill: #4174C3;
  }
}

.advantages__inner {
  width: 100%;
  padding-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.advantages__card {
  border-radius: 7px;
  background: #FFF;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 10px 21px;
  text-align: center;
  max-width: 279px;
  width: 100%;
  max-height: 155px;
  height: 100%;
}
.advantages__card:nth-child(3) {
  padding-top: 22px;
}
.advantages__card-icon {
  margin-bottom: 9px;
}
.advantages__card-title {
  font-size: 24px;
  font-weight: 700;
}

.services__inner {
  width: 100%;
  padding: 120px 0;
}
.services__title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  text-align: center;
  margin-bottom: 12px;
}
.services__text {
  margin: 0 auto;
  max-width: 779px;
  text-align: center;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.18px;
}
.services__list .swiper-slide {
  max-width: 288px !important;
  width: 100% !important;
  height: 444px !important;
}
.services__list .swiper-wrapper {
  padding: 40px 0 60px;
}
.services__list-item {
  text-align: center;
  position: relative;
}
.services__list-item__image {
  margin-bottom: 24px;
  border-radius: 50%;
  border: 5px solid #4174C3;
  max-width: 214px;
  max-height: 214px;
}
.services__list-item__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 18px;
}
.services__list-item__description {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 24px;
}
.services__list-item__phone {
  border-radius: 7px;
  background: #4174C3;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: fit-content;
  border: 2px solid #4174C3;
  padding: 11px 33px 16px 33px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 45px;
}
@media (hover: hover) {
  .services__list-item__phone:hover {
    color: #4174C3;
    background-color: #fff;
  }
  .services__list-item__phone:hover svg path {
    fill: #4174C3;
  }
}
@media (hover: none) {
  .services__list-item__phone:active {
    color: #4174C3;
    background-color: #fff;
  }
  .services__list-item__phone:active svg path {
    fill: #4174C3;
  }
}
.services .swiper-button-disabled {
  opacity: 0.5;
}
.services__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  width: fit-content;
  margin: 0 auto;
}
.services__pagination-prev {
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.services__pagination-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #4174C3;
}
.services__pagination-dots .swiper-pagination-bullet-active {
  background-color: #4174C3;
}
.services__pagination-next {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.about {
  background: linear-gradient(90deg, #04151C 0%, #16616B 70.78%, #2499A6 114.44%);
  padding: 69px 0 75px;
}
.about__inner {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.about__info-top {
  display: flex;
  align-items: center;
  margin-bottom: 33px;
  gap: 15px;
}
.about__info-top-icon {
  width: 127px;
  height: 127px;
}
.about__info-top__group {
  max-width: 382px;
}
.about__info-top__group h2 {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 3px;
  color: #fff;
  text-align: left;
}
.about__info-top__group h3 {
  color: #fff;
  text-align: left;
  font-size: 24px;
}
.about__info-text {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}
.about__info-text__paragraph:first-child {
  max-width: 303px;
}
.about__info-text__paragraph:last-child {
  max-width: 265px;
}
.about__info-phone {
  border-radius: 7px;
  background: #4174C3;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: fit-content;
  border: 2px solid #4174C3;
  padding: 14px 44px;
}
@media (hover: hover) {
  .about__info-phone:hover {
    color: #4174C3;
    background-color: #fff;
  }
  .about__info-phone:hover svg path {
    fill: #4174C3;
  }
}
@media (hover: none) {
  .about__info-phone:active {
    color: #4174C3;
    background-color: #fff;
  }
  .about__info-phone:active svg path {
    fill: #4174C3;
  }
}
.about__strengths {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.about__strengths-group {
  background: #fff;
  border-radius: 7px;
  max-height: 318px;
  height: 100%;
  max-width: 251px;
  width: 100%;
  padding: 21px 14px 23px 14px;
}
.about__strengths-group:first-child {
  margin-bottom: 82px;
}
.about__strength {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__strength + .about__strength {
  margin-top: 25px;
}
.about__strength-info__name {
  color: #4174C3;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about__strength-info__description {
  color: #000;
  font-size: 10px;
  line-height: 160%;
}

.testimonials__inner {
  width: 100%;
  padding: 120px 0;
}
.testimonials__title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 24px;
}
.testimonials__text {
  text-align: center;
  font-size: 24px;
}
.testimonials .swiper {
  max-width: 980px;
  padding-right: 20px;
}
.testimonials .swiper-wrapper {
  padding: 60px 15px 40px 15px;
}
.testimonials .swiper-slide {
  max-width: 280px !important;
  width: 100% !important;
  height: 306px;
  margin-top: 30px;
}
.testimonials .swiper-button-disabled {
  opacity: 0.5;
}
.testimonials__card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  padding: 29px 16px 22px 16px;
}
.testimonials__card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.testimonials__card-info__image {
  width: 60px;
  height: 60px;
}
.testimonials__card-info__group h3 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonials__card-summary {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 17px;
}
.testimonials__card-text {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 160%;
}
.testimonials__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  width: fit-content;
  margin: 0 auto;
}
.testimonials__pagination-prev {
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.testimonials__pagination-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #4174C3;
  opacity: 1;
}
.testimonials__pagination-dots .swiper-pagination-bullet-active {
  background-color: #4174C3;
}
.testimonials__pagination-dots .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 20px;
}
.testimonials__pagination-next {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.contacts {
  padding-bottom: 120px;
}
.contacts__inner {
  padding: 50px 72px 50px 83px;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  display: flex;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.contacts__info {
  max-width: 594px;
  padding: 15px 48px 0 0;
  border-right: 1px solid rgba(65, 116, 195, 0.2);
}
.contacts__info-title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 14px;
}
.contacts__info-text {
  font-size: 18px;
  line-height: 180%;
  margin-bottom: 34px;
}
.contacts__info-links {
  display: flex;
  align-items: center;
  gap: 56px;
}
.contacts__info-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contacts__info-link__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4174C3;
}
.contacts__info-link__group {
  color: #3A3A3A;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 2px;
}
.contacts__info-link__group strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: #4174C3;
}
.contacts__workflow {
  padding-left: 54px;
}
.contacts__workflow-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contacts__workflow-steps {
  position: relative;
}
.contacts__workflow-steps::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 90%;
  background-color: rgba(65, 116, 195, 0.2);
  left: 7px;
  top: 22px;
}
.contacts__workflow-steps__item {
  font-size: 18px;
  line-height: 129.757%;
  padding-left: 26px;
  position: relative;
}
.contacts__workflow-steps__item:last-child::before {
  background-color: #4174C3;
}
.contacts__workflow-steps__item + .contacts__workflow-steps__item {
  margin-top: 36px;
}
.contacts__workflow-steps__item::before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #4174C3;
  background: #fff;
  display: block;
  left: 0;
  border-radius: 50%;
  top: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.footer {
  background: linear-gradient(90deg, #04151C 0%, #16616B 70.78%, #2499A6 114.44%);
  padding: 50px 0;
  color: #fff;
}
.footer__inner {
  width: 100%;
}
.footer__contact {
  margin: 0 auto 81px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  width: fit-content;
}
.footer__contact-text {
  font-size: 18px;
}
.footer__contact-phone {
  display: flex;
  border-radius: 7px;
  align-items: center;
  background-color: #fff;
  padding: 12px 12px 12px 29px;
  max-width: 380px;
  width: 100%;
  justify-content: space-between;
}
.footer__contact-phone__number {
  color: #4174C3;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-right: 120px;
}
.footer__contact-phone__icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #4174C3;
}
.footer__main {
  text-align: center;
}
.footer__main-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 30px;
}
.footer__main-logo__icon {
  width: 50px;
  height: 46px;
}
.footer__main-logo__name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.footer__main-links {
  margin-bottom: 27px;
}
.footer__main-navigation {
  margin-bottom: 26px;
}
.footer__main-navigation__list {
  gap: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__main-navigation__list li a {
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.footer__main-social {
  gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__main-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 70px;
  max-width: 480px;
  width: 100%;
  border-radius: 7px;
  background: #FFF;
  padding: 13px 0;
  color: #4174C3;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}
.footer__main-copyright {
  opacity: 0.8;
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__main-copyright__links {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__main-copyright__links a {
  color: #fff;
}

@media (max-width: 1200px) {
  .advantages__inner {
    flex-wrap: wrap;
  }

  .about__inner {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about__info-text {
    flex-wrap: wrap;
  }
  .about__info-text__paragraph:first-child {
    max-width: unset;
  }
  .about__info-text__paragraph:last-child {
    max-width: unset;
  }
  .about__strengths-group {
    max-width: unset;
  }
  .about__strengths-group:first-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .header__menu ul {
    gap: 20px;
  }
  .header__menu-phone {
    display: none;
  }

  .testimonials .swiper {
    padding-left: 220px;
  }

  .contacts__inner {
    flex-wrap: wrap;
    padding: 20px 20px 52px 20px;
  }
  .contacts__info {
    margin-bottom: 35px;
    border-right: unset;
    max-width: unset;
  }
  .contacts__info-title {
    text-align: unset;
  }
  .contacts__info-text {
    max-width: unset;
  }
  .contacts__workflow {
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .testimonials .swiper {
    padding-left: 150px;
  }
}
@media (max-width: 768px) {
  .header__menu {
    position: absolute;
    left: 0;
    top: 70px;
    background-color: #fff;
    width: 0;
    padding: 70px 18px 49px 18px;
    z-index: 1;
    display: none;
  }
  .header__menu-close {
    display: block;
  }
  .header__menu-navigation ul {
    display: block;
    margin-bottom: 100px;
  }
  .header__menu-navigation ul li + li {
    margin-top: 56px;
    margin-left: 0;
  }
  .header__menu-navigation ul li a {
    color: #333;
    font-size: 32px;
    font-weight: 700;
  }
  .header__burger {
    display: block;
    z-index: 2;
  }

  .header.open .header__menu {
    width: 100%;
    display: block;
  }

  .introduction__title {
    font-size: 40px;
  }

  .advantages__card {
    max-width: 260px;
  }
  .advantages__card-title {
    font-size: 20px;
  }

  .testimonials .swiper {
    padding-left: 100px;
  }
}
@media (max-width: 600px) {
  .introduction__title {
    font-size: 32px;
  }

  .advantages {
    margin-top: -80px;
  }
  .advantages__card {
    max-width: 211px;
    height: fit-content;
  }
  .advantages__card-icon {
    max-width: 40px;
    height: 40px;
  }
  .advantages__card-title {
    font-size: 18px;
  }

  .about__info-top__icon {
    max-width: 98px;
    height: 98px;
  }
  .about__info-top__group h2 {
    font-size: 32px;
  }
  .about__info-top__group h3 {
    font-size: 16px;
  }
  .about__info-text__paragraph {
    font-size: 12px;
  }
  .about__info-phone {
    padding: 14px 0;
    display: flex;
    justify-content: center;
    max-width: unset;
    width: 100%;
  }
  .about__strengths {
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  .about__strengths-group {
    max-width: unset;
  }

  .testimonials .swiper {
    padding-left: 0;
  }
  .testimonials__pagination-next {
    display: none;
  }
  .testimonials__pagination-prev {
    display: none;
  }

  .contacts__info {
    padding: 0;
  }
  .contacts__info-title {
    font-size: 32px;
  }
  .contacts__info-text {
    font-size: 14px;
  }
  .contacts__info-links {
    flex-wrap: wrap;
    gap: 28px;
  }

  .footer__contact-text {
    display: none;
  }
}
@media (max-width: 520px) {
  .header__logo-icon {
    width: 30px;
    height: 27px;
  }
  .header__logo-name {
    font-size: 20px;
  }
  .header__inner {
    padding: 15px 0;
  }

  .introduction__text {
    font-size: 16px;
  }
  .introduction__price {
    padding-left: 80px;
  }
  .introduction__price:before {
    width: 60px;
  }
  .introduction__phone {
    display: flex;
    padding: 16px 0;
    justify-content: center;
    width: 100%;
  }

  .advantages__card {
    max-width: 180px;
  }
  .advantages__card-title {
    font-size: 14px;
  }

  .services__inner {
    padding: 60px 0 70px;
  }
  .services__title {
    font-size: 32px;
  }
  .services__text {
    font-size: 14px;
  }
  .services__list .swiper-slide {
    max-width: 264px !important;
    height: 330px !important;
  }
  .services__list-item__image {
    max-width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }
  .services__list-item__name {
    font-size: 16px;
  }

  .about__strengths {
    margin-bottom: 0;
  }
  .about__strengths-group {
    height: fit-content;
  }

  .testimonials__inner {
    padding: 70px 0;
  }
  .testimonials__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .testimonials__text {
    font-size: 16px;
    max-width: 316px;
    display: flex;
    margin: 0 auto;
  }
  .testimonials .swiper-wrapper {
    padding-top: 30px;
  }

  .contacts {
    padding-bottom: 70px;
  }

  .footer__contact {
    display: none;
  }
  .footer__main-links {
    display: flex;
    justify-content: space-between;
  }
  .footer__main-navigation__list {
    display: block;
    text-align: start;
  }
  .footer__main-navigation__list li a {
    font-weight: 700;
    font-size: 24px;
  }
  .footer__main-navigation__list li + li {
    margin-top: 32px;
  }
  .footer__main-social {
    display: block;
    max-width: 24px;
  }
  .footer__main-social a:first-child img {
    width: 24px;
    height: 24px;
  }
  .footer__main-social a:nth-child(2) img {
    margin-top: 69px;
    width: 24px;
    height: 20px;
  }
  .footer__main-social a:last-child img {
    margin-top: 69px;
    width: 24px;
    height: 24px;
  }
  .footer__main-button {
    display: flex;
  }
}
@media (max-width: 429px) {
  .introduction__text {
    font-size: 14px;
  }

  .advantages__card {
    max-width: 100%;
  }

  .testimonials .swiper {
    margin-left: 0;
  }
  .testimonials .swiper-wrapper {
    padding-left: 0;
  }

  .contacts__info-text {
    font-size: 12px;
  }
  .contacts__workflow-steps__item {
    font-size: 14px;
  }
  .contacts__workflow-steps__item:before {
    top: 2px;
  }

  .footer__contact-phone__number {
    margin-right: 20px;
  }
  .footer__main-logo__name {
    font-size: 28px;
  }
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: .5;
  }
  .header__menu ul li a:hover {
    color: #4174C3;
  }
  .header__navigation-list li a:hover {
    color: #4174C3;
  }

  .services__pagination .swiper-pagination-bullet:hover,
  .testimonials__pagination .swiper-pagination-bullet:hover {
    background-color: #4174C3;
  }
  .services__pagination-prev:hover, .services__pagination-next:hover,
  .testimonials__pagination-prev:hover,
  .testimonials__pagination-next:hover {
    opacity: .5;
  }

  .contacts__info-link:hover {
    opacity: .5;
  }

  .footer__contact-phone:hover {
    background-color: #4174C3;
  }
  .footer__contact-phone:hover .footer__contact-phone__number {
    color: #fff;
  }
  .footer__contact-phone:hover .footer__contact-phone__icon {
    background-color: #fff;
  }
  .footer__contact-phone:hover .footer__contact-phone__icon svg path {
    fill: #4174C3;
  }
  .footer__main-logo:hover {
    opacity: .5;
  }
  .footer__main-navigation__list li a:hover {
    color: #4174C3;
  }
  .footer__main-social a:hover {
    opacity: .5;
  }
  .footer__main-button:hover {
    color: #fff;
    background-color: #4174C3;
  }
  .footer__main-button:hover span {
    transition: unset;
  }
  .footer__main-button:hover svg path {
    fill: #fff;
  }
  .footer__main-copyright__links a:hover {
    color: #4174C3;
  }
}
@media (hover: none) {
  .header__logo:active {
    opacity: .5;
  }
  .header__menu ul li a:active {
    color: #4174C3;
  }
  .header__navigation-list li a:active {
    color: #4174C3;
  }

  .services__pagination .swiper-pagination-bullet:active,
  .testimonials__pagination .swiper-pagination-bullet:active {
    background-color: #4174C3;
  }
  .services__pagination-prev:active, .services__pagination-next:active,
  .testimonials__pagination-prev:active,
  .testimonials__pagination-next:active {
    opacity: .5;
  }

  .contacts__info-link:active {
    opacity: .5;
  }

  .footer__contact-phone:active {
    background-color: #4174C3;
  }
  .footer__contact-phone:active .footer__contact-phone__number {
    color: #fff;
  }
  .footer__contact-phone:active .footer__contact-phone__icon {
    background-color: #fff;
  }
  .footer__contact-phone:active .footer__contact-phone__icon svg path {
    fill: #4174C3;
  }
  .footer__main-logo:active {
    opacity: .5;
  }
  .footer__main-navigation__list li a:active {
    color: #4174C3;
  }
  .footer__main-social a:active {
    opacity: .5;
  }
  .footer__main-button:active {
    color: #fff;
    background-color: #4174C3;
  }
  .footer__main-button:active span {
    transition: unset;
  }
  .footer__main-button:active svg path {
    fill: #fff;
  }
  .footer__main-copyright__links a:active {
    color: #4174C3;
  }
}
