/* ОБЩИЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #65AFE4;
    --secondary-color: #2C6AA0;
    --light-color: #E8F4FF;
    --dark-color: #1A3C5A;
    --text-color: #333333;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ШАПКА */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-login-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-login-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-login-btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* БАННЕР */
.banner {
    position: relative;
    height: min(100vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    width: 100%;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 60, 90, 0.7), rgba(26, 60, 90, 0.7));
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ТУРАГЕНТСТВО */
.about {
    background-color: var(--white);
}

.touragency {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
}

.touragency-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

/* .touragency-map {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.map-container {
    height: 400px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
} */

/* ТУРАГЕНТСТВО */
.about {
    background-color: var(--white);
}

.touragency {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; 
    margin-bottom: 60px;
    gap: 40px; 
}

.touragency-text {
    flex: 1;
    min-width: 300px;
    padding: 20px 20px 20px 0; 
}

.touragency-map {
    flex: 1;
    min-width: 300px;
    padding: 20px 0 20px 20px; 
    display: flex;
    justify-content: center; 
} 

.map-container {
    height: 400px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    max-width: 600px; 
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* МЕДИА ЗАПРОСЫ ДЛЯ ЦЕНТРИРОВАНИЯ КАРТЫ */

@media (max-width: 992px) {
    .touragency {
        flex-direction: column; 
        align-items: center; 
        gap: 30px;
    }
    
    .touragency-text {
        padding: 0; 
        width: 100%;
        max-width: 800px; 
        text-align: center; 
    }
    
    .touragency-map {
        padding: 0; 
        width: 100%;
        display: flex;
        justify-content: center; 
    }
    
    .map-container {
        max-width: 800px; 
        margin: 0 auto; 
    }
}

@media (max-width: 768px) {
    .touragency {
        gap: 25px;
    }
    
    .map-container {
        height: 350px;
        max-width: 700px;
    }
    
    .touragency-text p {
        text-align: left; 
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .touragency {
        gap: 20px;
    }
    
    .touragency-text {
        padding: 0 15px;
    }
    
    .touragency-text p {
        text-align: center; 
        padding: 0;
    }
    
    .touragency-map {
        padding: 0 15px;
    }
    
    .map-container {
        height: 300px;
        max-width: 100%; 
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
        border-radius: 8px;
    }
    
    .touragency-text p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .map-container {
        height: 220px;
    }
    
    .touragency-text p {
        font-size: 14px;
    }
}


.touragency-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.touragency-text p:last-child {
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .touragency-map {
        order: 2; 
    }
    
    .touragency-text {
        order: 1;
    }
}

.touragency,
.touragency-text,
.touragency-map,
.map-container {
    transition: all 0.3s ease;
}


/* МЕНЕДЖЕРЫ */
.managers {
    text-align: center;
}

.managers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.manager-card {
    width: 250px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.manager-card:hover {
    transform: translateY(-10px);
}

.manager-img {
    width: 100%;
    height: 250px;
    background-color: var(--light-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.manager-info {
    padding: 20px;
}

.manager-info h3 {
    margin-bottom: 5px;
}

.manager-info p {
    color: var(--primary-color);
    font-weight: 500;
}

.manager-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 175, 228, 0.9);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manager-details p {
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

.manager-card:hover .manager-details {
    opacity: 1;
}

/* ПОДБОР */
.tour {
    background-color: var(--light-color);
}

.tour-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step p {
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 720px) {
    .tour-process {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: none;
        width: 100%;
        max-width: 350px;
    }
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ОТЗЫВЫ */
.review {
    background-color: var(--white);
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.review-card {
    flex: 0 1 320px; 
    min-width: 280px;
    max-width: 350px; 
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1; 
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px; 
    min-height: 50px; 
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0; 
    overflow: hidden; 
    position: relative;
    aspect-ratio: 1 / 1; 
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
}


.author-avatar:not([style*="background-image"])::after {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 20px;
}

.author-info {
    flex: 1;
    min-width: 0; 
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.2;
}

.author-info p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

/* МЕДИА ЗАПРОСЫ */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 1 300px; 
    }
}

@media (max-width: 992px) {
    .reviews-container {
        gap: 25px;
    }
    
    .review-card {
        flex: 0 1 280px; 
    }
}

@media (max-width: 768px) {
    .reviews-container {
        gap: 20px;
    }
    
    .review-card {
        flex: 0 1 260px; 
        min-width: 250px;
        padding: 25px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }
}

@media (max-width: 576px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .review-card {
        flex: 0 1 auto; 
        width: 100%;
        max-width: 400px;
        min-width: 280px;
        padding: 20px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
}

@media (max-width: 400px) {
    .review-card {
        padding: 18px;
        min-width: 260px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        margin-right: 12px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .author-info p {
        font-size: 13px;
    }
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Фиксация для очень узких экранов */
@media (max-width: 360px) {
    .review-card {
        padding: 15px;
        min-width: 240px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .review-author {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .author-info {
        width: 100%;
    }
}


.review-card {
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* ЗАПИСАТЬСЯ */
.booking {
    background-color: var(--light-color);
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 260px;
}

.form-group-full {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-color);
}

input::placeholder,
textarea::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

select:required:invalid,
input[type="date"]:required:invalid {
    color: #8a8a8a;
}

select option {
    color: var(--text-color);
}

select option[value=""] {
    color: #8a8a8a;
}

input[type="date"]:required:invalid::-webkit-datetime-edit {
    color: #8a8a8a;
}

input[type="date"]:valid::-webkit-datetime-edit {
    color: var(--text-color);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    resize: none;
    min-height: 130px;
}

.submit-btn {
    text-align: center;
    margin-top: 24px;
}

.submit-btn .btn {
    min-width: 220px;
    padding-left: 36px;
    padding-right: 36px;
}

/* ПОДВАЛ */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 400px) minmax(260px, 1fr);
    column-gap: 40px;
    align-items: flex-start;
}

.footer-logo {
    min-width: 280px;
    max-width: 350px;
    margin-bottom: 30px;
    padding-right: 20px;
    justify-self: center;
}

.footer-logo .logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 320px;
}

.footer-contact {
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 30px;
    justify-self: center;
}

.footer-contact h3 {
    margin-bottom: 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.contact-columns {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
}

.contact-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-column.phones {
    min-width: 150px;
}

.contact-column.emails {
    min-width: 180px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

.contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.footer-social {
    min-width: 150px;
    max-width: 200px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.footer-social h3 {
    margin-bottom: 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 22px;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* МЕДИА ЗАПРОСЫ */
@media (max-width: 1100px) {
    .footer-container {
        gap: 30px;
    }
    
    .footer-logo {
        flex: 1.2;
        min-width: 250px;
        max-width: 300px;
    }
    
    .footer-contact {
        flex: 1.8;
        min-width: 280px;
        max-width: 350px;
    }
    
    .contact-columns {
        gap: 25px;
    }
    
    .contact-column.phones {
        min-width: 140px;
    }
    
    .contact-column.emails {
        min-width: 160px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        justify-content: space-around;
        gap: 40px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo .logo {
        justify-content: center;
    }
    
    .footer-logo p {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .footer-contact,
    .footer-social {
        min-width: 250px;
        max-width: 300px;
        justify-self: center;
    }
    
    .footer-contact h3 {
        text-align: center;
    }
    
    .contact-columns {
        justify-content: center;
    }
    
    .footer-social h3 {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        grid-column: auto;
        justify-self: center;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
        max-width: 400px;
    }
    
    .footer-contact h3,
    .footer-social h3 {
        text-align: center;
    }
    
    .contact-columns {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .contact-column {
        align-items: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .contact-item span {
        white-space: normal;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-text {
        font-size: 24px;
    }
    
    .footer-logo .logo-img {
        height: 40px;
    }
    
    .footer-logo p {
        font-size: 14px;
    }
    
    .footer-contact h3,
    .footer-social h3 {
        font-size: 16px;
    }
    
    .contact-item span {
        font-size: 14px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
}

/* МЕДИА ЗАПРОСЫ */
@media (max-width: 992px) {
    h2 {
        font-size: 28px;
    }
    
    .banner h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 24px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: 16px;
    }

    .booking-form {
        padding: 20px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

.banner-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.touragency {
    align-items: center;
}

.touragency-text,
.touragency-map {
    display: flex;
    align-items: center;
}

.touragency-text {
    order: 1;
}

.touragency-map {
    order: 2;
    justify-content: center;
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.form-status-pending {
    color: var(--secondary-color);
}

.form-status-success {
    color: #1f7a3e;
}

.form-status-error {
    color: #b03a2e;
}

.submit-btn .btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.social-link-max {
    width: 58px;
    height: 58px;
    padding: 12px;
    line-height: 1;
    border-radius: 16px;
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link-max img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .banner {
        height: 82vh;
        min-height: 560px;
    }

    .banner-shell {
        width: min(100%, 920px);
    }
}

@media (max-width: 768px) {
    .banner {
        height: auto;
        min-height: 0;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .banner-shell {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .banner {
        background: linear-gradient(135deg, rgba(26, 60, 90, 0.96), rgba(44, 106, 160, 0.96));
        margin-top: 70px;
    }

    .banner-video,
    .banner::after {
        display: none;
    }
}
