*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "General Sans Medium";
}

html, body{
    width: 100%;
    height: 100%;
}

#minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    height: 10px;
    width: 10px;
    background-color: #fff;
    position: absolute;
    z-index: 99999;
    border-radius: 50%;
}

#main{
    width: 100%;
    background-color: black;
}

/* designing hero section */

#hero{
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #f4e9e9;
    position: relative;
}

#nav{
    width: 100%;
    padding: 27px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
}

#nav a{
    color: #fff;
    text-decoration: none;
    font-size: 19px;
}

#heading{
    margin-top: 90px;
}

#heading h1{
    margin-left: 40px;
    opacity: 0.7;
    line-height: 0.8;
    font-size: 10.42vw;
    text-transform: uppercase;
    font-weight: 500;
}

#heading #secondh1{
    margin-left: 170px;
}

.bounding{
    width: fit-content;
    overflow: hidden;
}

.bounding .boundingelem{
    transform: translateY(100%);
}

.blockText{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: fit-content;
}

.blockText h5{
    text-align: right;
    text-transform: uppercase;
    font-size: 17px;
}

#sideHeadings{
    padding-right: 30px ;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
#sideHeadings h5{
    text-align: right;
    text-transform: uppercase;
    margin-top: 3px;
    font-size: 1.4vw;
}

#herofooter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute; 
    width: 100%;
    bottom: 0;
    padding: 0 2vw;
}

#herofooter a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

#herofooter #iconset{
    display: flex;
    gap: 5px;
}

#herofooter .circle{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}

#second{
    color: #fff;
    padding-right: 2vw;
    width: 100%;
    height: 100vh;
    padding-top: 25vh;
    background-color: black;
}

.elem{
    position: relative;
    width: 85%;
    padding: 3.5vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888 ;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elem h1{
    text-transform: uppercase;
    font-size: 7.6vw;
    opacity: 0.7;
}

.elemlast{
    border-bottom: 1px solid #888;
}

.elem h5{
    text-transform: uppercase;
    font-size: 1.3vw;
    opacity: 0.7;
}

.elem img {
    opacity: 0;
    pointer-events: none;
    height: 140%;
    z-index: 999;
    position: absolute;
    transform: translate(-50%, -50%);
}

#about{
    color: #fff;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    background-color: black;
    padding: 10vw 10vw;
    padding-left: 40vw;
    padding-top: 50vh;
}

#aboutText h5{
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
}

#about img{
    height: 200px;
}

#aboutText{
    width: 25rem;
}

#aboutText p{
    line-height: 1.7;
    margin-bottom: 20px;
}

#aboutText a{
    padding: 12px 22px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

#subscribe{
    color: #fff;
    padding: 20px 30px;
    background-color: black;
    text-transform: uppercase;
    padding-bottom: 7vw;
}

#subscribe h5{
    opacity: 0.6;
}

#subscribe h3{
    opacity: .85;
    margin-top: 14px;
    font-size: 14px;
}

#footer{
    display: flex;
    align-self: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: black;
    text-transform: uppercase;
}

#footerLeft{
    display: flex;
    gap: 20px;
    color: #fff;
}

#footerRight a{
    color: #fff;
    text-decoration: none;    
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

#footerRight{
   display: flex;
   gap: 50px;    
}

#aboutText {
    width: 40vh;
  }