/* Footer */
.logo-socials-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.logo-socials-wrap .social-network {
    margin-bottom: 0;
}

/* Header */
.header .menu-header.fixed .right-block {
    width: 100%;
    flex-shrink: 1;
}

.header .menu-header.fixed .contacts-block {
    max-width: 375px;
}

.header .menu-header .contacts-block {
    display: flex;
    flex-direction: row !important;
    gap: 19px;
    flex-wrap: wrap;
    align-items: center;
}

.header .contacts-block .header-link {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    color: #2DADA6;
    padding: 0;
    position: relative;
    padding-right: 28px !important;
    text-decoration: none;
}

.header .contacts-block .header-link:hover::after {
    right: 0;
}

.header .contacts-block .header-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    background-image: url('./images/icons/link-arrow.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    transition: 0.3s;
}

.header .menu-header.fixed .logo img {
    max-width: 170px;
}

.header .menu-header.fixed .logo {
    max-width: 170px;
}

.ai-banner {
    background-color: rgba(24, 24, 27, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999999999999999;
    padding: 20px;
    align-items: center;
    display: none;
    overflow: auto;
}

.ai-banner.active {
    display: flex;
}

.ai-banner__container {
    width: 100%;
    max-width: 940px;
    padding: 0 40px;
    margin: auto;
    background-color: #0A3331;
    border-radius: 16px;
    display: flex;
    gap: 35px;
    justify-content: space-between;
    position: relative;
}

.ai-banner__close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4.44px;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
}

.ai-banner__close:hover {
    opacity: 0.8;
}

.ai-banner__left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex-grow: 1;
    padding: 40px 0;
}

.ai-banner__content {
    color: white;
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1.5;
    font-weight: 400;
}

.ai-banner__content p strong {
    font-weight: 400;
    color: #7ED957;
}

.ai-banner__content p a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.ai-banner__content p a:hover {
    color: #7ED957;
}

.ai-banner__content p a strong {
    transition: 0.3s;
}

.ai-banner__content p a strong:hover {
    color: #91F765;
}

.ai-banner__logo {
    display: inline-flex;
    max-width: 210px;
    width: 100%;
}

.ai-banner__logo img {
    width: 100%;
    height: auto;
}

.ai-banner__right-image {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 20px;
}

.ai-banner__right-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

@media(max-width: 767px) {
    .ai-banner__container {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;

    }

    .ai-banner__right-image {
        margin-top: 0;
    }

    .ai-banner__left-column {
        padding: 40px 0 0 0;
        align-items: center;
    }

    .ai-banner__content {
        text-align: center;
    }
}