@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');

@font-face {
    font-family: Lighthaus;
    src: url(/wp-content/themes/yandex/src/fonts/Lighthaus.ttf);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-variant-ligatures: none;
    font-family: "Manrope", sans-serif;
}

html,
body {
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: #262627;
    background: #f0f0f0;
    scroll-behavior: smooth;
}
@media (max-width: 1440px) {
    html,
    body {
        font-size: 58.5%;
    }
}
@media (max-width: 1205px) {
    html,
    body {
        font-size: 52%;
    }
}
@media (max-width: 1105px) {
    html,
    body {
        font-size: 46.5%;
    }
}
@media (max-width: 965px) {
    html,
    body {
        font-size: 42.5%;
    }
}
@media (max-width: 895px) {
    html,
    body {
        font-size: 38.5%;
    }
}
@media (max-width: 810px) {
    html,
    body {
        font-size: 35%;
    }
}
@media (max-width: 768px) {
    html,
    body {
        font-size: 62.5%;
    }
}
@media (max-width: 725px) {
    html,
    body {
        font-size: 55.5%;
    }
}
@media (max-width: 650px) {
    html,
    body {
        font-size: 45.5%;
    }
}
@media (max-width: 550px) {
    html,
    body {
        font-size: 35.5%;
    }
}
@media (max-width: 480px) {
    html,
    body {
        font-size: 62.5%;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #010412;
}

h1 {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 700;
    font-size: 6rem;
    line-height: 120%;
}
@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
}

h2 {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    line-height: 120%;
}
@media (max-width: 480px) {
    h2 {
        font-size: 2.8rem;
    }
}

h3 {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3rem;
}

p {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
}
p.white {
    color: #ffffff;
}
@media (max-width: 480px) {
    p {
        font-size: 1.4rem;
    }
}

section,
.footer {
    max-width: 124rem;
    margin: 0 auto 0;
}
@media (max-width: 768px) {
    section,
    .footer {
        max-width: 100%;
        margin: 0 5rem 0;
    }
}
@media (max-width: 480px) {
    section,
    .footer {
        max-width: 100%;
        margin: 0 1.5rem 0;
    }
}

header {
    max-width: 124rem;
    margin: 3rem auto 2rem;
}
@media (max-width: 768px) {
    header {
        max-width: 100%;
        margin: 3rem 5rem 2rem;
    }
}
@media (max-width: 480px) {
    header {
        max-width: 100%;
        margin: 2rem 1.5rem;
    }
}

.btn {
    background: #262627;
    border-radius: 1.5rem;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 700 !important;
    font-size: 2rem;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    height: 8rem;
    cursor: pointer;
    transition: all 0.5s ease;
}
.btn:hover {
    background-color: #010101 !important;
    transition: all 0.5s ease;
}
.btn:active {
    transform: scale(0.9);
    transition: all 0.5s ease;
}
@media (max-width: 480px) {
    .btn {
        height: 4.5rem;
        font-size: 1.6rem;
    }
}

.btn-white {
    border: 0.15rem solid #262627;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
}
.btn-white:hover {
    transition: all 0.5s ease;
    background: #010101;
    color: #f0f0f0;
}
.btn-white:active {
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.header {
    background: #ffffff;
    border-radius: 3rem;
}
.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
}
.header__content-logo img {
    width: 16rem;
}
.header__content-description {
    display: flex;
    align-items: center;
}
.header__content-description-tel {
    margin-right: 3rem;
}
@media (max-width: 480px) {
    .header__content-logo img {
        width: 10rem;
    }
    .header__content-description-tel {
        display: none;
    }
}
.header__content-description-tel a {
    display: flex;
    align-items: center;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
}
.header__content-description-tel a svg {
    width: 5rem;
    margin-right: 1rem;
}
.header__content-description-tel a svg path {
    transition: all 0.5s ease;
}
.header__content-description-tel a svg:hover path {
    transition: all 0.5s ease;
    fill: #f0f0f0;
}
.header__content-description-tel a svg:hover rect {
    transition: all 0.5s ease;
    fill: #010101;
}
.header__content-description-tel a svg rect {
    transition: all 0.5s ease;
}
.header__content-description-tel a svg:active {
    transform: scale(0.9);
    transition: all 0.5s ease;
}
.header__content-description-button {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
    width: 27.5rem;
    height: 6.45rem;
}
@media (max-width: 768px) {
    .header__content-description-button {
        display: none;
    }
}
.header__content-description-menu .header__burger {
    cursor: pointer;
    display: block;
    position: relative;
    width: 3rem;
    height: 2.5rem;
    z-index: 500;
    margin-left: 3rem;
}
@media (max-width: 480px) {
    .header__content-description-menu .header__burger {
        margin-left: 1rem;
    }
}
.header__content-description-menu .header__burger:after,
.header__content-description-menu .header__burger:before {
    content: "";
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 0.2rem;
    border-radius: 2.5rem;
    left: 0;
    transition: all 0.5s ease;
}
.header__content-description-menu .header__burger span {
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 0.2rem;
    border-radius: 2.5rem;
    left: 0;
    top: 1.1rem;
    transition: all 0.5s ease;
}
.header__content-description-menu .header__burger:before {
    top: 0;
}
.header__content-description-menu .header__burger:after {
    bottom: 0;
}
.header__content-description-menu .header__burger.active:before {
    transform: rotate(45deg);
    top: 1.1rem;
}
.header__content-description-menu .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 1.1rem;
}
.header__content-description-menu .header__burger.active span {
    transform: scale(0);
}

