@import url('../assets/fonts/stylesheet.css');

body {
    font-family: 'Panton', 'Arial', sans-serif;
}

/*-------------- Bootstrap fix -----------------*/
@media (min-width: 1600px) {
    .container,
    .container-xl {
        max-width: 1520px;
    }

    .modal-lg {
        max-width: 1140px;
    }

    .modal-xl {
        max-width: 1500px;
    }

    .d-xxl-none {
        display: none !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-flex {
        display: -ms-flexbox !important;
        display: -webkit-box !important;
        display: flex !important;
    }

    .justify-content-xxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xxl-auto {
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }
}

/*------------------------------------------------*/
/*-----------------common-------------------------*/
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.d__section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

@media (min-width: 992px) {
    .d__section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

.h-line {
    height: 2px;
    background: #E1CDAA;
}

.section__main-title {
    font-size: 45px;
    font-weight: 700;
}

.text-brand {
    color: #e8bb51 !important;
}

.text-red {
    color: red !important;
}

.btn--theme--main {
    border-radius: 5px;
    border: 1px solid #e8bb51;
    background-color: #e8bb51;
    color: #231d1c;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn--theme--main:hover {
    background-color: #2d2d2d;
    color: #ffffff;
}

.btn--theme--main:focus {
    outline: none;
}

/*------------------------------------------------*/
/*----------------section-header------------------*/
.section-header {
    overflow-x: hidden;
    background: #2d2d2d;
}

@media (min-width: 992px) {
    .section-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 2;
    }
}

.section-header__nav-wrapper {
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.semitransparent-layout {
    display: none;
}

@media (max-width: 991px) {
    .semitransparent-layout {
        display: block;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0;
        -webkit-transition: opacity ease-in-out 0.4s;
        -o-transition: opacity ease-in-out 0.4s;
        transition: opacity ease-in-out 0.4s;
    }

    .semitransparent-layout.show {
        z-index: 2;
        opacity: .5;
    }

    .section-header__nav-wrapper {
        position: fixed;
        z-index: 3;
        top: 0;
        right: -100%;
        width: 260px;
        bottom: 0;
        background: #2d2d2d;
        padding-top: 50px;
    }

    .section-header__nav-wrapper.open {
        right: 0;
    }

    .section-header__nav {
        width: 100%;
        background: transparent;
        margin: 0;
    }
}

.section-header__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 50px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.section-header__link span {
    border-bottom: 2px solid transparent;
}

.section-header__link.active span {
    opacity: .7;
    color: #fdc646;
    border-bottom: 2px solid #fdc646;
}

.section-header__link:hover {
    text-decoration: none;
    color: #fff;
}

@media (min-width: 992px) {
    .section-header__link {
        padding: 0 15px;
    }

    .section-header__link:hover {
        text-decoration: none;
        color: #fff;
    }

}

@media (min-width: 1200px) {
    .section-header__link {
        padding: 0 25px;
    }
}

@media (min-width: 1600px) {
    .section-header__link {
        padding: 0 35px;
    }
}

.section-header__nav-open {
    position: fixed;
    z-index: 1;
    top: 10px;
    right: 15px;
    padding: 8px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    background: rgba(242, 190, 66, 0.8);
    border-radius: 50rem;
}

.section-header__nav-close {
    position: absolute;
    z-index: 4;
    top: 7px;
    right: 17px;
    padding: 10px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.section-header__nav-close:hover {
    color: #ccc;
}

/*------------------------------------------------*/
/*-------------------section-main-----------------*/
.section-main {
    position: relative;
    background: url("../assets/img/section-main/section-main__bg.jpg") 50% 50% / cover no-repeat;
    padding-top: 80px;
    padding-bottom: 10px;
    color: #fff;
}

@media (min-width: 576px) {
    .section-main {
        padding-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .section-main {
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .section-main {
        padding-bottom: 60px;
    }
}

.filter-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, .9);
}

.section-main__main-img {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    right: 0;
    -webkit-transform: translate(50%, -75%);
    -ms-transform: translate(50%, -75%);
    transform: translate(50%, -75%);
    background: url("../assets/img/section-main/section-main__image.jpg") 90% 50% / 150% no-repeat;
    -webkit-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

@media (min-width: 1200px) {
    .section-main__main-img {
        width: 400px;
        height: 320px;
        -webkit-transform: translate(-5%, -75%);
        -ms-transform: translate(-5%, -75%);
        transform: translate(-5%, -75%);
        background-size: 130%;
        background-position: 30% 50%;
    }
}

@media (min-width: 1600px) {
    .section-main__main-img {
        width: 500px;
        background-size: 100%;
    }
}

.section-main__text-wrapper {
    max-width: 290px;
}

@media (min-width: 576px) {
    .section-main__text-wrapper {
        max-width: 410px;
    }
}

@media (min-width: 768px) {
    .section-main__text-wrapper {
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    .section-main__text-wrapper {
        max-width: 95%;
    }
}

.section-main__title {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-main__subtitle {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    opacity: .8;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .section-main__title {
        margin-bottom: 30px;
    }

    .section-main__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .section-main__title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .section-main__subtitle {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .section-main__title {
        font-size: 36px;
    }

    .section-main__subtitle {
        font-size: 20px;
    }
}

.section-main__btn {
    padding: 15px 30px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .section-main__btn {
        padding: 20px 30px;
        font-size: 18px;
        line-height: 1.55;
    }
}

@media (min-width: 768px) {
    .section-main__btn {
        padding: 20px 50px;
        margin-bottom: 70px;
    }
}

.achievements__item {
    margin-bottom: 20px;
}


.achievements__title {
    font-size: 45px;
    line-height: 1;
    font-weight: 300;
    opacity: 0.9;
}

.achievements__text {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .achievements__title {
        font-size: 55px;
    }
}

@media (min-width: 992px) {
    .achievements__title {
        font-size: 70px;
    }

    .achievements__text {
        font-size: 16px;
    }

}

/*------------------------------------------------*/
/*------------------section-advantages------------*/
.section-advantages {
    position: relative;
    background: url("../assets/img/section-advantages/advantages__bg.jpg") 50% 50% / cover no-repeat;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .section-advantages {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.filter-bg-20 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, .2);
}

/*------------------------------------------------*/
/*------------------section-advantages-2----------*/
.section-advantages-2 {
    position: relative;
    background: url("../assets/img/section-advantages/advantages__bg.jpg") 50% 50% / cover no-repeat;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .section-advantages-2 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.filter-bg-20 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, .2);
}

.section-advantages-2__item {
    position: relative;
}

.advantages-2-item__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: rgba(45, 45, 45, .5);
    color: #fff;
}


/*------------------------------------------------*/
/*----------------section-catalog-----------------*/
.section-catalog {
    background: #efefef;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .section-catalog {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.catalog-card {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.catalog-card:hover {
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.catalog-card__content {
    padding: 36px 40px;
}

.catalog-card__btn {
    display: block;
    width: 100%;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #e8bb51;
    background-color: #e8bb51;
    color: #231d1c;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.catalog-card__btn:hover {
    background-color: #2d2d2d;
    color: #ffffff;
}

.catalog-card__btn:focus {
    outline: none;
}

@media (min-width: 768px) {
    .catalog-card__btn {
        font-size: 18px;
    }
}

/*------------------------------------------------*/
/*----------------section-gallery-----------------*/
.section-gallery {
    background: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .section-gallery {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    padding: 20px 30px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.gallery-item:hover .gallery-item__text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*------------------------------------------------*/
/*------------------section-reviews---------------*/
.section-reviews {
    background: #fff;
}

.section-reviews .decoration-border {
    width: 130px;
}

@media (max-width: 1599px) {
    .section-reviews .decoration-border {
        width: 70px;
    }
}

@media (max-width: 1199px) {
    .section-reviews .decoration-border {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .section-reviews .decoration-border {
        width: 0;
    }
}

.section-reviews .slick-track {
    padding: 100px 0 120px;
}

@media (max-width: 575px) {
    .section-reviews .slick-track {
        padding: 50px 0 60px;
    }
}

.section-reviews .slick-slide {
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
    margin: 0 60px;
}

@media (max-width: 575px) {
    .section-reviews .slick-slide {
        margin: 0 20px;
    }
}

.section-reviews .slick-current .card-review {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    left: -50%;
    z-index: 9999;
}

.section-reviews .slick-active .card-review {
    width: 200%;
    max-height: initial;
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

@media (max-width: 1199px) {
    .section-reviews .slick-current .card-review {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        left: 0;
    }

    .section-reviews .slick-active .card-review {
        width: 100%;
        max-height: initial;
    }
}

.section-reviews .slick-prev,
.section-reviews .slick-next {
    width: 60px;
    height: 60px;
    z-index: 1;
}

.section-reviews .slick-prev:before,
.section-reviews .slick-next:before {
    color: #000;
    font-size: 60px;
}

.card-review {
    position: relative;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    -webkit-box-shadow: 0.1rem 0.5rem 3rem rgba(0, 0, 0, 0.8);
    box-shadow: 0.1rem 0.5rem 3rem rgba(0, 0, 0, 0.8);
    overflow: hidden;
    max-height: 360px;
}

@media (max-width: 1199px) {
    .card-review {
        max-height: initial;
    }
}

@media (max-width: 767px) {
    .card-review {
        padding: 20px;
        -webkit-box-shadow: 0.1rem 0.5rem 1rem rgba(0, 0, 0, 0.8);
        box-shadow: 0.1rem 0.5rem 1rem rgba(0, 0, 0, 0.8);
    }
}

.card-review__name {
    font-size: 30px;
    line-height: 1;
}

.card-review__city {
    font-size: 20px;
    line-height: 1;
}

.card-review__text {
    font-size: 20px;
}

.card-review__photo {
    display: block;
    float: right;
    width: 150px;
    height: 150px;
}

.card-review__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

@media (max-width: 767px) {
    .card-review__photo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        float: none;
        text-align: center;
    }
}

/*------------------------------------------------*/
/*----------------section-footer------------------*/
.section-footer {
    background: #fff;
}

.section-footer__img {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-radius: 20px;
    overflow: hidden;
}

.footer__form-control {
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.footer-form__btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.section-footer__links {
    position: relative;
    background: rgb(45, 45, 45);
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .section-footer__links {
        padding-top: 80px;
    }
}

.section-footer__links:before {
    content: '';
    position: absolute;
    height: 100px;
    width: 100%;
    top: 0;
    left: 50%;
    background: #fff;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: translate(-100%, -100%) rotate(-4deg);
    -ms-transform: translate(-100%, -100%) rotate(-4deg);
    transform: translate(-100%, -100%) rotate(-4deg);
}

.section-footer__links:after {
    content: '';
    position: absolute;
    height: 100px;
    width: 100%;
    top: 0;
    left: 50%;
    background: #fff;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: translate(0, -100%) rotate(4deg);
    -ms-transform: translate(0, -100%) rotate(4deg);
    transform: translate(0, -100%) rotate(4deg);
}

.footer-link {
    color: #fff;
}

.footer-link:hover {
    color: #fff;
    text-decoration: none;
}

.section-footer__phone {
    color: #e8bb51;
    padding: 5px 10px;
    border: 1px solid #e8bb51;
    border-radius: 5px;
}

.section-footer__phone:hover {
    color: #e8bb51;
    text-decoration: none;
}

/*------------------------------------------------*/

/*------------------MODALS------------------------*/
/*-----------------modal-back-call----------------*/
.modal-back-call {
    background: rgba(0, 0, 0, 1);
}

@media (min-width: 576px) {
    .modal-back-call {
        background: rgba(0, 0, 0, .3);
    }
}

.modal-dialog--custom {
    position: relative;
    top: 50px;
    margin: 0;
    height: 100%;
}

@media (min-width: 576px) {
    .modal-dialog--custom {
        top: initial;
        height: auto;
        margin: 0 auto;
    }
}

.modal-content--custom {
    border: 0;
    border-radius: 0;
    height: 100%;
}

.modal__menu-close {
    top: -50px;
    right: 5px;
}

@media (min-width: 576px) {
    .modal-content--custom {
        height: auto;
    }

    .modal__menu-close {
        top: 0;
        right: 0;
    }
}

.modal-body--custom {
    padding: 20px;
}

@media (min-width: 576px) {
    .modal-body--custom {
        padding: 40px 45px;
    }
}

.modal-back-call__title {
    color: #424242;
    font-size: 28px;
    line-height: 1.23;
    font-weight: 700;
    margin-bottom: 6px;
}

@media (min-width: 1600px) {
    .modal-back-call__title {
        font-size: 36px;
    }
}

.modal-back-call__subtitle {
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 14px;
}

.modal-back-call__form-group {
    margin-bottom: 20px;
}

.modal-back-call__form-control {
    border: none;
    border-radius: 0;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #757575;
    border-bottom: 1px solid #c9c9c9;
    padding: 22px 20px 10px 0;
}

.modal-back-call__form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal-back-call__form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #757575;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: .5;
}

.modal-back-call__form-control::-moz-placeholder { /* Firefox 19+ */
    color: #757575;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: .5;
}

.modal-back-call__form-control:-ms-input-placeholder { /* IE 10+ */
    color: #757575;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: .5;
}

.modal-back-call__form-control:-moz-placeholder { /* Firefox 18- */
    color: #757575;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: .5;
}

.form-control-label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-20%) scale(1);
    -ms-transform: translateY(-20%) scale(1);
    transform: translateY(-20%) scale(1);
    color: #757575;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: .5;
    -webkit-transition: transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    pointer-events: none;
}

.form-control-label.active {
    -webkit-transform: translateY(-130%) scale(.7);
    -ms-transform: translateY(-130%) scale(.7);
    transform: translateY(-130%) scale(.7);
}

#modal-back-call__privacy-policy {
    position: absolute;
    left: 9999px;
    visibility: hidden;

}

.checkbox {
    float: left;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    padding: 0;
    margin: 0 10px -5px 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e8bb51;
    opacity: .6;
}

#modal-back-call__privacy-policy:checked + .modal-back-call__checkbox-label > .checkbox {
    opacity: 1;
}

#modal-back-call__privacy-policy:checked + .modal-back-call__checkbox-label > .checkbox:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    color: #e8bb51;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.disclaimer {
    display: block;
    font-weight: 600;
    color: #757575;
    font-size: 12px;
    line-height: 1.55;
}

@media (min-width: 1600px) {
    .disclaimer {
        font-size: 14px;
    }
}

.modal-back-call__btn {
    padding: 11px 30px;
    margin-top: 0;
}

.disclaimer a {
    color: #e8bb51;
    text-decoration: underline;
}

.disclaimer a:hover {
    color: #e8bb51;
}

.text-decoration-underline {

}

.menu-close {
    position: absolute;
    z-index: 2;
    color: #e8bb51;
    font-size: 2rem;
    line-height: 1;
}

.menu-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
/*------------------------------------------------*/
/*--------------- #modal-sale --------------------*/
.modal-discount {
    width: 95%;
    max-width: 300px;
    background-color: rgba(0, 0, 0, .95);
    border-radius: 0 10px 10px 0;
    padding: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    transform: translateX(-110%);
    z-index: 1000;
    transition: all .5s ease-in-out;
}

.modal-discount.shown {
    transform: translateX(0);
}

.modal-discount__title {
    background-color: #e8bb51;
    border-radius: 0 10px 10px 0;
    font-size: 1.5em;
    margin-left: -20px;
    padding: 10px 20px;
}

.modal-discount__close {
    width: 30px;
    height: 30px;
    background-color: #000;
    border: 2px solid white;
    color: #fff;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.modal-discount__image {
    border-radius: 10px;
    overflow: hidden;
}
/*------------------------------------------------*/
