*{
    margin: 0;
    padding: 0;
    font-family: "General Sans";
    box-sizing: border-box;
    
}
html, body{
    height: 100%;
    width: 100%;
    
    background-color: black;
}
.main{
    width: 100%;
}
.mini-circle{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    transition: .7s all cubic-bezier(0.13, 1.25, 1, 1.32);
    position: absolute;
    z-index: 9999999;
}
.bounding{
    width: fit-content;
    overflow: hidden;
}
.bounding .boundingElem{
    transform: translateY(100%);
}
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    color: white;
    background-color: black;
}
.nav{
    width: 100%;
    padding: 20px 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    user-select: none;
}
.nav a{
    color: white;
    font-size: 18px;
    text-decoration: none;
}
.heading{
    margin-top: 90px;
}
.heading #secondH1{
    margin-left: 230px;
}
.heading h1{
    /* font-family: "General Sans Medium"; */
    font-size: 8.5vw;
    margin-left: 30px;
    font-weight: 800;
    line-height: 1;
    opacity: .6;
}
.blockText{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.blockText h5{
    text-align: right;
    font-size: 15px;
}
.subHeading{
    margin-top:100px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.subHeading h5{
    text-align: right;
    text-transform: uppercase;
    font-size: 1vw;
    margin-top: .5vw;
}
.heroFooter{
    position: absolute;
    bottom: 3%;
    padding: 0 2vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.heroFooter a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.heroFooter .iconSet{
    display: flex;
    gap: 5px;
    color: black;
}
.iconSet i{
    font-weight: 900;
}
.heroFooter .circle{
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    background-color: white;
}
.second{
    padding-right: 10vw;
    background-color: black;
    color: white;
    padding-top: 200px;
    width: 100%;
    min-height: 100vh;
}
.elem{
    border-top: 1px solid #888;
    width: 100%;
    padding: 4vw 3vw;
    padding-right: 0;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.elem h1{
    text-transform: uppercase;
    font-size: 7.6vw;
    opacity: .7;
    font-weight: 500;
}
.elem img{
    position: absolute;
    z-index: 999;
    height: 140%;
    opacity: 0;
    /* display: none; */
}
.elem h5{
    font-weight: 400;
}
.elemLast{
    border-bottom: 1px solid #888;
}
.about{
    width: 100%;
    background-color: black;
    padding: 10vw 10vw;
    color: white;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 50px;
    padding-left: 40vw ;
}
.textAbout{
    width: 25rem;
}
.textAbout p{
    line-height: 1.7;
    margin-bottom: 30px;
}
.textAbout a{
    padding: 12px 22px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 12px;
    border-radius: 100px;
}
.textAbout h5{
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}
.about img{
    width: 200px;
}
.subscribe{
    color: white;
    padding: 20px 30px;
    padding-bottom: 7vw;
}

.subscribe h5{
    opacity: .6;
    text-transform: uppercase;
}
.subscribe h3{
    font-size: 14px;
    margin-top: 10px;
}
.footer{
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}
.footerLeft{
    display: flex;
    gap: 20px;
}
.footerRight{
    display: flex;
    gap: 30px;
}
.footer a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}