.extras {
    position: relative;
    overflow: hidden;
    color: var(--black, #000);
    padding: 100px 0 120px;
}
@media (max-width: 991px) {
    .extras {
        padding: 50px 0;
    }
}
.extras .extras__title {
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .extras .extras__wrap {
        height: unset !important;
    }
}
@media (max-width: 991px) {
    .extras .extras__wrap {
        height: 895px;
        overflow: hidden;
        transition: 0.3s;
    }

    .extras .extras__wrap:after {
        content: '';
        display: block;
        width: 100%;
        height: 310px;
        position: absolute;
        z-index: 5;
        left: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(243, 243, 243, 0) 0%, #f3f3f3 100%);
        transition: 0.3s;
    }

    .extras .extras__wrap.active:after {
        height: 0;
    }
}
.extras .extras__content {
    position: relative;
    display: flex;
    gap: 40px;
}
@media (max-width: 1199px) {
    .extras .extras__content {
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .extras .extras__content {
        flex-direction: column;
        gap: 5px;
    }
}
.extras .extras__content .extras__list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.375;
    gap: 5px;
    padding: 0;
    margin: 0;
}
@media (min-width: 1200px) {
    .extras .extras__content .extras__list:nth-child(1) li:nth-child(2) {
        padding-right: 70px;
    }
}
.extras .extras__content .extras__list li {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-m);
    padding: 15px;
}
@media (min-width: 1200px) {
    .extras .extras__content .extras__list li {
        padding-right: 58px;
    }
}
@media (max-width: 991px) {
    .extras .extras__content .extras__list li br {
        display: none;
    }
}
.extras .extras__content .extras__list li:before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url("../images/check.svg") no-repeat center, var(--yellow, #fed700);
    background-size: 10px;
    margin: 0 10px auto 0;
}
.extras .extras__btn {
    display: none;
}
@media (max-width: 991px) {
    .extras .extras__btn {
        position: relative;
        z-index: 10;
        max-width: 350px;
        height: 65px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 800;
        text-align: center;
        text-decoration: none !important;
        text-transform: uppercase;
        color: var(--black, #000) !important;
        background: var(--yellow, #fed700);
        border-radius: 10px;
        cursor: pointer;
        margin: 30px auto 0;
    }

    .extras .extras__btn:hover {
        -webkit-animation: pulse 2s infinite;
        animation: pulse 1.5s infinite;
    }
}

/*# sourceMappingURL=extras.css.map */
