* {
    font-family: Onest;
}

body {
    margin: 0;
}

button {
    cursor: pointer;
}

/* шапка сайта */
header {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 300px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
}

header img {
    width: 160px;
    height: auto;
}

header nav {
    display: flex;
    flex-direction: row;
    gap: 45px;
}

header a {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.45s ease;
    position: relative;
    padding-bottom: 5px;
    color: #1a2021;
}

nav a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 50%;
    background-color: #00aab6;
    transition: all 0.45s ease;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #00aab6;
}

.logo-nav {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.logo-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.logo-nav p {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding-bottom: 5px;
    color: #164249;
}

.logo-nav p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right, #164249 0, #164249 6px, transparent 6px, transparent 10px);
}

.for-whom {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding-bottom: 5px;
    color: #1A202159;
}

.for-whom:hover {
    color: #164249;
}

.for-whom::before {
    background-color: transparent;
}

.logo-a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* меню */
.menu {
    display: none;
    background: #fff;
    border: none;
}

.menu img {
    width: 24px;
    height: auto;
}

.side-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: #fff;
    z-index: 100;
    overflow-x: hidden;
    transition: transform 0.45s, visibility 0.45s;
    transform: translateX(100%);
    visibility: hidden;
    display: flex;
    gap: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.side-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.social-networks-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* главный контент */
main nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

main a {
    font-size: 33px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.45s ease;
    position: relative;
    padding-bottom: 10px;
    color: #1a2021;
}

nav a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 50%;
    background-color: #00aab6;
    transition: all 0.45s ease;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #00aab6;
}

.no-scroll {
    overflow: hidden;
}

.for-whom-menu {
    display: none;
}

@media (max-width: 1920px) {
    header {
        padding: 5px 210px;
    }
}

@media (max-width: 1800px) {
    header {
        padding: 5px 120px;
    }
}

@media (max-width: 1500px) {
    header {
        padding: 10px 85px;
    }
}

@media (max-width: 1300px) {
    header {
        padding: 5px 50px;
    }

    header nav {
        gap: 48px;
    }
}

@media (max-width: 1140px) {
    header {
        padding: 5px 24px;
    }

    header img {
        width: 134px;
    }

    header nav {
        gap: 32px;
    }
}

@media (max-width: 1000px) {
    header nav {
        display: none;
    }

    .menu {
        display: flex;
    }
}

@media (max-width: 600px) {
    .logo-nav nav {
        display: none;
    }

    .for-whom-menu {
        display: flex;
        flex-direction: row;
        gap: 24px;
        font-weight: 700;
        font-size: 25px;
        line-height: 24px;
        color: #164249;
    }

    .for-whom-menu a {
        font-size: 25px;
    }

    .for-whom-menu p {
        margin: 0;
        position: relative;
        padding-bottom: 5px;
    }

    .for-whom-menu p::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: repeating-linear-gradient(to right, #164249 0, #164249 6px, transparent 6px, transparent 10px);
    }
}

