*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  transition: all .3s;
  box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif; }

ul {
  list-style: none; }

a {
  cursor: pointer;
  text-decoration: unset; }

.container {
  margin: 0 auto;
  max-width: 1176px;
  padding: 0 18px; }

.header {
  background-color: #27333F; }
  .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: #FA8E06;
      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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 35px 0; }
  .header__logo {
    display: flex;
    align-items: center;
    color: #FA8E06;
    font-size: 28px;
    font-weight: 700; }
    .header__logo img {
      margin-right: 8px;
      max-width: 33px; }
  .header__menu ul {
    display: flex; }
    .header__menu ul li + li {
      margin-left: 35px; }
    .header__menu ul a {
      color: #fff;
      font-weight: 700; }
  .header__menu-close {
    display: none; }
  .header__btn {
    background-color: #FA8E06;
    color: #fff;
    border: 2px solid transparent;
    padding: 13px 0;
    max-width: 229px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 700; }
    .header__btn svg {
      margin-right: 9px; }
    .header__btn-mobile {
      background-color: #FA8E06;
      color: #fff;
      max-width: 394px;
      width: 100%;
      display: none;
      align-items: center;
      border-radius: 5px;
      height: 70px;
      justify-content: center; }
      .header__btn-mobile svg {
        margin-right: 9px; }
  .header.open .header__menu {
    border-top: 1px solid; }
    .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-image: url(../../assets/images/introduction/introduction.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 140px; }
  .introduction__inner {
    padding: 93px 0 83px; }
  .introduction__info {
    margin-bottom: 200px;
    display: grid;
    justify-content: flex-end;
    flex-wrap: wrap; }
    .introduction__info-title {
      max-width: 472px;
      color: #FA8E06;
      font-size: 60px;
      font-weight: 700;
      line-height: 120%;
      margin-bottom: 24px; }
    .introduction__info-text {
      max-width: 491px;
      color: #FFF;
      font-size: 24px;
      line-height: 150%; }
  .introduction__benefits-items {
    margin-bottom: 30px; }
  .introduction__benefits-item {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%; }
    .introduction__benefits-item img {
      margin-right: 6px; }
    .introduction__benefits-item:last-child {
      color: #EC323D; }
  .introduction__benefits-item + .introduction__benefits-item {
    margin-top: 24px; }
  .introduction__benefits-btn {
    max-width: 332px;
    width: 100%;
    border-radius: 5px;
    background-color: #FA8E06;
    color: #FFF;
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .introduction__benefits-btn svg {
      margin-right: 12px; }

.about {
  margin-bottom: 140px; }
  .about__inner {
    display: flex; }
  .about__info {
    border-left: 2px solid rgba(250, 142, 6, 0.2);
    border-right: 2px solid rgba(250, 142, 6, 0.2);
    padding: 0 20px; }
    .about__info-title {
      max-width: 429px;
      color: #FA8E06;
      font-size: 55px;
      font-weight: 700;
      line-height: 140%;
      margin-bottom: 20px; }
    .about__info-text {
      color: #333;
      font-size: 18px;
      line-height: 160%;
      max-width: 517px;
      margin-bottom: 34px; }
  .about__benefits {
    margin-left: 17px; }
    .about__benefits-info__title {
      max-width: 429px;
      color: #333;
      font-size: 32px;
      font-weight: 700;
      line-height: 140%;
      margin-bottom: 20px; }
    .about__benefits-info__text {
      max-width: 560px;
      color: #333;
      font-size: 18px;
      line-height: 160%;
      margin-bottom: 25px; }
    .about__benefits-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 15px; }
    .about__benefits-item {
      max-width: 272px;
      border-radius: 5px;
      box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.14);
      text-align: center;
      padding: 16px 20px; }
      .about__benefits-item img {
        margin-bottom: 8px; }
      .about__benefits-item h3 {
        display: block;
        font-size: 16px; }

