@font-face {
    font-family: 'Anurati';
    font-style: normal;
    font-weight: 400;
    src: local('Anurati'), url('https://fonts.cdnfonts.com/s/14024/Anurati-Regular.woff') format('woff');
}

:root {
    --grid-column-gap: 20px;
    --split-left: #fae9b8;
    --split-right: #042242;
    --primary-color: #fff;
}

.h1-2025 {
    padding: 0;
    margin: 0;
    font-family: "Anurati", sans-serif;
}

#app {
    background: #0a0a0a;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(0, 0, 0, 0.9)), repeating-linear-gradient(0, transparent, transparent 2px, black 3px, black 3px), url(https://media0.giphy.com/media/2shBNJSPTrpWvoXfpD/giphy.gif);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#wrapper {
    text-align: center;
}

.submsg {
    color: #64dcdc;
    letter-spacing: 1em;
    font-family: "quicksand", sans-serif;
}

.submsg, .glitch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Our mixin positions a copy of our text
directly on our existing text, while
also setting content to the appropriate
text set in the data-text attribute. */
.glitch {
    position: relative;
    color: white;
    font-size: 4em;
    letter-spacing: 0.5em;
    /* Animation provies a slight random skew. Check bottom of doc
  for more information on how to random skew. */
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

    .glitch::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        left: 2px;
        text-shadow: -2px 0 #ff00c1;
        /* Creates an initial clip for our glitch. This works in
  a typical top,right,bottom,left fashion and creates a mask
  to only show a certain part of the glitch at a time. */
        clip: rect(44px, 450px, 56px, 0);
        /* Runs our glitch-anim defined below to run in a 5s loop, infinitely,
  with an alternating animation to keep things fresh. */
        animation: glitch-anim 5s infinite linear alternate-reverse;
    }

    .glitch::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        left: -2px;
        text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
        animation: glitch-anim2 1s infinite linear alternate-reverse;
    }


