* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'roboto';
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

body {
    background: #F6F7F9;
}

@font-face {
    font-family: 'roboto';
    src: url(./assets/fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'roboto_medium';
    src: url(./assets/fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: 'roboto_light';
    src: url(./assets/fonts/Roboto-Light.ttf);
}

/* ===== HEADER ===== */
.header {
    padding-top: 20px;
}

.header__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info__item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-info__icon {
    flex-shrink: 0;
}

.contact-info__text {
    font-size: 15px;
    color: #002138;
    white-space: nowrap;
}

.header__contacts {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.header__phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header__phone {
    font-size: 18px;
    font-family: 'roboto_medium';
    color: #002138;
    white-space: nowrap;
}

.color-accent {
    color: #0561F9;
}

.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-links__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    transition: opacity 0.3s ease;
}

.social-links__item:hover {
    opacity: 0.8;
}

.social-links__item--whatsapp {
    background-color: #25D366;
}

.social-links__icon {
    width: 100%;
    height: 100%;
}

.btn {
    font-size: 16px;
    font-family: 'roboto_medium';
    border-radius: 8px;
    padding: 16px 46px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    color: #fff;
    background: #0561F9;
}

.btn--primary:hover {
    background: #0451d0;
}

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 48px;
    border-radius: 8px;
    background: #fff;
    padding: 11px 24px;
    flex-wrap: wrap;
}

.brand__logo {
    position: relative;
    display: block;
}

.brand__logo::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: #0561F9;
}

.brand__tagline {
    font-size: 15px;
    line-height: 130%;
    color: #002138;
    font-family: 'roboto_light';
}

.main-nav {
    background: #fff;
    border-radius: 8px;
    padding: 24px 42px 24px 37px;
}

.main-nav__list {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    color: #002138;
    transition: color 0.3s ease;
}

.main-nav__link:hover {
    color: #0561F9;
}

.main-nav__arrow {
    width: 9px;
    height: 5px;
    fill: #0561F9;
    transition: transform 0.3s ease;
}

.main-nav__item--has-dropdown:hover .main-nav__arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .header__top {
        gap: 12px;
        border-bottom: 1px solid #eaeaea;
    }

    .contact-info {
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .contact-info__item {
        flex: 1;
        min-width: 0;
    }

    .contact-info__item:first-child .contact-info__text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 231px;
    }

    .contact-info__item:nth-child(2) {
        display: none;
    }

    .header__contacts {
        display: grid;
        gap: 34px;
        align-items: center;
    }

    .header__phones {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
    }

    .header__phone {
        white-space: nowrap;
    }

    .social-links {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        gap: 8px;
    }

    .header__top .btn {
        display: none;
    }

    .header__bottom {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 64px;
        background: #fff;
        border-radius: 8px;
        transform: rotate(-180deg);
        cursor: pointer;
        border: none;
        padding: 0;
        order: 1;
    }

    .burger-menu__icon {
        width: 24px;
        height: 24px;
    }

    .brand__logo svg {
        width: 150px;
        height: auto;
    }

    .main-nav {
        display: none;
    }

    .header__bottom .btn {
        display: block;
        order: 3;
        width: auto;
        padding: 14px 24px;
        font-size: 15px;
        white-space: nowrap;
        height: 64px;
    }
}

@media (max-width: 768px) {

    .contact-info__item:nth-child(2),
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}


/*=== BANNER ===*/
.banner {
    margin-top: 20px;
}

.banner_content {
    background: url(../media/banner/banner.png);
    background-size: cover;
    height: 524px;
    padding-left: 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-position: right center;
}

.banner_content_text {
    display: flex;
    flex-direction: column;
    width: 600px;
    gap: 30px;
}

.banner_content_text h1 {
    font-size: 44px;
    color: #002138;
    font-weight: 400;
}

.banner_content_text p {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
    width: 355px;
}

.banner_content_buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 17px;
}

.banner_content_buttons button {
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    border-radius: 8px;
    background: #0561f9;
    padding: 16px 37px;
    border: none;
}

.banner_content_buttons .banner_button--second {
    border: 1px solid #0561f9;
    border-radius: 8px;
    background: none;
    color: #0561f9;
    padding: 16px 27px;
}

