*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* font-family: 'Delicious Handrawn', cursive;
font-family: 'Inter', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Rufina', serif; */

body{
    /* overflow-x: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s  ease;
    background-color: rgb(246, 244, 235);
    user-select: none;
    font-family: "Poppins", sans-serif;
}

.dark{
    background-color: rgb(19, 18, 18);
}

button, .link, .clickable{
    cursor: pointer;
}

::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}

.container{
    background-color: rgb(246, 244, 235);
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition-property: transform, background-color;
    transition-duration: 0.5s, 0s;
    transition-timing-function: ease, ease;
}

.dark .container{
    background-color: rgb(19, 18, 18);
}

.nav-bar, .mobile-nav-bar, .menu, .scroll-bar{
    position: fixed;
    display: none;
}

.nav-bar{
    display: flex;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100vw;
    justify-content: center;
    align-items: center;
    padding: 0 10vw;
    transition: all 0.5s ease;
    /* overflow: hidden; */
}

.scrolled .nav-bar{
    transform: translateY(20px);
}

.nav-bar .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    transition: all 0.25s ease;
    padding: 20px;
    border-radius: 100px;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 100px transparent;
}


.scrolled .nav-bar .content{
    background-color: rgba(255, 98, 0, 0.804);
    box-shadow: 0px 0px 100px rgba(33, 15, 0, 0.333);
}

.dark.scrolled .nav-bar .content{
    background-color: transparent;
}

.nav-bar .content .links-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-bar .links-holder .link{
    padding: 15px 20px;
    background-color: transparent;
    border-radius: 100px;
    transition: all 0.5s ease;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    /* font-family: 'Delicious Handrawn', cursive;
font-family: 'Inter', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Rufina', serif; */
    font-size: 18px;
    color: rgb(49, 26, 1);
    opacity: 0.7;
    border: 2px solid transparent;
}

.dark .nav-bar .links-holder .link{
    color: #fff;
}

.nav-bar .links-holder .link:hover{
    background-color: orange;
    color: #fff;
    opacity: 1;
}

.nav-bar .links-holder .link.active{
    background-color: orange;
    color: #fff;
    opacity: 1;
}


.scrolled .nav-bar .links-holder .link{
    background-color: transparent;
    color: #fff;
}


.scrolled .nav-bar .links-holder .link:hover{
    background-color: #fff;
    opacity: 1;
    color: rgb(49, 26, 1);
}

.scrolled .links-holder .link.active{
    opacity: 1;
    color: rgb(49, 26, 1);
    background-color: #fff;
}

.scrolledx .nav-bar .content{
    transform: translateY(-200%);
}

.dark .nav-bar .links-holder .link.active{
    background-color: transparent;
    border: 2px solid orange !important;
    color: #fff !important;
}

.dark .nav-bar .links-holder .link:hover{
    background-color: transparent;
    border: 2px solid orange !important;
    color: #fff !important;
}

