.not-found {
    margin-top: 47px;
}

.not-found__logos-wrapper {
    margin-bottom: 50px;
}

.not-found__logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-found__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.not-found__logo {
    margin-bottom: 55px;
}

.not-found__logo-404 {
    margin-bottom: 40px;
    max-width: 360px;
}

@media (max-width: 460px) {
    .not-found__logo-404 {
        max-width: 280px;
    }
}

.not-found__title {
    margin-bottom: 12px;
}

.not-found__search {
    width: fit-content;
    margin: 0 auto;
}

.not-found__search-text {
    margin-top: 22px;
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    text-align: center;
}

.nf-our-offers__title {
    font-weight: 900;
    font-size: 36px;
    line-height: 120%;
    color: #000000;
}
@media (max-width: 768px) {
    .nf-our-offers__title {
        font-size: 30px;
    }
}
@media (max-width: 460px) {
    .nf-our-offers__title {
        font-size: 22px;
    }
}

.not-found__link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.nf-oo-slide {
    position: relative;
    border-radius: 20px;
    height: 100%;
}
.nf-oo-slide__img {
    border-radius: 20px;
    max-width: 100%;
}

.nf-oo-slide__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--black);
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s, visibility .4s;
    max-height: 100%;
}

.nf-oo-slide:hover .nf-oo-slide__content {
    visibility: visible;
    opacity: 1;
}

.nf-oo-slide__list {
    transition: .4s;
    transform: translateY(1em);
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
}

.nf-oo-slide-list__item {
    margin-right: 15px;
}

.nf-oo-slide:hover .nf-oo-slide__list {
    transform: translateY(0);
}

.nf-oo-slide__link {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-decoration-line: none;
    color: #23319D;
}

@media (max-width: 600px) {
    .nf-oo-slide__list {
        row-gap: 12px;
    }
    .nf-oo-slide-list__item {
        margin-right: 12px;
    }
    .nf-oo-slide__link {
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .nf-oo-slide__list {
        row-gap: 10px;
    }
    .nf-oo-slide-list__item {
        margin-right: 10px;
    }
    .nf-oo-slide__link {
        font-size: 14px;
    }
}
