    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap ital@1&display=swap');
    html {
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    body {
        background-color: black;
        font-family: "Poppins" !important;
        overflow-x: hidden;
    }

    model-viewer#reveal {
        --poster-color: transparent;
        height: 100vh;
        width: auto;
    }

    .navbar {
        background-color: #00000080 !important;
        z-index: 9;
        position:fixed !important;
        width:100%;
    }

    .portfolio-cotainer {
        margin-top: 10%;
    }

      
    .nav-anchor {
        color: white;
        border-top: .5px solid transparent;
        border-bottom: .5px solid transparent;
        transition: all .3s ease-in-out;
        font-weight: 700;
    }
    
    .nav-anchor:hover {
        color: #d2ad77;
        border-top: .5px solid #d2ad77;
        border-bottom: .5px solid #d2ad77;
    }
    
    .nav-Logo {
        color: #d2ad77;
        font-weight: 700;
    }
    
    .bannar {
        background-image: url("/Logo-Motion.gif");
        background-position: center;
        background-size: 60%;
        background-repeat: no-repeat;
        position: absulot;
    }
    
    h1 {
        color: #d2ad77;
        font-weight: 600;
    }
    
    .text-info {
        text-decoration: none;
        color: white !important;
    }
    
    .media-body {
        margin-bottom: 30px;
    }
    
    .mouse {
        width: 18px;
        height: 35px;
        background: #000000 linear-gradient(transparent 0%, transparent 50%, #d2ad77 50%, #d2ad77 100%);
        background-size: 100% 200%;
        border-radius: 100px;
        animation: colorSlide 4s linear infinite, nudgeMouse 4s ease-out infinite;
        cursor: pointer;
        margin-bottom: 10px;
    }
    
    .mouse:before,
    .mouse:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
    }
    
    .mouse-text {
        font-family: Cabin;
        letter-spacing: 12px;
        color: rgb(0, 0, 0);
        font-size: small;
        animation: colorText 4s ease-out infinite, nudgeText 4s ease-out infinite;
    }
    
    .mouse:before {
        width: 14px;
        height: 30px;
        background-color: #000000;
        border-radius: 100px;
    }
    
    .mouse:after {
        background-color: #d2ad77;
        width: 5px;
        height: 10px;
        border-radius: 100%;
        animation: trackBallSlide 4s linear infinite;
    }
    /* Animations */
    
    @keyframes colorSlide {
        0% {
            background-position: 0% 100%;
        }
        20% {
            background-position: 0% 0%;
        }
        21% {
            background-color: #000000;
        }
        29.99% {
            background-color: #d2ad77;
            background-position: 0% 0%;
        }
        30% {
            background-color: #000000;
            background-position: 0% 100%;
        }
        50% {
            background-position: 0% 0%;
        }
        51% {
            background-color: #000000;
        }
        59% {
            background-color: #d2ad77;
            background-position: 0% 0%;
        }
        60% {
            background-color: #000000;
            background-position: 0% 100%;
        }
        80% {
            background-position: 0% 0%;
        }
        81% {
            background-color: #000000;
        }
        90%,
        100% {
            background-color: #d2ad77;
        }
    }
    
    @keyframes colorText {
        21% {
            color: #000000;
        }
        30% {
            color: #d2ad77;
        }
        51% {
            color: #000000;
        }
        60% {
            color: #d2ad77;
        }
        81% {
            color: #000000;
        }
        90% {
            color: #d2ad77;
        }
    }
    
    @keyframes trackBallSlide {
        0% {
            opacity: 1;
            transform: scale(1) translateY(-20px);
        }
        6% {
            opacity: 1;
            transform: scale(0.9) translateY(5px);
        }
        14% {
            opacity: 0;
            transform: scale(0.4) translateY(40px);
        }
        15%,
        19% {
            opacity: 0;
            transform: scale(0.4) translateY(-20px);
        }
        28%,
        29.99% {
            opacity: 1;
            transform: scale(1) translateY(-20px);
        }
        30% {
            opacity: 1;
            transform: scale(1) translateY(-20px);
        }
        36% {
            opacity: 1;
            transform: scale(0.9) translateY(5px);
        }
        44% {
            opacity: 0;
            transform: scale(0.4) translateY(40px);
        }
        45%,
        49% {
            opacity: 0;
            transform: scale(0.4) translateY(-20px);
        }
        58%,
        59.99% {
            opacity: 1;
            transform: scale(1) translateY(-20px);
        }
        60% {
            opacity: 1;
            transform: scale(0.9) translateY(-20px);
        }
        66% {
            opacity: 1;
            transform: scale(0.9) translateY(5px);
        }
        74% {
            opacity: 0;
            transform: scale(0.4) translateY(40px);
        }
        75%,
        79% {
            opacity: 0;
            transform: scale(0.4) translateY(-20px);
        }
        88%,
        100% {
            opacity: 1;
            transform: scale(1) translateY(-20px);
        }
    }
    
    @keyframes nudgeMouse {
        0% {
            transform: translateY(0);
        }
        20% {
            transform: translateY(8px);
        }
        30% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(8px);
        }
        60% {
            transform: translateY(0);
        }
        80% {
            transform: translateY(8px);
        }
        90% {
            transform: translateY(0);
        }
    }
    
    @keyframes nudgeText {
        0% {
            transform: translateY(0);
        }
        20% {
            transform: translateY(2px);
        }
        30% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(2px);
        }
        60% {
            transform: translateY(0);
        }
        80% {
            transform: translateY(2px);
        }
        90% {
            transform: translateY(0);
        }
    }
    
    .header-text {
        place-self: end;
    }
    
    .to-top {
        background: linear-gradient(to right, #8c5619, #d2ad77);
        position: fixed;
        z-index: 9;
        bottom: 16px;
        left: 10px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #ffffff;
        text-decoration: none;
        opacity: 0;
        pointer-events: none;
        transition: all .4s;
    }
    
    .to-top.active {
        bottom: 32px;
        pointer-events: auto;
        opacity: 1;
        color: white;
        text-decoration: none;
    }

    .whatsapp {
        display:none
    }
    .instagram {
        display:none
    }
    .linkedin {
        display:none
    }
    .behance {
        display:none
    }
    .side-nav {
        position: fixed;
        width: 60px;
        margin-top: 150px;
        transition: all 0.3s linear;
        z-index: 9;
    }
    
    .side-nav ul {
        margin-top: 0;
        margin-bottom: 0rem
    }
    
    .side-nav li {
        height: 45px;
        position: relative
    }
    
    .side-nav li a {
        color: #fff !important;
        display: block;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        height: 100%;
        width: 100%;
        line-height: 45px;
        padding-left: 25%;
        border-bottom: 1px solid rgba(0, 0, 0, .4);
        transition: all .3s linear;
        text-decoration: none !important
    }
    
    .side-nav li:nth-child(1) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li:nth-child(2) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li:nth-child(3) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li:nth-child(4) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li:nth-child(5) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li:nth-child(6) a {
        background: linear-gradient(to right, #8c5619, #d2ad77);
    }
    
    .side-nav li a i {
        position: absolute;
        top: 14px;
        left: 24px;
        font-size: 15px
    }
    
    .side-nav ul li a span {
        display: none;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase
    }
    
    .side-nav ul li a:hover {
        z-index: 1;
        width: 170px;
        border-bottom: 1px solid rgba(0, 0, 0, .5);
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3)
    }
    
    .side-nav ul li:hover a span {
        padding-right: 0%;
        display: block;
        font-size: 15px
    }
    .li-logo {
        width: 80px;
        margin-top: -10px;
    }
    
    .text-box {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .hero-btn {
        display: inline;
        text-decoration: none;
        color: #d2ad77;
        border: 1.2px solid #d2ad77;
        padding: 9px 34px;
        font-size: medium;
        background: transparent;
        position: initial;
        cursor: pointer;
        border-radius: 5px;
        transition: all .5s ease-out;
    }
    
    .hero-btn:hover {
        border: 1px solid #8c5619;
        background: linear-gradient(to right, #8c5619, #d2ad77);
        transition: 0.5s;
        text-decoration: none;
        color: white;
    }
    
    .hero-btn2 {
        display: inline;
        text-decoration: none;
        color: #d2ad77;
        font-size: medium;
        background: transparent;
        position: initial;
        cursor: pointer;
        transition: all .5s ease-out;
    }
    
    .hero-btn2:hover {
        color: #d2ad77;
        opacity: 0.85;
        text-decoration: none;
    }
    
    .menu-icon {
        background-image: url("/menu.svg") !important;
        border: none !important;
    }
    
    .mob-logo {
        display: none;
    }
    
    .main-sec {
        margin-bottom: 200px;
    }
    
    .fs-18 {
        font-size: 18px;
    }
    
    .testimonial {
        color: white;
        height: 400px;
        position: relative;
    }
    
    .orange-text {
        color: #d2ad77;
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }
    
    .Testimonials-text {
        color: #d2ad77;
    }
    
    .rounded-circle {
        border-top-left-radius: 50px !important;
        border-bottom-right-radius: 150px !important;
        block-size: 100px;
    }
    
    .slide-div {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg {
        background-image: url("/img-Blouse/1-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-1 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-1 {
        background-image: url("/img-Dantelle-Boutique/13-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-2 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-2 {
        background-image: url("/img-Dar-hadramout/2-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-3 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-3 {
        background-image: url("/imgs-zadanisa/1-cover-min.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-4 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-4 {
        background-image: url("/img-Quick-money/cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-5 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-5 {
        background-image: url("/img-Embanda/1-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-6 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-6 {
        background-image: url("/img-Baptiste-Wine/6-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-7 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-7 {
        background-image: url("/img-Golden-date/8-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-8 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-8 {
        background-image: url("/img-power-of-hope/4-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-9 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-9 {
        background-image: url("/img-Empire/cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-10 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-10 {
        background-image: url("/img-IKL/1-cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div-11 {
        width: 355px;
        height: 255px;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .image-bg-11 {
        background-image: url("/img-Within-earth/1-cover.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: all .2s ease-in-out;
    }
    
    .slide-div:hover .image-bg {
        transform: scale(1.2);
    }
    
    .slide-div-1:hover .image-bg-1 {
        transform: scale(1.2);
    }
    
    .slide-div-2:hover .image-bg-2 {
        transform: scale(1.2);
    }
    
    .slide-div-3:hover .image-bg-3 {
        transform: scale(1.2);
    }
    
    .slide-div-4:hover .image-bg-4 {
        transform: scale(1.2);
    }
    
    .slide-div-5:hover .image-bg-5 {
        transform: scale(1.2);
    }
    
    .slide-div-6:hover .image-bg-6 {
        transform: scale(1.2);
    }
    
    .slide-div-7:hover .image-bg-7 {
        transform: scale(1.2);
    }
    
    .slide-div-8:hover .image-bg-8 {
        transform: scale(1.2);
    }
    
    .slide-div-9:hover .image-bg-9 {
        transform: scale(1.2);
    }
    
    .slide-div-10:hover .image-bg-10 {
        transform: scale(1.2);
    }
    
    .slide-div-11:hover .image-bg-11 {
        transform: scale(1.2);
    }
    
    .owl-carousel .owl-nav.disabled {
        display: block !important;
    }
    
    .owl-prev {
        position: absolute;
        top: 40%;
        left: -55px;
        display: block !important;
        border: 0px solid black;
        opacity: .7;
    }
    
    .owl-next {
        position: absolute;
        top: 40%;
        right: -55px;
        display: block !important;
        border: 0px solid black;
        opacity: .7;
    }
    
    .owl-carousel .owl-stage {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .owl-carousel .caption {
        text-align: center;
    }
    
    .container-fluid-footer {
        overflow: hidden;
        background: linear-gradient(to right, #8c5619, #d2ad77);
        color: rgba(255, 255, 255, 0.699) !important;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    small {
        font-size: calc(12px + (15 - 12) * ((100vw - 360px) / (1600 - 360))) !important
    }
    
    .bold-text {
        color: white !important
    }
    
    .mt-55 {
        margin-top: calc(50px + (60 - 50) * ((100vw - 360px) / (1600 - 360))) !important
    }
    
    h3 {
        font-size: calc(34px + (40 - 34) * ((100vw - 360px) / (1600 - 360))) !important
    }
    
    .social {
        font-size: 21px !important
    }
    
    .rights {
        font-size: calc(10px + (12 - 10) * ((100vw - 360px) / (1600 - 360))) !important
    }
    
    .container-about {
        background-image: url(/head-animaton.gif);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
    }
    
    .container-services {
        background-image: url(/Text-Motion.gif);
        background-repeat: no-repeat;
        background-size: 50%;
        background-position: center center;
        width: 100%;
        height: 100%;
    }
    
    .container-blouse {
        background-image: url(/img-Blouse/1-motion.gif);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100%;
        height: 80vh;
    }
    
    .container-dantelleboutique {
        background-image: url(/img-Dantelle-Boutique/1.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100%;
        height: 80vh;
    }
    
    .container-zadanisa {
        background-image: url(/imgs-zadanisa/1-motion.gif);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100%;
        height: 80vh;
    }
    
    .container-darhadramout {
        background-image: url(/img-Dar-hadramout/1.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100%;
        height: 80vh;
    }
    
    .container-goldendate {
        background-image: url(/img-Golden-date/1-motion.gif);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        width: 100%;
        height: 80vh;
    }
    
    hr.style1 {
        border-top: 1px solid #d2ad77;
    }
    
    .img-fit-size {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.384);
        overflow: hidden;
        width: 100%;
        height: 0;
        transition: .5s ease;
    }
    
    .col-lg-12 {
        position: relative;
    }
    
    .col-lg-12:hover .overlay {
        height: 20%;
    }
    
    .col-lg-6 {
        position: relative;
    }
    
    .col-lg-6:hover .overlay {
        height: 20%;
    }
    
    .col-lg-4 {
        position: relative;
    }
    
    .col-lg-4:hover .overlay {
        height: 20%;
    }
    
    .overlay-text {
        color: white;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        font-weight: bold;
    }
    
    .footer-logo {
        height: 100%;
        width: 100%;
        margin-left: -25px;
        margin-top: -25px;
    }
    
    @media(max-width: 991px) {
        .li-logo {
            display: none;
        }

        .bannar {
            background-image: url("/Logo-Motion.gif");
            background-position: center;
            background-size: 80%;
            background-repeat: no-repeat;
            font-size: x-small;
        }

        .mob-logo {
            display: block;
            width: 70px;
        }
        .header-text {
            display: none;
        }
        .portfolio-cotainer {
            margin-top: 15%;
        }
    }
    
    @media(max-width: 420px) {
        .bannar {
            background-image: url("/Logo-Motion.gif");
            background-position: center;
            background-size: 150%;
            background-repeat: no-repeat;
            font-size: x-small;
        }
        h1 {
            font-size: 1.5rem;
        }
        .footer-logo {
            height: 100%;
            width: 100%;
            margin-left: 0;
            margin-top: 0;
        }

       
    }
    
    @media(max-width: 480px) {
        .side-nav {
            display: none;
        }
        .portfolio-cotainer {
            margin-top: 30%;
        }

        .whatsapp {
            background: linear-gradient(to right, #8c5619, #d2ad77);
            position: fixed;
            z-index: 9;
            bottom: 16px;
            padding: 5px;
            right: 10px;
            width: 50px;
            height: 50px;
            border-radius: 50px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            align-items: center;
            font-size: 25px;
            color: #ffffff;
            text-decoration: none;
            opacity: 0;
            pointer-events: none;
            transition: all .4s;
        }
        
        .whatsapp.active {
            bottom: 35px;
            pointer-events: auto;
            opacity: 1;
            color: white;
            text-decoration: none;
        }
        
        .slide-div {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg {
            background-image: url("/img-Blouse/1-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-1 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-1 {
            background-image: url("/img-Dantelle-Boutique/13-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-2 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-2 {
            background-image: url("/img-Dar-hadramout/2-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-3 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-3 {
            background-image: url("/imgs-zadanisa/1-cover-min.png");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-4 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-4 {
            background-image: url("/img-Quick-money/cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-5 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-5 {
            background-image: url("/img-Embanda/1-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-6 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-6 {
            background-image: url("/img-Baptiste-Wine/6-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-7 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-7 {
            background-image: url("/img-Golden-date/8-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-8 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-8 {
            background-image: url("/img-power-of-hope/4-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-9 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-9 {
            background-image: url("/img-Empire/cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-10 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-10 {
            background-image: url("/img-IKL/1-cover.jpg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .slide-div-11 {
            width: 100%;
            height: 255px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-bg-11 {
            background-image: url("/img-Within-earth/1-cover.png");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
            width: 100%;
            height: 100%;
            transition: all .2s ease-in-out;
        }
        .fa-2x {
            font-size: 1.5rem !important;
        }
    }
    
    @media(min-width: 1200px) {
        .footer-logo {
            height: 60%;
            width: 60%;
            margin-left: 0;
            margin-top: 0;
        }
    }