@media (max-width: 500px) {
    header {
        padding: 5px 16px;
    }

    .for-whom-menu {
        font-size: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .for-whom-menu p {
        padding-bottom: 10px;
    }
}

main {
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding: 0 300px;
    margin-top: 120px;
}

@media (max-width: 1920px) {
    main {
        gap: 110px;
        padding: 0 210px;
    }

    main .review {
        margin: 0 -210px;
    }
}

@media (max-width: 1800px) {
    main {
        padding: 0 120px;
    }

    main .review {
        margin: 0 -120px;
    }
}

@media (max-width: 1500px) {
    main {
        gap: 100px;
        padding: 0 85px;
    }

    main .review {
        margin: 0 -85px;
    }
}

@media (max-width: 1300px) {
    main {
        padding: 0 24px;
    }

    main .review {
        margin: 0 -24px;
    }
}

@media (max-width: 768px) {
    main {
        gap: 100px;
        padding: 0 24px;
    }

    main .review {
        margin: 0 -24px;
    }
}

@media (max-width: 500px) {
    main {
        gap: 80px;
        padding: 0 16px;
    }

    main .review {
        margin: 0 -16px;
    }

    main a {
        font-size: 25px;
        line-height: 20px;
        padding-bottom: 7px;
    }
}

/* Управление и контроль */
.first {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.first-text {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    width: 50%;
}

.first-header {
    font-weight: 800;
    font-size: 50px;
    line-height: 50px;
}

.first-header img {
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.first-phone {
    background: #f4f9f9;
    width: 700px;
    height: 700px;
    border-radius: 48px;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}

.iphone1 {
    width: 100%;
}

.first-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #1a2021;
}

@media (max-width: 1920px) {
    .first-header img {
        width: 48px;
    }
}

@media (max-width: 1440px) {
    .first-header img {
        width: 40px;
    }

    .first-header {
        font-size: 40px;
    }

    .first-phone {
        background: #f4f9f9;
        width: 600px;
        height: 600px;
        border-radius: 48px;
        display: flex;
        align-items: end;
        justify-content: center;
        position: relative;
    }
}

@media (max-width: 1300px) {
    .first {
        flex-direction: column;
        gap: 10px;
    }

    .first-text {
        width: 78%;
    }

    .first-phone {
        width: 800px;
        height: 450px;
        justify-content: end;
        align-self: flex-end;
    }

    .iphone1 {
        width: 77%;
    }
}

@media (max-width: 1100px) {
    .first-text {
        width: 83%;
    }

    .first-phone {
        width: 650px;
        height: 450px;
    }

    .iphone1 {
        width: 87%;
    }
}

@media (max-width: 900px) {
    .first-text {
        width: 90%;
    }

    .first-phone {
        width: 550px;
        height: 350px;
    }

    .iphone1 {
        width: 74%;
    }
}

@media (max-width: 768px) {
    .first {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .first-text {
        gap: 40px;
        width: 100%;
    }

    .first-phone {
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .first-content {
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
    }

    .first-content {
        width: 90%;
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
    }
}

@media (max-width: 500px) {
    .first-text {
        gap: 20px;
        width: 100%;
    }

    .first-header {
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
    }

    .first-header img {
        width: 32px;
    }

    .first-phone {
        width: 100%;
        height: auto;
        border-radius: 32px;
        align-items: end;
    }

    .iphone1 {
        width: 100%;
    }

    .first-content {
        font-size: 16px;
        line-height: 24px;
    }
}

/* кнопки магазинов google play и app store */
.btn-first {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-first img {
    width: 216px;
    height: 64px;
}

.btn-first button {
    width: 220px;
    height: 64px;
    background: #1a2021;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.45s linear;
}

.btn-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.btn-access {
    color: #fff;
    font-weight: 300;
    font-size: 12px;
}

.btn-market {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.btn-first button:hover {
    background: #00aab6;
    text-shadow: 0 0 3px #164249;
}

@media (max-width: 1920px) {
    .btn-first button {
        width: 215px;
    }
}

@media (max-width: 1300px) {
    .btn-first button {
        width: 190px;
        height: 55px;
        gap: 7px;
    }
}

@media (max-width: 768px) {
    .btn-first button {
        width: 200px;
        height: 60px;
    }
}

@media (max-width: 500px) {
    .btn-first img {
        width: 161px;
        height: 48px;
    }

    .btn-first button {
        width: 160px;
        height: 54px;
        gap: 7px;
    }

    .btn-access {
        font-size: 12px;
    }

    .btn-market {
        font-size: 17px;
    }
}

@media (max-width: 450px) {
    .btn-first {
        flex-direction: column;
    }
}

/* кнопка "смотреть видео" */
.block-video {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 10px;
    bottom: -70px;
    left: -165px;
}

.text-video {
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100px;
    color: #1a2021;
}

.text-video span {
    text-align: center;
    color: #164249;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.text-video img {
    width: 64px;
}

.btn-video img {
    width: 33px;
    height: 44px;
    align-items: end;
}

.btn-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
}

.btn-video button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #02c0cd;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 8px 24px 0px #00CBD94D;
    transition: all 0.45s ease-in;
    padding-left: 14px;
    padding-top: 1px;
}

.btn-video button:hover {
    background: #164249;
}

@media (max-width: 1300px) {
    .block-video {
        gap: 0;
        bottom: -40px;
        left: -130px;
    }

    .text-video {
        width: 95px;
    }
}

@media (max-width: 768px) {
    .block-video {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        gap: 0;
        width: 120px;
        height: 120px;
    }

    .text-video {
        display: none;
    }

    .btn-video {
        background: transparent;
    }
}

@media (max-width: 500px) {
    .btn-video img {
        width: 35px;
    }

    .btn-video button {
        width: 74px;
        height: 74px;
    }
}

/* сервисная электронная книжка */
.second {
    height: auto;
    background: #f4f9f9;
    padding: 50px 80px;
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 30px;
    width: -webkit-fill-available;
}

.second-header {
    width: 85%;
    color: #1a2021;
    font-size: 30px;
    font-weight: 800;
    line-height: 48px;
}

.second-header span {
    color: #acb5b7;
}

.second-blocks {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 84px;
}

.block {
    display: flex;
    flex-direction: column;
    width: 315px;
    gap: 24px;
}

.block-header {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
}

.block-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.img-second {
    width: 72px;
    height: 72px;
    background: #02c0cd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.img-second img {
    width: 32px;
    height: auto;
}

.second-block-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #1a2021;
}

@media (max-width: 1440px) {
    .second {
        gap: 48px;
    }

    .second-header {
        width: 90%;
    }

    .second-blocks {
        gap: 30px;
    }
}

@media (max-width: 1300px) {
    .second {
        border-radius: 40px;
        /* width: 78%; */
    }

    .second-header {
        width: 100%;
    }

    .block {
        width: 234px;
    }
}

@media (max-width: 800px) {
    .second {
        padding: 50px;
        /* width: 80%; */
    }

    .second-header {
        width: 100%;
    }

    .second-blocks {
        flex-direction: column;
        width: 100%;
    }

    .block {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .second {
        padding: 24px;
        border-radius: 32px;
        /* width: 90%; */
    }

    .second-header {
        width: 100%;
        font-size: 24px;
        line-height: 28px;
    }

    .block {
        width: 100%;
        align-items: start;
        gap: 16px;
    }

    .block-header {
        font-size: 16px;
    }

    .block-text {
        font-size: 14px;
        line-height: 20px;
    }

    .img-second {
        width: 56px;
        height: 56px;
        border-radius: 13px;
    }

    .img-second img {
        width: 24px;
    }

    .second-block-text {
        gap: 4px;
    }
}

/* электронная сервисная книжка */
.third {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.third-img img {
    width: 544px;
    height: auto;
}

.third-header {
    font-size: 50px;
    font-weight: 800;
    line-height: 56px;
    color: #1a2021;
}

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

.third-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    color: #1a2021;
}

.third-block {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.third-blocks-color {
    display: flex;
    justify-content: space-between;
}

.block-header-third {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    color: #1a2021;
}

.block-header-third span {
    font-size: 24px;
}

.block-text-third {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #1a2021;
}

.block-purple,
.block-yellow,
.block-green {
    display: flex;
    flex-direction: column;
    width: 220px;
    gap: 15px;
}

.purple-block,
.yellow-block,
.green-block {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purple-block {
    background: #8672E71A;
}

.yellow-block {
    background: #FAC4351A;
}

.green-block {
    background: #6ED8461A;
}

.third-blocks-color img {
    width: 50px;
    height: auto;
}

.content-third-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
    justify-content: center;
    color: #1a2021;
}

@media (max-width: 1920px) {
    .block-text-third {
        font-size: 18px;
    }
}

@media (max-width: 1440px) {
    .third-content {
        gap: 24px;
    }

    .block-purple,
    .block-yellow,
    .block-green {
        gap: 15px;
        width: 170px;
    }
}

@media (max-width: 1300px) {
    .third {
        gap: 15px;
    }

    .third-blocks-color {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 25px;
    }

    .content-third-block {
        flex-direction: column;
        gap: 5px;
    }

    .block-purple,
    .block-yellow,
    .block-green {
        flex-direction: row;
        width: 100%;
        gap: 24px;
    }

    .third-img img {
        width: 380px;
    }
}

@media (max-width: 900px) {
    .third-header {
        font-size: 36px;
        line-height: 48px;
    }

    .third-text {
        font-size: 18px;
        line-height: 24px;
    }

    .block-text-third {
        font-size: 18px;
    }

    .block-header-third {
        font-size: 33px;
    }
}

@media (max-width: 800px) {
    .third {
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .third-img {
        align-self: center;
    }

    .third-img img {
        width: 420px;
        height: auto;
    }

    .third-block {
        width: 100%;
        gap: 54px;
    }

    .third-blocks-color {
        flex-direction: row;
    }

    .block-purple,
    .block-yellow,
    .block-green {
        flex-direction: column;
        width: 215px;
    }

    .content-third-block {
        gap: 15px;
    }

}

@media (max-width: 500px) {
    .third-img img {
        width: 330px;
    }

    .third-header {
        font-size: 32px;
        line-height: 40px;
    }

    .third-content {
        gap: 16px;
    }

    .third-text {
        font-size: 16px;
        line-height: 24px;
    }

    .third-blocks-color {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 25px;
    }

    .block-header-third {
        font-size: 32px;
        line-height: 36px;
    }

    .block-header-third span {
        font-size: 24px;
    }

    .block-text-third {
        font-size: 16px;
    }

    .block-purple,
    .block-yellow,
    .block-green {
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }

    .purple-block,
    .yellow-block,
    .green-block {
        width: 70px;
        height: 70px;
        border-radius: 12px;
    }

    .third-blocks-color img {
        width: 35px;
        height: auto;
    }

    .content-third-block {
        gap: 8px;
    }
}

/* особенности */
.features {
    display: flex;
    overflow: hidden;
    width: 100%;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.features-blocks {
    width: 100%;
}

.two-blocks {
    display: flex;
    flex-direction: row;
    margin-bottom: 64px;
}

.features-color-block {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 50%;
    height: 736px;
    border-radius: 48px;
    width: 50%;
}

.features-color-block img {
    width: 334px;
}

.radial-gradient {
    background: #02C0CD;
    background: linear-gradient(331deg, #FFADDB 0%, #C2A5FF 33%, #88C2FF 66%, #9CFFAC 100%);
}

.radial-gradient::before {
    content: 'Особенности TAEXEL';
    font-weight: 800;
    font-size: 50px;
    line-height: 56px;
    color: #1a2021;
    text-align: center;
    position: absolute;
    top: -91px;
    left: 28%;
}

.ocean-soft {
    background: #02c0cd;
}

.ocean {
    background: #00aab6;
}

.forest {
    background: #164249;
}

.green {
    background: #6ed846;
}

.purple {
    background: #8672e7;
}

.features-text-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f4f9f9;
    border-radius: 48px;
    color: #1a2021;
    width: 50%;
}

.feature-block-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 144px 128px 0 144px;
}

.main-header-features {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.text-header {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
}

.feature-block-footer {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #607376;
    padding: 0 128px 144px 144px;
}

@media (max-width: 1920px) {
    .radial-gradient::before {
        left: 26%;
    }
}

@media (max-width: 1440px) {


    .feature-block-header {
        padding: 144px 96px 0 96px;
    }

    .main-header-features {
        font-size: 28px;
    }

    .feature-block-footer {
        padding: 0 96px 144px 96px;
    }

    .radial-gradient::before {
        left: 24%;
    }

    .two-blocks {
        margin-bottom: 48px;
    }
}

@media (max-width: 1024px) {
    .features-color-block {
        height: 580px;
        border-radius: 40px;
    }

    .features-text-block {
        height: 580px;
        border-radius: 40px;
    }

    .feature-block-header {
        padding: 64px 64px 0 64px;
    }

    .feature-block-footer {
        padding: 0 64px 64px 64px;
    }

    .radial-gradient::before {
        left: 23%;
    }
}

@media (max-width: 990px) {
    .radial-gradient::before {
        font-size: 36px;
        line-height: 48px;
    }

    .two-blocks {
        flex-direction: column;
    }

    .features-color-block {
        width: 100%;
        height: 420px;
    }

    .features-color-block img {
        height: 400px;
        width: auto;
    }

    .features-text-block {
        width: 100%;
        height: 327px;
        box-shadow: none;
    }

    .feature-block-header {
        gap: 15px;
        padding: 45px 45px 0 45px;
    }

    .feature-block-footer {
        padding: 0 45px 45px 45px;
    }

    .radial-gradient::before {
        left: auto;
    }
}

@media (max-width: 700px) {
    .features-text-block {
        width: 100%;
        height: 420px;
    }

    .features-text-block {
        height: 327px;
    }

    .radial-gradient::before {
        left: auto;
    }

    .two-blocks {
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    .features-text-block {
        width: 100%;
        height: 480px;
    }
}

@media (max-width: 500px) {
    .radial-gradient::before {
        font-size: 32px;
        line-height: 40px;
    }

    .features-color-block {
        border-radius: 24px;
        height: 310px;
    }

    .features-color-block img {
        height: 300px;
    }

    .features-text-block {
        height: 370px;
        border-radius: 24px;
        gap: 32px;
    }

    .feature-block-header {
        padding: 32px 32px 0 32px;
    }

    .main-header-features {
        font-size: 18px;
        line-height: 20px;
    }

    .text-header {
        font-size: 16px;
        line-height: 18px;
    }

    .feature-block-footer {
        padding: 0 32px 32px 32px;
        font-size: 14px;
        line-height: 16px;
    }

    .features-text-block {
        height: 327px;
    }

    .radial-gradient::before {
        left: auto;
    }
}

@media (max-width: 400px) {
    .features-text-block {
        height: 400px;
        border-radius: 24px;
        gap: 32px;
    }

    .two-blocks {
        margin-bottom: 24px;
    }
}

/* отзывы */
.review {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 -300px;
}

.header-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.header-review-text {
    font-weight: 800;
    font-size: 50px;
    line-height: 56px;
    color: #1a2021;
    text-align: center;
}

.review-text {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #1a2021;
    text-align: center;
}

.item {
    opacity: 0.4;
    transition: .4s ease all;
    transform: scale(.8);
}

.owl-nav {
    margin-top: 32px;
}


.active .item {
    opacity: 1;
    transform: scale(1);
}

.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.reviews-blocks {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 290px;
    overflow: hidden;
}

.block-review {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: #f4f9f9;
    border-radius: 20px;
    padding: 25px 35px;
    margin: 0 -20px;
}

.active {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.prev,
.next {
    transform: scale(0.8);
    opacity: 0.5;
    z-index: 2;
}


@media(max-width:1000px) {
    .item {
        margin: 0;
        transform: scale(.9)
    }
}

@media(max-width:1300px) {
    .block-review {
        margin: 0;
    }
}

.review-block-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 900px) {
    .header-review-text {
        font-size: 36px;
        line-height: 48px;
    }

    .review-text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 500px) {
    .header-review-text {
        font-size: 32px;
        line-height: 40px;
    }

    .review-text {
        font-size: 18px;
        line-height: 24px;
    }

    .block-review {
        width: 270px;
        height: 200px;
        padding: 25px;
        justify-content: space-between;
    }

    .review-block-text {
        font-size: 14px;
        line-height: 20px;
    }

    .features-text-block {
        height: 327px;
    }

    .radial-gradient::before {
        left: auto;
    }
}

@media (max-width: 450px) {
    .block-review {
        width: 80%;
        padding: 35px 25px 20px 25px;
    }

    .owl-nav {
        margin-top: 16px;
    }
}


/* Для элементов, которые находятся слева от активного */
.prev {
    transform: translateX(-100%) scale(0.8);
}

.prev-prev {
    transform: translateX(-190%) scale(0.7);
    opacity: 0.3;
    z-index: 1;
}

.prev-prev-prev {
    transform: translateX(-270%) scale(0.6);
    opacity: 0;
    z-index: 0;
}


/* Для элементов, которые находятся справа от активного */
.next {
    transform: translateX(100%) scale(0.8);
}

.next-next {
    transform: translateX(190%) scale(0.7);
    opacity: 0.3;
    z-index: 1;
}

.next-next-next {
    transform: translateX(270%) scale(0.6);
    opacity: 0;
    z-index: 0;
}

/* Блок с пользователем */
.user {
    padding-top: 20px;
    border-top: 0.88px solid #ACB5B766;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.logo-user {
    background: #02c0cd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.user-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1a2021;
}

.data-add {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #1a2021;
}
/* Блок СМИ */
.smi {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.logo-smi {
    background: #02c0cd;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smi-name-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.smi-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1a2021;
}

.data-add {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #1a2021;
}
.smi-block-text {
	 padding-top: 20px;
	 border-top: 0.88px solid #ACB5B766;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
	}
	
	
	
	.media-link {
            display: inline-flex;
            align-items: center;
            color: #0093aa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
			font-size: 16px;
        }

        .media-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .media-link:hover {
            color: #0d4d57;
        }

        .media-link:hover i {
            transform: translateX(5px);
        }
		
		@media (max-width: 900px) {
    .header-smi-text {
        font-size: 36px;
        line-height: 48px;
    }

    .smi-text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 500px) {
    .header-smi-text {
        font-size: 32px;
        line-height: 40px;
    }

    .smi-text {
        font-size: 18px;
        line-height: 24px;
    }

    .block-smi {
        width: 270px;
        height: 200px;
        padding: 25px;
        justify-content: space-between;
    }

    .smi-block-text {
        font-size: 14px;
        line-height: 20px;
    }

    .features-text-block {
        height: 327px;
    }

    .radial-gradient::before {
        left: auto;
    }
}

@media (max-width: 450px) {
    .block-smi {
        width: 80%;
        padding: 35px 25px 20px 25px;
    }

    .owl-nav {
        margin-top: 16px;
    }
}

/* .btns-prev-next {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
} */

.owl-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


.owl-prev {
    width: 56px;
    height: 56px;
    background-image: url(../img/left-arrow.svg) !important;
    background-repeat: no-repeat;
}

.owl-prev span {
    display: none;
}

.owl-next span {
    display: none;
}

.owl-next {
    width: 56px;
    height: 56px;
    background-image: url(../img/right-arrow.svg) !important;
    background-repeat: no-repeat;
}

.prev-btn-feat,
.next-btn-feat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #164249;
    background: #fff;
    transition: background 0.45s ease-in-out;
}

.prev-btn img,
.next-btn img,
.prev-btn-feat img,
.next-btn-feat img {
    width: 70%;
    transition: filter 0.45s ease;
}

.prev-btn:hover,
.next-btn:hover,
.prev-btn-feat:hover,
.next-btn-feat:hover {
    background: #164249;
}

.prev-btn:hover img,
.next-btn:hover img,
.prev-btn-feat:hover img,
.next-btn-feat:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1920px) {
    .btns-prev-next {
        gap: 24px;
    }
}

@media (max-width: 500px) {
    .user {
        padding-top: 10px;
        gap: 16px;
    }

    .logo-user {
        width: 36px;
        height: 36px;
        font-size: 12px;
        line-height: 24px;
    }

    .user-name {
        font-size: 14px;
        line-height: 20px;
    }

    .data-add {
        font-size: 12px;
        line-height: 16px;
    }
}


/* вопросы */
.question {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.question-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #1a2021;
}

.question-header {
    font-weight: 800;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
}

.question-text-header {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

.blocks-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quest {
    width: 100%;
}

.accordion {
    width: 100%;
    max-width: 735px;
    background: #f4f9f9;
    padding: 16px 24px;
    border: none;
    transition: background 0.45s ease, border-radius 0.45s ease;
    border-radius: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.accordion span {
    color: #1a2021;
}

.accordion.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.panel {
    width: 100%;
    max-width: 735px;
    padding: 0 24px;
    background: #f4f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.45s ease;
    opacity: 0;
    box-sizing: border-box;
    border-radius: 0 0 16px 16px;
}

.panel.active {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.45s ease, opacity 0.45s ease;
}

.panel p {
    margin: 16px 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.plus {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #02c0cd;
    transition: all 0.45s ease-in;
    flex-shrink: 0;
}

.plus img {
    width: 70%;
}

.accordion.active .plus {
    background: #164249;
}

.accordion .plus img {
    transition: transform 0.45s ease;
}

.accordion.active .plus img {
    transform: rotate(45deg);
}

.accordion:hover .plus {
    background: #164249;
}

@media (max-width: 1440px) {
    .question {
        gap: 48px;
    }

    .question-text {
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .question {
        gap: 48px;
    }

    .question-text {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .question-header {
        font-size: 36px;
        line-height: 48px;
    }

    .question-text-header {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .accordion {
        gap: 24px;
    }
}


@media (max-width: 500px) {
    .question {
        gap: 32px;
    }

    .question-header {
        font-size: 32px;
        line-height: 40px;
    }

    .question-text-header {
        font-size: 18px;
        line-height: 24px;
    }

    .accordion {
        max-width: 600px;
    }

    .accordion span {
        text-align: left;
    }

    .panel {
        width: 100%;
        max-width: 600px;
    }
}

/* скачай */
.block-photo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 64px 64px 80px;
    background: linear-gradient(#1A202159, #1A202159), url(../img/car-photo.webp);
    background-size: cover;
    background-position: 50% 45%;
    height: 300px;
    border-radius: 48px;
}

.block-photo-text {
    width: 655px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.photo-header {
    color: #fff;
    font-weight: 800;
    font-size: 50px;
    line-height: 56px;
}

.photo-text {
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
}

.block-photo-btn {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
}


.block-photo-btn button {
    width: 220px;
    height: 64px;
    background: #fff;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.45s linear;
}

.btn-photo-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.btn-photo-access {
    color: #000;
    font-weight: 300;
    font-size: 12px;
}

.btn-photo-market {
    color: #000;
    font-weight: 500;
    font-size: 20px;
}

.block-photo-btn button:hover {
    background: #a8ffff;
}

.banerWhite {
    width: 191px;
    height: 64px;
}

.banerWhiteGoogle {
    width: 216px;
    height: 64px;
}

@media (max-width: 1920px) {
    .block-photo-text {
        width: 548px;
        gap: 32px;
    }

    .block-photo-btn button {
        width: 215px;
    }
}

@media (max-width: 1440px) {
    .block-photo-btn button {
        width: 200px;
        height: 55px;
    }
}

@media (max-width: 1300px) {
    .block-photo {
        flex-direction: column;
    }

    .block-photo-text {
        width: 548px;
        gap: 32px;
    }

    .block-photo-btn {
        align-self: end;
    }

    .block-photo-btn button {
        width: 190px;
        height: 55px;
        gap: 7px;
    }
}

@media (max-width: 900px) {
    .block-photo {
        padding: 56px;
        height: 300px;
        gap: 56px;
    }

    .block-photo-text {
        width: 100%;
        gap: 30px;
    }

    .block-photo-btn {
        align-self: start;
    }

    .block-photo-btn button {
        width: 200px;
        height: 60px;
    }
}

@media (max-width: 625px) {
    .block-photo {
        padding: 32px;
        height: auto;
        border-radius: 24px;
        gap: 48px;
    }

    .block-photo-text {
        width: 100%;
        gap: 16px;
    }

    .photo-header {
        font-size: 32px;
        line-height: 40px;
    }

    .photo-text {
        font-size: 14px;
        line-height: 20px;
    }

    .block-photo-btn button {
        width: 160px;
        height: 54px;
        gap: 7px;
    }

    .btn-photo-access {
        font-size: 12px;
    }

    .btn-photo-market {
        font-size: 17px;
    }
}

@media (max-width: 500px) {
    .block-photo-btn {
        align-self: flex-end;
        flex-direction: column;
        gap: 16px;
        align-items: end;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .block-photo-btn {
        align-self: flex-end;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        width: 90%;
        align-self: center;
    }

    .banerWhiteGoogle {
        width: auto;
        height: auto;
    }

    .banerWhite {
        width: auto;
        height: auto;
    }

    .block-photo-btn a {
        width: 100%;
    }

    .block-photo-btn a img {
        width: 100%;
    }

    .btn-photo-access {
        font-size: 12px;
    }

    .btn-photo-market {
        font-size: 17px;
    }
}

/* подвал */
footer {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 210px 35px 210px;
    background: #fff;
    z-index: 1000;
    color: #1a2021;
}

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

}

.copyright img {
    width: 128px;
    height: auto;
}

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

.copyright-text span {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.copyright-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    margin-right: 16px;
}

.social-networks {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
}

.footer-information {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 64%;
}

.phones {
    display: flex;
    flex-wrap: wrap;
}

.phone-number {
    display: inline;
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}

@media (max-width: 768px) {
    .copyright {
        align-self: flex-start;
    }

    .footer-information {
        flex-direction: column;
        width: 50%;
        gap: 32px;
    }

    .contact-information {
        width: 100%;
    }
}

.contact-information-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
}

.sn-block {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
}

.sn-block img {
    width: 18px;
}

.vk:hover {
    background: #4680C2;
}

.fb:hover {
    background: #3C5A99;
}

.tg:hover {
    background: #0088cc;
}

.inst:hover {
    background: #E1306C;
}

.yt:hover {
    background: #FF0000;
}

.copyright a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #02c0cd;
    transition: all 0.45s ease;
}

.copyright a:hover {
    color: #1a2021;
}

@media (max-width: 1800px) {
    footer {
        padding: 80px 120px 35px 120px;
    }
}

@media (max-width: 1500px) {
    footer {
        padding: 80px 85px 35px 85px;
    }
}

@media (max-width: 1300px) {
    footer {
        padding: 80px 50px 35px 50px;
    }
}

@media (max-width: 900px) {
    footer {
        padding: 64px 32px 32px 32px;
    }

    .social-networks {
        gap: 13px;
    }

    .sn-block {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.45s ease;
    }

    .sn-block img {
        width: 18px;
    }
}

@media (max-width: 700px) {
    footer {
        gap: 32px;
    }

    .social-networks {
        align-self: flex-start;
    }
}

@media (max-width: 500px) {
    footer {
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        padding: 64px 16px 48px 16px;
    }

    .footer-information {
        width: 100%;
    }

    .block-photo {
        background-position: 0%;
    }

    .social-networks {
        align-self: flex-start;
    }
}

.link-for-nav {
    cursor: default;
}