body {
    font-family: 'Montserrat', sans-serif;
}

.wrap {
    height: fit-content;
    overflow-y: clip;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.wrap--default .navbar {
    position: relative;
    background: #2A2A2A;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.navbar__contact-phone {
    position: fixed;
    width: 3.25em;
    height: 3.25em;
    bottom: 1.25em;
    right: 1.25em;
    background-color: #2880FC;
    color: white;
    padding: 1.125em;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: none;
}

.navbar__contact-phone span {
    display: none;
}

.navbar__contact-phone i {
    color: #FFF;
    animation: shake 1s infinite ease-in-out;
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(40, 128, 252, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.navbar__contact-social {
    display: flex;
    align-items: center;
    gap: .75em;
}

.navbar__contact-social a {
    color: rgba(255, 255, 255, .75);
}

.burger {
    position: relative;
    z-index: 9;
}

.burger > i {
    position: relative;
    display: block;
    width: 1.5em;
    height: 0.125em;
    background: #FFFFFF;
    margin: .25rem 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.burger.active > i {
    background: #000;
}

.burger.active > i:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0.438em;
}

.burger.active > i:nth-child(2) {
    opacity: 0;
}

.burger.active > i:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -0.3em;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .85);
    padding: 5em 2em 2em;
    transform: translateX(100vw);
    transition: .3s;
}

.menu.active {
    transform: translateX(0);
}

.menu__list {
    display: flex;
    flex-direction: column;
}

a.menu__link {
    display: block;
    background: #FFF;
    color: #000;
    padding: 1em 2em;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-align: right;
}

a.menu__link:first-child {
    border-radius: 1em 1em 0 0;
    padding: 2em 2em 1em;
}

a.menu__link:last-child {
    border-radius: 0 0 1em 1em;
    border-bottom: 0;
    padding: 1em 2em 2em;
}

.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(/design/rodina/images/header_640.webp) center center no-repeat;
    background-size: cover;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.header__caption {
    position: relative;
    z-index: 5;
    color: #FFF;
}

h1.header__title {
    text-align: center;
    padding: .25em;
    margin: 0;
    font-size: 1.75em;
}

h5.header__caption-title {
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
    color: #ccc;
}

.header__buttons {
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    align-items: center;
}

.select-plot {
    background: var(--primary-color);
    color: #FFF;
    padding: .75em 1.25em;
    border: 0;
    border-radius: .4em;
    transition: .3s;
    cursor: pointer;
}

.select-plot:hover {
    background: var(--primary-color-hover);
}

.calculate-cost {
    background: #FFA714;
    border: 0;
    padding: .75em 1.25em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

.calculate-cost:hover {
    background: #A66A07;
}

.advantages {
    padding: 5em 1.25em;
    background-color: #fff;
}

.advantages__title {
    text-align: center;
    font-size: 1.35em;
    margin-bottom: 1em;
    color: #1f1f1f;
}

.advantages__text {
    text-align: center;
    margin-bottom: 3em;
    line-height: 1.5;
    font-weight: 500;
    color: #555;
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
}

.advantages__item {
    background-color: #f9fbff;
    border-radius: 1em;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantages__item:hover {
    transform: translateY(-0.375em);
}

.advantages__icon {
    width: 4em;
    height: 4em;
    margin: 0 auto 1em;
    background-color: rgba(40, 128, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages__item-title {
    font-size: 1.125em;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.advantages__item-text {
    font-size: 0.875em;
    color: #555;
    line-height: 1.5;
}

.advantages__icon i {
    transform: scale(1.5);
    color: var(--primary-color);
}

.map--fix {
    width: 100% !important;
    height: 50vh !important;
}


.e-modal {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 100500;
}

.e-modal__cover {
    background: rgba(255, 255, 255, .75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}

.e-modal__cover:hover {
    background: rgba(255, 255, 255, .35);
}

.e-modal__container {
    position: relative;
    background: #FFF;
    box-shadow: 0 0 7px 5px rgba(0, 0, 0, .05);
    border-radius: .4em;
    width: 30em;
}

.e-modal__header {
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    align-items: center;
}

.e-modal__close {
    cursor: pointer;
    color: rgba(0, 0, 0, .35);
    transition: .3s;
}

.e-modal__close:hover {
    color: rgba(0, 0, 0, .75);
}

.e-modal__body {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 2em;
    align-items: center;
}

.e-box {
    width: 100%;
    display: flex;
    gap: 1em;
    flex-direction: column;
}

.e-advantage {
    width: 5em;
    display: flex;
    gap: 1em;
    flex-direction: row;
    text-align: center;
}

h3.plots__title {
    padding: 1em;
    text-align: center;
}

form.e-form {
    width: 20em;
}

form.e-form {
    width: 20em;
    flex-direction: column;
    gap: 1em;
    display: flex;
    background: #f2f5f9;
    padding: 1em;
    box-sizing: border-box;
    border-radius: .4em;
}

.e-form__group {
    position: relative;
}

.e-form__group input {
    width: 100%;
    padding: .75em;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    background: #FFF;
    outline: none;
    box-sizing: border-box;
}

.e-form__group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.e-form__group.active label {
    top: 0;
    font-size: .75em;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .4em;
    padding: 0 .25em;
}

button.e-form__submit {
    border: 0;
    background: var(--primary-color);
    color: #FFF;
    padding: .75em 1em;
    font-size: .875em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

button.e-form__submit:hover {
    border: 0;
    background: var(--primary-color);
    color: #FFF;
    padding: .75em 1em;
    font-size: .875em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

.e-advantage__item i {
    font-size: 1.5em;
    color: var(--primary-color);
}

.e-advantage__item span {
    font-size: .75em;
    display: block;
    padding-top: .5em;
    color: rgba(0, 0, 0, .7);
    font-weight: 500;
}

.e-modal__footer {
    background: #F2F5F9;
    padding: 1em 2em;
    border-radius: 0 0 .4em .4em;
}

.e-modal__footer a {
    display: none;
}

.e-modal__footer div {
    display: flex;
    justify-content: space-between;
}

.cost__slider {
    width: 100%;
    accent-color: #2880FC;
}

.cost__field {
    margin-bottom: 20px;
}

.cost__value {
    display: block;
    margin-top: 5px;
    font-weight: 500;
    color: #2880FC;
}

.cost__result {
    margin-top: 1.25em;
}

section.cost {
    padding: 5em 0;
}

section.cost {
    padding: 5em 1em;
}

.cost__row input {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #CCC;
    padding: 1em;
    border-radius: .4em;
    margin-top: .5em;
}

.cost__callback-group {
    padding-top: .5em;
}

.cost__callback-button {
    padding-top: 1em;
}

.cost__callback {
    padding-top: 1em;
}

.cost__callback-submit {
    background: var(--primary-color);
    border: 0;
    color: #FFF;
    padding: 1em 3em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

.cost__callback-submit:hover {
    background: var(--primary-color-hover);
}

.copy {
    display: flex;
    flex-wrap: wrap;
    padding: 1em;
    background: #F2F5F9;
}

.copy__text {
    max-width: 75em;
    margin: auto;
    width: 100%;
    line-height: 1.3;
    font-size: .875em;
    color: rgba(0, 0, 0, .6);
}

.footer__column {
    padding: 1em;
    text-align: right;
}

.footer__column-phone a {
    display: block;
    color: rgba(0, 0, 0, .8);
    font-weight: 500;
    font-size: 1.5em;
    margin: 1em 0;
}

.footer__column-social {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
    flex-wrap: wrap;
    align-items: center;
}

.footer__column-social a {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    color: rgba(0, 0, 0, .5);
}

.footer__column-social i {
    color: var(--primary-color);
}

footer.footer .row {
    padding: 2em 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.footer__item {
    padding: 2em;
}

.footer__column button {
    border: 0;
    background: var(--primary-color);
    color: #FFF;
    border-radius: 1em;
    padding: 1em 2em;
    font-size: .875em;
    cursor: pointer;
    transition: .3s;
}

.footer__column button:hover {
    background: var(--primary-color-hover);
}


.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.c-modal.open {
    display: flex;
}

.c-modal-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .75);
    cursor: pointer;
    transition: .3s;
}

.c-modal-cover:hover {
    background: rgba(255, 255, 255, .35);
}

.c-modal__container {
    position: relative;
    max-width: 100%;
    width: 100%;
    background: #FFF;
    padding: 3em;
    box-shadow: var(--medium-shadow);
    border-radius: 2em;
}

.c-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.c-modal__close {
    cursor: pointer;
}

.form__button {
    padding: 1em;
}

button.form__submit {
    padding: 1em 3em;
}

.c-modal__body {
    padding-top: 2em;
}

.form__group label {
    display: block;
    padding-bottom: 1em;
    color: rgba(0, 0, 0, .6);
}

.c-modal__description {
    padding-left: 1em;
    border-left: 2px solid var(--primary-color);
}


.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.quiz-modal.active {
    display: flex;
}

.quiz__cover {
    background: rgba(0, 0, 0, .75);
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}

.quiz-modal__content {
    position: relative;
    display: flex;
    width: 96%;
    height: 80vh;
    overflow-y: auto;
    flex-direction: column;
    background: white;
    border-radius: 1em;
    box-shadow: 0 0.25em 0.625em rgba(0, 0, 0, 0.1);
}

.quiz__close {
    position: absolute;
    top: 1em;
    right: 1em;
    cursor: pointer;
}

.quiz-modal__image {
    width: 50%;
}

.quiz-modal__image img {
    width: 100%;
    object-fit: cover;
    border-radius: 1em;
    height: 12em;
}

.quiz-modal__image picture {
    width: 100%;
    height: 100%;
}

.quiz-modal__form {
    width: 50%;
    padding: 5em 3em;
    display: flex;
    flex-direction: column;
}

.quiz-modal__title {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.quiz-modal__subtitle {
    color: #666;
    margin-bottom: 0.5em;
}

.quiz-modal__description {
    color: #999;
    font-size: 0.875em;
    margin-bottom: 1em;
}

.quiz-modal__input {
    width: 100%;
    padding: 0.75em;
    border: 0.0625em solid #ccc;
    border-radius: 0.5em;
    margin-bottom: 1em;
    box-sizing: border-box;
}

.quiz-modal__button {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 0.75em;
    border: none;
    border-radius: 0.5em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.quiz-modal__button:hover {
    background: #0056b3;
}


.quiz-modal__image, .quiz-modal__form {
    width: 100%;
}

.business {
    padding: 5em 3em;
    background: #ffffff;
    text-align: center;
}

.business__title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #000;
}

.business__subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.business__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.business__item {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.business__item-title {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.business__item-text {
    font-size: 16px;
    color: #444;
}

.business__button {
    background-color: #2880FC;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.business__button:hover {
    background-color: #1c63c9;
}

.contacts {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contacts__title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.contacts__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contacts__item {
    flex: 1 1 220px;
    max-width: 300px;
}

.contacts__item-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #444;
}

.contacts__item-text {
    font-size: 16px;
    color: #666;
}

.contacts__item-text a {
    color: #2880FC;
    text-decoration: none;
    transition: color 0.3s;
}

.contacts__item-text a:hover {
    color: #1c63c9;
}

.stocks {
    padding: 5em 3em;
}

.stocks__title h1 {
    font-weight: 500;
}

.stocks__row {
    padding: 2em 0;
}

.stocks__column-img img {
    border-radius: 1em;
}

.stocks__column-caption h2 {
    font-weight: 500;
}

.stocks__column-caption p {
    color: rgba(0, 0, 0, .5);
    line-height: 1.4;
}

.stocks__column-caption button {
    margin-top: 1em;
    border: 0;
    color: #FFF;
    padding: 1em 3em;
    border-radius: 2em;
    background: linear-gradient(to left, var(--primary-color), var(--primary-color-hover));
    transition: .3s;
    cursor: pointer;
}

.stocks__column-caption button:hover {
    background: linear-gradient(to left, var(--primary-color-hover), var(--primary-color));
}

.plots p {
    text-align: center;
    padding-bottom: 2em;
    line-height: 1.5;
}


.way__image img {
    border-radius: 2em;
}

.way__row {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
}

.way__column {
    padding: 2em;
    width: 100%;
}

.way__column h3 {
    font-weight: 500;
    font-size: 1.5em;
}

.way__column-links {
    display: flex;
    gap: 1em;
}

.way__column-links a {
    border: 3px solid rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .75);
    padding: .75em 1em;
    border-radius: .5em;
    transition: .3s;
}

.way__column-links a:hover {
    border-color: rgba(0, 0, 0, .35);
}

section.way {
    padding: 3em 0;
}

.way__column p {
    font-size: 1.1em;
    color: rgba(0, 0, 0, .5);
    line-height: 1.4;
}

.plots {
    padding: 5em 0;
}

.ribbon {
    position: relative;
    padding: 5em 1em;
}

.ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.ribbon .container {
    position: relative;
}

.ribbon__title {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.5;
}

.ribbon__text {
    padding-top: 1em;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.1em;
}

.ribbon-1 {
    background: url(/design/rodina/images/banner/banner1-640.webp) center center no-repeat;
    background-size: cover;
}

.ribbon-2 {
    background: url(/design/rodina/images/banner/banner2-640.webp) center center no-repeat;
    background-size: cover;
}

.ribbon-3 {
    background: url(/design/rodina/images/banner/banner3-640.webp) center center no-repeat;
    background-size: cover;
}

.ribbon-4 {
    background: url(/design/rodina/images/banner/banner4-640.webp) center center no-repeat;
    background-size: cover;
}


.plot__content {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.plot__row {
    width: 100%;
}

a.plot__link {
    display: none;
}

h3.plot__title {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 1.6em;
}

.plot__row {
    width: 100%;
    padding: 1em 0;
    display: flex;
    gap: .5em;
    flex-direction: column;
    position: relative;
}

.plot__column-cadastral {
    width: 10em;
}

.plot__column-area {
    width: 7em;
}

.plot__column-text button {
    background: var(--primary-color);
    border: 0;
    color: #FFF;
    border-radius: 1em;
    font-size: .875em;
    padding: .5em 1em;
    cursor: pointer;
    transition: .3s;
}

.plot__column-text button:hover {
    background: var(--primary-color-hover);
}

.plot__column-description {
    align-self: flex-start;
}

.plot__column {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 1em;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.plot__column:last-child {
    border-bottom: none;
}

.plot__column-label {
    display: block;
    font-size: .75em;
    color: rgba(0, 0, 0, .5);
}

.plot__column-text {
    display: block;
    padding-top: .5em;
    font-weight: 600;
    color: rgba(0, 0, 0, .8);
}

.plot__column-text i {
    font-size: .7em;
}

.plot__button {
    width: 100%;
    text-align: center;
    padding: 1em;
}

a.back {
    display: flex;
    gap: .5em;
    align-items: center;
    padding-top: 1em;
    color: #2A2A2A;
}

.infrastructure__caption {
    background: rgba(238, 242, 247, .85);
    width: fit-content;
    padding: 2em;
    border-radius: 2em;
}

section.section.infrastructure {
    padding: 5em 0;
    background: url(/design/white_blue/images/deil2.png) bottom right no-repeat;
}


section.policy {
    padding: 5em 1em;
}

.policy-title h1 {
    font-weight: 400;
    font-size: 2.5em;
    line-height: 1.3;
}

.typography-policy {
    line-height: 1.5;
    color: rgba(0, 0, 0, .75);
    font-weight: 400;
}

.typography-policy a, .footer__column-link {
    color: var(--primary-color);
}

.typography-policy a:hover, .footer__column-link:hover {
    color: var(--primary-color-hover);
}

.typography-policy h2 {
    font-weight: 400;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: .25em;
    padding: 1em;
}

.pagination__item a {
    background: #F2F5F9;
    display: block;
    padding: .75em 1em;
    color: #000;
    border-radius: .4em;
}

.pagination__item.active a {
    background: var(--primary-color);
    cursor: default;
    color: #FFF;
}

.infrastructure__caption-button {
    padding-top: 1em;
    text-align: center;
}

.infrastructure__caption-button a {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-hover));
    color: #FFF;
    padding: 1em 3em;
    border-radius: 2em;
    display: inline-flex;
    transition: .3s;
}

.infrastructure__caption-button a:hover {
    background: linear-gradient(90deg, var(--primary-color-hover), var(--primary-color));
}

h2.infrastructure__title {
    font-weight: 500;
    padding-bottom: 3em;
    line-height: 1.5;
    text-transform: uppercase;
    font-size: 1.3em;
    text-align: center;
}

ul.infrastructure__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

ul.infrastructure__list i {
    color: var(--success-color);
}

ul.infrastructure__list > li {
    display: flex;
    align-items: center;
    gap: 1em;
}

@media (min-width: 50em) {
    .quiz-modal__content {
        width: 50em;
        height: fit-content;
        flex-direction: row;
    }

    .quiz-modal__image img {
        height: 100%;
        border-radius: 1em 0 0 1em;
    }
}


@media (min-width: 40em) {
    .header {
        background: url(/design/rodina/images/header_860.webp) center center no-repeat;
        background-size: cover;
    }

    h5.header__caption-title {
        margin-bottom: 1em;
        font-size: 1.25em;
    }

    h1.header__title {
        margin: 1em;
        font-size: 2.25em;
    }

    .ribbon-1 {
        background: url(/design/rodina/images/banner/banner1-860.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-2 {
        background: url(/design/rodina/images/banner/banner2-860.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-3 {
        background: url(/design/rodina/images/banner/banner3-860.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-4 {
        background: url(/design/rodina/images/banner/banner4-860.webp) center center no-repeat;
        background-size: cover;
    }
}

@media (min-width: 48em) {

    .e-advantage {
        flex-direction: column;
        justify-content: center;
        transform: translateX(.5em);
    }

    .c-modal__container {
        width: 32em;
    }
}

@media (min-width: 60em) {
    .header {
        background: url(/design/rodina/images/header_1200.webp) center center no-repeat;
        background-size: cover;
    }

    .navbar__contact {
        display: flex;
        flex-direction: column;
        gap: .75em;
    }

    .navbar__contact-phone {
        position: relative;
        background: rgba(0, 0, 0, 0);
        width: auto;
        height: auto;
        padding: 0;
        bottom: auto;
        right: auto;
    }

    .navbar__contact-phone i {
        display: none;
    }

    .pulse-ring {
        display: none;
    }

    .navbar__contact-phone span {
        display: block;
        color: #CCC;
        font-size: 1.25em;
        white-space: nowrap;
        font-weight: bold;
    }

    .navbar__contact-social {
        font-size: 1.25em;
        justify-content: flex-end;
    }

    .burger {
        display: none;
    }

    .menu {
        position: relative;
        height: auto;
        width: auto;
        transform: none;
        background: rgba(0, 0, 0, 0);
        padding: 0;
    }

    .menu__list {
        flex-direction: row;
        gap: .5em;
    }

    a.menu__link, a.menu__link:first-child, a.menu__link:last-child {
        padding: 1em;
        border-radius: .4em;
        background: rgba(255, 255, 255, .1);
        color: #FFF;
        border: 0;
        transition: .3s;
    }

    a.menu__link:hover {
        background: rgba(255, 255, 255, .35);
    }

    h1.header__title {
        font-size: 3.2em;
    }

    .select-plot, .calculate-cost {
        padding: 1.25em 3em;
    }

    .navbar__contact-social {
        transform: translateY(0.125em);
    }

    h5.header__caption-title {
        margin-bottom: 0;
    }

    h1.header__title {
        margin: .25em 1em;
    }

    .advantages__title {
        font-size: 2.25em;
    }

    .cost__row {
        display: flex;
        gap: 2em;
    }

    .cost__column {
        width: calc(100% - 28em);
    }

    .cost__callback {
        background: rgba(40, 128, 252, 0.1);
        padding: 2em;
        border-radius: 1em;
        width: 26em;
    }

    .cost__result p {
        font-weight: bold;
        color: #666;
    }

    .ribbon-1 {
        background: url(/design/rodina/images/banner/banner1-1200.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-2 {
        background: url(/design/rodina/images/banner/banner2-1200.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-3 {
        background: url(/design/rodina/images/banner/banner3-1200.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-4 {
        background: url(/design/rodina/images/banner/banner4-1200.webp) center center no-repeat;
        background-size: cover;
    }

    .way__row {
        flex-direction: row;
    }

    .way__column {
        width: calc(50% - .5em);
    }

    .plot__column {
        flex-direction: row;
        justify-content: space-between;
    }

}

@media (min-width: 80em) {
    .header {
        background: url(/design/rodina/images/header.webp) center center no-repeat;
        background-size: cover;
    }

    .navbar__contact {
        flex-direction: row;
        align-items: center;
        gap: 3em;
    }

    .ribbon-1 {
        background: url(/design/rodina/images/banner/banner1.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-2 {
        background: url(/design/rodina/images/banner/banner2.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-3 {
        background: url(/design/rodina/images/banner/banner3.webp) center center no-repeat;
        background-size: cover;
    }

    .ribbon-4 {
        background: url(/design/rodina/images/banner/banner4.webp) center center no-repeat;
        background-size: cover;
    }
}