html,
body {
    height: 100%;
    font-family: "Poppins",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #242424;
    font-weight: 700;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

p {
    font-size: 16px;
    color: #242424;
    line-height: 2;
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    border-start-start-radius: 50%;
    border-end-start-radius: 50%;
    overflow: hidden;
    /* background: #e1ddf8cc; */
}

.swiper-slide {
    opacity: 1;
    transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
    width: 336px !important;
    height: 840px;
}

.swiper-slide:not(.swiper-slide-active) {
    opacity: 0.5;
}

.mySwiper_small {
    height: clamp(250px, 55vw, 500px);
    padding: unset;
    border-radius: 0px;
    overflow: visible;
    margin-bottom: 50px;

    .swiper-slide {
        height: 100%;
        width: unset !important;

        img {
            height: 100%;
        }
    }

}

@media (max-width: 768px) {
    .site-logo h2,
    .site-logo p {
        line-height: unset;
    }
}

@media (max-width: 991px) {
    .mySwiper_small {
        display: block;
    }

    .mySwiper {
        display: none;
    }
}

@media (min-width: 992px) {
    .mySwiper {
        display: block;
    }

    .mySwiper_small {
        display: none;
    }
}

.main-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    @media (max-width:991px) {
        flex-direction: column;
    }
}

.left-region {
    width: 45%;
    height: 100vh;

    @media (max-width:991px) {
        width: 100%;
        height: fit-content;
    }
}

.right-region {
    width: 55%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width:991px) {
        width: 100%;
        height: fit-content;
    }
}


/* Left Side section */
.site-content-warp {
    position: relative;
    height: 100%;
    /* padding-top: 91px;
            padding-left: 614px; */
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.main-sidebar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .main-sidebar .mb-warp {
padding: clamp(40px, 8vw, 151px) clamp(30px, 6vw, 145px);
} */

.site-logo {
    display: block;
    /* margin-bottom: clamp(40px, 5vw, 80px); */
    padding: clamp(40px, 8vw, 151px) clamp(30px, 6vw, 145px) clamp(40px, 5vw, 80px) clamp(30px, 6vw, 145px);
    pointer-events: none;
}

.site-logo h2 {
    font-size: clamp(40px, 4vw, 100px);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 7px;
}

.site-logo p {
    font-size: 16px;
    text-transform: uppercase;
    color: #aaaaaa;
    letter-spacing: 2px;
    /* padding-left: 10px; */
    margin-bottom: 0;
}

.about-info {
    /* margin-bottom: clamp(40px, 5vw, 80px); */
    padding: 0 clamp(30px, 6vw, 145px) clamp(40px, 5vw, 80px) clamp(30px, 6vw, 145px);
    pointer-events: none;
}

.about-info h2 {
    font-size: clamp(20px, 3vw, 48px);
    margin-bottom: 40px;
    line-height: 1.1;
    font-family: "Poppins",
        sans-serif;
}

.about-info p {
    font-size: clamp(14px, 1.2vw, 16px);
}

/* buttons */
.site-btn-wrapper {
    padding: 0 clamp(30px, 6vw, 145px) clamp(40px, 8vw, 151px) clamp(30px, 6vw, 145px);
}

.site-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    min-width: 167px;
    padding: 19px 35px;
    text-transform: uppercase;
    color: #242424;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    border: 2px solid;
    border-image: linear-gradient(90deg, #8F92FF 0%, #D675E4 100%);
    border-image-slice: 1;
    background: transparent;
}

.site-btn:hover {
    color: #242424;
}

.site-btn img {
    margin-left: 15px;
}

.site-btn.sb-solid {
    background: #242424;
    border-color: #242424;
    color: #fff;
}

.site-btn.sb-solid:hover {
    color: #fff;
}

.site-btn.sb-dark {
    border-color: #242424;
}