*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: #333;
  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: 1176px;
  padding: 0 18px;
}

.header {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  gap: 25px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: all .3s;
}
.header__logo-icon {
  width: 59px;
  height: 59px;
  transition: all .3s;
}
.header__logo-icon--mobile {
  display: none;
}
.header__logo-name {
  font-weight: 700;
  font-size: 18px;
}
.header__navigation {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  padding: 47px 23px;
}
.header__navigation-list {
  display: flex;
}
.header__navigation-list li a {
  color: #FFF;
  font-size: 18px;
  padding: 47px 25px;
  transition: all .3s;
}
.header__navigation-phone {
  display: none;
}
.header__phone {
  gap: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}
.header__phone--mobile {
  display: none;
}
.header__phone svg circle,
.header__phone svg path {
  transition: all .3s;
}
.header__phone-cta {
  font-size: 18px;
}
.header__phone-cta__number {
  font-weight: 600;
  text-decoration-line: underline;
}
.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: #3792CD;
  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__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;
}

.introduction {
  background: url("../../assets/images/introduction/section-bg.png") no-repeat center;
  background-size: cover;
  padding: 182px 0 230px;
}
.introduction__inner {
  width: 100%;
  color: #FFF;
  position: relative;
}
.introduction__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 32px;
}
.introduction__text {
  max-width: 833px;
  font-size: 18px;
  font-weight: 600;
  line-height: 190%;
  margin-bottom: 38px;
}
.introduction__phone {
  border-radius: 7px;
  background-color: #3792CD;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  max-width: 328px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  border: 2px solid #3792CD;
  transition: all .3s;
}
.introduction__phone svg path {
  transition: all .3s;
}
@media (max-width: 480px) {
  .introduction__phone {
    max-width: unset;
  }
}
@media (hover: hover) {
  .introduction__phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .introduction__phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (hover: none) {
  .introduction__phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .introduction__phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
.introduction__strengths {
  border-radius: 7px;
  background: #FFF;
  padding: 30px;
  width: fit-content;
  box-shadow: 0 64px 18px 0 rgba(14, 58, 82, 0), 0 41px 16px 0 rgba(14, 58, 82, 0.01), 0 23px 14px 0 rgba(14, 58, 82, 0.05), 0 10px 10px 0 rgba(14, 58, 82, 0.09), 0 3px 6px 0 rgba(14, 58, 82, 0.1);
  position: absolute;
  right: 0;
  bottom: -293px;
}
.introduction__strengths--mobile {
  display: none;
}
.introduction__strengths li {
  gap: 18px;
  display: flex;
  align-items: center;
  color: #0E3A52;
  font-size: 20px;
  font-weight: 700;
}
.introduction__strengths li + li {
  margin-top: 20px;
}

.about {
  padding: 180px 0 120px;
}
.about__inner {
  gap: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about__info {
  max-width: 572px;
}
.about__info-supertitle {
  color: #454545;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .about__info-supertitle {
    font-size: 14px;
  }
}
.about__info-title {
  color: #0E3A52;
  font-size: 54px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .about__info-title {
    font-size: 32px;
  }
}
.about__info-text {
  margin-bottom: 37px;
}
.about__info-text__paragraph {
  color: #454545;
  font-size: 18px;
  line-height: 200%;
}
.about__info-text__paragraph:first-child {
  margin-bottom: 18px;
}
.about__info-text__image {
  display: none;
}
.about__info-phone {
  border-radius: 7px;
  background-color: #3792CD;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  max-width: 328px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  border: 2px solid #3792CD;
  transition: all .3s;
  box-shadow: 0 0 1px 0 rgba(14, 58, 82, 0), 0 0 1px 0 rgba(14, 58, 82, 0.01), 0 0 1px 0 rgba(14, 58, 82, 0.05), 0 0 1px 0 rgba(14, 58, 82, 0.09);
  text-decoration: underline;
}
.about__info-phone svg path {
  transition: all .3s;
}
@media (max-width: 480px) {
  .about__info-phone {
    max-width: unset;
  }
}
@media (hover: hover) {
  .about__info-phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .about__info-phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (hover: none) {
  .about__info-phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .about__info-phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
.about__info-phone svg path {
  transition: all .3s;
}
.about__image {
  display: flex;
  align-items: flex-end;
}
.about__image img {
  max-width: 487px;
  width: 100%;
  max-height: 441px;
  border-radius: 7px;
}

.advantages {
  background: url("../../assets/images/advantages/section-bg.png") no-repeat center;
  background-size: cover;
}
.advantages__inner {
  color: #fff;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 182px 0 327px;
}
.advantages__title {
  color: #fff;
  font-size: 65px;
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 12px;
}
.advantages__text {
  max-width: 675px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 170%;
}
.advantages__cards {
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  width: 100%;
  box-shadow: 0 77px 22px 0 rgba(29, 71, 93, 0), 0 49px 20px 0 rgba(29, 71, 93, 0.01), 0 28px 17px 0 rgba(29, 71, 93, 0.05), 0 12px 12px 0 rgba(29, 71, 93, 0.09), 0 3px 7px 0 rgba(29, 71, 93, 0.1);
  position: absolute;
  bottom: -68px;
}
.advantages__cards-item + .advantages__cards-item {
  border-left: 1px solid rgba(14, 58, 82, 0.2);
}
.advantages__cards-item {
  padding: 33px 35px;
  text-align: center;
  width: 25%;
}
.advantages__cards-item__icon {
  margin-bottom: 8px;
}
.advantages__cards-item__name {
  color: #0E3A52;
  font-size: 32px;
  font-weight: 600;
  line-height: 115%;
}

.why-us {
  padding: 258px 0 162px;
  background-color: #F4F6F8;
}
.why-us__inner {
  width: 100%;
}
.why-us__block:first-child .why-us__block-info {
  max-height: 437px;
  top: -70px;
  right: 107px;
}
.why-us__block:last-child .why-us__block-info {
  max-height: 437px;
  top: 96px;
  left: 84px;
}
.why-us__block:last-child .why-us__block-image {
  margin-left: auto;
}
.why-us__block {
  display: flex;
  position: relative;
}
.why-us__block-image {
  max-width: 560px;
  width: 100%;
  max-height: 491px;
  height: 100%;
}
.why-us__block-info {
  border-radius: 7px;
  background: #FFF;
  padding: 32px 40px;
  box-shadow: 0 69px 19px 0 rgba(44, 83, 104, 0), 0 44px 18px 0 rgba(44, 83, 104, 0.01), 0 25px 15px 0 rgba(44, 83, 104, 0.05), 0 11px 11px 0 rgba(44, 83, 104, 0.09), 0 3px 6px 0 rgba(44, 83, 104, 0.1);
  color: #0E3A52;
  max-width: 602px;
  max-height: 410px;
  position: absolute;
}
.why-us__block-info__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.why-us__block-info__text {
  font-size: 16px;
  line-height: 200%;
}

.faq {
  background: url("../../assets/images/faq/section-bg.png") no-repeat center;
  background-size: cover;
}
.faq__inner {
  color: #fff;
  width: 100%;
  display: flex;
}
.faq__elem:first-child {
  padding-top: 308px;
}
.faq__elem:first-child .faq__elem-inner {
  padding-bottom: 60px;
}
.faq__elem:first-child .faq__elem-question {
  padding: 24px 16px 0 0;
}
.faq__elem:first-child .faq__elem-question::before {
  right: 0;
}
.faq__elem:first-child .faq__elem-answer {
  padding-right: 16px;
}
.faq__elem:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 60px;
}
.faq__elem:last-child .faq__elem-question {
  padding: 24px 0 0 16px;
}
.faq__elem:last-child .faq__elem-question::before {
  left: 0;
}
.faq__elem:last-child .faq__elem-answer {
  padding-left: 16px;
}
.faq__elem {
  width: 50%;
}
.faq__elem-question {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.24px;
  margin-bottom: 16px;
  position: relative;
}
.faq__elem-question::before {
  position: absolute;
  content: '';
  height: 1px;
  width: 50vw;
  background-color: #FFFFFF33;
  top: 0;
}
.faq__elem-answer {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 24px;
}
.faq__elem-phone {
  border-radius: 7px;
  background-color: #3792CD;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  max-width: 328px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  border: 2px solid #3792CD;
  transition: all .3s;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all .3s;
  text-decoration: underline;
}
.faq__elem-phone svg path {
  transition: all .3s;
}
@media (max-width: 480px) {
  .faq__elem-phone {
    max-width: unset;
  }
}
@media (hover: hover) {
  .faq__elem-phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .faq__elem-phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (hover: none) {
  .faq__elem-phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .faq__elem-phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
.faq__elem-phone svg path {
  transition: all .3s;
}

.testimonials {
  background-color: #F4F6F8;
  padding: 120px 0 0 0;
}
.testimonials__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.testimonials__info {
  max-width: 590px;
  padding-top: 57px;
}
.testimonials__info-supertitle {
  color: #454545;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .testimonials__info-supertitle {
    font-size: 14px;
  }
}
.testimonials__info-title {
  color: #0E3A52;
  font-size: 54px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .testimonials__info-title {
    font-size: 32px;
  }
}
.testimonials__info-text {
  color: #454545;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  margin-bottom: 32px;
}
.testimonials__info-phone {
  border-radius: 7px;
  background-color: #3792CD;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  max-width: 328px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  border: 2px solid #3792CD;
  transition: all .3s;
  text-decoration: underline;
  font-weight: 600;
}
.testimonials__info-phone svg path {
  transition: all .3s;
}
@media (max-width: 480px) {
  .testimonials__info-phone {
    max-width: unset;
  }
}
@media (hover: hover) {
  .testimonials__info-phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .testimonials__info-phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (hover: none) {
  .testimonials__info-phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .testimonials__info-phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
.testimonials .swiper-wrapper {
  padding: 0 25px;
}
.testimonials__card {
  border-radius: 7px;
  background: #fff;
  padding: 24px 28px 0 28px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 481px;
  width: 100%;
  max-height: 206px;
  height: 100%;
  position: relative;
}
.testimonials__card-text {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
}
.testimonials__card-info {
  position: absolute;
  bottom: 20px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials__card-info__group-name {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.services {
  padding: 120px 0;
}
.services__inner {
  width: 100%;
}
.services__supertitle {
  color: #454545;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .services__supertitle {
    font-size: 14px;
  }
}
.services__title {
  color: #0E3A52;
  font-size: 54px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 60px;
  max-width: 746px;
}
@media (max-width: 480px) {
  .services__title {
    font-size: 32px;
  }
}
.services__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.services__card {
  max-width: 269px;
  width: 100%;
  height: 410px;
  border-radius: 7px;
  background-color: #fff;
  padding: 24px 11px 0 25px;
  color: #0E3A52;
  transition: all .3s;
  box-shadow: 0 120px 33px 0 rgba(14, 58, 82, 0), 0 77px 31px 0 rgba(14, 58, 82, 0.01), 0 43px 26px 0 rgba(14, 58, 82, 0.05), 0 19px 19px 0 rgba(14, 58, 82, 0.09), 0 5px 11px 0 rgba(14, 58, 82, 0.1);
}
.services__card:first-child svg path {
  transition: unset;
}
.services__card-icon {
  margin-bottom: 92px;
}
.services__card-icon circle {
  transition: all .3s;
}
.services__card-icon path {
  transition: all .3s;
}
.services__card-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 25px;
}
.services__card-description {
  font-size: 16px;
  font-weight: 300;
}
.services__phone {
  display: none;
}

.footer {
  color: #fff;
  background-color: #0E3A52;
}
.footer__inner {
  width: 100%;
}
.footer__inner:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__main-logo {
  gap: 8px;
  display: flex;
  align-items: center;
  transition: all .3s;
  color: #fff;
}
.footer__main-logo__icon {
  width: 53px;
  height: 53px;
  transition: all .3s;
}
.footer__main-logo__name {
  font-weight: 700;
  font-size: 18px;
  transition: unset;
}
.footer__main-navigation {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 55px 40px 55px 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__main-navigation__list {
  display: flex;
}
.footer__main-navigation__list li {
  padding: 0 26px;
}
.footer__main-navigation__list li:first-child {
  padding-left: 0;
}
.footer__main-navigation__list li:last-child {
  padding-right: 0;
}
.footer__main-navigation__list li + li {
  border-left: 1px solid #fff;
}
.footer__main-navigation__list li a {
  color: #fff;
  font-size: 24px;
  transition: all .3s;
}
.footer__main-scroll {
  max-width: 210px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.footer__main-scroll__link {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}
.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
}
.footer__bottom-item + .footer__bottom-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__bottom-item {
  color: #fff;
  padding: 46px 80px 53px 80px;
  font-size: 14px;
  transition: all .3s;
}
.footer__bottom-item:first-child {
  padding-left: 0;
}
.footer__bottom-item:last-child {
  padding-right: 0;
}

@media (max-width: 1200px) {
  .header__navigation {
    border-right: 0;
    border-left: 0;
    padding-right: 0;
  }
  .header__navigation-list li a {
    padding: 47px 20px;
  }
  .header__phone {
    display: none;
  }

  .advantages__cards {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 50vw;
    left: 50%;
    transform: translate(-50%);
    min-width: 394px;
  }
  .advantages__cards-item {
    max-width: 50%;
    width: 100%;
    max-height: 50%;
    height: 100%;
  }
  .advantages__cards-item:nth-child(1), .advantages__cards-item:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .advantages__cards-item__name {
    font-size: 20px;
  }

  .testimonials__info {
    max-width: unset;
    padding-top: unset;
    margin-bottom: 10px;
  }
  .testimonials__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .testimonials .swiper {
    padding: 20px 13px 0;
  }
  .testimonials__cards {
    width: 100%;
  }
  .testimonials__cards .swiper-wrapper {
    padding: unset;
  }
  .testimonials__card {
    max-width: unset;
  }

  .footer__main-scroll {
    width: unset;
    max-width: unset;
  }
  .footer__bottom {
    justify-content: center;
  }
  .footer__bottom-item {
    padding: 46px 50px 53px 50px;
  }
}
@media (max-width: 1024px) {
  .about__info {
    max-width: unset;
  }
  .about__image {
    display: none;
  }

  .advantages__cards-item {
    padding: 16px;
  }

  .why-us__block:first-child {
    margin-bottom: 12px;
  }
  .why-us__block:first-child .why-us__block-info {
    right: 0;
  }
  .why-us__block:last-child .why-us__block-info {
    left: 0;
  }

  .footer__main {
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
  }
  .footer__main-scroll {
    display: none;
  }
  .footer__main-navigation {
    border-right: unset;
    border-left: unset;
    padding: 0;
    height: unset;
  }
  .footer__bottom-item {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .header {
    border-bottom-color: #3792CD;
    color: #3792CD;
    padding: 10px 0;
    position: relative;
  }
  .header__logo {
    gap: 5px;
  }
  .header__logo-icon {
    display: none;
  }
  .header__logo-icon--mobile {
    display: block;
    width: 59px;
    height: 59px;
  }
  .header__logo-name {
    color: #3792CD;
  }
  .header__navigation {
    display: none;
  }
  .header__navigation-list li a {
    color: #3792CD;
  }
  .header__navigation--opened {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background-color: #fff;
    padding: 54px 0 0 0;
    height: 100vh;
  }
  .header__navigation--opened .header__navigation-list {
    display: block;
  }
  .header__navigation--opened .header__navigation-list li {
    border-bottom: 1px solid rgba(55, 146, 205, 0.2);
  }
  .header__navigation--opened .header__navigation-list li:first-child {
    margin-top: unset;
  }
  .header__navigation--opened .header__navigation-list li a {
    font-size: 24px;
    font-weight: 700;
    line-height: 113.5%;
    letter-spacing: 0.12px;
    height: 100%;
    padding: 20px 18px;
    display: block;
  }
  .header__navigation--opened .header__navigation-phone {
    border-radius: 7px;
    background-color: #3792CD;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    max-width: 328px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    border: 2px solid #3792CD;
    transition: all .3s;
    bottom: 100px;
    margin: 0 18px;
    position: absolute;
  }
  .header__navigation--opened .header__navigation-phone svg path {
    transition: all .3s;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .header__navigation--opened .header__navigation-phone {
    max-width: unset;
  }
}
@media (max-width: 768px) and (hover: hover) {
  .header__navigation--opened .header__navigation-phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .header__navigation--opened .header__navigation-phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (max-width: 768px) and (hover: none) {
  .header__navigation--opened .header__navigation-phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .header__navigation--opened .header__navigation-phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .header__toggle {
    display: block;
  }

  .introduction {
    padding-top: 70px;
  }
  .introduction__title {
    font-size: 50px;
  }

  .about {
    padding-bottom: 40px;
  }
  .about__info-title {
    margin-bottom: 15px;
  }
  .about__info-text__paragraph {
    font-size: 14px;
    line-height: 190%;
  }
  .about__info-text__paragraph:first-child {
    margin-bottom: unset;
  }
  .about__info-text__image {
    display: block;
    margin: 16px 0;
    width: 100%;
    border-radius: 7px;
  }

  .advantages__inner {
    padding: 40px 0;
  }
  .advantages__title {
    font-size: 32px;
  }
  .advantages__text {
    font-size: 14px;
    line-height: 190%;
  }
  .advantages__cards {
    position: unset;
    transform: unset;
    margin: 20px auto 0;
  }
  .advantages__cards-item__icon {
    width: 50px;
    height: 50px;
  }

  .why-us {
    padding: 80px 0;
  }
  .why-us__block:first-child .why-us__block-info, .why-us__block:last-child .why-us__block-info {
    position: unset;
    max-height: unset;
  }
  .why-us__block-info {
    max-width: unset;
    max-height: unset;
    height: unset;
  }
  .why-us__block-image {
    display: none;
  }

  .faq__inner {
    flex-direction: column-reverse;
  }
  .faq__elem {
    width: unset;
  }
  .faq__elem-answer {
    padding: unset;
  }
  .faq__elem:first-child {
    padding: 40px 50px 0 0;
  }
  .faq__elem:first-child .faq__elem-question {
    padding: unset;
  }
  .faq__elem:first-child .faq__elem-question::before {
    content: unset;
  }
  .faq__elem:first-child .faq__elem-answer {
    padding: unset;
  }
  .faq__elem:last-child {
    border-left: unset;
    padding: 40px 0 30px 50px;
  }
  .faq__elem:last-child .faq__elem-question {
    padding: unset;
  }
  .faq__elem:last-child .faq__elem-question::before {
    content: unset;
  }
  .faq__elem:last-child .faq__elem-answer {
    padding: unset;
    margin-bottom: unset;
  }

  .services__card:nth-child(2), .services__card:nth-child(3) {
    color: #fff;
    background-color: #3792CD;
  }
  .services__card:nth-child(2) .services__card-icon circle, .services__card:nth-child(3) .services__card-icon circle {
    fill: #fff;
  }
  .services__card:nth-child(2) .services__card-icon path, .services__card:nth-child(3) .services__card-icon path {
    fill: #3792CD;
  }
  .services__title {
    font-size: 48px;
  }

  .footer__main {
    justify-content: center;
  }
  .footer__main-navigation__list li a {
    font-size: 18px;
  }
  .footer__bottom {
    justify-content: space-between;
  }
  .footer__bottom-item:first-child {
    display: none;
  }
  .footer__bottom-item:nth-child(2) {
    display: none;
  }
  .footer__bottom-item:last-child {
    display: none;
  }
  .footer__bottom-item + .footer__bottom-item {
    border-left: none;
  }
}
@media (max-width: 480px) {
  .header__logo-name {
    font-size: 14px;
  }
  .header__logo-icon--mobile {
    width: 40px;
    height: 40px;
  }
  .header__navigation--opened {
    top: 63px;
  }
  .header__navigation--opened .header__navigation-phone {
    max-width: 284px;
  }

  .introduction__title {
    font-size: 32px;
    line-height: 140%;
    margin-bottom: 24px;
  }
  .introduction__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .introduction__phone {
    box-shadow: 0 1px 14px rgba(255, 255, 255, 0.47);
  }
  .introduction__strengths {
    display: none;
  }
  .introduction__strengths--mobile {
    display: block;
    position: unset;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 22px;
  }

  .about {
    padding: 60px 0 80px;
  }

  .why-us__block:first-child {
    padding-top: 139px;
  }
  .why-us__block:first-child .why-us__block-info {
    position: absolute;
    top: 0;
  }
  .why-us__block:last-child {
    padding-top: 100px;
  }
  .why-us__block:last-child .why-us__block-info {
    z-index: 10;
  }
  .why-us__block:last-child .why-us__block-image {
    position: absolute;
    right: 0;
    top: 0;
  }
  .why-us__block-image {
    display: block;
    max-width: 205px;
    max-height: 203px;
  }
  .why-us__block-info {
    position: absolute;
    padding: 11px;
    max-width: 268px;
  }
  .why-us__block-info__title {
    font-size: 16px;
    letter-spacing: -0.16px;
    margin-bottom: 10px;
  }
  .why-us__block-info__text {
    font-size: 10px;
    line-height: 180%;
  }

  .faq__inner {
    flex-direction: column-reverse;
  }
  .faq__elem {
    width: unset;
  }
  .faq__elem-question {
    font-size: 16px;
    letter-spacing: -0.16px;
  }
  .faq__elem-asnwer {
    font-size: 10px;
  }
  .faq__elem:first-child {
    padding-right: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .faq__elem:first-child .faq__elem-question::before {
    content: unset;
  }
  .faq__elem:last-child {
    border-left: unset;
    padding-left: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .faq__elem:last-child .faq__elem-question {
    padding-top: unset;
  }
  .faq__elem:last-child .faq__elem-question::before {
    content: unset;
  }

  .testimonials {
    padding-top: 40px;
  }
  .testimonials__card-text {
    font-size: 14px;
  }

  .services {
    padding: 80px 0;
  }
  .services__title {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .services__cards {
    gap: 6px;
    margin-bottom: 30px;
  }
  .services__card {
    height: 279px;
    max-width: 194px;
    width: 100%;
    padding: 14px;
  }
  .services__card-icon {
    margin-bottom: 15px;
  }
  .services__card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .services__card-description {
    font-size: 12px;
  }
  .services__phone {
    border-radius: 7px;
    background-color: #3792CD;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    max-width: 328px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    border: 2px solid #3792CD;
    transition: all .3s;
    background-color: #fff;
    border: 1px solid #3792CD;
    color: #3792CD;
  }
  .services__phone svg path {
    transition: all .3s;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .services__phone {
    max-width: unset;
  }
}
@media (max-width: 480px) and (hover: hover) {
  .services__phone:hover {
    background-color: transparent;
    color: #3792CD;
  }
  .services__phone:hover svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}
@media (max-width: 480px) and (hover: none) {
  .services__phone:active {
    color: #3792CD;
    background-color: transparent;
  }
  .services__phone:active svg path {
    fill: #3792CD;
    background-color: #fff;
  }
}

@media (max-width: 480px) {
  .footer__main {
    gap: unset;
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .footer__main-logo {
    width: 100%;
    padding-bottom: 20px;
    position: relative;
  }
  .footer__main-logo::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: -18px;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .footer__main-navigation {
    padding: 20px 0;
  }
  .footer__main-navigation__list li {
    padding: 0 20px;
  }
  .footer__bottom-item {
    padding: 20px 0;
  }
  .footer__bottom-item:last-child {
    text-align: right;
  }
}
@media (max-width: 429px) {
  .services__cards {
    gap: 20px;
  }
  .services__card {
    max-width: unset;
    height: unset;
  }
  .services__card:nth-child(2), .services__card:nth-child(3) {
    color: #0E3A52;
    background-color: #FFFFFF;
  }
  .services__card:nth-child(2) .services__card-icon circle, .services__card:nth-child(3) .services__card-icon circle {
    fill: #3792CD;
  }
  .services__card:nth-child(2) .services__card-icon path, .services__card:nth-child(3) .services__card-icon path {
    fill: #FFF;
  }
  .services__card-icon {
    margin-bottom: 0;
  }

  .testimonials__card-text {
    font-size: 12px;
  }

  .footer__main-navigation {
    width: 100%;
  }
  .footer__main-navigation__list {
    width: 100%;
    justify-content: space-between;
  }
  .footer__main-navigation__list li {
    padding: 10px;
  }
  .footer__main-navigation__list li + li {
    border-left: unset;
  }
  .footer__main-navigation__list li a {
    font-size: 16px;
  }
}
@media (max-width: 425px) {
  .advantages__cards {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin: 20px 0 0 0;
  }
  .advantages__cards-item__name {
    font-size: 15px;
  }

  .services__title {
    font-size: 28px;
  }

  .footer__main-navigation__list li a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .header__logo:hover {
    color: #3792CD;
  }
  .header__logo:hover img {
    opacity: .3;
  }
  .header__navigation-list li a:hover {
    color: #3792CD;
  }
  .header__phone:hover {
    color: #3792CD;
  }
  .header__phone:hover svg circle {
    fill: #fff;
  }
  .header__phone:hover svg path {
    fill: #3792CD;
  }

  .introduction__phone:hover {
    color: #fff;
  }

  .faq__elem-phone:hover {
    background-color: #fff;
    color: #3792CD;
  }
  .faq__elem-phone:hover svg path {
    fill: #3792CD;
  }

  .services__card:hover {
    color: #fff;
    background-color: #3792CD;
  }
  .services__card:hover .services__card-icon circle {
    fill: #fff;
  }
  .services__card:hover .services__card-icon path {
    fill: #3792CD;
  }

  .footer__main-logo:hover {
    color: #3792CD;
  }
  .footer__main-logo:hover img {
    opacity: .3;
  }
  .footer__main-navigation__list li a:hover {
    color: #3792CD;
  }
  .footer__main-scroll__link:hover {
    background-color: #3792CD;
  }
  .footer__main-scroll__link:hover svg path {
    fill: #fff;
  }
  .footer__bottom-item:hover {
    color: #3792CD;
  }
}
@media (hover: none) {
  .header__logo:active {
    color: #3792CD;
  }
  .header__logo:active img {
    opacity: .3;
  }
  .header__navigation-list li a:active {
    color: #3792CD;
  }
  .header__phone:active {
    color: #3792CD;
  }
  .header__phone:active svg circle {
    fill: #fff;
  }
  .header__phone:active svg path {
    fill: #3792CD;
  }

  .introduction__phone:active {
    color: #fff;
  }

  .faq__elem-phone:active {
    background-color: #fff;
    color: #3792CD;
  }
  .faq__elem-phone:active svg path {
    fill: #3792CD;
  }

  .services__card:active {
    color: #fff;
    background-color: #3792CD;
  }
  .services__card:active .services__card-icon circle {
    fill: #fff;
  }
  .services__card:active .services__card-icon path {
    fill: #3792CD;
  }

  .footer__main-logo:active {
    color: #3792CD;
  }
  .footer__main-logo:active img {
    opacity: .3;
  }
  .footer__main-navigation__list li a:active {
    color: #3792CD;
  }
  .footer__main-scroll__link:active {
    background-color: #3792CD;
  }
  .footer__main-scroll__link:active svg path {
    fill: #fff;
  }
  .footer__bottom-item:active {
    color: #3792CD;
  }
}
