@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: w;
    src: url(./fonts/WanoQuin-ExtraBold.otf);
}


body{
    color: #fff;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    background-color: #141414;
    /* background-color: pink; */
    
    
    
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    width: 100vw;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 1000;
    
}

.navbar span{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg , transparent , #fff);
    animation: animate 5s infinite linear;
}


@keyframes animate {
    0%{
        left: 0;
        transform: translate(-100%);
    }
    100%{
        left: 100%;
        transform: translate(0%);
    }
}

.logo{
    text-transform: capitalize;
    font-size: 30px;
    cursor: pointer;
    font-family: w;
}

li{
    list-style: none;
}

a{
    color: #fff;
    text-decoration: none;
}

.menu{
    display: flex;
    gap: 5rem;
    text-transform: uppercase;
    font-weight: 100;
}


.btn{
    font-weight: 500;
    text-transform: uppercase;
}



.wrapper{
    display: flex;
}

section{
    width: 100vw;
    flex-shrink: 0;
    overflow: hidden;
}

.video-section video{
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    z-index: -2;
    position: relative;
}

.img-container{
    position: absolute;
    top:0;
    height: 100vh;
    width: 100vw;
}


.img{
    object-fit: cover;
    height: 100%;
    width: 100%;

}



.section{
    background-color: #141414;
    /* background-color: pink; */
    padding: 7rem;
}

.boxes-container{
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.columns{
    display: flex;
    gap: 1.5rem;
    position: relative;
    
}

.col img{
    object-fit: cover;
}


.col-1{
    display: flex;
    gap: 1.5rem;
    flex: 5;
}
.box1 .col-1 img:first-child{
    width: 150px;
    height: 180px;
    transform: translateY(-30px);
}

.box1 .col-1 img:nth-child(2){
    width: 380px;
    height: 430px;
}

.col-3{
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    flex: 4;
}

.box1 .col-3 img:first-child{
    width: 320px;
    height: 170px;

}

.box1 .col-3 img:nth-child(2){
    width: 150px;
}
.box1 .col-3 img:nth-child(3){
    width: 200px;
    height: 200px;
}

.col-2{
    margin: auto;
    flex: 1.5;
}

.col-2 h1{
    font-family: w;
    font-size: 100px;
    text-transform: capitalize;
    position: absolute;
    top: 50px;
    left: 47%;
    z-index: 100;
}
.box1 .col-2 h1{
    top: 0;
}


.col-2 span{
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing:3px;
    opacity: .7;
}


.line{
    height: 1px;
    width: 50px;
    background-color: rgba(255, 255, 255, .1);
    margin: 2rem 0;
}

.text-box p{
    font-size: 12px;
    line-height: 1.9;
    padding-bottom: 1rem;
    opacity: .7;
    
}

.box2 .col-1 img:first-child{
    width: 200px;
    height: 250px;
    transform: translateY(200px);
}


.box2 .col-1 img:nth-child(2){
    height: 380px;
    width: 300px;
}
.box2 .col-3 img:nth-child(1){
    height: 300px;
    width: 220px;
}

.box2 .col-3 img:nth-child(2){
    width: 180px;
    height: 200px;
    align-self: flex-end;
}
.box2 .col-3 img:nth-child(3){
    width: 380px;
    height: 200px;
    transform: translateX(80px);
}


.box3 .col-1{
    display: flex;
    flex-wrap: wrap;
}

.box3 .col-1 img:nth-child(1){
    width: 200px;
    height: 280px;
    transform: translateX(30px);
    
    
}
.box3 .col-1 img:nth-child(2){
    width: 180px;
    height: 200px;
    margin-left: 80px;
    align-self: center;
    
}
.box3 .col-1 img:nth-child(3){
    width: 280px;
    height: 180px;
    
}
.box3 .col-1 img:nth-child(4){
    width: 250px;
    height: 180px;
    transform: translateY(-30px);
}

.box3 .col-3 img{
    width: 400px;
    height: auto;
}

footer{
    background-color: #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 5%;
}


.text-content{
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color:red; */
    /* position: relative; */
}


.title{
    font-family: w;
    width: 450px;
    position: relative;
    height: 110px;
    overflow: hidden;
}

.bg{
    font-size: 100px;
}

.sm{
    font-size: 35px;
    height: 40px;
}

.left{
    left: -25%;
}

.right{
    top: 50px;
    left: 75%;
}

.title span{
    position: absolute;
}

.n{
    z-index: 1;
    
}

.text-content p{
    transform: translateY(150px);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 12px;
    font-weight: 300;
}

.v_container{
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* opacity: 0; */
}


.left-side{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    gap: 5rem;
}

.tv{
    font-family: w;
    display: flex;
    text-transform: capitalize;
}

.bottom{
    transform: translateY(70px);
}



.text-container{
    max-width: 260px;
}

.text-container p{
    padding-bottom: 1rem;
    line-height: 1.4;
    opacity: .8;
}


.right-side{
    /* background-color: blue; */
    margin: auto;
    width: 150px;
    height: 150px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: rgba(255, 255, 255, .6);
    border-radius: 50%;
    position: relative;
}

.right-side p{
    position: absolute;
    top: 45%;
    left: -15%;
    text-transform: uppercase;
    font-size: 14px;
}

.fa-arrow-right-long{
    transform: translateX(20px);
}

.page2-1{
    width: 100vw;
    height: 70vh;
    position: relative;
    /* display: flex; */
    /* flex-shrink: 0; */
    /* background-color: red; */
    /* overflow: hidden; */
}

.upper-img{
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%,-50%);
    
    /* background-color:royalblue; */
    overflow: hidden;
    height: 100%;
}

