@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Regular.woff2') format('woff2'),
         url('../fonts/TildaSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Medium.woff2') format('woff2'),
         url('../fonts/TildaSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Semibold.woff2') format('woff2'),
         url('../fonts/TildaSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Bold.woff2') format('woff2'),
         url('../fonts/TildaSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Tilda Sans', Arial, sans-serif;
}

/* Hero */

.kv-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: #fff;
    background: #123;
}

.kv-hero__slider,
.kv-hero__slide,
.kv-hero__overlay {
    position: absolute;
    inset: 0;
}

.kv-hero__slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.2s ease;
    z-index: 1;
}

.kv-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
    animation: kvHeroZoomOut 3s linear forwards;
}

@keyframes kvHeroZoomOut {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }
}

.kv-hero__overlay {
    background: linear-gradient(to bottom, rgba(48, 71, 89, 0.82), rgba(48, 71, 89, 0.42));
    z-index: 3;
}

.kv-hero__container {
    position: relative;
    z-index: 4;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 78px;
    padding-bottom: 40px;
}

.kv-hero__content {
    max-width: 790px;
}

.kv-hero h1 {
    margin: 0 0 42px;
    font-size: 50px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 1px;
}

.kv-hero h1 span {
    color: rgb(63, 210, 204);
}

.kv-hero__info {
    margin-bottom: 46px;
    font-size: 20px;
    line-height: 1.45;
}

.kv-hero__info p {
    margin: 0 0 8px;
}

.kv-hero strong {
    color: rgb(63, 210, 204);
    font-weight: 700;
}

.kv-hero__info ul {
    margin: 0;
    padding-left: 24px;
}

.kv-hero__info li {
    margin-bottom: 5px;
}

.kv-hero__note {
    max-width: 710px;
    margin: 0 0 52px;
    font-size: 20px;
    line-height: 1.65;
}

.kv-hero__btn {
    width: 300px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(63, 210, 204);
    border: 2px solid #fff;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    transition: 0.2s ease;
}

.kv-hero__btn:hover {
    background: transparent;
    color: #fff;
}

/* Agency */

.kv-agency {
    padding: 78px 0 80px;
    background: #fff;
    color: #000;
}

.kv-agency__title {
    margin: 0 0 45px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.kv-agency__title span {
    color: rgb(63, 210, 204);
}

.kv-agency__subtitle {
    margin: 0 0 62px;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-agency__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 95px;
    row-gap: 82px;
}

.kv-agency__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 28px;
}

.kv-agency__icon {
    width: 90px;
    display: flex;
    justify-content: center;
}

.kv-agency__icon img {
    max-width: 82px;
    max-height: 82px;
    width: auto;
    height: auto;
    display: block;
}

.kv-agency__text {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
}

.kv-agency__text span {
    color: rgb(63, 210, 204);
}

/* Director */

.kv-director {
    background: #efefef;
    padding: 85px 0;
}

.kv-director__inner {
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: center;
    gap: 90px;
}

.kv-director__image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.kv-director__content {
    text-align: center;
    color: #000;
}

.kv-director__content h2 {
    margin: 0;
    color: rgb(48, 71, 89);
    font-size: 42px;
    line-height: 1.23;
    font-weight: 700;
}

.kv-director__content h2 span {
    display: block;
    color: rgb(63, 210, 204);
}

.kv-director__line {
    width: 50px;
    height: 3px;
    background: #6b6b6b;
    margin: 22px auto 30px;
}

.kv-director__intro,
.kv-director__bottom {
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-director strong {
    font-weight: 700;
}

.kv-director__intro strong {
    color: rgb(63, 210, 204);
}

.kv-director__list {
    margin: 38px 0 80px;
    padding-left: 24px;
    text-align: left;
    font-size: 22px;
    line-height: 1.55;
}

.kv-director__bottom {
    text-align: center;
}

/* Property cards */

.kv-property-types {
    background: #fff;
    padding: 86px 0 92px;
}

.kv-property-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.kv-property-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.kv-property-card__image {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 24px;
}

.kv-property-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.kv-property-card:hover .kv-property-card__image img {
    transform: scale(1.04);
}

.kv-property-card__title {
    display: block;
    margin-bottom: 14px;
    color: #000;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-property-card__text {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-property-card__text strong {
    font-weight: 700;
}

.kv-property-card:focus {
    outline: none;
}

.kv-property-card:focus-visible {
    outline: 2px solid rgb(63, 210, 204);
    outline-offset: 8px;
}

/* Quiz modal */

.kv-quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kv-quiz-modal.is-open {
    display: flex;
}

.kv-quiz-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 75, 93, 0.82);
}

.kv-quiz {
    position: relative;
    z-index: 2;
    width: 660px;
    height: 780px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    background: #fff;
    overflow-y: auto;
    border-radius: 8px;
}

.kv-quiz__close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 10001;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: rgb(63, 210, 204);
    font-size: 50px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
}

.kv-quiz__image img {
    /* width: 100%;
    height: 140px;
    object-fit: cover; */
    display: block;
}

.kv-quiz__body {
     padding: 20px;
}

.kv-quiz__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

 .kv-quiz__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

.kv-quiz__subtitle strong {
    color: rgb(63, 210, 204);
    font-weight: 700;
}

.kv-quiz__subtitle b {
    font-weight: 700;
}

.kv-quiz__step {
    display: none;
}

.kv-quiz__step.is-active {
    display: block;
}

