.bg-image {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('/wwwroot/img/blog/1.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
    filter: blur(80px);
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.662);
    z-index: -1;
}

.control-icons {
    position: absolute;
    z-index: 3;
    cursor: pointer;
    left: 82%;
    top: 2%;

}

.control-icons i {
    font-size: 24px;
    color: white;
}

.clickmore {
    display: none;
    position: fixed;
    z-index: 3;
    cursor: pointer;
    text-align: center;
    width: 100%;
    animation: mover 1s infinite alternate;
}

@keyframes mover {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

.clickmore a {
    color: white;
    font-size: 22px;
    font-weight: normal;
}

.clickmore.show {
    display: block;
}

.popup {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 5;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

.popup.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.carousel-inner {
    border-radius: 15px;
}

.carousel-item {
    transition: transform 0.5s ease;
    /* Change 0.5s to your desired duration */
}

.carousel-text {
    color: #ffffff;
    font-size: 15px;
    padding: 2% 3%;
    position: absolute;
    background: #0000005d;
    opacity: 0.75;
    top: 68%;
    width: 100%;
    text-align: center;
    line-height: normal;
}

.ads {
    position: relative;
    font-size: 11px;
    color: white;
    text-align: center;
    bottom: 33px;
    width: 100%;
    background: url('../../assets/img/800_hc.png');
    border-radius: 0 0 15px 15px;
    background: #00000011;
}

.ads1 {
    position: relative;
    font-size: 10px;
    color: white;
    text-align: center;
    bottom: 4vh;
    border-radius: 0 0 15px 15px;
    /* background: #00000011; */
    background: red;
    line-height: normal;
    padding: 2% 2%;
}

@keyframes buzz {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px) rotate(-5deg);
    }

    50% {
        transform: translateX(5px) rotate(5deg);
    }

    75% {
        transform: translateX(-5px) rotate(-7deg);
    }

    100% {
        transform: translateX(0);
    }
}

.buzz {
    animation: buzz 1s;
}

.carousel-control-prev,
.carousel-control-next {
    width: 30vw !important;
    z-index: 2;
}

.ai-content {
    transition: box-shadow 0.3s ease;
}

.ai-content:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.bg-image-desktop {
    position: relative;
    width: 100%;
    height: 65vh;
    margin-top: -12%;
    margin-bottom: 3%;
}

.wrap {
    width: 100%;
    overflow: hidden;
}

.ai-content {
    margin-top: 3%;
    margin-bottom: 2%;
    padding: 1%;
}

.sideBar {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 12%;
}

.quiz-content li {
    display: flex;
    align-items: center;
}

.quiz-content label {
    font-size: 16px;
    margin-left: 10px;
    margin-top: 1%;
}


/* switch into desktopview */
@media (min-aspect-ratio: 3/4) {
    .MobileView {
        /* display: none !important; */
    }
}

/* switch into mobileview */
@media(max-aspect-ratio: 3/4) {

    /* .desktopContainer {
        display: none !important;
    } */

    .mobileContainer {
        width: calc(100vh * 0.5);
        /* Adjust the width relative to height */
        min-height: 60vh;
        /* Minimum height to avoid being too small */
        max-height: 100vh;
        /* Maximum height to fit within most screens */
        height: auto;
        padding-top: 2%;
    }

    .mobileLogo {
        z-index: 5;
        position: absolute;
        left: 3%;
        top: 13px;
    }

    .carousel-control-prev-oval,
    .carousel-control-next-oval {
        width: 30vw;
        height: calc(100vh * .75);
        margin-top: 8%;
    }

    .carousel-control-prev-oval {
        border-bottom-right-radius: 30vw calc(100vh * .75 * .5);
        /* Adjust these values */
        border-top-right-radius: 30vw calc(100vh * .75 * .5);
        /* Adjust these values */
    }

    .carousel-control-next-oval {
        border-top-left-radius: 30vw calc(100vh * .75 * .5);
        /* Adjust these values */
        border-bottom-left-radius: 30vw calc(100vh * .75 * .5);
        /* Adjust these values */
        position: fixed;
    }
}