.banner_bottom--items {
    position: absolute;
    display: flex;
    gap: 24px;
    bottom: -71px;
    left: 4%;
}

.banner_bottom--item {
    display: flex;
    gap: 26px;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(219, 219, 219, 0.25);
    border-radius: 8px;
    padding: 27px 50px 27px 40px;
}

.banner_bottom--item_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner_bottom--item_text p {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.banner_bottom--item_text .banner_bottom--item_text_title {
    font-size: 20px;
    color: #002138;
    font-family: 'roboto';
}

@media (max-width:768px) {
    .banner_content {
        background: url(../media/banner/banner_tablet.png);
        background-size: cover;
        border-radius: 8px;
        padding-left: 48px;
    }

    .banner_content_text h1 {
        font-size: 36px;
        width: 304px;
    }

    .banner_content_buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner_content_text {
        gap: 18px;
    }

    .banner_bottom--item {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 210px;
        padding: 27px 0px 27px 22px;
    }

    .banner_bottom--items {
        gap: 13px;
        left: 2.5%;
        bottom: -160px;
    }

    .banner_bottom--item_text .banner_bottom--item_text_title {
        font-size: 18px;
    }

    .banner_bottom--item_text p {
        font-size: 16px;
        width: 169px;
    }
}

/*=== SERVICES ===*/
.services {
    margin-top: 152px;
}

.services_content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.services_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h2 {
    font-size: 32px;
    color: #002138;
    font-weight: 400;
}

.services_title_arrows {
    display: flex;
    gap: 12px;
    align-items: center;
}

.services_title_arrow {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    background: #0561f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
}

.services_title_arrow:hover {
    opacity: 0.8;
}

.services_title_arrow.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.services_slider_container {
    overflow: hidden;
    width: 100%;
}

.services_cards {
    display: flex;
    transition: transform 0.3s ease;
}

.services_cards {
    display: flex;
    gap: 19px;
    transition: transform 0.4s ease;
}

.services_card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 31px;
    border-radius: 8px;
    background: #fff;
    padding: 20px 28px;
    width: 230px;
    justify-content: space-between;
}

.services_card img {
    border-radius: 8px;
    width: 230px;
    height: 154px;
    object-fit: cover;
}

.services_card_text {
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services_card_text h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #002138;
}

.services_card_text p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
    padding-top: 10px;
}

.services_card_text .services_price {
    font-size: 22px;
    line-height: 130%;
    color: #0561f9;
    font-family: 'roboto_medium';
    padding-top: 0;
}

.services_card button {
    border-radius: 8px;
    background: #0561f9;
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    padding: 16px 33px;
    border: none;
    width: 230px;
    margin-top: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto;
}

.services_card button:hover {
    background: #0451d4;
}

@media (max-width: 768px) {
    .services_card {
        width: calc((100% - 207px) / 3) !important;
    }

    .services_card img {
        height: 132px;
        width: 194px;
    }

    .services_card_text p {
        font-size: 16px;
        width: 188px;
    }

    .services_card button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services {
        margin-top: 221px;
    }
}

