/* html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
} */

.excitOff-full-container{
    overflow-x: hidden;
}

.excitOff-container {
    margin-top: 7%;
    position: relative;
    background-image: url('/assets/images/exciting-offer-img.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: black;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.excitOff-title{
    margin: 0;
    top: 7%;
    left: 10%;
    position: absolute;
}

.excitOff-logo{
    position: absolute;
    right: 5%;
    top: 2%;
    width: 25%;
}

.excitOff-mainContent{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.excitOff-para{
    margin: 0;
    font-size: 14px;
}

.excitOff-cardContent{
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.excitOff-card{
    position: relative;
    width: 25%;
}

.excitOff-headerCard{
    box-sizing: border-box;
    z-index: 1000;
    position: absolute;
    background: white;
    padding: 16px 0px;
    border-radius: 10px;
    width: 34%;
    bottom: 89%;
    left: 33%;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.excitOff-bodyCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 45vh;
    width: 100%;
    padding: 42px 26px;
    box-sizing: border-box;
    text-align: center;
    background: #F1EAED;
    border-radius: 57px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.excitOff-btn{
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #00000040;
    cursor: pointer;
    outline: none;
}

.excitOff-redeem{
    background: #E1FF00;
    opacity: 0.7;
    font-size: 15px;
}

.excitOff-starIcon-container{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.excitOff-cardContainer{
    display: flex;
    position: absolute;
    top: 37%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.fa{
    line-height: 3;
}

.excitOff-functionalBtn-mobile{
    display: none;
    justify-content: center;
    align-items: center;
}

.excitOff-icon-mobile.active { 
    content: url('../assets/activeIcon.svg'); 
}
.excitOff-icon-mobile.inactive { 
    content: url('../assets/inactiveIcon.svg'); 
}

.excitOff-CardSlideCount-mobile{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 18px;
    gap: 5px;
}

.excitOff-showSingleCard-mobile{
    display: none;
}

@media screen and (min-width: 2000px) and (max-width: 2600px) {
    .excitOff-headerCard{
        bottom: 94%;
    }
}

@media screen and (max-width: 1080px) {
    .excitOff-redeem{
        font-size: 12px;
    }
}

@media screen and (max-width: 800px){
    .excitOff-functionalBtn-mobile{
        display: flex;
    }
    .excitOff-container{
        margin-top: 18%;
    }
    .excitOff-title{
        font-size: 35px;
    }
    .excitOff-cardContainer{
        top: 20%;
        gap: 30px;
    }
    .excitOff-mainContent{
        display: none;
    }
    .excitOff-card{
        width: 50%;
    }
    .excitOff-showSingleCard-mobile{
        display: block;
        overflow: hidden;
    }
    .excitOff-dataCardsContainer-mobile{
        margin: 0 auto;
        width: 100%;
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .excitOff-dataCard-mobile{
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex: 0 0 100%;
    }
    .excitOff-bodyCard{
        height: 56vh;
    }
    .excitOff-btnContainer{
        margin-top: 2%;
    }
}

@media screen and (max-width: 500px){
    .excitOff-title{
        font-size: 26px;
        left: 4%;
    }
    .excitOff-cardContainer{
        top: 17%;
    }
    .excitOff-showSingleCard-mobile{
        width: 100%;
    }
    .excitOff-card {
        width: 80%;
    }
}

@media screen and (max-width: 376px){
    .excitOff-logo{
        width: 30%;
    }
    .excitOff-cardContainer{
        gap: 20px;
    }
}

@media screen and (max-width: 321px){
    .excitOff-title{
        top: 4%;
    }
    .excitOff-logo{
        top: 5%;
        width: 35%;
    }
    .excitOff-cardContainer{
        gap: 14px;
        top: 20%;
    }
}