.nav-bar .hamburger{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgb(255, 98, 0);
    border: 3px solid #180000;
    z-index: 2;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(200%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.nav-bar .hamburger:hover .contentx{
    transform: scale(0);
}

.nav-bar .hamburger .contentx{
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 100px;
    transition: all 0.5s ease;
}


.nav-bar .hamburger .contentx::before{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 98, 0);
    border-radius: 50%;
    animation: ripple 1s ease forwards infinite alternate;
}

@keyframes ripple {
    0%{
        transform: scale(1);
        opacity: 0.7;
    }
    100%{
        transform: scale(2);
        opacity: 0;
    }
}

.nav-bar .hamburger .dot{
    width: 7px;
    height: 7px;
    background-color: rgb(255, 98, 0);
    border-radius: 100px;
    display: none;
}

.nav-bar .hamburger i{
    font-size: 25px;
    position: absolute;
    z-index: 1;
}

.scrolledx .nav-bar .hamburger{
    transform: translateY(0);
    opacity: 1;
}

.scrolledx .nav-bar:hover .content{
    transform: translateY(0);
}

.scrolled .nav-bar:hover .hamburger{
    transform: translateY(200%);
    opacity: 0;
}

.nav-bar .dark-toggle{
    transition: all 0.5s ease;
    width: 40px;
    height: 40px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    color: #000;
    border-radius: 100px;
    transition: all 0.5s ease;
}

.scrolled .nav-bar .dark-toggle{
    background-color: #000;
    color: #fff;
}

.dark .nav-bar .dark-toggle{
    color: #fff !important;
    background-color: transparent !important;
}

.nav-bar .logo{
    padding: 20px;
    transition: all 0.5s ease;
}

.scrolled .nav-bar .logo{
    color: #fff;
}

.mobile-nav-bar{
    top: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 0 10px;
    transition: all 0.5s ease;
    width: 60px;
    height: 60px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0px 0px 100px transparent;
}

.mobile-nav-bar:hover{
    background-color: #000;
}

.mobile-nav-bar .bar{
    width: 60%;
    height: 8px;
    border-radius: 100px;
    background-color: rgb(255, 98, 0);
    transition: all 0.5s ease;
    position: absolute;
}

.mobile-nav-bar .bar:first-child{
    top: 15px;
}

.mobile-nav-bar .bar:last-child{
    bottom: 15px;
}

.show-menu .mobile-nav-bar .bar:first-child{
    transform: rotate(45deg);
    top: 26px;
}

.show-menu .mobile-nav-bar .bar:last-child{
    transform: rotate(-45deg);
    bottom: 25px;
}

.scrolled .mobile-nav-bar{
    background-color: #000b;
}

.show-menu .mobile-nav-bar{
    background-color: #000;
    box-shadow: 0px 0px 20px #0004;
}

.show-menu .mobile-nav-bar .bar{
    background-color: #fff;
}

.logox{
    display: none;
}
@media screen and (max-width: 1000px) {
    .nav-bar{
        display: none;
    }

    .mobile-nav-bar{
        display: flex;
    }

    .logox{
        display: flex;
    }
}

.backdrop{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.scroll-bar{
    transition: all 0.5s ease;
    z-index: 9 !important;
}

.show-menu .scroll-bar{
    opacity: 0;
}

.show-menu .backdrop{
    opacity: 1;
    visibility: visible;
}

.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 40px; */
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    z-index: 19;
    background-color: #000;
    /* background-color: #391a03; */
    color: #fff;
    flex-direction: column;
    transition: all 0.5s ease;
    gap: 3vh;
    transform: translateY(-100%);
    overflow: hidden;
    /* max-width: 300px; */
}

.show-menu .menu{
    transform: translateY(0);
}

.menu .dark-toggle{
    color: #fff;
    position: absolute;
    top: 17px;
    left: 17px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    transition: all 0.5s ease;
    transform: translateX(0);
    cursor: pointer;
}

@media screen and (max-width: 699px) {
    .menu .dark-toggle{
        transform: translateX(41vw);
        width: 10vw;
        font-size: 21px;
    }

    .scrolled .menu .dark-toggle{
        transform: translateX(0);
    }
}

.menu .links{
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vh;
}

.menu .link{
    color: #fff;
    /* background-color: rgb(48, 18, 0); */
    padding: 20px ;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    font-size: 21px;
    font-family: "Montserrat", sans-serif;
    /* font-family: 'Delicious Handrawn', cursive;
font-family: 'Inter', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Rufina', serif; */
    transition: all 0.5s ease;
    text-decoration: none;
    opacity: 0;
}

.show-menu .menu .link{
    opacity: 1;
}

.menu .link:hover{
    color: orange;
}

.menu .link.active{
    color: orange;
}

.menu .options{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: inherit;
    border-radius: 100px;
    gap: 20px;
    position: absolute;
    bottom: 0;
    padding: 30px 0;
}

.menu .options a,.menu .options div{
    color: #fff;
    padding: 20px;
    font-size: 25px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.menu .options a:hover, .menu .options div:hover{
    opacity: 0.4;
}

@media screen and (min-width: 700px) {
    .menu{
        width: 500px;
        right: 0;
        transform: translateY(0);
        transform: translateX(100%);
    }

    .backdrop{
        backdrop-filter: blur(0px);
    }

    .show-menu .container{
        transform: none;
        transform: translateX(-500px);
    }

    .show-menu{
        overflow: hidden;
    }

    .show-menu .menu{
        transform: none;
        transform: translateX(0);
    }
}

.home{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10vw;
    gap: 100px;
    width: 100vw;
    overflow-x: hidden;
    max-width: 1400px;
    position: relative;
    min-height: 820px;
    max-height: 1200px;
    background-size: cover;
    background-image:linear-gradient(rgb(246, 244, 235), rgba(246, 244, 235, 0.96)) ,url(./img/crypto.jpg);
    background-size: 100vw;
    background-attachment: fixed;
    border-radius: 70px;
}

.dark .home{
    background-color: rgb(19, 18, 18);
    background-image: linear-gradient(rgb(19, 18, 18), rgba(19, 18, 18, 0.8)), url(./img/home-dark.jpg);
    background-size: 120vh;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.logox{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    /* overflow: hidden; */
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    display: none;
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 30;
    transform: scale(1.1);
}

.dark .logox{
    filter: invert();
}

.show-menu .logox{
    filter: invert();
}

.scrolled .logox{
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 1000px) {
    .logox{
        display: flex;
    }
}

@media screen and (min-width: 700px) {
    .show-menu .logox{
        opacity: 0;
        visibility: hidden;
        filter: invert(0);
    }
}

.logox h1{
    position: absolute;
    font-family: monospace;
    text-transform: capitalize;
    font-size: 17px;
    transform: translate(3px, -1px);
}

.logox img{
    width: 100%;
}

.home .left{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* text-align: left; */
}

.home .left h1{
    /* font-family: monospace; */
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    /* font-family: monospace; */
    color: rgb(26, 17, 0);
    font-weight: 600;
}



.dark .home .left h1{
    color: #fff;
}

.home .left h3{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 70vw;
    color: rgb(49, 26, 1);
    display: none;
}

/* font-family: 'Delicious Handrawn', cursive;
font-family: 'Inter', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Rufina', serif; */

.dark .home .left h3{
    color: #fffd;
}

.home .left p{
    margin: 20px 0;
    font-size: 25px;
    color: rgba(49, 26, 1, 0.705);
    line-height: 40px;
    max-width: 500px;
    text-align: center;
}

.dark .home .left p{
    color: rgb(255, 247, 238);
    opacity: 0.8;
}

.dark .shape{
    background-color: rgba(255, 166, 0, 0.143);
}

.home .left a{
    background-color: orange;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px 0px rgb(255, 98, 0);
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.home .left a:hover{
    transform: translate(-7px, -7px);
    box-shadow: 8px 8px 0px 0px rgb(255, 98, 0);
}

.home .left a i{
    transition: all 0.5s ease;    
}

.home .left a:hover i{
    transform: rotate(360deg);
}

.home .right{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home .right img{
    width: 100%;
    max-width: 700px;
    min-width: 400px;
    transition: all 0.5s ease;
}

#gold-coin.anim{
    animation: spin-coin 1s ease forwards;
}

@keyframes spin-coin {
    0%{

    }

    50%{
        opacity: 0;
    }
    
    100%{
        transform: rotate(360deg);
    }
}

/* .preloader{
    display: none !important;
} */


.home .bottom{
    position: absolute;
    bottom: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.home .bottom a{
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: rgb(255, 98, 0);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(7, 1, 0, 0.378);
    transition: all 0.5s ease;
}

.home .bottom a:hover{
    background-color: #000;
    transform: rotate(360deg);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.612);
}

.home .bottom a:first-child{
    background-color: rgb(77, 77, 201);
}

.home .bottom a:nth-child(2){
    background-color: rgb(69, 123, 69);
    font-size: 27px;
}

.home .bottom a:nth-child(3){
    background-color: rgb(67, 188, 236);
}

.home .bottom a:nth-child(4){
    background-color: rgb(142, 23, 84);
    color: gold;
    font-size: 28px;
}

.show-menu .container{
    overflow: hidden !important;
}

.show-menu{
    overflow: hidden !important;
}

@media screen and (max-width: 1000px) {
    .home .right{
        height: max-content;
        width: max-content;
        /* background-color: red; */
        /* display: none; */
    }

    .home{
        min-height: 100vh;
    }
    
    .home .right img{
        width: 300px;
        height: 300px;
        min-width: 100px;
        /* background-color: red; */
        border-radius: 200px;
    }
    
    .home .left{
        /* background-color: red; */
        height: fit-content;
    }
    
    .home{
        gap: 50px;
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding: 100px 10vw 70px 10vw;
    }

    .home .bottom{
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .home .left p{
        font-size: 19px;
        width: 70vw;
        line-height: 30px;
    }

    .home{
        gap: 20px;
        padding: 70px 10vw;
        height: fit-content;
        min-height: 100px;
    }
    
    .home .right img{
        width: 270px;
        height: 270px;
    }
    
    .home .bottom{
        transform: scale(0.9);
    }
    
    .home .left h1{
        font-size: 45px;
    }

    .home .left h3{
        font-size: 22px;
        line-height: 30px;
    }

    .logox{
        transform: scale(1);
    }

    .home .left a{
        padding: 20px 30px;
        font-size: 20px;
    }
}

@media screen and (max-height: 1000px) and (max-width: 1000px) {
    .home{
        gap: 20px;
        padding: 70px 10vw;
        height: fit-content;
        min-height: 100px;
    }
}

@media screen and (min-height: 1000px) and (max-width: 1000px) {
    .home{
        gap: 20px;
        padding: 70px 10vw;
        height: fit-content;
        min-height: 100px;
    }
}

.shape{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: orange;
    transform: rotate(45deg);
}

.about{
    padding: 100px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
    overflow-x: hidden;
    max-width: 1400px;
}

.about .cont{
    display: flex;
    gap: 70px;
    flex-direction: column;
}

.about h1{
    margin-bottom: 25px;
    font-size: 40px;
    color: rgb(26, 17, 0);
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.dark .about h1{
    color: #fff;
}

.about .shape{
    margin-bottom: 30px;
}

.about .ideas{
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.about .ideas img{
    width: 250px;
}

.about .content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.about p{
    /* line-height: 25px; */
    color: rgba(49, 26, 1, 0.705);
    max-width: 80vw;
    font-size: 25px;
    line-height: 40px;
}

.about .content p:nth-child(2){
    font-weight: 1000;
    font-size: 40px;
    line-height: 50px;
    margin: 20px 0;
    color: rgb(49, 26, 1);
    font-family: monospace;
}

.dark .about .content p:nth-child(2){
    color: #fff;
}


.dark .about p{
    color: rgb(253, 241, 226);
    opacity: 0.8;
}

.features{
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features h3{
    font-size: 28px;
    line-height: 40px;
    color: rgb(49, 26, 1);
    margin-bottom: 30px;
    font-weight: 500;
}

.dark .features h3{
    color: rgb(249, 248, 244);
}

.features .features-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    padding: 50px 0;
}


.features .features-holder.hidden{
    transform: none;
    opacity: 1;
}


.features .features-holder .feature{
    width: 450px;
    height: 300px;
    padding: 0 30px;
    background-color: orange;
    background-image: linear-gradient(orange, rgba(255, 166, 0, 0.912)), url(./img/doodle.jpg);
    background-size: cover;
    color: #fff;
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    position: relative;
    /* transition-property: transform, opacity;
    transition-duration: 0.5s, 1s;
    transition-timing-function: ease, ease; */
    transition: all 1s ease;
    box-shadow: 0px 0px rgb(255, 98, 0);
}

.feature::after{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    content: "i";
    position: absolute;
    z-index: 2;
    top: -13px;
    font-size: 18px;
    font-family: monospace;
    font-weight: 600;
}

.dark .feature::after{
    color: rgb(19, 18, 18);
}

.feature:nth-child(1)::after{
    content: "i";
}

.feature:nth-child(2)::after{
    content: "ii";
    transform: scale(0.8);
}

.feature:nth-child(3)::after{
    content: "iii";
    transform: scale(0.7);
}

.feature:nth-child(4)::after{
    content: "iv";
    transform: scale(0.8);
}

.feature:nth-child(5)::after{
    content: "v";
    transform: scale(1);
}

.features .features-holder .feature:hover{
    box-shadow: 5px 5px rgb(255, 98, 0);
    transform: translate(-5px, -5px) !important;
}

.dark .features .features-holder .feature::before{
    border-color: rgb(19, 18, 18);
}

.dark .features .features-holder .feature{
    box-shadow: 0px 0px 0px #0000;
}

.dark .features .features-holder .feature:hover{
    box-shadow: 0px 0px 0px #0000;
    transform: translateY(-20px) !important;
}

.hidden.feature{
    opacity: 0;
    transform: translateY(50px);
}

.hidden.show.feature{
    opacity: 1;
    transform: translateY(0);
}

.features .features-holder .feature::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    /* border-radius: 100px; */
    background-color: rgb(255, 98, 0);
    border: 8px solid rgb(250, 243, 234);
    top: -25px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.features .features-holder .feature:hover::before{
    transform: rotate(-135deg);
    border-radius: 50%;
}
.features .feature h2{
    font-size: 27px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0.5px;
    font-family: "Raleway", sans-serif;
    margin-bottom: 5px;
}

.dark .features .feature h2{
    color: #000;
}

.features .feature span{
    font-size: 18px;
    line-height: 24px;
}

.dark .features .feature span{
    color: #000;
    opacity: 0.8;
}

@media screen and (max-width: 700px) {

    .features .features-holder .feature{
        width: 400px;
        padding: 0 30px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .features .features-holder .feature::before{
        width: 30px;
        height: 30px;
        transform: rotate(45deg);
    }

    .features .feature h2{
        font-size: 23px;
        line-height: 27px;
    }

    .features .feature span{
        font-size: 18px;
        line-height: 25px;
    }

    .features{
        width: 100%;
    }

    .features p{
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .features .features-holder .feature{
        width: 80vw;
        height: 350px;
    }

    .features h1{
        font-size: 35px !important;
    }

    .features h3{
        font-size: 23px;
        margin-bottom: 10px;
    }

    .features .feature span{
        font-size: 17px;
    }
}

.preloader{
    display: none !important;
}

.about a{
    background-color: orange;
    padding: 20px 30px;
    color: #fff;
    border-radius: 100px;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: bold;
    border: none;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    margin-top: 40px;
    box-shadow: 5px 5px 0px 0px rgb(255, 98, 0);
}

.about a:hover{
    transform: translate(-5px, -7px);
    box-shadow: 8px 8px 0px 0px rgb(255, 98, 0);
}

.about a i{
    transition: all 0.5s ease;
}

.about a:hover i{
    transform: rotate(360deg);
}

@media screen and (max-width: 1000px) {
    .about{
        /* flex-direction: column-reverse; */
        justify-content: flex-start;
        z-index: 1;
        position: relative;
    }

    .about .cont{
        flex-direction: column;
        gap: 60px;
    }

    .about .ideas{
        flex-direction: row;
    }

    .about .video{
        background-color: #ccc;
        max-width: 500px;
        border-radius: 30px;
        padding: 150px 0;
    }
}

@media screen and (max-width: 450px) {
    .about h1{
        font-size: 40px;
    }

    .about{
        padding: 30px 10vw 70px 10vw;
    }

    .about .ideas img:first-child{
        display: none !important;
    }
    
    .about .ideas img:last-child{
        margin-top: 30px;
        width: 55vw;
    }

    .about p{
        /* width: 75vw; */
        width: 100%;
        min-width: 100px;
        font-size: 19px;
        line-height: 30px;
    }

    .about .content p:nth-child(2){
        font-size: 30px;
        line-height: 40px;
    }

    .about a{
        font-size: 20px;
        padding: 20px 25px;
    }
}

.screenshots{
    padding: 20px 50px 50px 20vw;
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
    background-color: rgb(246, 244, 235);
}

.dark .screenshots{
    background-color: rgb(19, 18, 18);
}

.screenshots::-webkit-scrollbar{
    width: 0px;
    height: 10px;
}

.screenshots::-webkit-scrollbar-track{
    background-color: rgb(49, 26, 1);
    border-radius: 100px;
}

.screenshots::-webkit-scrollbar-button{
    height: 0px;
    width: 5vw;
}

.screenshots::-webkit-scrollbar-thumb{
    background-color: orange;
    border-radius: 100px;
}

.screenshots::-webkit-scrollbar-thumb:hover{
    background-color: rgb(255, 98, 0);
    border-radius: 100px;
}

.screenshot{
    width: 300px;
    min-width: 300px;
    padding: 0 30px;
    /* transition: all 0.5s ease; */
}

.hidden.screenshot{
    transform: none;
    opacity: 0;
    visibility: visible !important;
    transform: scale(0.8);
}

.hidden.show.screenshot{
    transform: scale(1);
    opacity: 1;
    visibility: visible !important;
}

.screenshot:hover{
    transform: translateY(-20px) !important;
}

.screenshots img{
    width: 100%;
}

h1.screens{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

h1.screens img{
    width: 40px;
    margin-left: 15px;
}

h1.screens img:last-child{
    width: 40px;
    margin-left: 7px;
}

.dark .screenshots::-webkit-scrollbar-track{
    background-color: #362c2c;
}

@media screen and (min-width: 1300px) {
    .screenshots{
        overflow-x: hidden !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0 50px 0;
    }
}

@media screen and (max-width: 600px) {
    .screenshots{
        padding: 20px 100px 50px 100px;
        gap: 50px;
    }

    .screenshot{
        width: 200px;
        min-width: 200px;
        padding: 0;
    }

    .hidden.screenshot{
        transform: none;
        opacity: 0;
    }
}

.shape.x{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgb(249, 248, 244);
    background-color: rgb(246, 244, 235);
    border-color: rgb(26, 17, 0);
    border-width: 3px;
    transform: rotate(45deg);
}

.dark .shape.x{
    background-color: rgb(19, 18, 18);
}

.shape.x.hidden{
    transform: rotate(45deg);
}

.shape.x::after{
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: inherit;
    border-radius: inherit;
    background-color: inherit;
}

.shape.x::before{
    content: "";
    position: absolute;
    width: 60vw;
    height: 3px;
    background-color: rgb(26, 17, 0);
    transform: rotate(-45deg);
    z-index: -1;
    border-radius: 50%;
    transition: all 2s ease;
    max-width: 1300px;
}

.dark .shape.x::after{
    border-color: rgb(246, 244, 235);
}

.dark .shape.x::before{
    background-color: rgb(246, 244, 235);
}

.shape.x.hidden::before{
    width: 0px;
}

.shape.x.hidden.show{
    transform: rotate(45deg);
}

.shape.x.hidden.show::before{
    width: 60vw;
}

.waitlist{
    padding: 100px 10vw 50px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.waitlist h1{
    font-size: 40px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    color: rgb(26, 17, 0);
    line-height: 50px;
}

.dark .waitlist h1{
    color: #fff;
}

.waitlist p{
    font-size: 25px;
    color: rgb(49, 26, 1);
    line-height: 40px;
}

.dark .waitlist p{
    color: rgb(246, 244, 235);
    opacity: 0.8;
}

@media screen and (max-width: 450px) {
    .waitlist h1{
        font-size: 35px;
    }

    .waitlist p{
        font-size: 20px;
    }
}

#mc_embed_signup{
    width: 80vw !important;
    background-color: rgb(246, 244, 235) !important;
    max-width: 500px !important;
}

#mc_embed_signup h2{
    font-size: 35px !important;
    color: rgb(49, 26, 1) !important;
    font-family: "Raaleway", sans-serif !important;
    text-align: center !important;
}

#mc_embed_signup .mc-field-group input{
    background-color: #fff;
    border: none !important;
    padding: 15px !important;
    font-size: 20px !important;
    border-radius: 20px !important;
    margin-top: 5px;
    margin-bottom: 20px !important;
    outline: none !important;
    transition: all 0.5s ease !important;
}

#mc_embed_signup .helper_text{
    display: none !important;
}

#mc_embed_signup .button{
    background-color: orange !important;
    padding: 15px 20px !important;
    height: fit-content !important;
    width: fit-content !important;
    font-size: 20px !important;
    letter-spacing: 0.7px !important;
    font-family: "Raleway", sans-serif !important;
    border-radius: 20px !important;
    box-shadow: 3px 3px rgb(255, 98, 0);
    transition: all 0.5s ease !important;
    margin-top: 20px !important;
}

#mc_embed_signup .button:hover{
    box-shadow: 6px 6px rgb(255, 98, 0);
    transform: translate(-3px, -3px);
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
    background-color: transparent !important;
}

#mc_embed_signup .brandingLogo{
    opacity: 0 !important;
    visibility: hidden !important;
}

@media screen and (max-width: 450px) {
    #mc_embed_signup h2{
        font-size: 25px !important;
        color: rgb(49, 26, 1) !important;
        font-family: "Raaleway", sans-serif !important;
        text-align: center !important;
    }

    #mc_embed_signup .button{
        background-color: orange !important;
        padding: 10px 20px !important;
        height: fit-content !important;
        width: fit-content !important;
        font-size: 17px !important;
        letter-spacing: 0.7px !important;
        font-family: "Raleway", sans-serif !important;
        border-radius: 20px !important;
        box-shadow: 3px 3px rgb(255, 98, 0);
        transition: all 0.5s ease !important;
        margin-top: 20px !important;
    }
    
    #mc_embed_signup .button:hover{
        box-shadow: 6px 6px rgb(255, 98, 0);
        transform: translate(-3px, -3px);
    }
}

.dark #mc_embed_signup{
    background-color: transparent !important;
}