@media (max-width: 340px) {
    .services_title_arrows {
        display: none;
    }

    .services_card {
        width: 70% !important;
    }

    .services_card img {
        width: 100%;
    }

    .services_cards {
        gap: 0;
    }
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 340px) {
    .slider-dots {
        display: flex !important;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #0561F9;
}

/* Добавляем эти стили: */
.services_slider_container {
    overflow: hidden;
    width: 100%;
}

.services_cards {
    display: flex;
    gap: 19px;
    transition: transform 0.3s ease;
}

/* Точки только на мобилке */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 340px) {
    .slider-dots {
        display: flex;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #0561F9;
}

/* На мобилке скрываем стрелки */
@media (max-width: 340px) {
    .services_title_arrows {
        display: none !important;
    }
}


/*=== PRICES ===*/
.prices {
    margin-top: 88px;
}

.prices_content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.prices_block {
    border-radius: 8px;
    background: #fff;
    padding: 21px 28px 45px 28px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.prices_block_title {
    border-radius: 8px;
    background: rgba(5, 97, 249, 0.1);
    padding: 22px 34px;
    display: flex;
    justify-content: space-between;
    padding-right: 255px;
}

.prices_block_title p {
    font-size: 20px;
    line-height: 130%;
    color: #0561f9;
}

.prices_block_items {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.prices_block_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.afterline {
    position: relative;
}

.afterline::after {
    content: "";
    position: absolute;
    border-radius: 8px;
    width: 1144px;
    height: 1px;
    background: #f2f4ff;
    bottom: -50%;
}

.prices_block_item_price {
    display: flex;
    gap: 109px;
}

.prices_block_item p {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
    padding-left: 34px;
}

.prices_block_item .prices_block_item_price p {
    font-family: 'roboto';
    padding: 0;
}

.prices_block_item_price a {
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #0561f9;
    font-family: 'roboto_medium';
    margin-right: 34px;
}


/*=== ABOUT ===*/
.about {
    margin-top: 88px;
}

.about_content {
    display: flex;
    flex-direction: column;
    gap: 65px;
    position: relative;
}

.about_content_img {
    position: absolute;
    right: 2%;
    top: 5%;
}

.about_content_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about_content_top_text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.about_content_top_square {
    border-radius: 8px;
    width: 324px;
    height: 169px;
    background: #0561f9;
}

.about_content_top_text p {
    font-size: 18px;
    line-height: 160%;
    color: #002138;
    font-family: 'roboto_light';
    width: 571px;
}

.about_content_top_text button {
    margin-top: 28px;
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    background: #0561f9;
    border-radius: 8px;
    border: none;
    padding: 16px 74px;
    width: 230px;
    height: 50px;
}

.about_content_items {
    display: flex;
    gap: 68px;
    border-radius: 8px;
    width: 905px;
    background: #fff;
    padding: 36px 0px 49px 25px;
}

.about_content_item {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 137px;
}

.about_content_item p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.about_content_item .about_content_item--number {
    font-size: 46px;
    color: #0561f9;
    font-family: 'roboto';
}

@media (max-width:768px) {
    .about_content_img {
        right: 2%;
        top: 3%;
    }

    .about_content_img img {
        width: 379px;
    }

    .about_content_top_text p {
        width: 355px;
    }

    .about_content_top_square {
        width: 198px;
    }

    .about_content_items {
        width: 100%;
    }
}


/*=== EXPERTS ===*/
.experts {
    margin-top: 88px;
}

.experts_content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.experts_content_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experts_content_title--arrows {
    display: flex;
    gap: 12px;
}

.experts_content_title--arrow {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    background: #0561f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experts_slider_container {
    overflow: hidden;
    width: 100%;
}

.experts_cards {
    display: flex;
    transition: transform 0.4s ease;
    width: max-content;
    gap: 0;
}

.expert_card {
    display: flex;
    flex-direction: column;
    gap: 26px;
    border-radius: 8px;
    background: #fff;
    padding: 16px 14px 29px 14px;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 19px;
}

.expert_card:last-child {
    margin-right: 0;
}

.experts-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.expert_card img {
    border-radius: 8px;
    width: 258px;
    height: 179px;
}

.expert_card_text {
    width: 228px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expert_card_text p {
    font-size: 16px;
    line-height: 150%;
    color: #002138;
}

.expert_card_text .color-accent {
    color: #0561F9;
}

.light-accent {
    font-family: 'roboto_light';
}

.expert_card_text h4 {
    font-size: 20px;
    line-height: 130%;
    color: #002138;
    font-weight: 400;
}

.expert_card button {
    border-radius: 8px;
    background: #0561f9;
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    padding: 16px 33px;
    border: none;
    width: 230px;
    margin-top: 5px;
}

@media (max-width:768px) {
    .expert_card {
        width: 214px;
        align-items: baseline;
    }

    .expert_card button {
        width: 100%;
        padding: 16px 13px;
    }

    .expert_card img {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 340px) {
    .experts-dots {
        display: flex;
    }
}

.expert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
}

.expert-dot.active {
    background: #0561F9;
}

@media (max-width: 340px) {
    .experts_content_title--arrows {
        display: none !important;
    }
}

@media (max-width: 340px) {
    .expert_card {
        width: 100% !important;
        margin-right: 0;
    }

    .expert_card img {
        width: 100%;
        height: auto;
    }

    .expert_card_text {
        width: 100%;
    }

    .expert_card button {
        width: 100%;
    }
}

/*=== CERTS ===*/
.certs {
    margin-top: 90px;
}

.certs_content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    position: relative;
}

.certs_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certs_title-arrows {
    display: flex;
    gap: 12px;
    align-items: center;
}

.certs_title-arrow {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    background: #0561f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-pattern {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: -2;
    width: 100%;
    bottom: -9%;
}

.pattern {
    border-radius: 8px;
    width: 290px;
    height: 169px;
    background: #e6effe;
}

.certs_background {
    position: absolute;
    z-index: -1;
    border-radius: 8px;
    width: 97%;
    height: 224px;
    background: #fff;
    bottom: -5%;
    left: 1.5%;
}

.certs_slider {
    display: flex;
    transition: transform 0.4s ease;
    width: max-content;
    gap: 36px;
    justify-content: center;
}

.certs_slider_container {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certs_slider img {
    flex: 0 0 auto; 
    border-radius: 8px;
    object-fit: cover;
}
.certs-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 340px) {
    .certs-dots {
        display: flex;
    }
}

.cert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
}

.cert-dot.active {
    background: #0561F9;
}

@media (max-width: 340px) {
    .certs_title-arrows {
        display: none !important;
    }
}

@media (max-width: 340px) {
    .certs_slider img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .certs_slider {
        gap: 0;
        padding: 0 10px;
    }
    
    .certs_slider_container {
        padding: 10px 0;
    }
   
    .certs_background {
        height: 180px;
        bottom: -3%;
    }
    
    .background-pattern {
        display: none;
    }
}

@media (max-width: 768px) {
    .certs_slider {
        gap: 24px;
        margin-left: 20px;
    }
    .certs_slider_container {
        display: block;
    }
}


/*=== ADVANTAGES ===*/
.advantages {
    margin-top: 144px;
}

.advantages__content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    /* левая колонка — контент, правая — изображение */
    gap: 18px;
    align-items: start;
}

.advantages__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.advantages__row-top {
    display: grid;
    grid-template-columns: 484px 342px;
    /* фиксированные ширины как у вас */
    gap: 18px;
}

.advantages__row-bottom {
    display: grid;
    grid-template-columns: 342px 484px;
    /* фиксированные ширины как у вас */
    gap: 18px;
}

.advantages__card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 0 0 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantages__card--narrow {
    height: 233px;
}

.advantages__header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.advantages__icon {
    background: #0561f9;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages__header p {
    font-size: 20px;
    line-height: 130%;
    color: #002138;
    margin: 0;
}

.advantages__text {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
    margin: 0;
}

.advantages__image {
    max-width: none;
    /* чтобы не наследовалось от img общих стилей */
}


/*=== FAQ ===*/
.faq {
    margin-top: 88px;
}

.faq_content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq_content_nav {
    display: flex;
    gap: 34px;
    position: relative;
}

.faq_content_nav::after {
    content: "";
    position: absolute;
    border-radius: 8px;
    width: 846px;
    height: 1px;
    background: #e1e5ee;
    bottom: -110%;
}

.faq_content_nav a {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.faq_content_nav .nav_active {
    color: #0561f9;
    font-family: 'roboto';
}

.faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 37px;
}

.faq_accordion_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 22px 32px;
}