.services {
  background-image: url(../../assets/images/services/services-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 146px;
  padding-bottom: 78px;
  padding-top: 87px; }
  .services__inner {
    display: flex; }
  .services__info {
    max-width: 524px;
    margin-right: 124px; }
    .services__info-title {
      color: #FFF;
      font-size: 40px;
      font-weight: 600;
      line-height: 140%;
      margin-bottom: 18px; }
    .services__info-text {
      color: #FFF;
      font-size: 18px;
      font-weight: 400;
      line-height: 160%;
      margin-bottom: 40px; }
    .services__info-btn {
      display: flex;
      justify-content: center;
      border-radius: 5px;
      background: #FA8E06;
      max-width: 332px;
      color: #FFF;
      border: 2px solid transparent;
      font-size: 18px;
      font-weight: 700;
      line-height: 100%;
      padding: 26px 20px;
      justify-self: center; }
      .services__info-btn__mobile {
        display: none;
        justify-content: center;
        border-radius: 5px;
        background: #FA8E06;
        max-width: 332px;
        color: #FFF;
        border: 2px solid transparent;
        font-size: 18px;
        font-weight: 700;
        line-height: 100%;
        padding: 26px 0;
        justify-self: center; }
  .services__items {
    display: flex;
    flex-wrap: wrap;
    gap: 29px 80px; }
  .services__item {
    text-align: center; }
    .services__item-name {
      color: #FA8E06;
      font-size: 20px;
      font-weight: 600;
      line-height: 28px; }
    .services__item-num {
      color: #FA8E06;
      font-size: 64px;
      font-weight: 600;
      line-height: 78px; }

.advantages {
  margin-bottom: 144px;
  background-color: #FA8E06; }
  .advantages__inner {
    padding: 92px 0 106px; }
  .advantages__items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; }
  .advantages__item {
    max-width: 370px;
    height: 250px;
    border-radius: 5px; }
    .advantages__item:first-child {
      border-left: 2px solid rgba(255, 255, 255, 0.2);
      padding-top: 14px;
      padding-left: 24px; }
    .advantages__item:last-child {
      border-right: 2px solid rgba(255, 255, 255, 0.2);
      padding: 14px 21px 0 24px; }
    .advantages__item-first__title {
      color: #FFF;
      font-size: 55px;
      font-weight: 700;
      line-height: 110%;
      margin-bottom: 18px; }
    .advantages__item-first__text {
      color: #FFF;
      font-size: 18px;
      line-height: 160%; }
    .advantages__item-card {
      background-color: #fff;
      padding: 20px; }
      .advantages__item-card__name {
        display: flex;
        align-items: center;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        line-height: 160%;
        margin-bottom: 14px; }
        .advantages__item-card__name img {
          margin-right: 15px; }
      .advantages__item-card__text {
        font-size: 14px;
        line-height: 160%; }
    .advantages__item-last__name {
      display: flex;
      align-items: center;
      color: #FFF;
      font-size: 18px;
      font-weight: 700;
      line-height: 160%;
      margin-bottom: 7px; }
      .advantages__item-last__name img {
        margin-right: 18px; }
    .advantages__item-last__text {
      color: #FFF;
      font-size: 14px;
      line-height: 160%;
      margin-bottom: 22px; }
    .advantages__item-last__btn {
      display: flex;
      padding: 13px 0;
      justify-content: center;
      border-radius: 5px;
      align-items: center;
      background-color: #FFF;
      color: #FA8E06;
      border: 2px solid transparent;
      font-size: 18px;
      font-weight: 700;
      line-height: 100%;
      max-width: 229px; }
      .advantages__item-last__btn svg {
        margin-right: 9px; }
    .advantages__item-img__mobile {
      display: none; }

.prices {
  margin-bottom: 140px; }
  .prices__inner {
    display: flex; }
  .prices__info {
    max-width: 370px;
    width: 100%;
    border-right: 2px solid rgba(250, 142, 6, 0.2); }
    .prices__info-title {
      color: #FA8E06;
      font-size: 55px;
      font-weight: 700;
      line-height: 110%;
      margin-bottom: 18px; }
    .prices__info-text {
      max-width: 345px;
      color: #333;
      font-size: 18px;
      font-weight: 400;
      line-height: 160%;
      margin-bottom: 32px; }
    .prices__info-btn {
      max-width: 229px;
      display: flex;
      padding: 13px 0;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      background: #FA8E06;
      color: #FFF;
      border: 2px solid transparent;
      font-size: 18px;
      font-weight: 700;
      line-height: 100%; }
      .prices__info-btn svg {
        margin-right: 9px; }
  .prices__slider {
    padding: 0 15px 50px;
    max-width: 770px;
    position: relative; }
    .prices__slider-slide {
      max-width: 240px;
      width: 100%;
      height: 277px;
      border-radius: 5px;
      box-shadow: 0 1px 9px 0 rgba(250, 142, 6, 0.13);
      padding: 20px;
      position: relative; }
      .prices__slider-slide__img {
        margin-bottom: 17px; }
      .prices__slider-slide__title {
        color: #FA8E06;
        font-size: 18px;
        font-weight: 700;
        line-height: 160%;
        margin-bottom: 10px; }
      .prices__slider-slide__text {
        color: #FA8E06;
        font-size: 14px;
        line-height: 160%;
        margin-bottom: 43px; }
      .prices__slider-slide__sum {
        color: #EC323D;
        font-size: 18px;
        font-weight: 700;
        line-height: 160%;
        position: absolute;
        bottom: 12px;
        left: 19px; }
      .prices__slider-slide__btn {
        border-radius: 0 0 5px 0;
        background: #FA8E06;
        border: 2px solid transparent;
        max-width: 53px;
        width: 100%;
        height: 48px;
        box-shadow: 0 1px 6px 0 rgba(250, 142, 6, 0.19);
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 14px 10px 14px 16px; }
  .prices .swiper-button-next,
  .prices .swiper-button-prev {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 315px;
    border-radius: 5px;
    box-shadow: 0 1px 9px 0 rgba(250, 142, 6, 0.13); }
  .prices .swiper-button-next {
    right: 0; }
  .prices .swiper-button-prev {
    right: 47px;
    left: unset; }
  .prices .swiper-pagination {
    display: flex;
    margin-left: 20px; }
    .prices .swiper-pagination-bullet {
      border-radius: 20px;
      border: 1px solid #FA8E06;
      width: 24px;
      height: 11px;
      background-color: transparent;
      opacity: 1; }
      .prices .swiper-pagination-bullet-active {
        background-color: #FA8E06; }

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none; }

.testimonials {
  background-color: #FA8E06;
  padding: 100px 0;
  margin-bottom: 140px; }
  .testimonials__title {
    color: #FFF;
    font-size: 55px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: -32px; }
  .testimonials__slider {
    padding-bottom: 60px;
    padding-top: 94px;
    position: relative; }
    .testimonials__slider-slide {
      max-width: 370px;
      background-color: #fff;
      padding: 15px;
      border-radius: 5px;
      box-shadow: 0 0 10.811px 0 rgba(0, 0, 0, 0.15); }
      .testimonials__slider-slide__stars {
        margin-bottom: 27px; }
      .testimonials__slider-slide__text {
        color: #2D2C2C;
        font-size: 16px;
        line-height: 160%;
        margin-bottom: 22px; }
      .testimonials__slider-slide__name {
        color: #222;
        font-size: 18px;
        font-weight: 600;
        line-height: 150%; }
  .testimonials .swiper-button-next,
  .testimonials .swiper-button-prev {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 22px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 9px 0 rgba(250, 142, 6, 0.13); }
  .testimonials .swiper-button-next {
    right: 0; }
  .testimonials .swiper-button-prev {
    right: 47px;
    left: unset; }
  .testimonials .swiper-pagination {
    display: flex;
    justify-content: center; }
    .testimonials .swiper-pagination-bullet {
      border-radius: 20px;
      border: 1px solid #fff;
      width: 24px;
      height: 11px;
      background-color: transparent;
      opacity: 1; }
      .testimonials .swiper-pagination-bullet-active {
        background-color: #fff; }

.faq {
  margin-bottom: 140px; }
  .faq__inner {
    max-width: 1140px;
    padding: 70px 77px 25px 60px;
    display: flex;
    border-radius: 5px;
    box-shadow: 0 0 8px 0 rgba(250, 142, 6, 0.2); }
  .faq__info {
    margin-right: 22px; }
    .faq__info-title {
      color: #333;
      font-size: 36px;
      font-weight: 600; }
  .faq__accordeon-item {
    padding: 21px 19px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    width: 690px;
    border-radius: 3px;
    box-shadow: 0 0.377px 0 0 rgba(250, 142, 6, 0.5), 2.83px 0 0 0 rgba(250, 142, 6, 0.5) inset; }
    .faq__accordeon-item__question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer; }
      .faq__accordeon-item__question svg {
        transition: 0.5s; }
    .faq__accordeon-item__answer {
      position: relative;
      height: 0;
      overflow: hidden;
      color: #FA8E06;
      font-size: 16px;
      font-weight: 400;
      transition: 0.5s; }
  .faq__accordeon .opened {
    padding-bottom: 10px; }
    .faq__accordeon .opened .faq__accordeon-item__question svg {
      transform: rotate(180deg); }
    .faq__accordeon .opened .faq__accordeon-item__answer {
      padding-top: 18px;
      height: auto; }
  .faq__accordeon-item + .faq__accordeon-item {
    margin-top: 15px; }

.footer {
  background-color: #27333F;
  color: #FFF; }
  .footer__inner {
    padding-top: 116px;
    padding-bottom: 63px; }
  .footer__top {
    display: flex;
    justify-content: space-between; }
    .footer__top-main__logo {
      display: flex;
      align-items: center;
      color: #FA8E06;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 18px; }
      .footer__top-main__logo img {
        max-width: 33px;
        margin-right: 8px; }
    .footer__top-main__number {
      font-size: 18px;
      font-weight: 700;
      line-height: 120%;
      margin-bottom: 11px;
      color: #fff;
      display: block; }
    .footer__top-main__email {
      color: #FFF; }
    .footer__top-list {
      max-width: 332px; }
      .footer__top-list__title {
        margin-bottom: 35px; }
      .footer__top-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 35px 139px; }
        .footer__top-list ul a {
          color: #FFF;
          font-weight: 700; }
    .footer__top-mobile__title {
      margin-bottom: 25px; }
    .footer__top-mobile__number {
      display: flex; }
      .footer__top-mobile__number span {
        color: #FA8E06;
        font-size: 18px;
        font-weight: 700;
        line-height: 100%;
        background-color: #FFF;
        padding: 18px 50px 14px 15px;
        border-radius: 6px 0 0 6px;
        height: fit-content; }
      .footer__top-mobile__number a {
        padding: 12px 15px;
        background-color: #FA8E06;
        border-radius: 0 6px 6px 0;
        border: 2px solid transparent; }
  .footer__line {
    width: 100%;
    height: 1px;
    border: 1px solid #FFF;
    opacity: 0.2;
    background-color: #FFF;
    margin-top: 65px;
    margin-bottom: 35px; }
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .footer__bottom-link {
      color: #fff; }
    .footer__bottom-links {
      gap: 15px;
      display: flex; }

@media (max-width: 1200px) {
  .introduction {
    background-image: url(../../assets/images/introduction/introduction-dark.jpg); }
    .introduction__info {
      margin-bottom: 50px;
      display: block; }
      .introduction__info-title {
        max-width: unset; }
      .introduction__info-text {
        max-width: unset; }

  .about__inner {
    display: block; }
  .about__info {
    padding: 0 10px;
    border-right: none;
    margin-bottom: 50px; }
    .about__info-title {
      max-width: unset; }
    .about__info-text {
      max-width: unset; }
    .about__info-img {
      display: none; }
  .about__benefits {
    margin-left: 0; }
    .about__benefits-info {
      border-left: 2px solid rgba(250, 142, 6, 0.2);
      padding-left: 12px; }
      .about__benefits-info__title {
        max-width: unset; }
      .about__benefits-info__text {
        max-width: unset; }
    .about__benefits-items {
      justify-content: space-around;
      gap: 10px; }

  .services {
    background-image: url(../../assets/images/services/services-bg-dark.png); }
    .services__info {
      margin-right: 60px; }
      .services__info-title {
        font-size: 32px; }
      .services__info-text {
        font-size: 14px; }
    .services__item-name {
      font-size: 16px; }
    .services__item-num {
      font-size: 55px; }

  .advantages__inner {
    padding: 60px 0 63px; }
  .advantages__items {
    justify-content: center; }

  .prices__inner {
    display: block; }
  .prices__info {
    border-right: none;
    max-width: unset; }
    .prices__info-text {
      max-width: unset; }
  .prices__slider {
    margin: 45px auto 0;
    padding-bottom: 50px; }
  .prices .swiper-pagination {
    justify-content: center;
    margin-left: 0; } }
@media (max-width: 1100px) {
  .introduction__info-title {
    font-size: 48px; }
  .introduction__info-text {
    font-size: 18px; }

  .services__info-text {
    max-width: 380px; }
  .services__items {
    gap: 30px 40px;
    justify-content: space-around; }

  .faq__inner {
    display: block;
    padding: 70px 20px 25px 20px; }
  .faq__info-title {
    margin-bottom: 20px; }
  .faq__info-img {
    display: none; }
  .faq__accordeon-item {
    width: unset; } }
@media (max-width: 1000px) {
  .header__btn {
    display: none; }

  .introduction__benefits-item {
    font-size: 18px; }

  .testimonials__slider-slide {
    width: 329px !important; } }
@media (max-width: 900px) {
  .introduction__info-title {
    font-size: 32px; }

  .services__info {
    margin-right: 0; }
    .services__info-title {
      font-size: 26px; }
    .services__info-btn {
      font-size: 16px; }

  .footer__inner {
    padding-top: 60px;
    padding-bottom: 60px; }
  .footer__top {
    display: block; }
    .footer__top-list {
      max-width: unset;
      margin: 50px 0; }
      .footer__top-list ul {
        display: block; }
      .footer__top-list li + li {
        margin-top: 10px; }
      .footer__top-list__title {
        margin-bottom: 10px; } }
@media (max-width: 790px) {
  .services__info {
    max-width: 610px;
    width: 100%;
    margin-right: 20px; }
    .services__info-text {
      font-size: 12px; }

  .advantages__item {
    max-width: unset;
    width: 100%; }
    .advantages__item-card {
      max-width: unset; }
    .advantages__item-img {
      display: none; }
    .advantages__item:first-child {
      max-width: unset; }
    .advantages__item:last-child {
      max-width: unset;
      padding-left: 0; }

  .prices__slider {
    max-width: 500px; }
  .prices .swiper-button-prev,
  .prices .swiper-button-next {
    display: none; } }
@media (max-width: 768px) {
  .header__inner {
    padding: 17px 0; }
  .header__menu {
    position: absolute;
    left: 0;
    top: 73px;
    background-color: #fff;
    width: 0;
    padding: 70px 18px 49px 18px;
    z-index: 1;
    display: none; }
    .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__btn-mobile {
    display: flex; }

  .header.open .header__menu {
    width: 100%;
    display: block; }
    .header.open .header__menu-phone__mini {
      display: block; }

  .about__info-img {
    display: block;
    width: 100%; }

  .services__inner {
    display: block; }
  .services__info {
    margin-bottom: 40px;
    max-width: unset; }
    .services__info-text {
      max-width: unset; } }
@media (max-width: 600px) {
  .faq__accordeon-item__question {
    font-size: 16px; }

  .footer__top {
    margin-bottom: 50px; }
  .footer__line {
    display: none; }
  .footer__bottom {
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 15px;
    align-items: unset; } }
@media (max-width: 520px) {
  .introduction {
    background-image: url(../../assets/images/introduction/introduction-mobile.jpg);
    padding-top: 134px;
    margin-bottom: 70px; }
    .introduction__inner {
      padding-top: 0; }
    .introduction__info {
      margin-bottom: 50px; }
    .introduction__benefits-btn {
      max-width: unset; }

  .about {
    margin-bottom: 70px; }
    .about__info {
      margin-bottom: 24px; }
      .about__info-title {
        font-size: 32px; }
      .about__info-text {
        font-size: 14px; }
    .about__benefits-info__title {
      font-size: 24px; }
    .about__benefits-info__text {
      font-size: 12px;
      line-height: 180%; }
    .about__benefits-items {
      gap: 8px; }
    .about__benefits-item {
      max-width: 193px;
      padding: 15px 5px; }
      .about__benefits-item img {
        max-width: 60px; }
      .about__benefits-item h3 {
        color: #000;
        font-size: 12px;
        font-weight: 700;
        line-height: 160%;
        padding: 0 9px; }

  .services {
    background-image: url(../../assets/images/services/services-bg-mini.png);
    padding-top: 60px;
    padding-bottom: 77px;
    margin-bottom: 70px; }
    .services__inner {
      display: block; }
    .services__info {
      margin-right: 0;
      margin-bottom: 40px; }
      .services__info-text {
        font-size: 14px;
        max-width: unset; }
      .services__info-btn {
        display: none; }
        .services__info-btn__mobile {
          display: flex;
          font-size: 18px;
          margin: 40px auto 0;
          max-width: unset; }

  .advantages {
    margin-bottom: 70px; }
    .advantages__item-card {
      padding-right: 37px; }
    .advantages__item-img__mobile {
      display: block; }
    .advantages__item:first-child {
      padding-left: 12px; }
    .advantages__item-last__btn {
      max-width: unset; }

  .prices {
    margin-bottom: 70px; }
    .prices__inner {
      border-left: 1px solid rgba(250, 142, 6, 0.2);
      height: fit-content;
      padding-left: 12px; }
    .prices__info-btn {
      max-width: unset; }
    .prices__slider {
      max-width: 390px;
      padding-left: 0; }

  .testimonials {
    margin-bottom: 100px; }
    .testimonials .swiper-button-next,
    .testimonials .swiper-button-prev {
      display: none; }

  .faq {
    margin-bottom: 70px; }
    .faq__inner {
      box-shadow: none;
      padding: 0; }
    .faq__info-title {
      margin-bottom: 0; }
    .faq__info-img {
      display: block;
      max-width: 349px;
      width: 100%; }
    .faq__accordeon-item__answer {
      font-size: 12px;
      color: #000; }

  .footer__inner {
    padding-bottom: 48px; }
  .footer__top-main {
    position: relative; }
    .footer__top-main__logo {
      font-size: 44px; }
      .footer__top-main__logo img {
        max-width: 51px;
        width: 100%; }
    .footer__top-main__number {
      display: none; }
    .footer__top-main__email {
      display: none; }
    .footer__top-main::before {
      content: '';
      position: absolute;
      height: 1px;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      bottom: -30px; }
  .footer__top-list {
    position: relative; }
    .footer__top-list::before {
      content: '';
      position: absolute;
      height: 1px;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      bottom: -30px; }
  .footer__top-input input {
    max-width: 300px;
    width: 100%;
    padding-top: 22px; }
  .footer__top-input a {
    max-width: 82px;
    width: 100%;
    display: inline-block;
    padding: 16px 30px; }
  .footer__bottom-time {
    margin-bottom: 24px; } }
@media (max-width: 429px) {
  .header__logo {
    font-size: 18px; }

  .introduction__info-title {
    font-size: 24px; }
  .introduction__info-text {
    font-size: 14px; }
  .introduction__benefits-item {
    font-size: 14px; }
  .introduction__benefits-btn {
    justify-content: center;
    padding: 12px 40px; }

  .about__info {
    border-left: none;
    padding: 0; }
    .about__info-title {
      font-size: 28px;
      margin-bottom: 10px; }
  .about__benefits-info {
    border-left: none;
    padding-left: 0; }
  .about__benefits-item {
    max-width: unset;
    width: 100%; }

  .advantages__item-first__title {
    font-size: 40px;
    margin-bottom: 10px; }
  .advantages__item-first__text {
    font-size: 14px; }
  .advantages__item:last-child {
    padding-right: 0; }
  .advantages__item-card__name img {
    max-width: 55px; }

  .services__info-btn {
    font-size: 12px;
    justify-content: center; }
    .services__info-btn__mobile {
      font-size: 16px; }
  .services__item-name {
    font-size: 12px; }
  .services__item-num {
    font-size: 44px; }

  .prices__inner {
    border-left: none; }
  .prices__slider {
    max-width: 240px; }
  .prices__info-title {
    font-size: 40px; }
  .prices__info-text {
    font-size: 14px; }
  .prices .swiper-pagination {
    left: 0;
    transform: translateX(0%); }

  .testimonials__title {
    font-size: 40px; }
  .testimonials__slider-slide {
    width: 290px !important; }

  .footer__top-main__logo {
    font-size: 22px; }
  .footer__top-input input {
    max-width: 200px; } }
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.6; }
  .header__btn:hover {
    color: #FA8E06;
    background-color: transparent;
    border: 2px solid #FA8E06; }
    .header__btn:hover svg path {
      fill: #FA8E06; }
  .header__menu ul a:hover {
    color: #FA8E06; }

  .introduction__benefits-btn:hover {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
    .introduction__benefits-btn:hover svg path {
      fill: #FA8E06; }

  .services__info-btn:hover {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
  .services__info-btn__mobile:hover {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }

  .advantages__item-last__btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff; }
    .advantages__item-last__btn:hover svg path {
      fill: #fff; }

  .prices__info-btn:hover {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
    .prices__info-btn:hover svg path {
      fill: #FA8E06; }
  .prices__slider-slide__btn:hover {
    background-color: #fff;
    border: 2px solid #FA8E06; }
    .prices__slider-slide__btn:hover svg path {
      fill: #FA8E06; }

  .footer__top-main__logo:hover {
    opacity: 0.6; }
  .footer__top-main__number:hover {
    color: #FA8E06; }
  .footer__top-main__email:hover {
    color: #FA8E06; }
  .footer__top-list ul a:hover {
    color: #FA8E06; }
  .footer__top-mobile__number a:hover {
    border: 2px solid #FFFFFF;
    background-color: #FFFFFF; }
    .footer__top-mobile__number a:hover path {
      fill: #FA8E06; } }
@media (hover: none) {
  .header__logo:active {
    opacity: 0.6; }
  .header__btn:active {
    color: #FA8E06;
    background-color: transparent;
    border: 2px solid #FA8E06; }
    .header__btn:active svg path {
      fill: #FA8E06; }
  .header__menu ul a:active {
    color: #FA8E06; }

  .introduction__benefits-btn:active {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
    .introduction__benefits-btn:active svg path {
      fill: #FA8E06; }

  .services__info-btn:active {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
  .services__info-btn__mobile:active {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }

  .advantages__item-last__btn:active {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff; }
    .advantages__item-last__btn:active svg path {
      fill: #fff; }

  .prices__info-btn:active {
    background-color: transparent;
    color: #FA8E06;
    border: 2px solid #FA8E06; }
    .prices__info-btn:active svg path {
      fill: #FA8E06; }
  .prices__slider-slide__btn:active {
    background-color: transparent;
    border: 2px solid #FA8E06; }
    .prices__slider-slide__btn:active svg path {
      fill: #FA8E06; }

  .footer__top-mobile__number a:active {
    border: 2px solid #FFF; }
    .footer__top-mobile__number a:active path {
      fill: #FA8E06; } }