/* Creates an animation with 20 steaps. For each step, it calculates 
a percentage for the specific step. It then generates a random clip
box to be used for the random glitch effect. Also adds a very subtle
skew to change the 'thickness' of the glitch.*/
@keyframes glitch-anim {
    0% {
        clip: rect(14px, 9999px, 50px, 0);
        transform: skew(0.71deg);
    }

    5% {
        clip: rect(34px, 9999px, 73px, 0);
        transform: skew(0.21deg);
    }

    10% {
        clip: rect(34px, 9999px, 82px, 0);
        transform: skew(0.9deg);
    }

    15% {
        clip: rect(3px, 9999px, 74px, 0);
        transform: skew(0.41deg);
    }

    20% {
        clip: rect(100px, 9999px, 54px, 0);
        transform: skew(0.52deg);
    }

    25% {
        clip: rect(74px, 9999px, 67px, 0);
        transform: skew(0.52deg);
    }

    30% {
        clip: rect(92px, 9999px, 75px, 0);
        transform: skew(0.58deg);
    }

    35% {
        clip: rect(5px, 9999px, 67px, 0);
        transform: skew(0.72deg);
    }

    40% {
        clip: rect(85px, 9999px, 14px, 0);
        transform: skew(0.73deg);
    }

    45% {
        clip: rect(60px, 9999px, 18px, 0);
        transform: skew(0.11deg);
    }

    50% {
        clip: rect(5px, 9999px, 28px, 0);
        transform: skew(0.93deg);
    }

    55% {
        clip: rect(74px, 9999px, 95px, 0);
        transform: skew(0.82deg);
    }

    60% {
        clip: rect(55px, 9999px, 6px, 0);
        transform: skew(0.52deg);
    }

    65% {
        clip: rect(92px, 9999px, 51px, 0);
        transform: skew(0.83deg);
    }

    70% {
        clip: rect(6px, 9999px, 10px, 0);
        transform: skew(0.76deg);
    }

    75% {
        clip: rect(76px, 9999px, 95px, 0);
        transform: skew(0.39deg);
    }

    80% {
        clip: rect(14px, 9999px, 41px, 0);
        transform: skew(0.43deg);
    }

    85% {
        clip: rect(43px, 9999px, 56px, 0);
        transform: skew(0.65deg);
    }

    90% {
        clip: rect(50px, 9999px, 12px, 0);
        transform: skew(0.22deg);
    }

    95% {
        clip: rect(86px, 9999px, 45px, 0);
        transform: skew(0.98deg);
    }

    100% {
        clip: rect(72px, 9999px, 100px, 0);
        transform: skew(0.03deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(61px, 9999px, 51px, 0);
        transform: skew(0.01deg);
    }

    5% {
        clip: rect(65px, 9999px, 93px, 0);
        transform: skew(0.09deg);
    }

    10% {
        clip: rect(7px, 9999px, 90px, 0);
        transform: skew(0.88deg);
    }

    15% {
        clip: rect(49px, 9999px, 68px, 0);
        transform: skew(0.82deg);
    }

    20% {
        clip: rect(56px, 9999px, 9px, 0);
        transform: skew(0.46deg);
    }

    25% {
        clip: rect(10px, 9999px, 93px, 0);
        transform: skew(0.15deg);
    }

    30% {
        clip: rect(57px, 9999px, 36px, 0);
        transform: skew(0.84deg);
    }

    35% {
        clip: rect(83px, 9999px, 27px, 0);
        transform: skew(0.3deg);
    }

    40% {
        clip: rect(77px, 9999px, 35px, 0);
        transform: skew(0.81deg);
    }

    45% {
        clip: rect(50px, 9999px, 81px, 0);
        transform: skew(0.72deg);
    }

    50% {
        clip: rect(97px, 9999px, 4px, 0);
        transform: skew(0.86deg);
    }

    55% {
        clip: rect(34px, 9999px, 18px, 0);
        transform: skew(0.9deg);
    }

    60% {
        clip: rect(40px, 9999px, 60px, 0);
        transform: skew(0.41deg);
    }

    65% {
        clip: rect(25px, 9999px, 19px, 0);
        transform: skew(0.31deg);
    }

    70% {
        clip: rect(68px, 9999px, 61px, 0);
        transform: skew(0.74deg);
    }

    75% {
        clip: rect(33px, 9999px, 5px, 0);
        transform: skew(0.2deg);
    }

    80% {
        clip: rect(70px, 9999px, 45px, 0);
        transform: skew(0.6deg);
    }

    85% {
        clip: rect(50px, 9999px, 13px, 0);
        transform: skew(0.69deg);
    }

    90% {
        clip: rect(24px, 9999px, 55px, 0);
        transform: skew(0.6deg);
    }

    95% {
        clip: rect(25px, 9999px, 83px, 0);
        transform: skew(0.26deg);
    }

    100% {
        clip: rect(44px, 9999px, 67px, 0);
        transform: skew(0.91deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(-1deg);
    }

    10% {
        transform: skew(-2deg);
    }

    20% {
        transform: skew(1deg);
    }

    30% {
        transform: skew(3deg);
    }

    40% {
        transform: skew(-2deg);
    }

    50% {
        transform: skew(-1deg);
    }

    60% {
        transform: skew(0deg);
    }

    70% {
        transform: skew(-3deg);
    }

    80% {
        transform: skew(2deg);
    }

    90% {
        transform: skew(3deg);
    }

    100% {
        transform: skew(2deg);
    }
}

.carouselPre {
    grid-auto-flow: column;
    display: grid;
    grid-auto-columns: calc((100% - 3 * var(--grid-column-gap))/ 4);
    grid-column-gap: var(--grid-column-gap);
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    overflow-y: hidden;
    list-style: none;
    scroll-behavior: smooth;
}

#title {
    margin: 10px 10px 10px 0;
    font-size: 34px;
    font-weight: 600;
}

.topT {
    border-top: 1px solid rgb(212, 212, 212);
    padding: 10px 0;
    font-weight: 600;
    font-size: 20px;
}

.itemsC .textDet {
    position: absolute;
    bottom: 0;
    height: 60px;
    width: 100%;
    display: flex;
}

.contents {
    color: white;
}

.itemsC .contents p {
    -webkit-line-clamp: 3;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
    width: 90%;
    margin: auto;
}

.leftTxtDet {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 33px;
}

.itemsC {
    position: relative;
}

.scrolly {
    overflow: hidden;
}

.carouselPre li {
    scroll-snap-align: start;
    width: 100%;
    height: 100%;
    background-color: royalblue;
    list-style: none;
    border-radius: 20px;
    overflow: hidden;
}

    .carouselPre li .bgImg {
        width: 100%;
        height: 100%;
    }

    .carouselPre li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.scrolly {
    position: relative;
}

#left, #right {
    background-color: rgba(255, 255, 255, 0.9);
    outline: none;
    border: transparent;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 50%;
    transform: translate(0,-60%);
    cursor: pointer;
    z-index: 2;
}