.faq_accordion_item p {
    font-size: 18px;
    line-height: 130%;
    color: #002138;
}

/*=== REVIEWS ===*/
.reviews {
    margin-top: 88px;
}

.reviews_content {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.reviews_content_title {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 17px 26px;
}

.reviews_content_title_nav {
    display: flex;
    gap: 30px;
}

.reviews_content_title_nav .all {
    font-size: 16px;
    color: #0561f9;
    font-family: 'roboto_medium';
    border: 1px solid #0561f9;
    border-radius: 8px;
    width: 174px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews_content_title_nav--link {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviews_content_title_nav--link a {
    font-size: 16px;
    color: #002138;
    font-family: 'roboto_medium';
}

.reviews_content_title_nav_buttons {
    display: flex;
    gap: 34px;
    align-items: center;
}

.reviews_content_title_nav_buttons button {
    font-size: 16px;
    color: #0561f9;
    font-family: 'roboto_medium';
    border: 1px solid #0561f9;
    border-radius: 8px;
    width: 174px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.reviews_content_title_nav_buttons-arrows {
    display: flex;
    gap: 12px;
}

.reviews_content_title_nav_buttons-arrow {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    background: #0561f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews_content_cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.reviews_content_card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 8px;
    background: #fff;
    padding: 30px 28px 46px 28px;
}

.reviews_content_card_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.reviews_content_card_title::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 1px;
    background: #ececec;
    bottom: -80%;
}

.reviews_content_card_title_name {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews_content_card_title p {
    font-size: 14px;
    color: #002138;
    font-family: 'roboto_medium';
}

.reviews_content_card_person {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 18px;
}

.reviews_content_card_person_photo {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.reviews_content_card_person_name {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews_content_card_person_name p {
    font-size: 16px;
    color: #002138;
    font-family: 'roboto_medium';
}

.review_text {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.reviews_content_card button {
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #0561f9;
    background: none;
    border: none;
    text-align: start;
    margin-top: 8px;
}

/*=== FEEDBACK ===*/
.feedback {
    margin-top: 88px;
}

.feedback_content {
    position: relative;
    border-radius: 8px;
    background: #fff;
    padding: 58px 0px 66px 54px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feedback_content_title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback_content_title p {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.feedback_content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback_content form .feedback_form-name {
    border-radius: 8px;
    width: 468px;
    height: 56px;
    background: #f6f7f9;
    opacity: 0.99;
    border: none;
    padding-left: 24px;
}

.feedback_content form input {
    font-size: 18px;
    line-height: 150%;
    color: #002138;
    font-family: 'roboto_light';
}

.feedback_form_input {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    width: 468px;
    height: 56px;
    background: #f6f7f9;
    padding-left: 24px;
}

.feedback_content form .feedback_form_input input {
    border: none;
    background: none;
    color: #002138;
    font-family: 'roboto';
}

.feedback_form_input_country {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback_form_input_country svg:first-child {
    width: 64px;
    height: 56px;
    flex-shrink: 0;
}

.feedback_form_input_country svg:last-child {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.feedback_content form button {
    border-radius: 8px;
    background: #0561f9;
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    padding: 16px 120px;
    border: none;
    width: 320px;
    margin-top: 15px;
}

.feedback_agreement {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 17px;
    position: relative;
}

.feedback_agreement input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.feedback_agreement label {
    font-size: 14px;
    line-height: 150%;
    color: #002138;
    position: relative;
    display: block;
}

.feedback_agreement label::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: #eeeff2;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.feedback_agreement label {
    padding-left: 40px;
    margin-top: -2px;
}

.feedback_agreement label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 6px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

.feedback_agreement label:hover::before {
    background: #e0e1e5;
}

.feedback_agreement input[type="checkbox"]:checked+label::before {
    background: #0561F9;
}

.feedback_agreement input[type="checkbox"]:checked+label::after {
    display: block;
}

.feedback_agreement a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #0561f9;
}

.feedback_content_img {
    position: absolute;
    right: 30px;
    top: 93px;
}


/*=== FOOTER ===*/
footer {
    background: #1b2433;
    margin-top: 122px;
    padding: 67px 0px 44px 0px;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 151px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_logo {
    position: relative;
}

.footer_logo p {
    position: absolute;
    font-size: 15px;
    line-height: 130%;
    color: #fff;
    left: 34.5%;
    font-family: 'roboto_light';
    top: 48%;
}

.footer_nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_nav nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_nav p {
    font-size: 20px;
    color: #fff;
}

.footer_nav nav a {
    font-size: 17px;
    color: #fff;
}

.footer_address {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer_address_items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_address_items h5 {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.footer_address_items-item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.footer_address_items-item p {
    font-size: 15px;
    line-height: 150%;
    color: #fff;
}

.footer_buttons {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.footer_buttons button {
    border-radius: 8px;
    background: #0561f9;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    font-family: 'roboto_medium';
    padding: 16px 52px;
    border: none;
}

.footer_phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_phones a {
    font-size: 20px;
    color: #fff;
    font-family: 'roboto_medium';
}

.footer_times {
    display: flex;
    gap: 9px;
    align-items: center;
}

.footer_times p {
    font-size: 15px;
    color: #fff;
}

.footer_icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 15px;
    color: #fff;
}

.footer_bottom a {
    color: #fff;
}

.footer_bottom_info {
    display: flex;
    gap: 77px;
}