@font-face {
    font-family: "Silk-serif-regular";
    src: url(./assets/fonts/silk-serif/Silk\ Serif\ Regular.otf);
  }
@font-face {
    font-family: "Silk-serif-light";
    src: url(./assets/fonts/silk-serif/Silk\ Serif\ Light.otf);
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Silk-serif-regular";
}
/* body{
    height: 2000px;
} */
html, body {
    width: 100%;
    height: 100%;
}
html {
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    display: none;
}
#background {
    z-index: -9;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000
}
#overlay{
    z-index: -8;
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(./assets/images/transparent-plastic-texture-PNG.png);
    opacity: .1;
}
#hero{
    width: 100%;
    height: 60vh;
    position: relative;
    /* border: 2px solid white; */
}
#hero nav {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 130px;
    /* background-color: #dadada; */
}
#hero nav #links{
    display: flex;
    align-items: center;
    gap: 30px;
}
#links a {
    color: #fff;
    text-decoration: none;
    /* font-size: 14px; */
}
#hero nav img {
    width: 120px ;
}
#hero h1.wisdom-heading{
    font-size: 58px;
    color: white;
    font-weight: 100;
    text-align: center;
    width: 80%;
    position: absolute;
    top: 70%;
    left: 50%;
    font-family: "Silk-serif-light";
    transform: translate(-50% , -50%);
}
#down {
    width: 100%;
    /* border: 2px solid yellow; */
}
#down #image {
    width: 100% ;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: teal; */
}
#down #image img {
    width: 380px;
}
#text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 100px;
}
#text h3{
    width: 40%;
    font-family: "Silk-serif-light";
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    margin-bottom: 70px;
    color: white;
}
#text img , #links img {
    cursor: pointer;
}
#text img {
    opacity: 0;
}
#circle {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid white;
    pointer-events: none;
    transform: translate(-50% , -50%);
}