#left {
    left: 0;
}

#right {
    right: 0;
}

@media only screen and (max-width: 890px) {
    .carouselPre {
        grid-auto-columns: calc((100% - 2 * var(--grid-column-gap))/ 3);
        height: 23rem;
    }
}

@media only screen and (max-width: 660px) {
    .carouselPre {
        grid-auto-columns: calc((100% - 1 * var(--grid-column-gap))/ 2);
        height: 25rem;
    }
}

@media only screen and (max-width: 440px) {
    .carouselPre {
        grid-auto-columns: 100%;
        height: 25rem;
    }
}


::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    border-left: #ededed solid 1px;
    background-color: #fcfcfc;
    border-top: #ededed solid 1px;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: #c7c7c7;
    width: 15px;
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    background-clip: content-box;
    border: 4px solid transparent;
    border-radius: 10px;
}

/*carousel future*/
#section-1 h1 {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

#section-1 h2 {
    font-family: Montserrat, sans-serif;
    font-size: 1.875em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

#section-1 h3 {
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
}

#section-1 h4 {
    font-size: 0.875em;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

#section-1 p {
    line-height: 150%;
    font-size: 0.9375em;
    color: #fff;
}

#section-1 li {
    list-style-type: none;
}

#section-1 a {
    text-decoration: none;
}

.bg-wrapper {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}

.section-header {
    padding-top: 5.625em;
    text-align: center;
}

    .section-header h3 {
        margin-bottom: 0.5em;
    }

    .section-header .line-red {
        margin: 2.5em auto 2.9375em auto;
    }

.line-red {
    display: block;
    width: 4em;
    height: 0.1875em;
    margin: 0 auto;
    background: #f38181;
}
/* Main Header Styles */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: #fff;
    background: transparent;
}

    .main-header .header-wrapper {
        display: block;
        width: 70%;
        margin: 0 auto;
        padding-top: 1em;
    }

        .main-header .header-wrapper .main-logo {
            float: left;
            font-weight: 700;
            font-size: 1.875em;
        }

        .main-header .header-wrapper .main-menu {
            float: right;
            text-align: center;
        }

            .main-header .header-wrapper .main-menu li {
                display: inline-block;
                padding: 0.75em 1.875em;
            }

                .main-header .header-wrapper .main-menu li a {
                    padding-bottom: 0.75em;
                    text-transform: uppercase;
                    color: #fff;
                    font-size: 0.875em;
                }

                    .main-header .header-wrapper .main-menu li a:hover {
                        color: #fff;
                        border-bottom: 0.1875em solid #fce38a;
                        transition: 0.1s;
                    }

                    .main-header .header-wrapper .main-menu li a span {
                        font-size: 1.2em;
                    }

                .main-header .header-wrapper .main-menu li:last-child {
                    padding: 0.75em 0;
                }

                    .main-header .header-wrapper .main-menu li:nth-child(6) a:hover,
                    .main-header .header-wrapper .main-menu li:last-child a:hover {
                        border: none;
                    }
