@font-face {
    font-family: General Sans;
    src: url(Fonts/GeneralSans-Regular.otf);
}
@font-face {
    font-family: General Sans Medium;
    src: url(Fonts/GeneralSans-Medium.otf);
}
*{
    margin: 0;
    padding: 0;
    font-family: "General Sans";
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
#minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    z-index: 999999;
    position: absolute;
}
#main{
    width: 100%;
    background-color: black;
}
#hero{
    width: 100%;
    color: white;
    height: 100vh;
    background-color: black;
    position: relative;
}
#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 40px;

}
#nav a{
    text-decoration: none;
    font-size: 18px;
    color: white;
}
#nav h4{
    color: white;
}
.bounding{
    overflow: hidden;
    width: fit-content;
    height: fit-content;
}
.bounding .boundingelem{
    transform: translateY(100%);
}
#heading{
    margin-top: 50px;
}
#heading h1{
    opacity: 0.6;
    margin-left: 30px;
    line-height: 1;
    text-transform: uppercase;
    font-size: 9vw;
    letter-spacing: 0.35vw;
}
#heading #secondh1{
    margin-left: 230px;
}
.blocktext{
    width: fit-content;
    display: flex;
    align-items: end;
    flex-direction: column;
}
.blocktext h5{
    font-size: 1vw;
    text-align: right;
    letter-spacing: 0.05vw;
}
#chhotiheadings{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 100px;
    padding-right: 50px;
}
#chhotiheadings h5{
    margin-top: .5vw;
    text-align: right;
    font-size: 1vw;
    text-transform: uppercase;
}
#herofooter{
    display: flex;
    align-items: centre;
    justify-content: space-between;
    position: absolute;
    padding: 0 2vw;
    bottom: 3%;
    width: 100%;

}
#herofooter #iconset{
    display: flex;
    gap: 5px;
}
#herofooter a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
#herofooter .circle{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #888;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

#second{
    color: white;
    width: 100%;
    height: 100vh;
    background-color: black;
    padding-top: 140px;
    padding-right: 10vw;
}
.elem{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 2vw;
    width: 100%;
    border-top: 1px solid #888;
}
.elem h1{
    text-transform: uppercase;
    font-size: 6vw;
}
.elemlast{
    border-bottom: 1px solid #888;
}
.elem img{
    position: absolute;
    z-index: 999;
    opacity: 0;
    transform: translate(-50%, -50%);
    /* display: none; */
    height: 140%;
}

#about{
    display: flex;
    align-items: center;
    
    gap: 50px;
    width: 100%;
    color: white;
    padding: 10vw 5vw;
    padding-left: 40vw;
    background-color: black;
}
#textabout{
    width: 25rem;
}
#textabout h5{
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}
#textabout p{
    margin-bottom: 30px;
    line-height: 1.7;

}
#textabout a{
    padding: 12px 22px;
    border: 1px solid white;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    font-size: 12px ;
}
#about img{
    width: 200px;
    border-radius: 50%;
}
#subscribe{
    background-color: black;
    color: white;
    padding: 20px 30px;
    padding-bottom: 7vw;
}
#subscribe h5{
    text-transform: uppercase;
    opacity: 0.6;
}
#subscribe h3{
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}
#footer{
    background-color: black;
    color: white;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footerleft{
    display: flex;
    gap: 20px;
}
#footer a{
    text-transform: uppercase;
    color:  white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
#footerright{
    display: flex;
    gap: 5vw;
}