@import url(layout.min.css);
html {
    font-size: 16px;
}

body {
    position: relative;
    background: linear-gradient(6deg, #f4eaf7, #b0f0ff);
    overflow-x: hidden;
    height: 100vh;
}

:root {
    --white: #ffffff;
    --black: #000;
    --theme-color: #6e00ff;
    --primary: #024922;
}

p {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.67;
    margin: 1.5rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
    position: relative;
}


/* Our wrapper */

#page {
    position: relative;
    overflow: hidden;
}

.wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


/* Our image information */

.before,
.after {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    border: 3px solid #ffffff;
}

.content-image {
    height: 100%;
}

.after {
    width: 125px;
}

.scroller {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.9;
    pointer-events: auto;
    cursor: pointer;
}

.scroller:hover {
    opacity: 1;
}

.scrolling {
    pointer-events: none;
    opacity: 1;
    z-index: 1;
}

.scroller__thumb {
    width: 100%;
    height: 100%;
    padding: 5px;
}

.scroller:before,
.scroller:after {
    content: " ";
    display: block;
    width: 4px;
    height: 280px;
    position: absolute;
    left: 50%;
    margin-left: -3.5px;
    z-index: 30;
    transition: 0.1s;
}

.scroller:before {
    top: 100%;
}

.scroller:after {
    bottom: 100%;
}


/* If you want to cahnge the colors, make sure you change the fill in the svgs to match */

.scroller {
    border: 5px solid #ffffff;
}

.scroller:before,
.scroller:after {
    background: #ffffff;
}

header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #6e00ff;
}

header {
    padding: 1rem 0;
}


/* .bannerSec {
  text-align: center;
} */

.bannerSec h4 {
    font-size: 4rem;
    text-transform: capitalize;
    color: #000;
}

.themeBtn {
    background: #6e00ff;
    padding: 1rem 3rem;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-right: 1rem;
}

.themeBtn:hover {
    color: #fff;
    background: #4900a8;
}

.upload-container {
    border: 2px dashed #6e00ff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    color: #6e00ff;
    width: 100%;
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.upload-container.dragover {
    border-color: #28a745;
}

#uploaded-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.drag-drop {
    border: 2px dashed #6e00ff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    color: #6e00ff;
    width: 50rem;
    height: 26rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.drag-drop p {
    font-size: 30px;
}

.drag-drop img {
    max-width: 100%;
    max-height: 100%;
}