/* Section-1 Styles */
#section-1 {
    height: 38em;
    color: #fff;
    background-color: #222;
}

    #section-1 .content-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

        #section-1 .content-slider input {
            display: none;
        }

        #section-1 .content-slider .slider {
            position: relative;
            width: inherit;
            height: inherit;
            overflow: hidden;
        }

            #section-1 .content-slider .slider .banner {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                z-index: 0;
                width: inherit;
                height: inherit;
                text-align: center;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                transition: all 0.5s ease;
            }

                #section-1 .content-slider .slider .banner .banner-inner-wrapper {
                    height: 100%;
                    padding-top: 6em;
                    background-image: linear-gradient(rgba(124, 103, 102, 0.9), rgba(50, 0, 91, 0.9));
                    box-sizing: border-box;
                }

                    #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
                        padding-bottom: 0.3em;
                        font-weight: 400;
                        font-size: 2.5em;
                        text-transform: none;
                    }

                    #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
                        font-size: 6em;
                        line-height: 95%;
                    }

                    #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
                        display: block;
                        width: 4em;
                        height: 0.1875em;
                        margin: 2.5em auto;
                        background: #fff;
                    }

                    #section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button {
                        padding-bottom: 5em;
                        z-index: 15 !important;
                    }

                        #section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a {
                            padding: 0.5em 2em;
                            text-align: center;
                            font-size: 0.875em;
                            color: #fff;
                            text-transform: uppercase;
                            border: 0.1875em solid #fff;
                        }

                            #section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
                                color: #fff;
                                border-color: #e88382;
                                transition: 0.3s;
                            }

            #section-1 .content-slider .slider #top-banner-1 {
                background: url('https://static.kanbantool.com/blog/how-to-introduce-kanban-to-your-team.jpg') no-repeat center center;
                background-size: cover;
            }

            #section-1 .content-slider .slider #top-banner-2 {
                background: url('') no-repeat center center;
                background-size: cover;
            }

            #section-1 .content-slider .slider #top-banner-3 {
                background: url('../img/txn-ebook.png') no-repeat center center;
                background-size: cover;
            }

            #section-1 .content-slider .slider #top-banner-4 {
                background: url('https://uwm.edu/news/wp-content/uploads/sites/41/2020/02/Grad_ZarandiRocket_BannerImage_1500x650_iStock-487797752.jpg') no-repeat center center;
                background-size: cover;
            }

            #section-1 .content-slider .slider #top-banner-5 {
                background: url('https://uwm.edu/news/wp-content/uploads/sites/41/2020/02/Grad_ZarandiRocket_BannerImage_1500x650_iStock-487797752.jpg') no-repeat center center;
                background-size: cover;
            }

            #section-1 .content-slider .slider #top-banner-6 {
                background: url('https://uwm.edu/news/wp-content/uploads/sites/41/2020/02/Grad_ZarandiRocket_BannerImage_1500x650_iStock-487797752.jpg') no-repeat center center;
                background-size: cover;
            }

        #section-1 .content-slider nav {
            position: absolute;
            bottom: 0.5em;
            width: 100%;
            z-index: 10;
            text-align: center;
        }

            #section-1 .content-slider nav .controls {
                display: block;
                width: 70%;
                margin: 0 auto;
                color: #fff;
            }

                #section-1 .content-slider nav .controls label {
                    position: relative;
                    display: inline-block;
                    width: 20%;
                    height: 3.1em;
                    overflow: hidden;
                    margin: 0 1em;
                    padding-top: 1em;
                    text-align: left;
                    text-transform: uppercase;
                    font-size: 1em;
                    color: #fff;
                    font-weight: 400;
                    cursor: pointer;
                    transition: all 0.3s;
                }

                    #section-1 .content-slider nav .controls label .progressbar {
                        position: absolute;
                        top: 0;
                        left: 0;
                        height: 3px;
                        width: 100%;
                        background: #f6eac5;
                        z-index: 100;
                    }

                        #section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
                            position: inherit;
                            width: inherit;
                            height: inherit;
                            margin-left: -100%;
                            background: #e88382;
                        }

                    #section-1 .content-slider nav .controls label span {
                        font-size: 1.4em;
                        font-weight: 700;
                    }

                    #section-1 .content-slider nav .controls label:hover {
                        color: #fff;
                    }

        #section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
        #section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
        #section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
        #section-1 .content-slider #banner4:checked ~ .slider #top-banner-4,
        #section-1 .content-slider #banner5:checked ~ .slider #top-banner-5,
        #section-1 .content-slider #banner6:checked ~ .slider #top-banner-6 {
            opacity: 1;
            z-index: 1;
        }

        #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
        #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
        #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
        #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4),
        #section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5),
        #section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) {
            cursor: default;
            color: #fff;
            transition: all 0.5s;
        }

            #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
            #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
            #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
            #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar,
            #section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar,
            #section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) .progressbar {
                background: #fff;
            }

            #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
            #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
            #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
            #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill,
            #section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar-fill,
            #section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) .progressbar-fill {
                animation: progressBarFill 5s linear;
            }


