.master {
    position: relative;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
    background: #0A0911;
    overflow: hidden;
    height: 620px;
}

.master_img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 578px;
    margin-top: 25px;
}

.master_offer {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translate(80%, -50%);
    -moz-transform: translate(80%, -50%);
    -ms-transform: translate(80%, -50%);
    -o-transform: translate(80%, -50%);
    transform: translate(80%, -50%);
    background: -webkit-gradient(linear, left top, left bottom, from(#2a2a30), to(#15151a));
    background: -webkit-linear-gradient(top, #2a2a30 0%, #15151a 100%);
    background: -moz-linear-gradient(top, #2a2a30 0%, #15151a 100%);
    background: -o-linear-gradient(top, #2a2a30 0%, #15151a 100%);
    background: linear-gradient(180deg, #2a2a30 0%, #15151a 100%);
    z-index: 10;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    text-align: left;
    border: 1px solid #d4af37;
    border-radius: 10px;
    width: 374px;
    height: 607px;
    overflow: hidden;
}

.offer-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.offer-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.offer-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    padding: 0 30px;
    z-index: 2;
    position: relative;
    margin-top: auto;
    padding-top: 350px;
}

.offer-text {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 30px;
    z-index: 2;
    position: relative;
}

.offer-btn {
    width: calc(100% - 60px);
    padding: 16px;
    background: transparent;
    border: 1px solid #d4a13a;
    border-radius: 8px;
    color: #d4a13a;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 0 30px 30px 30px;
    z-index: 2;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.offer-btn:hover {
    background: #d4a13a;
    color: #15151a;
}

.woman-card {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 374px;
    -ms-flex: 0 0 374px;
    flex: 0 0 374px;
    width: 374px;
    height: 578px;
    border-radius: 10px;
    overflow: hidden;
}

.woman-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .master_offer {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .master {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .master_offer {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        width: calc(100% - 32px);
        max-width: 374px;
        height: auto;
        min-height: 500px;
        margin: 0 auto 20px;
        z-index: 10;
    }

    .offer-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .offer-icon img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .offer-title {
        margin-top: auto;
        padding-top: 280px;
        font-size: 22px;
    }

    .offer-text {
        margin-bottom: 20px;
    }

    .offer-btn {
        margin-bottom: 24px;
    }

    .master_img {
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        height: auto;
        margin-top: 0;
        margin-bottom: 20px;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .master_img::-webkit-scrollbar {
        display: none;
    }
    
    .master_img {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .woman-card {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 150px;
        -ms-flex: 0 0 150px;
        flex: 0 0 150px;
        width: 150px;
        height: 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .offer-title {
        font-size: 20px;
        padding: 0 20px;
        padding-top: 260px;
    }

    .offer-text {
        font-size: 14px;
        padding: 0 20px;
    }

    .offer-btn {
        width: calc(100% - 40px);
        margin: 0 20px 20px 20px;
    }

    .woman-card {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 130px;
        -ms-flex: 0 0 130px;
        flex: 0 0 130px;
        width: 130px;
        height: 240px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .master_img {
        -webkit-overflow-scrolling: touch;
    }
    
    .woman-card {
        -webkit-scroll-snap-align: start;
        scroll-snap-align: start;
    }
}

@-moz-document url-prefix() {
    .master_img {
        scrollbar-width: none;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .master {
        height: auto;
        overflow: visible;
    }
    
    .master_offer {
        -ms-transform: translate(80%, -50%);
        transform: translate(80%, -50%);
    }
    
    .woman-card {
        -ms-flex: 0 0 374px;
        flex: 0 0 374px;
    }
}