/*#more {*/
/*    display: none;*/
/*}*/

/*.bottom-text {*/
/*    margin-top: 20px;*/
/*}*/

.text--w50 {
    width: 50%;
}

.sec-title--fsize {
    font-size: 54px !important;
}

.letter--fsize {
    font-size: 95px !important;
}

.h1--fsize {
    min-width: 500px;
}

.text--w430 {
    max-width: 430px;
}

.h2--h1size h2 {
    position: relative !important;
    font-size: var(--h1-font-size) !important;
    font-weight: 900 !important;
    line-height: 1em !important;
    margin-bottom: 0 !important;
}

@media (max-width: 1199.98px) {
    .h2--h1size h2 {
        font-size: 84px !important;
    }
}

@media (max-width: 991.98px) {
    .h2--h1size h2 {
        font-size: 72px !important;
    }
}

@media (max-width: 767.98px) {
    .h2--h1size h2 {
        font-size: 68px !important;
    }
}

@media (max-width: 575.98px) {
    .h2--h1size h2 {
        font-size: 54px !important;
    }
}

.call-to-action-four .h2--h1size h2 {
    position: relative !important;
    margin-bottom: -65px !important;
    mix-blend-mode: difference !important;
    z-index: 3 !important;
}

@media only screen and (max-width: 1699px) {
    .call-to-action-four .h2--h1size h2 {
        font-size: 74px !important;
        margin-bottom: -40px !important;
    }
}

@media (max-width: 1199.98px) {
    .call-to-action-four .h2--h1size h2 {
        font-size: 64px !important;
    }
}

@media (max-width: 991.98px) {
    .call-to-action-four .h2--h1size h2 {
        font-size: 54px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .call-to-action-four .h2--h1size h2 {
        font-size: 42px !important;
    }
}

.title--fixh2 {
    font-size: 40px !important;
    color: #fff !important;
    letter-spacing: .01em !important;
    font-weight: 400 !important;
}

@media (max-width: 575.98px) {
    .title--fixh2 {
        font-size: 28px !important;
    }
}

.cursor-p {
    cursor: pointer;
}

.text-danger--phoneform {
    position: absolute;
    top: 25px;
    left: 25px;
}

/*Политика конфиденциальности*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    color: #fff;
    padding: 20px 15px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease forwards;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.cookie-banner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.cookie-banner a {
    display: flex;
    color: #4fc3f7;
    text-decoration: underline;
}

.cookie-banner button {
    background: #4fc3f7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}