/* Animations */
@keyframes progressBarFill {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 0;
    }
}
/* Media Queries */
@media only screen and (min-width: 1920px) {
    #section-1 body {
        font-size: 22px;
    }

    .main-header .header-wrapper {
        width: 57%;
    }

    #section-1 {
        height: 46em;
    }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper {
            padding-top: 12em;
        }
}

@media only screen and (max-width: 1919px) {
    #section-1 body {
        font-size: 20px;
    }

    .main-header .header-wrapper {
        width: 60%;
    }

    #section-1 {
        height: 43em;
    }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper {
            padding-top: 11em;
        }
}

@media only screen and (max-width: 1680px) {
    #section-1 body {
        font-size: 18px;
    }

    .main-header .header-wrapper {
        width: 65%;
    }

    #section-1 {
        height: 40em;
    }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper {
            padding-top: 9em;
        }
}

@media only screen and (max-width: 1366px) {
    #section-1 body {
        font-size: 16px;
    }

    .main-header .header-wrapper {
        width: 70%;
    }
}

@media only screen and (max-width: 1120px) {
    .main-header .header-wrapper .main-menu li {
        padding: 0.75em 1.4em;
    }

    #section-1 {
        height: 35em;
    }

        #section-1 .content-slider nav {
            bottom: -0.2em;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper {
            padding-top: 7em;
        }

            #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
                margin: 2em auto;
            }
}

@media only screen and (max-width: 1024px) {
    body {
        font-size: 14px;
    }

    .main-header .header-wrapper .main-menu li {
        padding: 0.75em 1.3em;
    }

    #section-1 .content-slider nav {
        bottom: 0;
    }

        #section-1 .content-slider nav .controls {
            width: 80%;
        }
}

@media only screen and (max-width: 860px) {
    .main-header .header-wrapper .main-menu li {
        padding: 0.75em 0.9em;
    }

    #section-1 {
        height: 29em;
    }

        #section-1 .content-slider nav {
            bottom: -1em;
        }

            #section-1 .content-slider nav .controls {
                width: 90%;
            }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
            font-size: 2em;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
            font-size: 4.5em;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper {
            padding-top: 5em;
        }
}

@media only screen and (max-width: 768px) {
    .main-header .header-wrapper .main-menu li {
        padding: 0.75em 0.5em;
    }

    #section-1 {
        height: 27em;
    }

        #section-1 .content-slider nav .controls {
            width: 100%;
        }

            #section-1 .content-slider nav .controls label {
                width: 19%;
                font-size: 0.8em;
            }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
            margin: 1.7em auto;
        }
}

@media only screen and (max-width: 650px) {
    .main-header .header-wrapper {
        width: 95%;
    }
}

@media only screen and (max-width: 480px) {
    .main-header .header-wrapper {
        width: 97%;
    }

        .main-header .header-wrapper .main-logo {
            display: none;
        }

        .main-header .header-wrapper .main-menu li {
            padding: 0.2em 0.3em;
        }

            .main-header .header-wrapper .main-menu li:last-child,
            .main-header .header-wrapper .main-menu li:nth-child(6) {
                padding: 0.2em 0.7em;
            }

    #section-1 {
        height: 26em;
    }

        #section-1 .content-slider nav {
            bottom: -0.5em;
        }

            #section-1 .content-slider nav .controls label {
                width: 40%;
                font-size: 0.7em;
            }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
            font-size: 1.5em;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
            font-size: 3em;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
            margin: 1.7em auto;
        }
}


