@font-face {
    font-family: font1;
    src: url("./fonts/GeneralSans-Medium.otf");
}
@font-face {
    font-family: font2;
    src: url("./fonts/GeneralSans-Regular.otf");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "General sans";
}
html,body{
    width: 100%;
    height: 100%;
}
#minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    z-index: 99999;
    background-color:#fff;

}
/*------------------------extra css for h1 effect------------------------------------------*/
.bounding{
    width: fit-content;
    /* background-color: red; */
    overflow: hidden;
}
.boundingelem{
    transform: translateY(100%);
}
/*---------------------------------------------------------------------------*/
#main{
    width: 100%;
    background-color: #000;
}

#hero{
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-color: #000; */
    color: white;
}
#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    color: #fff;
}
#nav a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}
#heading {
    width: 100%;
    margin-top: 90px;
    
}
#heading h1{
    font-size: 9vw;
    font-family: font2;
    opacity: 0.6;
    line-height: 1;
    text-transform: uppercase;

}
#heading #secondh1{
  margin-left: 230px;
}
.blockText{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: fit-content;
    /* background-color: red; */
}
.blockText h5{
    /* text-align: right; */
    font-family: font2;
    text-transform: uppercase;
    opacity: 0.6;
    font-size: 16px;
    /* background-color: yellow; */
}
#chotiheadings{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 100px;
    padding-right: 30px;
}
#chotiheadings>h5{
    text-align: right;
    text-transform: uppercase;
    margin-top: 0.5vw;
    font-size: 1vw;
    opacity: 0.6;
    font-family: font1;
}
#herofooter{
    position: absolute;
    bottom: 3%;
    padding: 0 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-top: 30px;
    width: 100%;

}
#herofooter a{
 color: #fff;
 text-decoration: none;
}
#iconsset{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.circle{
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    display:flex;
    justify-content: center;
    align-items: center;
}

/*---------------------------------------------------------------------------------**/
#secondPage{
    padding-top: 130px;
    padding-right: 20vw;
    width: 100%;
    height: 100vh;
    color: #fff;
    font-family: font2;
}
.elem{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #888;
    width: 100%;
    padding: 2vw 3.5vw;
    padding-right: 0;
}
.elem h1{
    text-transform: uppercase;
    font-size: 6vw;
    opacity: 0.7;
}
.elemlast{
    border-bottom: 1px solid #888;
}
.elem img{
    position: absolute;
    z-index: 999;
    height: 140%;
    opacity: 0;
}
#about{
    width: 100%;
    /* background-color: #000; */
    padding: 10vw 5vw;
    padding-left: 40vw;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
#about img{
    width:200px;
}
#textabout{
    width: 25rem;
}
#textabout h5{
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}
#textabout p{
     line-height: 1.4;
     margin-bottom: 30px;
}    
#textabout a{
    padding: 12px 22px;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
}
#subscribe{
    color: #fff;
    padding: 30px 20px;
    padding-bottom: 6vw;
}
#subscribe h5{
    text-transform: uppercase;
    opacity: 0.6;

}
#subscribe h3{
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}
#footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    gap: 30px;
    color: #fff;
}
#footerleft{
    display: flex;
    gap: 20px;
}
#footerright a{
    text-decoration: none;
    color: #fff;
}
#footerright{
    display: flex;
    gap: 20px;
    text-transform: uppercase;
}