*{
    margin: 0;
    padding: 0;
    font-family: "General Sans";
    box-sizing: border-box;
    
}
html,body{
    width:100%;
    height:100%;
    background-color: black;

}
#minicircle { /* Mini circle element styles */
    transition: all cubic-bezier(0.19, 1, 0.22, 1) .5s; /* Smooth transition animation */
    width: 10px; /* Width of the circle */
    height: 10px; /* Height of the circle */
    position: absolute; /* Position the circle absolutely */
    z-index: 99999; /* Place the circle on top of other elements */
    border-radius: 50%; /* Make the circle round */
    background-color: #fff; /* Set the circle's background color to white */
}



#main{
    width: 100%;
    background-color: black;
}

#hero {
    position: relative;
    color: #fff;
    width: 100%;
    height: 100vh;
    background-color: black;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    color: #fff;
}
#nav .a{
    text-decoration: none;
    font-size: 18px;
    color:#fff;

}

#heading{
    margin-top: 90px;
}

#heading h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 30px;
    opacity: .6;
    line-height: 1;
    font-size: 7vw;
    text-transform: uppercase;
    font-weight: 600;
}

#heading #secondh1{
    margin-left: 250px;
}

.blocktext {
    display: flex;
    flex-direction: column;
    align-items: end;
    width: fit-content;
}

.blocktext h5 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5vw;
    opacity: 0.6;
    text-align: right !important;
}

.bounding {
    width: 100%;
    overflow: hidden;
}

.bounding .boundingelem {
    transform: translateY(100%);
}

#chhotiheading {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 100px;
    padding-right: 30px;
}

#chhotiheading h5{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    margin-top: .5vw;
    font-size: 1vw;
    text-align: right;
}

#herofooter{
    padding: 0 2vw;
    width: 100%;
    position: absolute;
    bottom: 3%;
    display:flex;
    align-items: center;
    justify-content:space-between;
}

#herofooter a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
#herofooter #iconset{
    display:flex;
    gap:5px;
}
#herofooter .circle{
    display:flex;
    align-items:center;
    justify-content: center;
    width: 25px;
    height:25px;
    border-radius:50%;
    background-color: #888;
}

#second {
    color: #fff;
    padding-right: 10vw;
    padding-top: 200px;
    background-color: black;
    width: 100%;
    height: 100vh;
}

.elem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3.5vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888;
}

.elem h1 {
    text-transform: uppercase;
    font-size: 5vw;
    opacity: .7;
}

.elemlast{
    border-bottom: 1px solid #888;
}

.elem img {
    opacity: 0;
    pointer-events: none;
    height: 120%;
    z-index: 999;
    position: absolute;
    transform: translate(-50%, -50%);
}

#about {
    display: flex;
    align-items: center;
    gap: 50px;
    color: #fff;
    padding-top: 20vw;
    padding-left: 40vw;
    padding-bottom: 3vh;
    width: 100%;
    background-color: black;
}

#about img{
    width: 200px;;
}
#txtabout{
    width: 25rem;


}
#txtabout h5{
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}
#txtabout p{
    line-height: 1.7;
    margin-bottom: 30px;
}
#txtabout a{
    padding: 12px 22px;
    border:1px solid #fff;
    border-radius:100px;
    color:#fff;
    font-size: 12px;
    text-decoration: none;
}

#suscribe{
    color: #fff;
    padding: 20px 30px;
    padding-bottom: 7vh;

}
#suscribe h5{
    text-transform: uppercase;
    opacity:.6;
}

#suscribe h3{
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}

#footer {
    color: #fff;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}
#footerl{
    display: flex;
    gap:30px;
}
#footerr{
    display: flex;
    gap:20px;

}

#footer a{
    color:rgb(251, 251, 251);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