.upper-img img{

}

  .video-wrapper {
    position: relative;
    height: 100%;
    /* width: 100%; */
    width: auto;
    display: table;
}

.video-wrapper video#reel {
    position: relative;
    visibility: visible;
    width: auto;
    display: table;
    object-fit: cover;
    
}

.video-wrapper:after {
    content: '';
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    z-index: 999;
    opacity: 0.5;
    background-image: url('https://cdn.pixabay.com/photo/2016/11/22/21/57/apparel-1850804_960_720.jpg');
}  

.main{
    overflow: hidden;
}

.circle{
    width: 500px;
    height: 500px;
    background-color: rgba(65, 105, 225, 0.82);
    border-radius: 50%;
    position: absolute;
    top: 48%;
    left: 51%;
    transform: translate(-50%,-50%);
    background-image: url(https://images.unsplash.com/photo-1664574654700-75f1c1fad74e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80);
    background-position: center;
    background-size: cover;
    opacity: 0.3;
}
.pic{
    width: 300px;
    height: 300px;
    background-color: rgba(65, 105, 225, 0.82);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* background-image: url(https://images.unsplash.com/photo-1664574654700-75f1c1fad74e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80); */
    background-image: url(./media/as1.jpg);
    background-position: center;
    background-size: cover;
    opacity: 0.3;
}

 .cards{
/* background-color: red; */
    height: 50vh;
    width: 100vw;
    padding:0% 5%;
    display: flex;
    gap: 10%;
    overflow-x: auto;
    
}

.cards::-webkit-scrollbar{
    display: none;
}
.card{
    flex-shrink: 0;
    height: 100%;
    width: 50%;
    /* background-color: royalblue; */
    overflow: hidden;
    position: relative;
    /* background-color: aqua; */
    background-image: url(https://images.pexels.com/photos/414102/pexels-photo-414102.jpeg?cs=srgb&dl=pexels-pixabay-414102.jpg&fm=jpg);
    background-position: center;
    background-size: cover;

}  

.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
      
    
}

#card1{
    background-image: url(./media/Screenshot\ \(438\).png);
    background-position: center;
    background-size: cover;
}
#card2{
    background-image: url(./media/Screenshot\ \(422\).png);
    background-position: center;
    background-size: cover;
}
#card3{
    background-image: url(./media/Screenshot\ \(460\).png);
    background-position: center;
    background-size: cover;
    
}
#card4{
    background-image: url(./media/Screenshot\ \(454\).png);
    background-position: center;
    background-size: cover;
}
#card5{
    background-image: url(./media/Screenshot\ \(456\).png);
    background-position: center;
    background-size: cover;
}
#card6{
    background-image: url(./media/Screenshot\ \(410\).png);
    background-position: center;
    background-size: cover;
}
#card7{
    background-image: url(./media/Screenshot\ \(402\).png);
    background-position: center;
    background-size: cover;
    
}
#card8{
    background-image: url(./media/Screenshot\ \(401\).png);
    background-position: center;
    background-size: cover;
}

.row{
    /* padding:0% 5%; */
    padding-right: 5%;
    flex-shrink:0 ;
    /* background-color: rosybrown; */
    gap: 5%;
    height: 100%;
    width: 100%;
    
    display: flex;
}


.res-section{
    display: none;
}


.info{
    width: 100vw;
    height: 70vh;
    /* background-color: red; */
    position: relative;
    display: flex;
    margin-top: 30px;
    
}

.info-col{
    width: 100%;
    height: 100%;

}

.skill{
    /* background-color: green; */
    /* text-align: center; */
    position: relative;

}

.skill ul{
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.7rem;
    font-family: 'lato';
    font-weight: 300;
    text-transform: uppercase;
    /* background-color: red; */
   
}
.skill > h1{
    margin-left: 40%;
    font-family: w;
    margin-top: 5%;
    font-size: 3rem;
    /* text-transform: uppercase; */
}
.about-us{
/* background-color: rgb(138, 78, 78); */
position: relative;
}
.about-us > h1{
    margin-left: 30%;
    font-family: w;
    margin-top: 5%;
    font-size: 3rem;

}
.about-us > p{
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.2rem;
    font-family: 'lato';
    font-weight: 300;

}
.link{
/* background-color:orange; */
position: relative;
}
.link > h1{
    margin-left: 20%;
    font-family: w;
    margin-top: 5%;
    font-size: 3rem;
}
.link ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.7rem;
    font-family: 'lato';
    font-weight: 300;
    text-transform: uppercase;
    /* background-color: red; */
   
}