/*background color*/
.background-you {
    background: -moz-linear-gradient( 45deg, #02e1ba 0%, #26c9f2 29%, #d911f2 66%, #ffa079 100% );
    background: -webkit-linear-gradient( 45deg, #02e1ba 0%, #26c9f2 29%, #d911f2 66%, #ffa079 100% );
    background: linear-gradient( 45deg, #02e1ba 0%, #26c9f2 29%, #d911f2 66%, #ffa079 100% );
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
    /*min-height: calc(100vh - 2rem);*/
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    overflow: hidden;
    position: relative;
}

    .background-you::before,
    .background-you::after {
        content: "";
        width: 70vmax;
        height: 70vmax;
        position: absolute;
        background: rgba(255, 255, 255, 0.07);
        left: -20vmin;
        top: -20vmin;
        animation: morph 15s linear infinite alternate, spin 20s linear infinite;
        z-index: 1;
        will-change: border-radius, transform;
        transform-origin: 55% 55%;
        pointer-events: none;
    }

    .background-you::after {
        width: 70vmin;
        height: 70vmin;
        left: auto;
        right: -10vmin;
        top: auto;
        bottom: 0;
        animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
        transform-origin: 20% 20%;
    }

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }

    100% {
        border-radius: 40% 60%;
    }
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.st0 {
    display: none;
}

.st1 {
    display: inline;
}

.st2 {
    opacity: 0.29;
}

.st3 {
    fill: #ffffff;
}

.st4 {
    clip-path: url(#SVGID_2_);
    fill: #ffffff;
}

.st5 {
    clip-path: url(#SVGID_4_);
}

.st6 {
    clip-path: url(#SVGID_6_);
}

.st7 {
    clip-path: url(#SVGID_8_);
}

.st8 {
    clip-path: url(#SVGID_10_);
}

.st9 {
    fill: none;
}

.st10 {
    clip-path: url(#SVGID_12_);
}

.st11 {
    opacity: 0.7;
}

.st12 {
    clip-path: url(#SVGID_14_);
}

.st13 {
    opacity: 0.2;
}

.st14 {
    clip-path: url(#SVGID_16_);
}

.st15 {
    opacity: 0.3;
    fill: #ffffff;
    enable-background: new;
}

/*parallax header*/
.parallax-effect-container {
    height: 800px;
    overflow: hidden;
    display: block;
    background: black;
    margin-top: 0;
    margin-bottom: 200px;
    position: relative;
    overflow: hidden;
  }
  .parallax-effect-content {
    position: absolute;
    display: block;
    max-width: 100%;
    top: 50%;
    left: 0;
    padding: 16px;
    width: 100%;
    transform-style: flat;
    transform: translate3d(0,-50%,0);
  }
  .parallax-effect-image {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-attachment: fixed;
  }

  .gradient-text {
    /* Fallback: Set a background color. */
    background-color: red;
    
    /* Create the gradient. */
    background-image: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;
  
    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }
  

  .video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* ocupa a altura da tela */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-background video,
  .video-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
  }
  
  .video-background .conteudo {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
  }
  
  @media (max-width: 768px) {
    .video-background .conteudo h1 {
      font-size: 1.8rem;
    }
  
    .video-background .conteudo p {
      font-size: 1rem;
    }
  }

  
  /*Carousel text header*/
  
  .slider {
    border-radius: 0;
  }
.bg-wrapper {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(155, 146, 160, 0.8), rgba(109, 0, 109, 0.8));
}
.section-header {
  padding-top: 5.625em;
  text-align: center;
}
.section-header h3 {
  margin-bottom: 0.5em;
}
.section-header .line-red {
  margin: 2.5em auto 2.9375em auto;
}
.line-red {
  display: block;
  width: 4em;
  height: 0.1875em;
  margin: 0 auto;
  background: rgba(56, 2, 87, 0.8);
}
/* Main Header Styles */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: Montserrat, sans-serif;
  color: #fff;
  background: transparent;
}
.main-header .header-wrapper {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding-top: 1em;
}
.main-header .header-wrapper .main-logo {
  float: left;
  font-weight: 700;
  font-size: 1.875em;
}
.main-header .header-wrapper .main-menu {
  float: right;
  text-align: center;
}
.main-header .header-wrapper .main-menu li {
  display: inline-block;
  padding: 0.75em 1.875em;
}
.main-header .header-wrapper .main-menu li a {
  padding-bottom: 0.75em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875em;
}
.main-header .header-wrapper .main-menu li a:hover {
  color: #fff;
  border-bottom: 0.1875em solid #320036;
  transition: 0.1s;
}
.main-header .header-wrapper .main-menu li a span {
  font-size: 1.2em;
}
.main-header .header-wrapper .main-menu li:last-child {
  padding: 0.75em 0;
}
.main-header .header-wrapper .main-menu li:nth-child(6) a:hover,
.main-header .header-wrapper .main-menu li:last-child a:hover {
  border: none;
}
/* Section-1 Styles */
#section-1 {
  height: 38em;
  color: #fff;
  background-color: #fff;
}
#section-1 .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
#section-1 .content-slider input {
  display: none;
}
#section-1 .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}
#section-1 .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper {
  height: 100%;
  padding-top: 6em;
  background-image: linear-gradient(rgba(56, 2, 87, 0.8), rgba(109, 0, 109, 0.8));
  box-sizing: border-box;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
  padding-bottom: 0.3em;
  font-weight: 400;
  font-size: 2.5em;
  text-transform: none;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
  font-size: 6em;
  line-height: 95%;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
  display: block;
  width: 4em;
  height: 0.1875em;
  margin: 2.5em auto;
  background: #fff;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button {
  padding-bottom: 5em;
  z-index: 15 !important;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a {
  padding: 0.5em 2em;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 0.875em;
  color: #fff;
  text-transform: uppercase;
  border: 0.1875em solid #320036;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
  color: #fff;
  border-color: #320036;
  transition: 0.3s;
}
#section-1 .content-slider .slider #top-banner-1 {
  background: url("https://checkboxes-demo.webdevs.co.ua/images/mogo/banner-1.png") no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-2 {
  background: url("https://checkboxes-demo.webdevs.co.ua/images/mogo/banner-2.png") no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-3 {
  background: url("https://checkboxes-demo.webdevs.co.ua/images/mogo/banner-3.png") no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-4 {
  background: url("https://checkboxes-demo.webdevs.co.ua/images/mogo/banner-4.png") no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider nav {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
  z-index: 10;
  text-align: center;
}
#section-1 .content-slider nav .controls {
  display: block;
  width: 70%;
  margin: 0 auto;
  color: #fff;
  padding-bottom: 10px;
}
#section-1 .content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 20%;
  height: 3.1em;
  overflow: hidden;
  margin: 0 1em;
  padding-top: 1em;
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
  color: #320036;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
#section-1 .content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #fff;
  z-index: 100;
}
#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  background: #320036;
}
#section-1 .content-slider nav .controls label span {
  font-size: 1.4em;
  font-weight: 700;
}
#section-1 .content-slider nav .controls label:hover {
  color: #320036;
}
#section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
#section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
#section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
#section-1 .content-slider #banner4:checked ~ .slider #top-banner-4 {
  opacity: 1;
  z-index: 1;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar {
  background: #fff;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill {
  animation: progressBarFill 5s linear;
}
/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
/* Media Queries */
@media only screen and (min-width: 1920px) {
  body {
    font-size: 22px;
  }
  .main-header .header-wrapper {
    width: 57%;
  }
  #section-1 {
    height: 46em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 12em;
  }
}
@media only screen and (max-width: 1919px) {
  body {
    font-size: 20px;
  }
  .main-header .header-wrapper {
    width: 60%;
  }
  #section-1 {
    height: 43em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 11em;
  }
}
@media only screen and (max-width: 1680px) {
  body {
    font-size: 18px;
  }
  .main-header .header-wrapper {
    width: 65%;
  }
  #section-1 {
    height: 40em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 1366px) {
  body {
    font-size: 16px;
  }
  .main-header .header-wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 1120px) {
  .main-header .header-wrapper .main-menu li {
    padding: 0.75em 1.4em;
  }
  #section-1 {
    height: 35em;
  }
  #section-1 .content-slider nav {
    bottom: -0.2em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 7em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
    margin: 2em auto;
  }
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  .main-header .header-wrapper .main-menu li {
    padding: 0.75em 1.3em;
  }
  #section-1 .content-slider nav {
    bottom: 0;
  }
  #section-1 .content-slider nav .controls {
    width: 80%;
  }
}
@media only screen and (max-width: 860px) {
  .main-header .header-wrapper .main-menu li {
    padding: 0.75em 0.9em;
  }
  #section-1 {
    height: 29em;
  }
  #section-1 .content-slider nav {
    bottom: -1em;
  }
  #section-1 .content-slider nav .controls {
    width: 90%;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
    font-size: 2em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
    font-size: 4.5em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 5em;
  }
}
@media only screen and (max-width: 768px) {
  .main-header .header-wrapper .main-menu li {
    padding: 0.75em 0.5em;
  }
  #section-1 {
    height: 27em;
  }
  #section-1 .content-slider nav .controls {
    width: 100%;
  }
  #section-1 .content-slider nav .controls label {
    width: 19%;
    font-size: 0.8em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
    margin: 1.7em auto;
  }
}
@media only screen and (max-width: 650px) {
  .main-header .header-wrapper {
    width: 95%;
  }
}
@media only screen and (max-width: 480px) {
  .main-header .header-wrapper {
    width: 97%;
  }
  .main-header .header-wrapper .main-logo {
    display: none;
  }
  .main-header .header-wrapper .main-menu li {
    padding: 0.2em 0.3em;
  }
  .main-header .header-wrapper .main-menu li:last-child,
  .main-header .header-wrapper .main-menu li:nth-child(6) {
    padding: 0.2em 0.7em;
  }
  #section-1 {
    height: 26em;
  }
  #section-1 .content-slider nav {
    bottom: -0.5em;
  }
  #section-1 .content-slider nav .controls label {
    width: 40%;
    font-size: 0.7em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
    font-size: 1.5em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
    font-size: 3em;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
    margin: 1.7em auto;
  }
}

