
body, html{
    overflow-x: hidden;
    overscroll-behavior: none;
    scroll-behavior: smooth;
}
.big{
    font-weight: bold;
}
.dropdown-toggle:after{
    display: none;
}

.headerContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50%;
    background-color: black;
}

.AdsSection{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin: auto;
    width: 80% !important;
    overflow: hidden;
}

/* Slideshow container */
.ads-slide {
    position: relative;
    width: 50%;
    height: 400px;
    overflow: hidden;
    max-width: 720px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

/* Individual slide styles */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-size: cover;
}

/* Slide backgrounds */
.slide-one {
    background-color: red;
}

.slide-two {
    background-color: green;
}

.slide-three {
    background-color: rgb(0, 34, 255);
}

/* Arrow button styles */
.arrow {
    display: flex;
    height: 30px;
    width: 30px;   
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    font-size: 18px;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}


.static-ad{
    display: flex;
    background-color: var(--AmasLinkColor);
    position: relative;
    width: 48%;
    max-width: 700px;
    height: 300px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
    background-size: cover;
    background-image: url('/assets/ad_space.png');
    
}
.navbar{
    position: sticky;
    top: 0;
}
.sponsored_ads{
    /* margin-top: 40px; */
    display: flex;
    /* background-color: black; */
    width: 100%;
    /* height: 500px; */
    max-height:400px; 
}

.fullpageAd{
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /* margin-top: 0px; */
    background-size: cover;
    /* background-color: #333; */
    /* border: 1px solid var(--AmasLinkColor); */
}
section{
    width: 100%;
}
.list_footer{
    width: 10%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.backgroundParent{
    background: white;
    width: 100%;
    -webkit-box-shadow: 1px 3px 20px -5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 3px 20px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 3px 20px -5px rgba(0, 0, 0, 0.3);
    /* overflow: hidden; */
}
#main-slider{
    overflow: hidden;
    border-radius: 0px;
    margin-top: 10px;
    height: 400px;
    width: 100%;
    /* margin: auto; */
}
.catCont{
    width: 90% !important;
}
.cat_cont{
    width: 100% !important;
    max-width: 100% !important;
}
.main-slider .single-slide{
    height: 100%;
}
.main-slider .single-slide .slider-content-wrap{
    height: 400px;
}
a:hover{
    text-decoration: none;
    color:inherit;
}

.fixed{
    position: fixed;
    
    top: 0;    
    z-index: -10;
}

.footer{
    margin-top: 0px;
}
.fullpageAd .inner{
    background-color: transparent;
    backdrop-filter: blur(10px);
    height: 100%;
}
.fullpageAd img{
    /* height: 100%; */
    width: 100%;
    /* max-width: 100%; */
    max-height:100%;
    /* object-fit:cover; */
    object-fit:scale-down;
}

@media screen and (max-width:240px), (max-width:360px), (max-width:480px), (max-width:720px), (max-width:1080px) {
    .AdsSection{
        padding: 10px;
        flex-direction: column;
        justify-content: flex-start;
        height: max-content;
        max-height: max-content;
    }
    #main-slider{
        margin-top: 80px;
        border-radius: 10px;        
    }
    .fullpageAd{
        width: 100%;
    }
    .fullpageAd img{
        height: 100%;
        /* width: 100%; */
        max-width: 100%;
        max-height:100%;
        object-fit:cover;
    }
    .ads-slide, .static-ad{
        margin: 10px;
        height: 300px;
    }
    .ads-slide{
        width: 90%;
    }
    .static-ad{
        width: 90%;
    }
}