/* Add custom CSS styles below */ 
      .swiper-container {
    margin-top: 100px;
}


        .fullscreen-loader {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transition-property: all;
            transition-duration: 700ms;
            transition-timing-function: cubic-bezier(.4,0,1,1);
            opacity: 100;
            z-index: 9999999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: rgb(31 31 44);
        }
        .fullscreen-loader img {
            height: 12rem;
            margin-top: -3rem;
        }
        .fullscreen-loader span {
            font-size: 1.875rem;
            line-height: 2.25rem;
            --tw-text-opacity: 1;
            color: #fff;
            color: rgba(255, 255, 255, var(--tw-text-opacity));
            font-weight: 600;
            
        }
        @media screen and (min-width: 768px) {
            .fullscreen-loader span {
                font-size: 2.25rem !important;
                line-height: 2.5rem !important;
            }
        }
        .loader-init {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgb(31 31 44);
            transition: opacity 0.75s, visibility 0.75s;
            z-index: 9999;
        }

        .loader-init--hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-init::after {
            content: "";
            width: 36px;
            height: 36px;
            border: 3px solid #eeeeeea3;
            border-top-color: #7529d1;
            border-radius: 50%;
            animation: loading 0.75s ease infinite;
        }

        @keyframes loading {
            from {
            transform: rotate(0turn);
            }
            to {
            transform: rotate(1turn);
            }
        }