/* Importing fonts */
@import url('https://fonts.cdnfonts.com/css/dynomite');


/* Wrapper for the banner */
.promo-container {
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
/* Main banner */
.promo-banner {
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    /* padding: 2vh;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); */
    z-index: 1;
    position: relative;
    border-radius: 16px;
}
 
.promo-content {
    color: white;
    /* text-shadow: 0.2vh 0.2vh 0.4vh rgba(0, 0, 0, 0.7); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 60px;
    max-width: 720px;
}

.promo-header {
    font-family: 'Dynomite', Arial, sans-serif;
    font-size: 56px;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, left bottom, from(#F61D7A), to(#FFC6D9));
    background: -o-linear-gradient(top, #F61D7A 0%, #FFC6D9 100%);
    background: linear-gradient(180deg, #F61D7A 0%, #FFC6D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-text-stroke: 1px transparent; */
    position: relative;
    letter-spacing: 1px;
    /* text-shadow: 0px 10px 28.6714px rgba(175, 31, 91, 0.8), 0px 15px 22.9371px rgba(0, 0, 0, 0.8); */
}
.promo-header:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#39001A), color-stop(135.06%, #A10E3A));
    background: -o-linear-gradient(top, #39001A 0%, #A10E3A 135.06%);
    background: linear-gradient(180deg, #39001A 0%, #A10E3A 135.06%);
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 9px;
    -webkit-text-fill-color: #fff6eb;
    /* background-color: #4e1fad; */
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    
}
.promo-header:after {
    text-shadow: 0px 10px 28.6714px rgba(175, 31, 91, 0.8), 0px 15px 22.9371px rgba(0, 0, 0, 0.8);
    content: attr(data-text);
    left: -2px;
    top: 2px;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
}
.promo-subtext {
    color: white;
    margin: 5px 0 24px 0;
}
.promo-content .btn-primary {
    min-width: 200px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
}
@media(min-width: 1400px)  {
    .promo-banner {
        background-size: cover;
    }
    .promo-header, .promo-subtext {
        position: relative;
    }
    .promo-subtext {
        top: -12px;
        margin-bottom: 10px !important;
    }
    .promo-header {
        top: -17px;
    }   
}
@media (min-width: 992px) and (max-width: 1399px)  {
    .promo-banner {
        background-size: contain;
    }   
}
@media (max-width: 767px) {
    .promo-header {
        font-size: 52px;
        display: block;
        width: 100%;
    }
    .promo-banner {
        background-position: top center;
        background-size: contain;
    }
    .promo-content {
        padding: 40px 15px;
        max-width: 340px;
        text-align: center;
        margin: 0 auto;
    }
    .promo-subtext {
        margin: 10px 0 35vh 0;
        font-size: 16px;
        line-height: 1.5;
        /* color: white; */
    }
    .promo-responsive-cta {
        background-image: url(../../../assets/images/promo-btn-bg.png);
        min-width: 170px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        line-height: 49px;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: bold;
        color: #4B0545;
        display: block;
        margin: 0 auto;
        min-height: 60px;
        padding-top: 2px;
        padding-left: 7px;
        text-align: center;
        position: relative;
        top: -65px;
        cursor: pointer;
        text-shadow: 0px 1px #4B0545;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .promo-content {
        padding: 30px;
        max-width: 62vw;
    }
    .promo-header {
        font-size: 40px;
    }
    .promo-subtext {
        margin: 5px 0 10px 0;
        font-size: 14px;
        line-height: 1.5;
    }
    .promo-banner {
        background-size: cover;
    }
}
@media (max-width: 991px) {
    .promo-content .btn-primary {
        line-height: 21px;
        font-size: 14px;
    }
    .promo-content br {
        display: none;
    }
}