.image-border-gradient {
    display: inline-block;
    padding: 10px;
    background: linear-gradient(45deg, purple, rgb(83, 0, 83));
    border-radius: 20px; /* ou use 20px se quiser menos arredondado */
  }
  
  .image-border-gradient img {
    display: block;
    border-radius: 20px; /* igual ao contêiner para manter o efeito */
    width: 200px; /* ou o tamanho desejado */
    height: auto;
  }

.video-background-div {
    height: 100vh;
    position: relative;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background-div-content {
    position: relative;
    padding-top: 150px;
    color: #fff;
    text-align: center;
}

/*ERP integrations*/
.integration-card {
    border: 1px solid #4c1a72;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .integration-card > h6 {
        color: #501d5e;
        font-weight: bold;
    }
    .integration-card:hover {
        background: #896c8b;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

.integration-logo, .integration-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

    .integration-icon svg {
        width: 48px;
        height: 48px;
        fill: #4c1a72;
        transition: fill 0.2s;
    }

.integration-card:hover .integration-icon svg {
    fill: #fff;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 10px; /* espaço entre o ícone e o texto */
    color: #4c1a72;
    font-size: 1.75rem; /* opcional: ajusta o tamanho do texto */
}

    .icon-title svg {
        width: 32px;
        height: 32px;
        stroke: #4c1a72;
    }

    /*Video erp*/
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Proporção 16:9 */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*Partners carousel*/
.slider-partner {
    --totSlides: 7;
    --slideWidth: 200px;
    --slideHeight: 100px;
    --animationSpeed: calc(2s * var(--totSlides));
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: var(--slideHeight);
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .slider-partner .slides-track-partner {
        animation: scroll var(--animationSpeed) linear infinite;
        display: flex;
        width: calc(var(--slideWidth) * var(--totSlides) * 2);
    }

    .slider-partner .slide-partner {
        height: 100px;
        width: var(--slideWidth);
        filter: grayscale(100);
        overflow: hidden;
    }

        .slider-partner .slide-partner img {
            height: 80%;
            width: 80%;
            max-width: 100%;
            object-fit: contain;
            padding-right: 5px;
        }


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--slideWidth) * var(--totSlides) * -1));
    }
}