.dark #mc_embed_signup h2{
    color: #fff !important;
}

.dark #mc_embed_signup .mc-field-group label{
    color: rgb(246, 244, 235) !important;
    opacity: 0.8 !important;
}

.dark #mc_embed_signup .mc-field-group input{
    background-color: #fff3 !important;
    color: #fff !important;
}

.dark #mc_embed_signup .mc-field-group input:is(:hover,:focus){
    background-color: #fff !important;
    color: #000 !important;
}

.dark #mc_embed_signup .indicates-required{
    color: rgb(246, 244, 235) !important;
    opacity: 0.8 !important;
}

.hiring{
    display: none;
}

.contact{
    background-color: orange;
    width: 100%;
    padding: 50px 10vw 100px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 30px;
    background-image:linear-gradient(rgba(255, 166, 0, 0.824), orange), url(./img/doodle.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    transition: all 0.5s ease;
}

.dark .contact{
    background-image: linear-gradient(rgba(19, 18, 18, 0.867), rgb(19, 18, 18)), url(./img/dark-contact.jpg);
}

.contact h1{
    font-size: 45px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.contact .shape{
    background-color: #fffc;
}

.dark .contact .shape{
    background-color: transparent;
}

.contact p{
    color: #fff;
    width: 70vw;
    max-width: 600px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 25px;
    line-height: 40px;
}

.dark .contact p{
    color: rgb(250, 243, 234);
}

.contact form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact form input, .contact form textarea{
    width: 300px;
    padding: 25px;
    min-width: 500px;
    max-width: 500px;
    max-height: 200px;
    min-height: 30px;
    border-radius: 10px;
    border: none;
    background-color: #fffa;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transition-property: background-color, color;
    transition-duration: 0.5s, 0.5s;
    transition-timing-function: ease, ease;
    outline: none;
    color: rgb(49, 26, 1);
    backdrop-filter: blur(5px);
    font-family: sans-serif;
    font-size: 20px;
    overflow: hidden;
}

.dark .contact form input, .dark .contact form textarea{
    background-color: #fff1;
    border: 2px solid transparent;
    color: bisque;
}

.contact form textarea{
    backdrop-filter: blur(5px);
    height: 150px;
    min-height: 100px;
    overflow-y: scroll;
}

.contact form button{
    padding: 30px;
    background-color: rgb(255, 98, 0);
    border: none;
    border-radius: 10px;
    box-shadow: 3px 3px 0px #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.contact form button:is(:hover, :focus){
    box-shadow: 7px 7px 0px #000;
    transform: translate(-7px, -7px);
}

.contact form input:nth-child(2){
    text-transform: capitalize;
}

.contact .info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
    color: red;
    position: absolute;
    bottom: 50px;
    width: 80vw;
    opacity: 0.5;
    transition: all 0.5s ease;
    font-size: 20px;
    width: 70vw;
    line-height: 30px;
    max-width: 600px;
    min-width: 250px;
}

.contact .info:hover{
    opacity: 1;
}

.contact form :is(input:hover, textarea:hover, input:focus, textarea:focus){
    background-color: #fff;
}

.dark .contact form :is(input:hover, textarea:hover, input:focus, textarea:focus){
    background-color: rgb(255, 248, 239);
    color: rgb(26, 17, 0);
}

@media screen and (max-width: 650px) {
    .contact form input, .contact form textarea{
        width: 70vw;
        padding: 25px;
        min-width: 70vw;
        max-width: 70vw;
        max-height: 200px;
        min-height: 30px;
        border-radius: 10px;
        border: none;
        background-color: #fffa;
        border-right: 3px solid #000;
        border-bottom: 3px solid #000;
        transition: all 0.5s ease;
        outline: none;
        color: rgb(49, 26, 1);
        backdrop-filter: blur(5px);
        font-family: sans-serif;
        font-size: 19px;
    }
    
    .contact form{
        margin-bottom: 40px;
    }
    
}

@media screen and (max-width: 450px) {
    .contact h1{
        font-size: 40px;
    } 
    
    .contact p{
        font-size: 20px;
        line-height: 30px;
        width: 100%;
    }

    .contact form input, .contact form textarea{
        width: 70vw;
        padding: 20px;
        min-width: 70vw;
        max-width: 70vw;
        max-height: 200px;
        min-height: 30px;
        border-radius: 10px;
        border: none;
        background-color: #fffa;
        border-right: 3px solid #000;
        border-bottom: 3px solid #000;
        transition: all 0.5s ease;
        outline: none;
        color: rgb(49, 26, 1);
        backdrop-filter: blur(5px);
        font-family: sans-serif;
        font-size: 16px;
    }

    .contact form button{
        font-size: 15px;
        padding: 20px;
    }

    .contact .info{
        width: 80vw;
        font-size: 18px;
        line-height: 25px;
    }
}




.scroll-bar{
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    z-index: 11;
    display: flex;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.scroll-bar .item{
    width: 15px;
    height: 15px;
    background-color: orange;
    border: 2px solid tomato;
    border-radius: 100px;
    transition: all 1s ease;
    opacity: 0.7;
}

.scroll-bar .item:hover{
    opacity: 1;
    cursor: pointer;
}

.scroll-bar .item.active{
    height: 50px;
    opacity: 1;
}

.contactx .scroll-bar .item{
    background-color: red;
    background-color: rgba(255, 0, 51, 0.778);
    border: 2px solid transparent;
    backdrop-filter: invert();
}

.contactx .scroll-bar .item.active{
    background-color: rgba(255, 0, 51, 0.778);
    border: 2px solid transparent;
}

@media screen and (max-width: 500px) {
    .scroll-bar{
        transform: scale(0.7);
        padding: 7px;
    }

    .scroll-bar .item{
        height: 15px;
        width: 15px;
    }

    .scroll-bar .item.active{
        width: 15px;
        height: 60px;
    }

    .footer .footer-links{
        transform: scale(0.7);
        gap: 30px;
    }

    .contact{
        background-size: 100vh;
    }
}

.shape{
    border: 2px solid rgb(255, 98, 0);
}

.logo{
    /* background-color: red; */
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    color: #000;
}
.dark .logo{
    filter: invert();
}

.logo img{
    width: 50px;
}

.logo p{
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    transform: translate(3px, -2.7px);
    transition: all 0.5s ease;
}

.scrolled .logo{
    filter: invert();
}

.scrolled .logo p{
    color: #000;
}

.preloader{
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(249, 248, 244);
    z-index: 50;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition-property: background-color, opacity, transform, visibility;
    transition-duration: 0.2s, 1s, 1s, 1s;
    transition-timing-function: ease, ease, ease, ease;
    /* transform: scale(2); */
}

.dark .preloader{
    background-color: rgb(19, 18, 18);
}

.default{
    overflow: hidden !important;
}

.default .preloader{
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.preloader-circle{
    width: 20vw;
    height: 20vw;
    width: 100px;
    height: 100px;
    border: 10px solid rgba(255, 166, 0, 0.252);
    border-left-color: orange;
    border-radius: 100px;
    transition: all 0.5s ease;
    animation: preloader-spin 1s linear forwards infinite;
}

.dark .preloader-circle{
    border-color: rgba(255, 166, 0, 0.098);
    border-left-color: orange;
}

@media screen and (max-width: 700px) {
    .preloader-circle{
        width: 60px;
        height: 60px;
        border-width: 7px;
    }
}

@keyframes preloader-spin {
    0%{
        transform: rotate(-360deg);
    }

    100%{

    }
}

.gototop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 10;
    background-color: #0005;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100px;
    font-size: 17px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(200%);
    text-decoration: none;
    display: none;
    border: 2px solid transparent;
}


.dark .gototop{
    border-color: #fff;
    background-color: transparent;
}

.scrolled .gototop{
    transform: translateX(0);
    opacity: 1;
}

.show-menu .gototop{
    opacity: 0 !important;
}

@media screen and (max-width: 1000px) {
    .gototop{
        display: flex;
        transform: none !important;
    }
}

@media screen and (max-width: 700px) {
    .gototop{
        transform: none !important;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

.hidden{
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
    visibility: hidden;
}

.hidden.show{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

form.hidden{
    opacity: 0;
    transform: translateY(100px);
}

form.hidden.show{
    opacity: 1;
    transform: translateY(0);
}

.hidden.shape{
    transform: none;
    transform: scale(0) rotate(45deg);
}

.hidden.show.shape{
    transform: scale(1) rotate(45deg);
}

.info.hidden{
    transform: none;
    transform: scale(0);
}

.info.show{
    transform: scale(1);
}

.hidden.left{
    transform: none;
    transform: translateX(-50%);
    transition: all 0.5s ease;
}

.hidden.right{
    transform: none;
    transform: translateX(50%);
    transition: all 0.5s ease;
}

.hidden.left.show{
    transform: translateX(0);
}

.hidden.right.show{
    transform: translateX(0);
}

@media screen and (max-width: 1000px) {
    .hidden.left{
        transform: none;
        transform: translateX(-50px);
    }
    
    .hidden.right{
        transform: none;
        transform: translateX(50px);
    }
    
    .hidden.left.show{
        transform: translateX(0);
    }
    
    .hidden.right.show{
        transform: translateX(0);
    }

    .footer .cprt{
        font-size: 20px;
    }
    
}

.logo, .logox{
    cursor: pointer;
}


.dark .scroll-bar .item{
    border: none;
}

.cursor{
    position: fixed;
    z-index: 100;
    background-color: rgba(255, 166, 0, 0.156);
    background-color: transparent;
    /* opacity: 0.6; */
    width: 25px;
    height: 25px;
    border-radius: 100px;
    top: 0;
    left: 0;
    backdrop-filter: invert();
    pointer-events: none;
    user-select: none;
    transition-property: top, left, transform;
    transition-duration: 0.1s, 0.1s, 0.5s;
    transition-timing-function: ease, ease, ease;
    animation: hue-x 5s ease forwards infinite alternate;
    transform: scale(0);
}

.anim.cursor{
    transform: scale(5);
}

@keyframes hue-x {
    0%{
        filter: hue-rotate(0deg);
    }
    
    100%{
        filter: hue-rotate(360deg);
    }
}

.dark .cursor{
    background-color: #0008;
}

@media screen and (max-width: 900px) {
    .cursor{
        display: none !important;
    }
}

.text{
    cursor: default;
}

.rotate-screen{
    color: #fff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    padding: 0 10vw;
    text-align: center;
    display: none;
}

@media screen and (max-width: 296px) {
    .container, .backdrop, .menu, .nav-bar, .mobile-nav-bar, .logox, .scroll-bar{
        display: none ;
    }

    .rotate-screen{
        display: flex;
    }

    body{
        overflow: scroll !important;
    }
}

@media screen and (max-width:138px) {
    .rotate-screen{
        justify-content: flex-start;
        padding: 30px 10vw;
        overflow: scroll;
    }
}

@media screen and (max-height:138px) {
    .rotate-screen{
        align-items: flex-start;
        padding: 30px 10vw;
        overflow: scroll;
    }
}

@media screen and (max-height: 200px) {
    .container, .backdrop, .menu, .nav-bar, .mobile-nav-bar, .logox, .scroll-bar{
        display: none ;
    }

    .rotate-screen{
        display: flex;
    }
}



.footer{
    width: 100%;
    /* box-shadow: 0px 0px 50px #0003; */
    background-color: transparent;
    padding: 70px 10vw;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer h1{
    font-size: 40px;
    color: rgb(19, 18, 18);
    margin-bottom: 10px;
    font-weight: 400;
}

.footer small{
    font-size: 18px;
    color: rgb(49, 26, 1);
    opacity: 0.9;
}

.footer .content{
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}

.footer .content > div{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .content > div h3{
    font-weight: 500;
}


.footer .content > div a{
    color: rgb(76, 49, 21);
    text-decoration: none;
    transition: all 0.5s ease;
    text-transform: capitalize;
    font-size: 19px;
}

.footer > div a:hover{
    text-decoration: underline;
}

.footer .social-links{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .social-links a{
    width: 40px;
    height: 40px;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    text-decoration: none;
    background-color: rgb(76, 49, 21);
    color: #fff !important;
}

.footer .social-links a:hover{
    opacity: 0.4;
    text-decoration: none;
    transform: rotate(360deg);
}

.footer .social-links.x{
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.footer .social-links div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer .content .explore-more{
    text-align: right;
}

.footer h3{
    font-size: 25px;
    letter-spacing: 0.5px;
    color: rgb(26, 17, 0);
    margin-bottom: 10px;
}

.footer .cprt{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    color: rgb(26, 17, 0);
    position: relative;
    margin-top: 20px;
}

.footer .cprt span{
    position: relative;
}

.footer .cprt span:first-child:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    transform: scaleY(1.1);
    border-radius: 100px;
    background-color: rgb(26, 17, 0);
    right: -15px;
}

.footer .newsletter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .newsletter h1{
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 25px;
    color: rgb(26, 17, 0);
    text-align: center;
}

.footer .newsletter form{
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin: 30px 0;
    border-radius: 100px;
    overflow: hidden;
    /* border: 2px solid rgb(255, 98, 0); */
    width: 500px;
    box-shadow: 7px 7px 10px rgba(255, 98, 0, 0.145);
    transition: all 0.5s ease;
}

.footer .newsletter form:hover{
    width: 600px;
}

.footer .newsletter form button{
    background-color: rgb(255, 98, 0);
    border: none;
    outline: none;
    padding: 0 20px;
    height: 100%;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.footer .newsletter form button:hover{
    background-color: rgb(26, 17, 0);
}

.footer .newsletter form input{
    border: none;
    font-size: 17px;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

@media screen and (max-width: 800px) {
    .footer .content{
        flex-direction: column;
        /* justify-content: center;
        align-items: center;
        text-align: center; */
        gap: 40px;
    }

    .footer .content > div a{
        font-size: 16px;
    }

    .footer .newsletter form{
        width: 50vw;
        min-width: 250px;
        height: 50px;
    }

    .footer .newsletter form:hover{
        width: 60vw;
        min-width: 250px;
    }

    .footer .newsletter form button{
        font-size: 15px;
        padding: 0 15px;
    }

    .footer .content .explore-more{
        text-align: left;
    }

    .footer .content .social-links{
        display: none;
    }

    .footer .content .social-links.x{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer .content .social-links.x .links-holder{
        gap: 24px !important;
    }

    .footer .content .social-links.x a{
        width: fit-content;
        height: fit-content;
        background-color: transparent;
        color: rgb(76, 49, 21) !important;
        font-size: 23px;
    }
}

@media screen and (max-width: 450px) {
    .footer .newsletter form{
        flex-direction: column;
        border-radius: 20px;
        gap: 25px;
        justify-content: center;
        height: fit-content;
        /* padding: 30px 30px 30px 30px; */
        padding: 40px 30px;
        width: 75vw;
    }

    .footer .newsletter form button{
        padding: 15px 20px;
        font-size: 20px;
        font-weight: bold;
        border-radius: 100px;
        box-shadow: 0px 0px 10px #0002;
    }

    .footer .newsletter form input{
        font-size: 15px;
        border: 2px solid transparent;
        padding: 10px;
        border-radius: 20px;
    }

    .footer .newsletter form:hover{
        width: 75vw;
    }
}

.dark .footer .newsletter h1{
    color: #fff;
}

.dark .footer .newsletter form{
    background-color: transparent;
    box-shadow: 0px 0px 0px #0000;
    border: 2px solid rgb(255, 98, 0);
    padding: 10px;
    height: 80px;
}

.dark .footer .newsletter input{
    background-color: transparent;
    color: #fff;
}

.dark .footer .newsletter button{
    background-color: rgb(255, 98, 0);
    border-radius: 100px;
}

.dark .footer .newsletter button:hover{
    padding: 0 30px;
    background-color: rgb(255, 98, 0);
}

.dark .footer .content h3{
    color: #fffbf4;
}

.dark .footer .content a{
    color: bisque;
    opacity: 0.8;
}

.dark .footer .content .social-links a{
    background-color: transparent;
    border: 2px solid bisque;
    color: bisque !important;
}

.dark .footer .content .social-links.x a{
    background-color: transparent;
    border: 2px solid bisque;
    color: bisque !important;
    font-size: 14px;
    width: 30px;
    height: 30px;
}

.dark .footer .cprt{
    color: #fff;
    gap: 20px;
}

.dark .footer .cprt span:first-child::before{
    background-color: rgba(255, 255, 255, 0.015);
}

@media screen and (max-width: 450px) {
    .dark .footer .newsletter form{
        flex-direction: column;
        border-radius: 20px;
        gap: 25px;
        justify-content: center;
        height: fit-content;
        padding: 40px 30px;
        width: 75vw;
        background-color: rgba(251, 251, 251, 0.06);
        border-color: transparent;
    }

    .dark .footer .newsletter form button{
        padding: 15px 20px;
        border-radius: 100px;
        box-shadow: 5px 5px 0px rgb(255, 98, 0);
        background-color: orange;
    }
    
    .dark .footer .newsletter form button:hover{
        box-shadow: 7px 7px 0px rgb(255, 98, 0);
        transform: translate(-3px, -3px);
        padding: 15px 20px;
        background-color: orange;
    }

    .dark .footer .newsletter form input{
        font-size: 15px;
        border: 2px solid transparent;
        padding: 10px;
        border-radius: 20px;
    }

    .dark .footer .newsletter form:hover{
        width: 75vw;
    }
}

.logo, .logox{
    cursor: pointer;
}