.kv-quiz__step h3 {
    
    color: #111;
      font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-quiz__step label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    color: #111;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.35;
    cursor: pointer;
}

.kv-quiz__step input[type="radio"] {
   width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #000;
    flex-shrink: 0;
}

.kv-quiz__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 38px;
}

.kv-quiz__fields input {
    width: 100%;
    height: 58px;
    border: 0;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;
    outline: none;
    color: #111;
    background: transparent;
    font-size: 28px;
    font-family: inherit;
}

.kv-quiz__fields input::placeholder {
    color: #8b8b8b;
}

.kv-quiz__checkbox {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    color: #111;
    font-size: 28px;
    line-height: 1.35;
    cursor: pointer;
}

.kv-quiz__checkbox input {
    width: 36px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #000;
}

.kv-quiz__checkbox a {
    color: rgb(48, 71, 89);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.kv-quiz__bottom {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
}

.kv-quiz__btn {
   height: 42px;
    font-size: 14px;
        padding-left: 20px;
    padding-right: 20px;
    border: 0;
    border-radius: 7px;
    background: rgb(63, 210, 204);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.kv-quiz__btn--back {
    display: none;
}

.kv-quiz__btn--submit {
    display: none;
}

.kv-quiz__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #aaa;
    font-size: 24px;
}

.kv-quiz__progress i {
        width: 22px;
        height: 22px;
        border-width: 3px;
    }

body.kv-modal-open {
    overflow: hidden;
}

/* Tablet */

@media (max-width: 991px) {
    .kv-hero,
    .kv-hero__container {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .kv-hero__container {
        align-items: flex-start;
        padding-top: 105px;
        padding-bottom: 30px;
    }

    .kv-hero__content {
        max-width: 100%;
    }

    .kv-hero h1 {
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 1.28;
        letter-spacing: 0.5px;
    }

    .kv-hero__info {
        margin-bottom: 36px;
        font-size: 14px;
        line-height: 1.35;
    }

    .kv-hero__info p {
        margin-bottom: 4px;
    }

    .kv-hero__info ul {
        padding-left: 18px;
    }

    .kv-hero__info li {
        margin-bottom: 3px;
    }

    .kv-hero__note {
        max-width: 100%;
        margin-bottom: 42px;
        font-size: 14px;
        line-height: 1.6;
    }

    .kv-hero__btn {
        width: 180px;
        height: 48px;
        font-size: 12px;
    }

    .kv-agency {
        padding: 58px 0 60px;
    }

    .kv-agency__title {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .kv-agency__subtitle {
        font-size: 18px;
        margin-bottom: 42px;
    }

    .kv-agency__grid {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .kv-agency__item {
        grid-template-columns: 42px 1fr;
        gap: 18px;
        align-items: flex-start;
    }

    .kv-agency__icon {
        width: 42px;
        justify-content: flex-start;
        padding-top: 2px;
    }

    .kv-agency__icon img {
        max-width: 38px;
        max-height: 38px;
    }

    .kv-agency__text {
        font-size: 18px;
        line-height: 1.35;
    }

    .kv-director {
        background: #efefef;
        padding: 0 0 55px;
    }

    .kv-director__inner {
        width: 100%;
        display: block;
    }

    .kv-director__image {
        background: #efefef;
        padding: 0 10px;
    }

    .kv-director__image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }

    .kv-director__content {
        padding: 28px 15px 0;
    }

    .kv-director__content h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .kv-director__line {
        width: 50px;
        height: 3px;
        margin: 14px auto 24px;
    }

    .kv-director__intro,
    .kv-director__list,
    .kv-director__bottom {
        font-size: 14px;
        line-height: 1.55;
    }

    .kv-director__list {
        margin: 26px 0 48px;
        padding-left: 18px;
    }

    .kv-property-types {
        padding: 55px 0 60px;
    }

    .kv-property-types__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .kv-property-card {
        max-width: 430px;
    }

    .kv-property-card__image {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .kv-property-card__image img {
        height: auto;
        aspect-ratio: 1.48 / 1;
    }

    .kv-property-card__title {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 1.25;
    }

    .kv-property-card__text {
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 1.4;
    }

    .kv-quiz-modal {
        padding: 0;
        align-items: flex-start;
    }

    .kv-quiz {
        width: 700px;
        height: 680px;
        min-height: auto;
        max-height: calc(100vh - 40px);
    }

    .kv-quiz__close {
        top: 10px;
        right: 14px;
        color: #fff;
        font-size: 42px;
    }

    /* .kv-quiz__image img {
        height: 310px;
    } */

    .kv-quiz__body {
        padding: 38px 18px 35px;
    }

    .kv-quiz__title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.25;
    }

    .kv-quiz__subtitle {
        margin-bottom: 36px;
        font-size: 21px;
        line-height: 1.55;
    }

    .kv-quiz__step h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

      .kv-quiz__step label {
        font-size: 14px;
        margin-bottom: 8px;
        gap: 10px;
    }

  .kv-quiz__step input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .kv-quiz__fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kv-quiz__fields input {
        font-size: 21px;
    }

    .kv-quiz__checkbox {
        font-size: 20px;
    }

   .kv-quiz__bottom {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 25px;
    }

      .kv-quiz__progress {
        grid-column: 1 / -1;
        order: 3;
        font-size: 14px;
    }

    .kv-quiz__btn--back {
        order: 2;
    }

    .kv-quiz__btn--next,
    .kv-quiz__btn--submit {
        order: 3;
    }

     .kv-quiz__btn {
        height: 42px;
        font-size: 14px;
    }
}

/* Mobile */

@media (max-width: 480px) {
    .kv-hero,
    .kv-hero__container {
        height: 644px;
        min-height: 644px;
    }

    .kv-hero__container {
        padding-top: 96px;
        padding-bottom: 24px;
        align-items: flex-start;
    }

    .kv-hero h1 {
        margin-bottom: 28px;
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: 0.4px;
    }

    .kv-hero__info {
        margin-bottom: 34px;
        font-size: 16px;
        line-height: 1.4;
    }

    .kv-hero__info p {
        margin-bottom: 4px;
    }

    .kv-hero__info ul {
        padding-left: 18px;
    }

    .kv-hero__info li {
        margin-bottom: 4px;
    }

    .kv-hero__note {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 1.6;
    }

    .kv-hero__btn {
        width: 180px;
        height: 48px;
        font-size: 12px;
    }

    .kv-hero__overlay {
        background: linear-gradient(to bottom, rgba(48, 71, 89, 0.78), rgba(48, 71, 89, 0.48));
    }

    .kv-agency {
        padding: 50px 0 55px;
    }

    .kv-agency__title,
    .kv-agency__subtitle {
        display: none;
    }

    .kv-agency__grid {
        row-gap: 30px;
    }

    .kv-agency__item {
        grid-template-columns: 38px 1fr;
        gap: 17px;
    }

    .kv-agency__icon {
        width: 38px;
        padding-top: 2px;
    }

    .kv-agency__icon img {
        max-width: 36px;
        max-height: 36px;
    }

    .kv-agency__text {
        font-size: 17px;
        line-height: 1.35;
    }

    .kv-property-types {
        padding: 42px 0 50px;
    }

    .kv-property-types__grid {
        gap: 30px;
    }

    .kv-property-card {
        max-width: 100%;
    }

   .kv-quiz__image img {
        height: 140px;
    }

    .kv-quiz__title {
        font-size: 26px;
    }

    .kv-quiz__subtitle {
        font-size: 19px;
    }

    .kv-quiz__step h3 {
        font-size: 25px;
    }

    .kv-quiz__step label {
        font-size: 19px;
    }
}

/* Small mobile */

@media (max-width: 360px) {
    .kv-hero h1 {
        font-size: 24px;
    }

    .kv-hero__info,
    .kv-hero__note {
        font-size: 12px;
    }

    .kv-hero__btn {
        width: 178px;
        height: 46px;
    }

    .kv-agency__text {
        font-size: 16px;
    }

    .kv-quiz__image img {
        height: 240px;
    }

    .kv-quiz__title {
        font-size: 24px;
    }

    .kv-quiz__subtitle,
    .kv-quiz__step label {
        font-size: 18px;
    }

    .kv-quiz__step h3 {
        font-size: 23px;
    }
}

@media (max-width: 640px) {
    .kv-quiz-modal {
        align-items: center;
        justify-content: center;
        padding: 10px;
        overflow: hidden;
    }

    .kv-quiz {
        width: min(100%, 320px);
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
        border-radius: 0;
        background: #fff;
    }

    .kv-quiz__close {
        position: absolute;
        top: 6px;
        right: 8px;
        width: 24px;
        height: 24px;
        color: #fff;
        font-size: 28px;
        line-height: 24px;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    }

    .kv-quiz__image {
        display: flex;
        justify-content: center;
        background: #e8e8e8;
    }

    .kv-quiz__image img {
        width: 100%;
        height: 126px;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .kv-quiz__body {
        padding: 13px 10px 14px;
    }

    .kv-quiz__title {
        margin: 0 0 7px;
        font-size: 16px;
        line-height: 1.18;
        font-weight: 700;
    }

    .kv-quiz__subtitle {
        margin: 0 0 10px;
        font-size: 10px;
        line-height: 1.4;
    }

    .kv-quiz__step h3 {
        margin: 0 0 7px;
        font-size: 10px;
        line-height: 1.35;
        font-weight: 400;
    }

    .kv-quiz__step label {
        gap: 6px;
        margin: 0 0 5px;
        font-size: 9px;
        line-height: 1.25;
    }

    .kv-quiz__step input[type="radio"] {
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
    }

    .kv-quiz__fields {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 10px;
    }

    .kv-quiz__fields input,
    .kv-quiz .wpcf7 input[type="text"],
    .kv-quiz .wpcf7 input[type="tel"],
    .kv-quiz .wpcf7 input[type="email"] {
        height: 32px;
        padding: 0 8px;
        border-bottom-width: 1px;
        font-size: 12px;
    }

    .kv-quiz__checkbox {
        gap: 6px;
        margin-bottom: 10px;
        font-size: 9px;
        line-height: 1.3;
    }

    .kv-quiz__checkbox input {
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
    }

    .kv-quiz .wpcf7 p {
        margin: 0 0 8px;
        font-size: 10px;
        line-height: 1.35;
    }

    .kv-quiz .wpcf7 br,
    .kv-quiz .wpcf7-spinner {
        display: none;
    }

    .kv-quiz .wpcf7-submit {
        min-width: 76px;
        height: 38px;
        padding: 0 13px;
        border: 0;
        border-radius: 4px;
        background: rgb(63, 210, 204);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
    }

    .kv-quiz__bottom {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 12px;
    }

    .kv-quiz__progress {
        display: none;
    }

    .kv-quiz__btn {
        width: auto;
        min-width: 70px;
        height: 38px;
        padding: 0 13px;
        border-radius: 4px;
        font-size: 10px;
        line-height: 1;
    }

    .kv-quiz__btn--back {
        min-width: 58px;
        background: #e9f5f4;
        color: #4f8f8c;
    }
}




.kv-cf7-fields p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 0;
}

.kv-cf7-fields br {
    display: none;
}

.kv-cf7-fields .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.kv-cf7-fields input {
    width: 100%;
    height: 44px;
    border: 0;
    border-bottom: 1px solid #d6d6d6;
    background: transparent;
    padding: 0;
    color: #111;
    font-size: 22px;
    font-family: 'Tilda Sans', Arial, sans-serif;
    outline: none;
}

.kv-cf7-fields input::placeholder {
    color: #8b8b8b;
}

.kv-cf7-fields input:focus {
    border-bottom-color: rgb(63, 210, 204);
}

@media (max-width: 480px) {
    .kv-cf7-fields p {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kv-cf7-fields input {
        font-size: 18px;
    }

    .kv-quiz .kv-cf7-fields p {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 0 0 8px;
    }

    .kv-quiz .kv-cf7-fields input {
        height: 32px;
        font-size: 12px;
    }

    .kv-quiz .wpcf7-response-output {
        margin: 6px 0 0;
        padding: 5px 8px;
        font-size: 9px;
        line-height: 1.3;
    }
}






/* est vopros po quizu */

.kv-question {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #b8d4d3;
    text-align: center;
    color: #000;
}

.kv-question__title {
    margin: 0 0 36px;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 48px;
    line-height: 1.2;
}

.kv-question__subtitle {
    margin: 0 0 110px;
    font-size: 34px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-question__form {
    max-width: 1000px;
    margin: 0 auto;
}

.kv-question-form {
    width: 100%;
}

.kv-question-form > p {
    display: grid;
    grid-template-columns: minmax(0, 660px) 310px;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.kv-question-form br {
    display: none;
}

.kv-question-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.kv-question-form input[type="tel"] {
    width: 85%;
    height: 58px;
    border: 0;
    border-radius: 0;
    background: #fff;
    padding: 0 24px;
    color: #111;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    outline: none;
}

.kv-question-form input[type="tel"]::placeholder {
    color: #8c8c8c;
}

.kv-question-form input[type="tel"]:focus {
    box-shadow: 0 0 0 2px rgb(63, 210, 204);
}

.kv-question-form__submit {
    width: 100%;
    height: 58px;
    border: 3px solid #fff;
    border-radius: 6px;
    color: #fff;
    background-color: #3fd2cc;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.kv-question-form__submit:hover {
    background: transparent;
    color: #fff;
}

.kv-question .wpcf7-spinner {
    display: none;
}

.kv-question .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #c62828;
    font-size: 13px;
    text-align: left;
}

.kv-question .wpcf7-response-output {
    max-width: 1000px;
    margin: 20px auto 0;
    font-size: 15px;
    text-align: center;
}

.kv-question__policy {
    margin: 50px 0 0;
    font-size: 22px;
    line-height: 1.35;
}

.kv-question__policy a {
    color: rgb(48, 71, 89);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .kv-question {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .kv-question__title {
        margin-bottom: 28px;
        font-size: 30px;
        line-height: 1.2;
    }

    .kv-question__subtitle {
        margin-bottom: 36px;
        font-size: 22px;
        line-height: 1.4;
    }

    .kv-question-form > p {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kv-question-form input[type="tel"] {
        height: 52px;
        padding: 0 18px;
        font-size: 16px;
    }

    .kv-question-form__submit {
        height: 50px;
        font-size: 15px;
    }

    .kv-question__policy {
        max-width: 300px;
        margin: 34px auto 0;
        font-size: 13px;
        line-height: 1.6;
    }
}




/* top object start */

.kv-top-objects {
    background: #fff;
    padding: 70px 0 90px;
}

.kv-top-objects__title {
    margin: 0 0 42px;
    color: #000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.kv-top-objects__title span {
    color: rgb(63, 210, 204);
}

.kv-top-objects__subtitle {
    max-width: 1120px;
    margin: 0 0 48px;
    color: #111;
    font-size: 22px;
    line-height: 1.55;
}

.kv-top-objects__grid {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    justify-content: space-between;
    row-gap: 92px;
}

.kv-top-card {
    width: 360px;
    min-height: 487px;
}

.kv-top-card__image {
    display: block;
    width: 360px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
}

.kv-top-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.kv-top-card__image:hover img {
    transform: scale(1.04);
}

.kv-top-card__title {
    margin: 24px 0 14px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-top-card__title a {
    color: #000;
    text-decoration: none;
}

.kv-top-card__content {
    color: #111;
    font-size: 22px;
    line-height: 1.45;
}

.kv-top-card__content p {
    margin: 0 0 6px;
}

.kv-top-card__content strong,
.kv-top-card__content b {
    font-weight: 700;
}

.kv-top-card__btn {
    width: 130px;
    height: 44px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(63, 210, 204);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .kv-top-objects__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 42px 28px;
    }

    .kv-top-card,
    .kv-top-card__image {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .kv-top-objects {
        padding: 55px 0 65px;
    }

    .kv-top-objects__title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .kv-top-objects__subtitle {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .kv-top-objects__grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 24px;
    }

    .kv-top-card {
        min-height: auto;
    }

    .kv-top-card__image {
        height: 220px;
    }

    .kv-top-card__title {
        font-size: 23px;
    }

    .kv-top-card__content {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .kv-top-objects__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .kv-top-card {
        width: 100%;
    }

    .kv-top-card__image {
        height: auto;
        aspect-ratio: 360 / 240;
    }

    .kv-top-card__title {
        margin-top: 18px;
        font-size: 22px;
    }

    .kv-top-card__content {
        font-size: 18px;
    }
}


/* slider start */
.kv-inspection {
    background: #efefef;
    padding: 30px 0 40px;
    overflow: hidden;
}

.kv-inspection__title {
    margin: 0 0 72px;
    text-align: center;
    color: #000;
    font-size: 42px;
    line-height: 1.23;
    font-weight: 700;
}

.kv-inspection__title span {
    color: rgb(63, 210, 204);
}

.kv-inspection__slider {
    position: relative;
}

.kv-inspection__viewport {
    width: min(100% - 160px, 760px);
    margin: 0 auto;
    overflow: hidden;
}

.kv-inspection__track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.kv-inspection__slide {
    min-width: 100%;
}

.kv-inspection__slide img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    display: block;
}

.kv-inspection__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.kv-inspection__arrow::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.kv-inspection__arrow--prev {
    left: 28px;
}

.kv-inspection__arrow--prev::before {
    transform: rotate(-45deg);
}

.kv-inspection__arrow--next {
    right: 28px;
}

.kv-inspection__arrow--next::before {
    transform: rotate(135deg);
}

@media (max-width: 768px) {
    .kv-inspection {
        padding: 28px 0 35px;
    }

    .kv-inspection__title {
        max-width: 320px;
        margin: 0 auto 28px;
        font-size: 30px;
        line-height: 1.25;
    }

    .kv-inspection__viewport {
        width: 100%;
    }

    .kv-inspection__slide img {
        height: auto;
        aspect-ratio: 1.35 / 1;
    }

    .kv-inspection__arrow {
        width: 22px;
        height: 22px;
    }

    .kv-inspection__arrow::before {
        width: 14px;
        height: 14px;
    }

    .kv-inspection__arrow--prev {
        left: 10px;
    }

    .kv-inspection__arrow--next {
        right: 10px;
    }
}




.kv-offer-cta {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #b8d4d3;
}

.kv-offer-cta__inner {
    display: grid;
    grid-template-columns: 1fr 464px;
    align-items: center;
    gap: 40px;
}

.kv-offer-cta__title {
    margin: 0;
    text-align: center;
    color: #000;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.kv-offer-cta__btn {
    width: 270px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #3fd2cc;
    color: #fff;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.kv-offer-cta__btn:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .kv-offer-cta__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kv-offer-cta__title {
        font-size: 22px;
    }

    .kv-offer-cta__btn {
        width: 100%;
        max-width: 300px;
        height: 52px;
        justify-self: center;
        font-size: 15px;
    }
}



/* phuket section */

.kv-phuket {
    background: #fff;
    padding: 70px 0 80px;
    color: #000;
}

.kv-phuket__title {
    margin: 0 0 42px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-phuket__title span {
    color: rgb(63, 210, 204);
}

.kv-phuket__subtitle {
    max-width: 1200px;
    margin: 0 0 72px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-phuket__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 90px;
    row-gap: 92px;
}

.kv-phuket__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 28px;
}

.kv-phuket__icon {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kv-phuket__icon img {
    max-width: 86px;
    max-height: 86px;
    width: auto;
    height: auto;
    display: block;
}

.kv-phuket__text {
    color: #000;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
}

.kv-phuket__text span {
    color: rgb(63, 210, 204);
}

@media (max-width: 991px) {
    .kv-phuket {
        padding: 50px 0 60px;
    }

    .kv-phuket__title {
        margin-bottom: 24px;
        font-size: 34px;
    }

    .kv-phuket__subtitle {
        margin-bottom: 42px;
        font-size: 18px;
    }

    .kv-phuket__grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .kv-phuket__item {
        grid-template-columns: 44px 1fr;
        gap: 18px;
        align-items: flex-start;
    }

    .kv-phuket__icon {
        width: 44px;
        justify-content: flex-start;
        padding-top: 3px;
    }

    .kv-phuket__icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .kv-phuket__text {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .kv-phuket {
        padding: 42px 0 50px;
    }

    .kv-phuket__title {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .kv-phuket__subtitle {
        margin-bottom: 34px;
        font-size: 14px;
        line-height: 1.45;
    }

    .kv-phuket__grid {
        row-gap: 30px;
    }

    .kv-phuket__item {
        grid-template-columns: 38px 1fr;
        gap: 16px;
    }

    .kv-phuket__icon {
        width: 38px;
    }

    .kv-phuket__icon img {
        max-width: 35px;
        max-height: 35px;
    }

    .kv-phuket__text {
        font-size: 16px;
        line-height: 1.45;
    }
}

/* otzivi section */

.kv-reviews {
    background-color: #efefef;
    padding: 48px 0 65px;
    overflow: hidden;
}

.kv-reviews__title {
    margin: 0 0 48px;
    color: #000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.kv-reviews__title span {
    color: rgb(63, 210, 204);
}

.kv-reviews__subtitle {
    max-width: 1120px;
    margin: 0 0 90px;
    color: #111;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-reviews__subtitle strong {
    font-weight: 700;
}

.kv-reviews__slider {
    position: relative;
}

.kv-reviews__viewport {
    width: min(100%, 870px);
    margin: 0 auto;
    overflow: hidden;
}

.kv-reviews__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.kv-reviews__slide {
    min-width: 100%;
}

.kv-reviews__slide img {
    width: 100%;
    height: auto;
    display: block;
}

.kv-reviews__arrow {
    position: absolute;
    top: 45%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #e8e8e8;
    cursor: pointer;
    transform: translateY(-50%);
}

.kv-reviews__arrow::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 16px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.kv-reviews__arrow--prev {
    left: 95px;
}

.kv-reviews__arrow--prev::before {
    transform: rotate(-45deg);
}

.kv-reviews__arrow--next {
    right: 95px;
}

.kv-reviews__arrow--next::before {
    left: 12px;
    transform: rotate(135deg);
}

.kv-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 36px;
}

.kv-reviews__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d2d2d2;
    cursor: pointer;
}

.kv-reviews__dot.is-active {
    background: #000;
}

.kv-mobile-br {
    display: none;
}

@media (max-width: 991px) {
    .kv-reviews {
        padding: 42px 0 55px;
    }

    .kv-reviews__title {
        margin-bottom: 34px;
        font-size: 34px;
    }

    .kv-reviews__subtitle {
        margin-bottom: 50px;
        font-size: 18px;
    }

    .kv-reviews__arrow--prev {
        left: 12px;
    }

    .kv-reviews__arrow--next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .kv-reviews {
        padding: 36px 0 45px;
    }

    .kv-reviews__title {
        margin-bottom: 30px;
        font-size: 24px;
        line-height: 1.15;
    }

    .kv-reviews__subtitle {
        margin-bottom: 28px;
        font-size: 13px;
        line-height: 1.55;
    }

    .kv-mobile-br {
        display: block;
    }

    .kv-reviews__viewport {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .kv-reviews__arrow {
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.65);
    }

    .kv-reviews__arrow::before {
        top: 9px;
        left: 11px;
        width: 8px;
        height: 8px;
    }

    .kv-reviews__arrow--prev {
        left: 4px;
    }

    .kv-reviews__arrow--next {
        right: 4px;
    }

    .kv-reviews__arrow--next::before {
        left: 8px;
    }

    .kv-reviews__dots {
        margin-top: 18px;
    }

    .kv-reviews__dot {
        width: 6px;
        height: 6px;
    }
}

/* etapi pokupki */

.kv-buy-steps {
    background: #fff;
    padding: 70px 0 85px;
    color: #000;
}

.kv-buy-steps__title {
    margin: 0 0 36px;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-buy-steps__title span {
    color: rgb(63, 210, 204);
}

.kv-buy-steps__subtitle {
    max-width: 1200px;
    margin: 0 0 70px;
    font-size: 22px;
    line-height: 1.55;
}

.kv-buy-steps__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.kv-buy-steps__timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: #304759;
    transform: translateX(-50%);
}

.kv-buy-steps__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    align-items: start;
    min-height: 170px;
}

.kv-buy-steps__item:nth-child(2),
.kv-buy-steps__item:nth-child(4),
.kv-buy-steps__item:nth-child(6) {
    padding-top: 40px;
}

.kv-buy-steps__number {
    grid-column: 2;
    grid-row: 1;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(63, 210, 204);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}

.kv-buy-steps__content {
    max-width: 390px;
}

.kv-buy-steps__item:nth-child(odd) .kv-buy-steps__content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    justify-self: end;
    padding-right: 25px;
}

.kv-buy-steps__item:nth-child(even) .kv-buy-steps__content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    justify-self: start;
    padding-left: 25px;
}

.kv-buy-steps__content h3 {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-buy-steps__content p {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .kv-buy-steps {
        padding: 55px 0 65px;
    }

    .kv-buy-steps__title {
        font-size: 34px;
    }

    .kv-buy-steps__subtitle {
        margin-bottom: 50px;
        font-size: 18px;
    }

    .kv-buy-steps__timeline {
        max-width: 100%;
    }

    .kv-buy-steps__item {
        min-height: 150px;
    }

    .kv-buy-steps__content h3 {
        font-size: 24px;
    }

    .kv-buy-steps__content p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .kv-buy-steps {
        padding: 42px 0 50px;
    }

    .kv-buy-steps__title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.25;
    }

    .kv-buy-steps__subtitle {
        margin-bottom: 36px;
        font-size: 14px;
        line-height: 1.55;
    }

    .kv-buy-steps__timeline::before {
        left: 18px;
        top: 10px;
        bottom: 10px;
        transform: none;
    }

    .kv-buy-steps__item,
    .kv-buy-steps__item:nth-child(2),
    .kv-buy-steps__item:nth-child(4),
    .kv-buy-steps__item:nth-child(6) {
        grid-template-columns: 36px 1fr;
        align-items: start;
        min-height: auto;
        gap: 16px;
        padding-top: 0;
        padding-bottom: 34px;
    }

    .kv-buy-steps__item:last-child {
        padding-bottom: 0;
    }

    .kv-buy-steps__number {
        grid-column: 1;
        width: 36px;
        height: 36px;
        margin: 0;
        font-size: 16px;
    }

    .kv-buy-steps__content,
    .kv-buy-steps__item:nth-child(odd) .kv-buy-steps__content,
    .kv-buy-steps__item:nth-child(even) .kv-buy-steps__content {
        grid-column: 2;
        max-width: none;
        text-align: left;
        justify-self: stretch;
        padding: 0;
    }

    .kv-buy-steps__content h3 {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.3;
    }

    .kv-buy-steps__content p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* faq */

.kv-faq {
    background: #fff;
    padding: 70px 0 85px;
    color: #000;
}

.kv-faq__list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
}

.kv-faq__item {
    border-bottom: 1px solid #e5e5e5;
}

.kv-faq__question {
    width: 100%;
    min-height: 78px;
    padding: 22px 10px 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    color: #000;
    text-align: left;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    cursor: pointer;
}

.kv-faq__question i {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.kv-faq__question i::before,
.kv-faq__question i::after {
    content: "";
    position: absolute;
    background: #8c98a3;
    transition: 0.2s ease;
}

.kv-faq__question i::before {
    top: 10px;
    left: 0;
    width: 22px;
    height: 1px;
}

.kv-faq__question i::after {
    top: 0;
    left: 10px;
    width: 1px;
    height: 22px;
}

.kv-faq__item.is-open .kv-faq__question i::after {
    transform: rotate(90deg);
    opacity: 0;
}

.kv-faq__answer {
    display: none;
}

.kv-faq__item.is-open .kv-faq__answer {
    display: block;
}

.kv-faq__answer-inner {
    max-width: 1120px;
    padding: 0 60px 44px 0;
    color: #111;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-faq__answer-inner p {
    margin: 18px 0 0;
}

.kv-faq__answer-inner ul {
    margin: 8px 0 0;
    padding-left: 22px;
}

.kv-faq__answer-inner li {
    margin-bottom: 4px;
}

.kv-faq__answer-inner strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .kv-faq {
        padding: 45px 0 55px;
    }

    .kv-faq__question {
        min-height: 64px;
        padding: 18px 4px 18px 0;
        font-size: 20px;
        line-height: 1.35;
    }

    .kv-faq__answer-inner {
        padding: 0 0 28px;
        font-size: 16px;
        line-height: 1.55;
    }

    .kv-faq__question i {
        width: 18px;
        height: 18px;
    }

    .kv-faq__question i::before {
        top: 8px;
        width: 18px;
    }

    .kv-faq__question i::after {
        left: 8px;
        height: 18px;
    }
}
.kv-faq__answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.kv-faq__item.is-open .kv-faq__answer {
    max-height: 500px;
    opacity: 1;
}


/* novosti section */


.kv-telegram-news {
    background: #efefef;
    padding: 45px 0 70px;
    color: #000;
}

.kv-telegram-news__title {
    margin: 0 0 42px;
    text-align: center;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-telegram-news__title span {
    color: rgb(63, 210, 204);
}

.kv-telegram-news__box {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px 32px 32px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.kv-telegram-news__box-title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.kv-telegram-news__list {
    display: grid;
    gap: 28px;
}

.kv-telegram-news__item.is-hidden {
    display: none;
}

.kv-telegram-news__date {
    margin-bottom: 10px;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1.2;
}

.kv-telegram-news__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 18px;
    align-items: start;
}

.kv-telegram-news__image {
    display: block;
    width: 200px;
    height: 120px;
    overflow: hidden;
    text-decoration: none;
}

.kv-telegram-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kv-telegram-news__content h4 {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-telegram-news__content h4 a {
    color: #000;
    text-decoration: none;
}

.kv-telegram-news__text {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

.kv-telegram-news__more {
    margin-top: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000;
    font-family: 'Tilda Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.kv-telegram-news__more span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.kv-telegram-news__more.is-active span {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .kv-telegram-news {
        padding: 35px 0 50px;
    }

    .kv-telegram-news__title {
        margin-bottom: 28px;
        text-align: left;
        font-size: 28px;
        line-height: 1.2;
    }

    .kv-telegram-news__box {
        max-width: 100%;
        padding: 24px 12px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .kv-telegram-news__box-title {
        margin-bottom: 26px;
        font-size: 17px;
    }

    .kv-telegram-news__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kv-telegram-news__image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.75 / 1;
    }

    .kv-telegram-news__content h4 {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.45;
    }

    .kv-telegram-news__text {
        font-size: 12px;
        line-height: 1.55;
    }

    .kv-telegram-news__more {
        margin-top: 24px;
        font-size: 12px;
    }
}


/* youtube video */

.kv-youtube {
    background: #fff;
    padding: 75px 0 80px;
}

.kv-youtube__inner {
    display: grid;
    grid-template-columns: 1fr 560px;
    align-items: center;
    gap: 70px;
}

.kv-youtube__content {
    max-width: 540px;
}

.kv-youtube__content p {
    margin: 0 0 34px;
    color: #000;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
}

.kv-youtube__content span {
    color: rgb(63, 210, 204);
    font-weight: 700;
}

.kv-youtube__content strong {
    font-weight: 700;
}

.kv-youtube__btn {
    width: 275px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    border-radius: 5px;
    background: rgb(63, 210, 204);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.kv-youtube__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.kv-youtube__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .kv-youtube {
        padding: 55px 0 60px;
    }

    .kv-youtube__inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .kv-youtube__content {
        max-width: 100%;
    }

    .kv-youtube__content p {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .kv-youtube__btn {
        width: 220px;
        height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kv-youtube {
        padding: 40px 0 45px;
    }

    .kv-youtube__content p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .kv-youtube__btn {
        width: 170px;
        height: 48px;
        font-size: 12px;
    }

    .kv-youtube__inner {
        gap: 28px;
    }
}



/* main quiz */



.kv-custom-quiz {
    background: #efefef;
    padding: 45px 0 70px;
    color: #000;
}

.kv-custom-quiz__title {
    margin: 0 0 42px;
    text-align: center;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.kv-custom-quiz__title span,
.kv-custom-quiz__subtitle strong,
.kv-custom-quiz__step-label span {
    color: rgb(63, 210, 204);
}

.kv-custom-quiz__subtitle {
    margin: 0 0 90px;
    text-align: center;
    font-size: 26px;
    line-height: 1.55;
}

.kv-custom-quiz__grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 90px;
    align-items: center;
}

.kv-custom-quiz__image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.kv-custom-quiz__content {
    max-width: 520px;
}

.kv-custom-quiz__policy {
    display: inline-block;
    margin-bottom: 28px;
    color: #ff7f66;
    font-size: 16px;
    text-decoration: none;
}

.kv-custom-quiz__step {
    display: none;
}

.kv-custom-quiz__step.is-active {
    display: block;
}

.kv-custom-quiz__step-label {
    margin-bottom: 30px;
    font-size: 16px;
}

.kv-custom-quiz__step h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-custom-quiz__step p {
    margin: 0 0 20px;
    color: #777;
    font-size: 15px;
    line-height: 1.5;
}

.kv-custom-quiz__step label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    cursor: pointer;
}

.kv-custom-quiz__step input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #000;
}

.kv-custom-range {
    position: relative;
    padding-top: 38px;
}

.kv-custom-range output {
    position: absolute;
    top: 0;
    left: 22%;
    padding: 8px 14px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,.14);
    font-size: 14px;
}

.kv-custom-range input {
    width: 100%;
    accent-color: #000;
}

.kv-custom-range__numbers {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 14px;
}

.kv-custom-quiz select,
.kv-custom-cf7 input[type="tel"] {
    width: 100%;
    height: 58px;
    border: 5px solid #ddd;
    border-radius: 32px;
    background: #fff;
    padding: 0 24px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.kv-custom-quiz__bottom {
    display: grid;
    grid-template-columns: 120px 1fr 160px;
    gap: 20px;
    align-items: center;
    margin-top: 36px;
}

.kv-custom-quiz__btn {
    height: 46px;
    border: 0;
    border-radius: 5px;
    background: rgb(63, 210, 204);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.kv-custom-quiz__btn--back {
    display: none;
}

.kv-custom-quiz__progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
}

.kv-custom-quiz__progress i {
    width: 22px;
    height: 22px;
    border: 3px solid #ccc;
    border-top-color: rgb(63, 210, 204);
    border-radius: 50%;
}

.kv-custom-cf7 {
    margin-top: 20px;
}

.kv-custom-cf7 p {
    margin: 0;
}

.kv-custom-cf7 .wpcf7-spinner,
.kv-custom-cf7 br {
    display: none;
}

.kv-custom-quiz__btn--submit {
    width: 100%;
    margin-top: 28px;
}

.kv-success-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.75);
}

.kv-success-modal.is-open {
    display: flex;
}

.kv-success-modal__box {
    width: 460px;
    max-width: calc(100% - 30px);
    padding: 50px 35px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.kv-success-modal__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #35c85a;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.kv-success-modal__box p {
    margin: 0 0 28px;
    font-size: 20px;
}

.kv-success-modal__box button {
    width: 180px;
    height: 54px;
    border: 0;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.kv-success-modal__box span {
    display: block;
    margin-top: 18px;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .kv-custom-quiz__title {
        font-size: 30px;
    }

    .kv-custom-quiz__subtitle {
        margin-bottom: 40px;
        font-size: 20px;
    }

    .kv-custom-quiz__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kv-custom-quiz__image img {
        height: auto;
    }

    .kv-custom-quiz__content {
        max-width: 100%;
    }

    .kv-custom-quiz__bottom {
        grid-template-columns: 1fr;
    }

    .kv-custom-quiz__btn {
        width: 100%;
    }

    .kv-custom-quiz__progress {
        order: -1;
    }
}

/* footer */



.kvaris-footer {
    background: #304759;
    padding: 74px 0 34px;
    color: #fff;
}

.kvaris-footer__inner {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 128px;
    gap: 58px;
    align-items: start;
}

.kvaris-footer__brand img {
    width: 128px;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.kvaris-footer__brand p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 14px;
    line-height: 1.4;
}

.kvaris-footer__links {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 40px;
    min-width: 0;
}

.kvaris-footer__col,
.kvaris-footer__objects {
    display: grid;
    gap: 12px 34px;
}

.kvaris-footer__objects {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
    min-width: 0;
}

.kvaris-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.kvaris-footer a:hover {
    color: rgb(63, 210, 204);
}

.kvaris-footer__socials {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.kvaris-footer__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #efefef;
    color: #304759;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.kvaris-footer__disclaimer {
    grid-column: 1 / -1;
    margin-top: 58px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .kvaris-footer {
        padding: 55px 0 45px;
    }

    .kvaris-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .kvaris-footer__brand img {
        width: 150px;
        margin-bottom: 28px;
    }

    .kvaris-footer__brand p {
        font-size: 18px;
    }

    .kvaris-footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .kvaris-footer__objects {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kvaris-footer a {
        font-size: 17px;
    }

    .kvaris-footer__socials {
        justify-content: flex-start;
    }

    .kvaris-footer__socials a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .kvaris-footer__disclaimer {
        margin-top: 20px;
        font-size: 14px;
    }
}
