@import url(./customcursor.css); 
@import url(https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css);
@import url(./swiper.css);
@import url(./page2.css);
@import url(./Reviewstyle.css);
@import url(./Asyc.css);
@import url(./loading.css);
@import url(./footer.css);
@import url('https://fonts.googleapis.com/css2?family=Arapey&display=swap');

/* custom scrolbar  */
::-webkit-scrollbar{
    width: 7px;
    background-color: rgb(209, 198, 198);
}
::-webkit-scrollbar-thumb{
    width: 100%;
    background: linear-gradient(rgb(105, 101, 101),rgb(46, 35, 35));
    border-radius: 50px;
}

:root{
    --font-family: 'Arapey', serif;

}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    font-family:"Gilroy";
    cursor: none;
}
html,body{
    width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}
#main{
    min-height: 100vh;
    background-color: rgb(153, 111, 150);
    background-color:#566756; ;
}
section{
    width: 100%;
    min-height: 100vh;
    /* background-color: pink; */
}
nav{
    width: 100%;
    padding: 0.5vw 2vw;
    position: fixed;
    z-index: 999;
    background-color:#566756; ;
}
nav #cover{
    /* width: 100%; */
    padding: 0.5vw 1.5vw;
    border-radius: 50px;
    background-color:white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}






#nleft{
    display: flex;
}
#nleft>h1{
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    color: rgb(31, 25, 25);
    /* cursor: pointer; */
}
#nleft>h1::after{
    content: 'kothic';
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-text-stroke: black 1px;
    color: transparent;
}
#nleft #menu{
    display: flex;
    align-items: center;
}
#nleft #menu li{
    font-family: var(--font-family);
    margin-left: 1.5vw;
    padding: 0.5vw 1vw;
    border-radius: 50px;
    font-size: 18px;
    transition: background-color ease-in-out 0.5s;
}
#nleft #menu li:hover{
    background-color: #D8D3BE;
    cursor: pointer;
}
#nright{
    display: flex;
    align-items: center;
}
#nright img{
    margin-left: 2vw;
    cursor: pointer;
}

/* hero section */
#sectionA{
    display: flex;
    align-items: center;
    justify-content: center;
}

#copyright{
    font-size: 20px;
    padding: 1vw;
    color: white;
    background-color: #566756;
}