.menu {
    position: relative;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -100;
}
.menu.active {
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1000;
}
.menu__content {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 3rem;
}
.menu__content ul li {
    width: 37.5rem;
    background: #ffffff;
}
.menu__content ul li:first-child {
    border-radius: 1.5rem 1.5rem 0 0;
}
.menu__content ul li:last-child {
    border-radius: 0 0 1.5rem 1.5rem;
}
.menu__content ul li {
    transition: all 0.5s ease;
}
.menu__content ul li:hover {
    transition: all 0.5s ease;
    background-color: #f0f0f0;
}
.menu__content ul li a {
    cursor: pointer;
    display: flex;
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
}

.wpcf7-spinner {
    display: none !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    font-size: 1.6rem !important;
    margin: 2rem 0 0 0 !important;
    text-align: center !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 1.6rem !important;
    margin: 2rem 0 0 0 !important;
    text-align: center !important;
}
@media (max-width: 480px) {
    .wpcf7 form.sent .wpcf7-response-output {
        border-color: #46b450;
        font-size: 1.2rem !important;
        margin: 2rem 0 0 0 !important;
        text-align: center !important;
    }
    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.unaccepted .wpcf7-response-output,
    .wpcf7 form.payment-required .wpcf7-response-output {
        font-size: 1.2rem !important;
        margin: 2rem 0 0 0 !important;
        text-align: center !important;
    }
}

.hero {
    display: flex;
    background: #f0f0f0;
    border-radius: 6rem;
    position: relative;
}
@media (max-width: 480px) {
    .menu__content ul li a,
    .menu__content ul li {
        width: 100%;
    }
    .menu__content {
        padding: 0;
        width: 100%;
    }

    .hero {
        border-radius: 3rem;
    }
}
.hero__left {
    max-width: 71.5rem;
    padding: 8.5rem;
    background: #fce000;
    border-radius: 6rem;
    z-index: 1;
}
@media (max-width: 768px) {
    .hero__left {
        max-width: 100%;
        margin-top: 42.8rem;
        padding: 6.6rem;
    }
}
@media (max-width: 480px) {
    .hero__left {
        padding: 3rem;
        margin-top: 24.8rem;
        border-radius: 3rem;
    }
}
.hero__left-title {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    width: fit-content;
    margin-bottom: 1rem;
}
@media (max-width: 480px) {
    .hero__left-title {
        font-size: 1.6rem;
    }
}

.hero__left h1 {
    margin-bottom: 1rem;
}
.hero__left-text {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    margin-bottom: 2rem;
}
.hero__left form {
    display: flex;
    flex-direction: column;
}
.hero__left form input {
    width: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    border: 0;
}
@media (max-width: 480px) {
    .hero__left form input {
        font-size: 1.6rem;
        height: 4.5rem;
        padding: 1.05rem 1rem;
        margin-bottom: 1rem;
    }
}
.hero__left form input.btn {
    background: #262627;
    margin: 2.5rem 0 0 0;
}
@media (max-width: 480px) {
    .hero__left form input.btn {
        margin-top: 1rem;
    }
}
.hero-right {
    position: absolute;
    right: 0;
    overflow: hidden;
    height: 100%;
}

