/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---orange: #EF6A00;
    ---white: #ffffff;
    ---Pink: #BB3760;
    ---black: #222222;
    ---border: #e5e5e5;
    ---LightYellow: #FEF2EC;
}

/*---------------------Roots-----------------*/

/*---------------------Bodys----------------*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: "Chewy", system-ui;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;

}

section {
    padding: 20px 120px;
}

::-webkit-scrollbar {
    display: none;
}

    #smooth-wrapper {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    #smooth-content {
      will-change: transform;
    }


/*Arrow*/

/*Arrow*/
.uppericon {
    position: fixed;
    right: 2%;
    bottom: 2%;
    color: var(---white);
    display: none;
    transition: 0.5s all linear;
    z-index: 7;
}

/*Arrow*/




/* media quries */

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 80px;
    }

}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }
}

@media (max-width:1486px) {}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }
}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

}

@media (max-width:780px) {

    section {
        padding: 20px 10px;
    }
}

@media (max-width:690px) {}

@media (max-width:550px) {
    .uppericon {
        right: 1%;
        bottom: 20%;
        width: 8%;
    }
}

@media (max-width:500px) {}

@media (max-width:450px) {
    .uppericon {
        right: 3%;
        bottom: 8%;
    }

}

@media (max-width:300px) {}

/* media quries */