@font-face {
    font-family: General sans;
    src: url(./Fonts/GeneralSans-Regular.otf);
}

*{
    padding:0%;
    margin:0%;
    font-family: General sans;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    width: 100%;
}

#minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1)1s;
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fff;
    z-index: 99999;
    border-radius: 50%;
}

#main{
    width: 100%;
    background-color: black;
}

#hero{
    position: relative;
    height: 100vh;
    width: 100%;
    color: #fff;
    padding: 2vw 2.9vw;
}

.bounding {
    width: fit-content;
    overflow: hidden;
}

.bounding .boundingelem{
    transform: translateY(100%);
}

#nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

#nav h5{
    font-size: 16px;
    font-weight: 500;
}

#heading{
    margin-top: 4.2vw;
}

#heading h1{
    text-transform: uppercase;
    font-size: 10vw;
    font-family: General sans;
    font-weight: 900;
    line-height: .9;
    opacity: .6;
    letter-spacing: 6px;
}
.blocktext{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: fit-content;
    text-align: right;
}

.blocktext h5{    
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 17px;
    font-weight: 500;
}

#heading #secondh1{
    margin-left: 150px;
}

#smallheading{
    margin-top: 10vw;
    display: flex;
    flex-direction: column;
    align-items: end;
}

#smallheading h3{
    text-transform: uppercase;
    text-align: right;
    font-size: 16px;
    font-weight: 500;   
}

#footer{
    width: 100%;
    position: absolute;
    bottom: 3%;
    right: 0;
    padding: 0 3vw;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

#footer a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

#footer a:nth-child(2){
    margin-right: 5vw;
}

#circles{
    display: flex;
    gap: 5px;
}

#circles .circle{
    height: 25px;
    width: 25px;
    background-color: #888;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#second{
    min-height: 100vh;
    width: 100%;
    color: #fff;
    background-color: black; 
    padding-top: 200px;
    padding-right: 10vw;
    padding-left: 3vw;   
}

#second a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    margin-top: 30px;
    padding: 8px 22px;
    border: 1px solid #fff;
    border-radius: 100px;
}

.elem{
    position: relative;
    width: 100%;
    border-top: 1px solid #888;
    padding: 2vw 1vw;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elem h1{
    text-transform: uppercase;
    font-size: 6vw;
    opacity: .6;
    padding: 2vw 0;
}

#elemlast{
    border-bottom: 1px solid #888;
    margin-bottom: 70px;  
}

.elem img{
    z-index: 999;
    position: absolute;
    height: 140%;
    opacity: 0;
    transform: translate(-60%,-50%);
    pointer-events: none;
}

#container{
    width: 100%;
    padding-top: 15vw ;
    padding-bottom: 10vw;
    white-space: nowrap;
    overflow: hidden;
}


.move{
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
    display: inline-block;
    animation-name: move;
    animation-timing-function: linear;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}

@keyframes move {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(calc(-100% - 4px));
    }
}

.move img{
    padding: 3vw 6vw;
    padding-left: 3vw;
}

#about{
    width: 100%;
    padding: 10vw 10vw;
    padding-left: 35vw;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 50px;
    
}

#about img{
    height: 230px;
    
}


#textabout{
    width: 30rem;
}

#textabout h5{
    opacity: .7;
    margin-bottom: 10px;
}
#textabout p{
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 18px;
}
#textabout a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    padding: 8px 22px;
    border: 2px solid #fff;
    border-radius: 100px;
}


#subscribe{
    background-color: black;
    color: #fff;
    padding: 40px 50px;
    padding-bottom: 7vw;
}

#subscribe h5{
    text-transform: uppercase;
    opacity: .7;
}

#subscribe h4{
    text-transform: uppercase;
    letter-spacing: 1px ;
}

#lastfooter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
}

#footerright{
    display: flex;
    gap: 50px;
}

#footerright h5{
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
}

#footerleft{
    display: flex;
    gap: 50px;
}

#footerleft a{
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