.hero-right img {
    width: 77rem;
    border-radius: 6rem;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.hero-right img.mob {
    display: none;
}

@media (max-width: 768px) {
    .hero-right img {
        width: 100%;
    }
    .hero-right img.no-mob {
        display: none;
    }
    .hero-right img.mob {
        display: block;
    }
    .hero-right img {
        width: 100%;
        height: auto;
    }
    .hero-right {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .hero-right img {
        height: 30rem;
        border-radius: 3rem;
    }
}

.steps {
    margin-top: 2rem;
}
.steps__list {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 6rem;
    padding: 6rem 8.5rem 8.5rem;
}
@media (max-width: 768px) {
    .steps__list {
        padding: 6.6rem;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .steps__list {
        padding: 3rem;
        justify-content: center;
        border-radius: 3rem;
        flex-wrap: wrap;
    }
}
.steps__list-item {
    text-align: center;
    max-width: 24.5rem;
}
@media (max-width: 768px) {
    .steps__list-item:nth-child(3),
    .steps__list-item:nth-child(4) {
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .steps__list-item {
        max-width: 100%;
    }
    .steps__list-item:nth-child(2) {
        margin-top: 2rem;
    }
}
.steps__list-item h3 {
    margin-bottom: 1rem;
}
.steps__list-item img {
    margin-bottom: 3rem;
    width: 10rem;
}
@media (max-width: 768px) {
    .steps__list-item img {
        margin-bottom: 1rem;
    }
}

.how {
    margin-top: 12rem;
}
@media (max-width: 768px) {
    .how {
        max-width: 100%;
        margin: 12rem 0 0;
    }
}
@media (max-width: 768px) {
    .how {
        margin: 10rem 0 0;
    }
}
.how h2 {
    margin-bottom: 4rem;
    margin: 0 0 4rem 0;
}
@media (max-width: 768px) {
    .how h2 {
        margin: 0 5rem 4rem 5rem;
    }
}
@media (max-width: 480px) {
    .how h2 {
        margin: 0 1.5rem 2rem;
    }
}
.how__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .how__content {
        flex-wrap: nowrap;
        overflow: scroll;
        padding: 0 5rem;
    }
}
@media (max-width: 480px) {
    .how__content {
        padding: 0 1.5rem;
    }
}
.how__content-item {
    width: 29.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .how__content-item {
        margin-right: 2rem;
        margin-bottom: 0;
    }
    .how__content-item:last-child {
        margin-bottom: 0;
        margin-right: 0;
    }
}
.how__content-item.big {
    width: 61rem;
}
@media (max-width: 768px) {
    .how__content-item.big {
        width: 29.5rem;
    }
}
.how__content-item-top {
    position: relative;
}
.how__content-item-top img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-radius: 3rem 3rem 0 0;
}
@media (max-width: 768px) {
    .how__content-item-top img {
        width: 29.5rem;
        height: 32.1rem;
    }
}
.how__content-item-top-title {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #fce000;
    border-radius: 1.5rem;
    background-color: #fce000;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 150%;
    width: 15.6rem;
    height: 5rem;
    display: none;
    justify-content: center;
    align-items: center;
}
.how__content-item-bottom {
    background: #ffffff;
    border-radius: 3rem;
    height: 19.7rem;
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}
.how__content-item-bottom h3 {
    margin-bottom: 0.5rem;
}

.working {
    background: #fce000;
    border-radius: 6rem;
    margin-top: 12rem;
}
@media (max-width: 480px) {
    .working {
        margin: 10rem 1.5rem 0;
        border-radius: 3rem;
    }
}
.working__top {
    padding: 8.5rem 8.5rem 19rem;
    position: relative;
}
@media (max-width: 768px) {
    .working__top {
        padding: 6.6rem 6.6rem 19rem;
    }
}
@media (max-width: 480px) {
    .working__top {
        padding: 3rem 3rem 22rem;
    }
}
@media (max-width: 768px) {
    .working__top-text {
        width: 31rem;
    }
}
@media (max-width: 480px) {
    .working__top-text {
        width: 100%;
    }
}
.working__top-text h2 {
    margin-bottom: 1.5rem;
}
.working__top-text-description {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
}
.working__top-img {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 768px) {
    .working__top-img {
        top: 6rem;
        right: -9rem;
    }
}
@media (max-width: 480px) {
    .working__top-img {
        top: 17rem;
        right: 4rem;
        width: 100%;
    }
}
@media (max-width: 360px) {
    .working__top-img {
        top: 22rem;
    }
}
.working__top-img img {
    width: 77.5rem;
}
@media (max-width: 768px) {
    .working__top-img img {
        width: 59.5rem;
    }
}
@media (max-width: 480px) {
    .working__top-img img {
        max-width: 48rem;
    }
}
@media (max-width: 380px) {
    .working__top-img img {
        max-width: 43rem;
    }
}
@media (max-width: 360px) {
    .working__top-img img {
        max-width: 39rem;
    }
}
.working__bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 6rem;
    padding: 6rem 8.5rem 8.5rem;
}
@media (max-width: 768px) {
    .working__bottom {
        padding: 6.6rem;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .working__bottom {
        padding: 3rem;
        border-radius: 3rem;
    }
}
.working__bottom-item {
    text-align: center;
    max-width: 24.5rem;
}
@media (max-width: 768px) {
    .working__bottom-item:nth-child(3),
    .working__bottom-item:nth-child(4) {
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .working__bottom-item {
        max-width: 100%;
    }
    .working__bottom-item:nth-child(2) {
        margin-top: 2rem;
    }
}
.working__bottom-item h3 {
    margin-bottom: 1rem;
}
.working__bottom-item img {
    margin-bottom: 3rem;
    width: 10rem;
}
@media (max-width: 480px) {
    .working__bottom-item img {
        margin-bottom: 1rem;
    }
}

.use {
    margin-top: 12rem;
}
@media (max-width: 768px) {
    .use {
        margin: 12rem 0 0;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .use {
        margin: 10rem 0 0;
    }
}
.use h2 {
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .use h2 {
        margin: 0 5rem 4rem;
    }
}
@media (max-width: 480px) {
    .use h2 {
        margin: 0 1.5rem 2rem;
    }
}
.use__list {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .use__list {
        overflow: scroll;
        padding: 0 5rem;
    }
}
@media (max-width: 480px) {
    .use__list {
        padding: 0 1.5rem;
        overflow: hidden;
        flex-wrap: wrap;
    }
}
.use__list-item {
    position: relative;
    max-width: 29.5rem;
    padding: 2rem;
    padding-bottom:8.5rem;
    background: #ffffff;
    border-radius: 3rem;
}
@media (max-width: 768px) {
    .use__list-item {
        margin-right: 2rem;
        width: 29.5rem;
    }
    .use__list-item:last-child {
        margin-right: 0;
    }
}
@media (max-width: 480px) {
    .use__list-item {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }
    .use__list-item:last-child {
        margin-bottom: 0;
    }
}
.use__list-item h3 {
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .use__list-item h3 {
        width: 25.5rem;
    }
}
.use__list-item p {
    margin-bottom: 0.5rem;
}

.use__list-item-step {
    position:absolute;
    bottom:2rem;
    left:2rem;
    background: #fce000;
    border-radius: 1.5rem;
    width: 7rem;
    height: 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.use__list-item-step p {
    height: auto;
    margin: 0;
}

.app {
    margin-top: 20.2rem;
    display: flex;
    justify-content: space-between;
    background: #fce000;
    border-radius: 6rem;
    padding: 8.5rem;
}
@media (max-width: 768px) {
    .app {
        margin-top: 55.8rem;
        padding: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0);
        flex-direction: column-reverse;
    }
}
@media (max-width: 480px) {
    .app {
        margin-top: 40rem;
    }
}
.app__content {
    max-width: 62rem;
}
@media (max-width: 768px) {
    .app__content {
        max-width: 100%;
        background: #fce000;
        border-radius: 6rem;
        padding: 6.6rem;
        z-index: 2;
    }
}
@media (max-width: 480px) {
    .app__content {
        padding: 3rem;
        border-radius: 3rem;
    }
}
.app__content h2 {
    margin-bottom: 1.5rem;
}
.app__content p {
    margin-bottom: 1.5rem;
}
.app__content-link {
    display: flex;
    margin-bottom: 4rem;
}
@media (max-width: 480px) {
    .app__content-link {
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    .app__content-link img {
        margin-bottom: 1rem;
    }
    .app__content-link img:last-child {
        margin: 0;
    }
}
.app__content-link img {
    width: 13.8rem;
    margin-right: 2rem;
}
.app__content-link img:last-child {
    margin: 0;
}
.app__content .btn {
    width: 54.5rem;
}
@media (max-width: 900px) {
    .app__content .btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .app__content .btn {
        width: 100%;
    }
}
.app__img {
    position: relative;
}
@media (max-width: 768px) {
    .app__img {
        position: relative;
        z-index: 1;
    }
}
.app__img img {
    position: absolute;
    right: 0;
    top: -17.1rem;
    width: 42.8rem;
}
@media (max-width: 768px) {
    .app__img img {
        position: absolute;
        right: 0;
        left: 0;
        top: -43.8rem;
        width: 42.8rem;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .app__img img {
        width: 27rem;
        top: -30rem;
    }
}

.nocar {
    margin-top: 12rem;
}
@media (max-width: 480px) {
    .nocar {
        margin-top: 10rem;
    }
}
.nocar__top {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 740px) {
    .nocar__top h2 {
        margin-bottom: 2rem;
    }
}
@media (max-width: 740px) {
    .nocar__top {
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
}
.nocar__top-arrow {
    display: flex;
    align-items: center;
}
.nocar__top-arrow-prev,
.nocar__top-arrow-next {
    background: #ffffff;
    border-radius: 6rem;
    width: 6.5rem;
    height: 6.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.nocar__top-arrow-prev:hover,
.nocar__top-arrow-next:hover {
    background-color: #010101;
    transition: all 0.5s ease;
}
.nocar__top-arrow-prev:hover svg path,
.nocar__top-arrow-next:hover svg path {
    transition: all 0.5s ease;
    fill: #fff;
}

.nocar__top-arrow-prev svg path,
.nocar__top-arrow-next svg path {
    transition: all 0.5s ease;
}

.nocar__top-arrow-prev:active,
.nocar__top-arrow-next:active {
    transform: scale(0.9);
}
.nocar__top-arrow-prev svg,
.nocar__top-arrow-next svg {
    width: 2.5rem;
}
.nocar__top-arrow-prev {
    margin-right: 1rem;
}
.nocar__top-arrow-next {
    margin-left: 1rem;
}
.nocar__top-arrow-next svg {
    transform: rotate(-180deg);
}
.nocar__top-number {
    pointer-events:none;
    user-select:none;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    width: auto;
}
.nocar .swiper {
    width: 100%;
    height: 43.5rem;
}
@media (max-width: 768px) {
    .nocar .swiper {
        height: 30rem;
    }
}
.nocar .swiper .slide {
    background: rgba(38, 38, 39, 0.2);
    border-radius: 6rem;
    padding: 0 8.5rem;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
}
@media (max-width: 768px) {
    .nocar .swiper .slide {
        padding: 0;
    }
}
@media (max-width: 480px) {
    .nocar .swiper .slide {
        border-radius: 3rem;
    }
}
.nocar .swiper .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6rem;
}
@media (max-width: 480px) {
    .nocar .swiper .slide img {
        border-radius: 3rem;
    }
}
.nocar .swiper .slide-description {
    background: #ffffff;
    border-radius: 3rem;
    padding: 4rem;
    width: 35.5rem;
    transition: all 0.5s ease;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 1;
    position: relative;
}
.nocar .swiper .slide-description.active {
    width: 60.5rem;
    transition: all 0.5s ease;
}
.nocar .swiper .slide-description.active p {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}
.nocar .swiper .slide-description.active .text {
    display: block;
    opacity: 1;
    transition: all 0.5s ease;
}
.nocar .swiper .slide-description.active .arenda,
.nocar .swiper .slide-description.active .okleika,
.nocar .swiper .slide-description.active .medicina,
.nocar .swiper .slide-description.active .licenzia {
    display: none;
}
.nocar .swiper .slide-description.active .arenda-back,
.nocar .swiper .slide-description.active .okleika-back,
.nocar .swiper .slide-description.active .medicina-back,
.nocar .swiper .slide-description.active .licenzia-back {
    display: flex;
    opacity: 1;
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .nocar .swiper .slide-description {
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        width: 100%;
        height: 100%;
        border-radius: 6rem;
        padding: 6.6rem;
    }
    .nocar .swiper .slide-description .btn {
        display: none;
    }
}
@media (max-width: 480px) {
    .nocar .swiper .slide-description {
        border-radius: 3rem;
        padding: 3rem;
    }
}
.nocar .swiper .slide-description h3 {
    margin-bottom: 1rem;
}
.nocar .swiper .slide-description p {
    display: block;
    opacity: 1;
    transition: all 0.5s ease;
    margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
    .nocar .swiper .slide-description p {
        display: none;
    }
}
.nocar .swiper .slide-description .text {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .nocar .swiper .slide-description .text {
        display: block;
        opacity: 1;
    }
}
.nocar .swiper .slide-description .arenda-back,
.nocar .swiper .slide-description .okleika-back,
.nocar .swiper .slide-description .medicina-back,
.nocar .swiper .slide-description .licenzia-back {
    width: 27.5rem;
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.question {
    margin-top: 12rem;
    padding: 8.5rem;
    background: #fce000;
    border-radius: 6rem;
}
@media (max-width: 768px) {
    .question {
        padding: 6.6rem;
    }
}
@media (max-width: 480px) {
    .question {
        padding: 3rem;
        margin-top: 10rem;
        border-radius: 3rem;
    }
}
.question h2 {
    margin-bottom: 4rem;
}
@media (max-width: 480px) {
    .question h2 {
        margin-bottom: 2rem;
    }
}
.question__list-item {
    padding: 2.5rem;
    background: #ffffff;
    border-bottom: 0.1rem solid #f0f0f0;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.5s ease;
}
.question__list-item.active .question__list-item-title {
    margin-bottom: 1rem;
}
.question__list-item.active .question__list-item-title svg {
    transform: rotate(0deg);
    transition: all 0.5s ease;
}
.question__list-item.active .question__list-item-text {
    margin-top: 2rem;
    display: block;
    opacity: 1;
    transition: all 0.5s ease;
}
.question__list-item:last-child {
    margin-bottom: 0;
}
.question__list-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.question__list-item-title:last-child {
    margin-bottom: 0;
}
.question__list-item-title span {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
}
.question__list-item-title svg {
    width: 2.5rem;
    transform: rotate(-180deg);
    transition: all 0.5s ease;
}
.question__list-item-text {
    display: none;
    opacity: 0;
    margin-top: 2rem;
    transition: all 0.5s ease;
}
.question__list-item-text ul {
    list-style: inside;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
}

.reviews {
    margin-top: 12rem;
}
@media (max-width: 768px) {
    .reviews {
        max-width: 100%;
        margin: 12rem 0 0;
    }
}
@media (max-width: 480px) {
    .reviews {
        margin: 10rem 0 0;
    }
}
.reviews h2 {
    margin-bottom: 1rem;
}
.reviews .reviews__description {
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .reviews h2 {
        margin: 0 5rem 1rem;
    }
}
@media (max-width: 480px) {
    .reviews h2 {
        margin: 0 1.5rem 1rem;
    }
    .reviews .reviews__description {
        margin: 0 1.5rem 2rem;
    }
}
.reviews__list {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .reviews__list {
        overflow: scroll;
        padding: 0 5rem 0;
    }
}
@media (max-width: 480px) {
    .reviews__list {
        padding: 0 1.5rem 0;
        flex-wrap: wrap;
    }
}
.reviews__list-item {
    background: #ffffff;
    border-radius: 3rem;
    padding: 4rem;
    width: 61rem;
}
@media (max-width: 768px) {
    .reviews__list-item {
        width: 58rem;
        margin-right: 2rem;
    }
    .reviews__list-item:last-child {
        margin-right: 0;
    }
}
@media (max-width: 480px) {
    .reviews__list-item {
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 3rem;
    }
    .reviews__list-item:last-child {
        margin: 0;
    }
}
.reviews__list-item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.reviews__list-item-top-img {
    margin-right: 2rem;
}
.reviews__list-item-top-img img {
    width: 6.5rem;
}
.reviews__list-item-top-star h3 {
    margin-bottom: 1rem;
}
.reviews__list-item-title {
    display: flex;
    align-items: center;
}
.reviews__list-item-text {
    height: 14.5rem;
}
@media (max-width: 768px) {
    .reviews__list-item-text {
        height: 11.5rem;
        width: 51rem;
    }
}
@media (max-width: 480px) {
    .reviews__list-item-text {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}
@media (max-width: 350px) {
    .reviews__list-item-top-date {
        display: none;
    }
}

.prefooter {
    max-width: 100%;
    background: #ffffff;
    border-radius: 6rem 6rem 0 0;
    padding: 8.5rem 0 12.5rem;
    margin-top: 12rem;
}
@media (max-width: 768px) {
    .prefooter {
        margin: 12rem 0 0 0;
        padding: 6.6rem 5rem;
    }
}
@media (max-width: 480px) {
    .prefooter {
        margin: 10rem 0 0 0;
        padding: 0rem 1.5rem 10rem;
        border-radius: 3rem 3rem 0 0;
        background: rgba(255, 255, 255, 0);
    }
}
.prefooter__content {
    max-width: 124rem;
    margin: 0 auto;
    display: flex;
    background: #f0f0f0;
    border-radius: 6rem;
    position: relative;
    justify-content: flex-end;
}
.prefooter__content-left {
    max-width: 71.5rem;
    padding: 8.5rem;
    background: #fce000;
    border-radius: 6rem;
    z-index: 1;
}
@media (max-width: 768px) {
    .prefooter__content-left {
        max-width: 100%;
        padding: 6.6rem;
        margin-top: 55.5rem;
    }
}
@media (max-width: 480px) {
    .prefooter__content-left {
        padding: 3rem;
        margin-top: 31.5rem;
        border-radius: 3rem;
    }
}
.prefooter__content-left h2 {
    margin-bottom: 2.5rem;
}
.prefooter__content-left-text {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    margin-bottom: 2rem;
}
.prefooter__content form {
    display: flex;
    flex-direction: column;
}
.prefooter__content form input {
    width: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    border: 0;
}
@media (max-width: 480px) {
    .prefooter__content form input {
        font-size: 1.6rem;
        height: 4.5rem;
        padding: 1.05rem 1rem;
        margin-bottom: 1rem;
    }
}
.prefooter__content form input.btn {
    background: #262627;
    margin: 2.5rem 0 0 0;
}
@media (max-width: 480px) {
    .prefooter__content form input.btn {
        margin-top: 1rem;
    }
}
.prefooter__content-right {
    position: absolute;
    left: 0;
    overflow: hidden;
    height: 100%;
}
@media (max-width: 768px) {
    .prefooter__content-right {
        width: 100%;
    }
}
.prefooter__content-right img {
    width: 62.7rem;
    border-radius: 6rem;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

@media (max-width: 768px) {
    .prefooter__content-right img {
        width: 100%;
        height: auto;
    }
    .prefooter__content-right {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .prefooter__content-right img {
        border-radius: 3rem;
    }
}

footer {
    background: #262627;
}
footer .footer {
    padding: 10rem 0 5rem;
}
@media (max-width: 480px) {
    footer .footer {
        padding: 7rem 0 3rem;
    }
}
footer .footer__description {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    color: #ffffff;
    text-align: center;
    margin-top: 10rem;
}
footer .footer__link {
    display: flex;
    justify-content: end;
}
@media (max-width: 768px) {
    footer .footer__link {
        justify-content: flex-start;
        margin-top: 8rem;
    }
}
footer .footer__link img {
    width: 19rem;
    margin-left: 2rem;
}
footer .footer__link img:first-child {
    margin: 0;
}
footer .footer__logo {
    margin-bottom: 3.5rem;
}
@media (max-width: 480px) {
    footer .footer__logo {
        text-align: center;
    }
}
footer .footer__logo img {
    width: 19rem;
}
footer .footer__content {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    footer .footer__content {
        flex-wrap: wrap;
    }
}
footer .footer__content-text {
    max-width: 42rem;
}
@media (max-width: 480px) {
    footer .footer__content-text {
        display: none;
    }
}
footer .footer__content-menu {
    display: flex;
}
@media (max-width: 768px) {
    footer .footer__content-menu {
        margin-top: 6rem;
    }
}
@media (max-width: 480px) {
    footer .footer__content-menu {
        flex-direction: column;
        width: 100%;
        margin-top: 0;
    }
}
footer .footer__content-menu-item {
    margin-right: 2rem;
}
@media (max-width: 480px) {
    footer .footer__content-menu-item {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
    }
}
footer .footer__content-menu-item:last-child {
    margin: 0;
}
footer .footer__content-menu-item .title {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    color: #ffffff;
    margin-bottom: 1rem;
    text-decoration: none;
}
footer .footer__content-menu-item ul li {
    margin: 0 0 0.5rem 0;
}
footer .footer__content-menu-item ul li:last-child {
    margin: 0;
}
footer .footer__content-menu-item ul li a {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
    color: #f0f0f0;
}

.popup,.thanx {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    z-index: 10000;
    max-width: 100%;
    transition: all 0.5s ease;
    margin: 0;
}
.popup__back,.thanxBack {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
}
.popup.active,.thanx.active {
    display: flex;
    background-color: rgba(38, 38, 39, 0.5);
    transition: all 0.5s ease;
}
.popup__content,.thanxContent {
    position: relative;
    max-width: 71.5rem;
    padding: 8.5rem;
    background: #f0f0f0;
    border-radius: 6rem;
}
.popup__content img,.thanxContent img {
    position: absolute;
    top: 4rem;
    right: 4rem;
    width: 2.4rem;
    cursor: pointer;
}
@media (max-width: 768px) {
    .popup__content,.thanxContent {
        max-width: 80%;
        padding: 6.6rem;
        background: #f0f0f0;
        border-radius: 3rem;
    }
}
@media (max-width: 480px) {
    .popup__content,.thanxContent {
        max-width: 92%;
        padding: 4rem;
        border-radius: 3rem;
    }
    .popup__content img,.thanxContent img {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 2rem;
    }
}
.popup__content h2,.thanxContent h2 {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 700;
    font-size: 6rem;
    line-height: 120%;
    margin: 0 0 1rem;
}
.popup__content span,.thanxContent span {
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
}
@media (max-width: 480px) {
    .popup__content h2, .thanxContent h2 {
        font-size: 3rem;
    }
    .popup__content span, .thanxContent span {
        font-size: 1.4rem;
    }
}

.popup__content form {
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
}
.popup__content form input {
    width: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    font-family: "Yandex Sans Display";
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 150%;
    border: 0;
}
.popup__content .no-show-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000;
    padding: 0;
    margin: 0;
    width: 0;
    height: 0;
}
@media (max-width: 480px) {
    .popup__content form input {
        font-size: 1.6rem;
        height: 4.5rem;
        padding: 1.05rem 1rem;
        margin-bottom: 1rem;
    }
}
.popup__content form input.btn {
    background: #262627;
    margin-top: -0.5rem;
}
@media (max-width: 480px) {
    .popup__content form input.btn {
        margin-top: -1rem;
    }
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 2rem;
}
.footer__bottom a {
    font-size: 1.4rem;
    line-height: 2.1rem;
    transition: all 0.5s;
    color: #fff;
}
@media (max-width: 480px) {
    .footer__bottom a {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }
}
.footer__bottom a:hover {
    transition: all 0.5s;
    color: #c37700;
}

.switcher .option{
    position: absolute!important;
}
.article-content__text{
    display:flex;
    flex-direction:column;
}
.article-content__text h2{
    margin-bottom:2rem;
    margin-top:2rem;
}
.comment-respond input{
    outline:none;
    border:none;
    transition: all .5s;
}
.comment-respond input:hover{
    transition: all .5s;
    background-color:#010101;
}

.footer__content-menu-item.footer__blog {
    padding-top: 2rem;
}
.footer__blog a {
    color: #fff;
}
.wrapper__posts{
    justify-content:flex-start;
    gap:2rem;
}

.wrapper__posts-item a h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: auto!important;
    max-height: 3 * (h3 line-height);
}
.wrapper__posts-item img{
    border-radius:3rem;
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1);
}

@media(max-width:480px){
    .wrapper__posts-item img{
        height:21rem!important;
    }
    .wrapper__posts-item__description {
        flex-direction:column;
        gap:0.5rem;
    }
    .entry-title{
        font-size:3rem!important;
        line-height:3.8rem!important;
    }
}

a.gflag {font-size:24px;padding:1px 0;background-repeat:no-repeat;background-image:url(24.png);}
a.gflag img {border:0;height:24px;display:inline;}
a.gflag:hover {background-image:url(24a.png);}
img.gstats {display:none;}
a.alt_flag {background-image:url(alt_flags.png);}
a.alt_flag:hover {background-image:url(alt_flagsa.png);}
a.us_flag {background-position:-0px -100px;}
a.br_flag {background-position:-100px -100px;}
a.mx_flag {background-position:-200px -100px;}

a.glink {text-decoration:none;}
a.glink span {margin-right:5px;font-size:15px;vertical-align:middle;}
a.glink img {vertical-align:middle;display:inline;border:0;padding:0;margin:0;opacity:0.8;}
a.glink:hover img {opacity:1;}