*{
    box-sizing: border-box;
} 

    html ,body{
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        scroll-behavior: smooth;
    }
   
body p{
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.8em;

}
body h1{
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 3.4rem;
}
                     /* hero section */
.container{
    position: relative;
    /* height:auto; */
    /* background-color: rgb(0, 0, 0); */
    /* overflow: hidden; */
    height:100vh;
    background: url(New\ Intro_Web.jpg ) no-repeat;
    background-size: 100% 100%;
}
#particles-js{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}
.navbar{
   
    min-height: 15vh;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0);
   
   
}
.links{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 6em;
}
.logo{
    color: white;
  z-index: 3;
  display:flex;
  align-items: center;
  width: 70%;

}
.imglogo{
    width: 30%;
    margin-right: 1rem;
}
.imglogo img{
    max-width: 100%;
    height: auto;
}

.logo h3{
    font-family:raleway;
    line-height: 1.4rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}
.logo h3 span{
    font-size: 1rem;
    letter-spacing: 0.36rem;
    font-weight:normal;
}

                                    /*   hamburger menu   */


.burger{
    z-index: 100;
    cursor: pointer;
}
   .burger div{
   cursor: pointer;
    width:25px;
    height: 3px;
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    transition: all 0.25s ease-in;
}                                 
   .line1{
       margin-bottom: 8px;
   }                               
   .line2{
    margin-top: 4px;
}   
.close .line1 {
    transform: rotate(-45deg) translate(-5px, 3px);
}

.close .line2 {
    transform: rotate(45deg) translate(-5px, -3px);
}
.slide{
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content:space-between;
    align-items:center;
    transform: scaleX(0);
    transform-origin: right center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
    overflow-x: hidden;
    overflow-y: hidden;
}
.reveal-nav{
    z-index: 90;
    transform: scaleX(1);
    opacity: 1;
    width: 57%;
    background-color: rgba(0, 0, 0, 0);
}

.menu{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
.menu-item{
    font-family: raleway;
    font-weight: 500;
    padding: 0 3vw;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    transform: translate(-20em);
    transition: transform 0.8s ease-in-out, opacity 0.3s ease-in;
}


.reveal-items .menu-item{
    transform: translate(0);
    opacity: 1;
}
.reveal-items li:nth-child(1) .menu-item{
    transition-delay:0.1s ;
}
.reveal-items li:nth-child(2) .menu-item{
    transition-delay:0.2s ;
}
.reveal-items li:nth-child(3) .menu-item{
    transition-delay:0.3s ;
}
.reveal-items li:nth-child(4) .menu-item{
    transition-delay:0.4s ;
}
.reveal-items li:nth-child(5) .menu-item{
    transition-delay:0.5s ;
}

.menu li + li{
    margin-top: 0.2em;
}
li:hover{
    background-color:grey;
    padding: 5PX 0;
    
}
.desktop{
    width: 100%;
    position: relative;
    top: -135px;
}
.mobile{
    display: none;
}

.scroll-down-arrow{
width: 40px;
height: 40px;
display: block;
position: absolute;
background: url(scroll-down-arrow.svg) no-repeat;
background-size: cover;
left: 50%;
bottom: 50px;
margin-left: -20px;
z-index: 2;
animation: bounce 1.3s infinite ease-out;}

.scroll-down-arrow::after{
    content: "";
    width: 1px;
    height: 200px;
    background: #fff;
    display: block;
    position: absolute;
    top: 40px;
    left: 19px;
}

@keyframes bounce {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-50px); }

    100% { transform: translateY(0); }
}
                        /* second page */
.maintext {
    
    position: absolute;

    /* position: relative;  */
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    /* bottom: -10px; */
    width: 100%;
    padding: 20px 10%;
    align-items: flex-end;
    left: 0;
    /* border:2px solid white; */
}
.subtext{
max-width: 55%;
display: inline;
}
 .maintext .subtext h1{
    font-size:1.8vw;
    line-height: 1.2em;
    color: white;
    padding-bottom:5%;
    max-width: 100%;

}
.maintext .subtext h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #ffffff;
    margin-bottom: 25px; 
}
.maintext .subtext2 p{
    float: right; 
    line-height: 1.2em;
    color: white;
    top: 10%;
}
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border: none;
    z-index: 999999;
    border-radius: 50%;
    background-color: #cdab58;
    width: 50px;
    height: 50px;
    cursor: pointer;

  } 

                   /*    work section    */
.workcontainer{
    transform: scaleX(0);
    transform-origin: right center;
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
}
.worksection{
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 5vw 10% 0 10%;
    z-index: 9;
}
.Ourwork{
    flex-basis: 40%;
    animation: slide-left 1s ease-in;
}
.Ourwork h3{
    margin-top: 0;     
}
 .Ourwork h3::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000;
    margin-bottom: 2vw;
}
.brave{
    margin:0;
    flex-basis: 50%;  
}
.brave h1{ 
    margin: 0;
    font-size: 3.4rem;
    line-height: 3.4rem;
    font-weight: 600;
}
.brave h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000;
    margin-bottom: 2vw;
}
.brave p{
    margin-top: 2rem;
    line-height: 1.8em;
    
}
     
.second {
    padding: 4.5vw 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.work {
    width: 33.2%;
    padding-bottom: 32%;
    /* Same as width, sets height */
    margin: 0px 0px 3px 0px;
    /* (100-32*3)/2 */
    overflow: hidden;
    position: relative;
    background-color: rgb(0, 0, 0);
    /* font-family: "MarkOT-Bold", sans-serif; */
}
 .work a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .25s, visibility .25s ease-in;
}
.work img {
    max-width: 100%;
    height: auto;
    transition: all .25s, visibility .25s ease-in;
    filter: grayscale(100%);
}
a:hover img {
    transform: scale(1.2);
    filter: none;
}
.work h2 {
    
    position: absolute;
    bottom: 2%;
    left: 5%;
    color: #cdab58;
    z-index: 4;
    font-size: 2rem;
    transition: all 0.2s ease-in
}
a:hover h2 {
    bottom: 7%;
    cursor: pointer;
    color: #ff2e7b; 
}
h2::after {
    content: "";
    background: url(download.svg) center no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    opacity: 0;
    right: 60px;
    bottom: 2%;
    position: absolute;
    transition: all 0.5s ease-in-out;
}
a:hover h2::after {
    opacity: 1;
    right: -100px;
}
    

                                  /* services section */
.services{
    display: flex;
    justify-content: space-around;
    padding: 0 10% 0 10%;
}
.services .image4s{
    padding: 3%;
    padding-left: 0;
    margin: 0;
    flex-basis: calc(50% - 16px);
    
}
.image4s img{
    max-width: 100%;
    padding:10px;
    height:auto;
    
}
.imagetext{
    flex-basis: calc(50% - 16px);
}
.imagetext h1{
    margin: 0;
    /* font-family: rms-sanz; */
    /* font-size: 4rem; */
    line-height: 3.4rem;
    font-weight: 600;
}
.imagetext h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 25px; 
}
.imagetext p{
    font-size: 1.3rem;
    line-height: 1.8em;   
}
/* #aboutsection p{
    font-size: 1.3rem;
    line-height: 1.5em;
} */
#aboutsection p b{
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.8em;
}
#about span{
    background-color: black;
    color: white;
    border-radius: 3px;
    font-size: 1.3rem;
}
                                            /* ABOUT SECTION */
 
                                            
.about{
    position: relative;
    display: flex;
    justify-content: space-between;
    background:url(BG_AboutUs1.jpg)  no-repeat ;
    background-size: cover;
    padding: 5vw 0 0 10%;
    color: white;
    border-right: 10px ;
} 
.textabout{
    flex-basis:50% ;
}
.textabout h1{
    margin: 0;
    font-size: 3.4rem;
    line-height: 3.4rem;
    font-weight: 600;  
}
.textabout h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid rgb(255, 255, 255);
    margin-bottom: 2vw;
}
.textabout  span{
    padding-left: 9px;
    padding-right: 9px;
    background-color: #cdab58;
    font-size: 1.3rem;
    border-radius: 3px;
}
.aboutUs{
    flex-basis: 40%;
    /* background: url(images/vrnew.jpg) no-repeat center;
    background-size: cover; */
}
.aboutUs h3{
    margin-top: 0; 
}
.aboutUs h3::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid rgb(255, 255, 255);
    margin-bottom: 2vw;
}
.aboutUs img{
    max-width: 100%;
}

                           /* tesla quote */
.quotetesla{
    margin: 0;
    padding: 0;
}
.quotetesla img{
    width: 100%;
    height: 100%;
}

  

                                  /* solution section */

.solsection {
    display: flex;
    justify-content: space-around;
    padding:5vw 10% 0 10%;
    position: relative;
    background: #fcfcff;
 }
.solgif{
 
 flex-basis: calc(50% );
}
.solgif img{
    max-width: 100%; 
    padding: 0;
}
.sol{
    flex-basis: 50%;  
    z-index: 3;
}
.solgif h3{
    margin-top:0;
}
.solgif h3::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 2VW; 
}
.sol h1{
    margin: 0;
}
.sol h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 2vw;
}
  

                            /* bgsection */
.bgsection{
    flex-basis: 100%;
    overflow: hidden;
}

.bgsolution{
    height: auto;
    position: relative;
    /* background-color: red; */
    max-width: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cd {
    width: 100%;
}
.cd2 {
    position: absolute;
    width: 35%;
    top: 40%;
    margin: auto;
    left: 33%;
}


                                /* client section  */

.clientsection {
    display: flex;
    justify-content: space-around;
    padding:5vw 10%;
    position: relative;
    background: #fcfcff;
 }
.ourclients{
 /* padding: 3%; */
 padding-left: 0;
 margin: 0;
 flex-basis: calc(50% );
}
.ourclients img{
    max-width: 92%;
    padding:10px;
    height:auto;  
    padding: 0;
    top: 20%;
}
.ourclients h3{
    margin-top:0;
}
.ourclients h3::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 2VW; 
}
.clienttext{
    flex-basis: 50%;  
    z-index: 3;
}
.clienttext h1{
    margin: 0;
   
}
.clienttext h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000000;
    margin-bottom: 2vw;
}
  

                          /* footer gif */

.footergif{
    display: flex;
    position: relative;
}
.footergif img{
    width: 100%;
    height: 100%;
}
 .footergif a{
     position: absolute;
     width: 5%;
     width: 6%;
     left: 46.65%;
     top: 17.56%;
 }
     
 

                       /* FOOTER */
footer{   
    margin: 0;
    background-color: rgb(0, 0, 0);
    color: white;
}
  
                         /* footer content */

.footercontent{
    display: flex;
    justify-content: space-around;
    padding: 50px 10% 50px;
    padding-bottom: 0;
}
.footercontent p{
   font-weight: 300;
   font-size: 1rem;
   line-height: 1.5em;
   text-rendering: optimizespeed;
}
.footercontent h2{
    color:#303030;
    font-size:    24px;

}
.fo1{
    
    flex-basis: 33%;
    display: flex;
    margin-left: 5%; 
    align-items: center;
}
.logodiv{
    display : flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.logodiv img {
    max-width: 30%;
    height: auto;
    display: block;
    margin: auto;
    position: relative;
    top: -16px;
}
.fo1 p{
    margin-top: 0;
    padding-left: 5%;
}
.fo1 h2{
    margin: 0;
}
.fo2{
    flex-basis: 33%;
    margin-right:5%
}
 .footercontent a{
    text-decoration: none;
    list-style: none;
    color: white  ;
}
.fo2 h2{
    margin: 0;
}
.fo3{
    flex-basis: 11%;

}
.fo3 h2{
    margin: 0;
}
.fo4{
    flex-basis: 20%;
}
.fo4 h2{
    margin:0;
}                 


                       

                                  /* submit form */


.submitform {
    align-items: center;
    justify-content: center;
    max-width: 70%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5vw;
}
.getin{
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
}
.Name {
    flex: 0 0 50%;
    max-width: 50%;
    align-items: start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
}
.Email{
    flex: 0 0 50%;
    max-width: 50%;
    align-items: start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
}
.submitform .Project{
    flex: 0 0 100%;
    max-width: 100%;
    align-self: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 2rem;
}
.submitform  input{
    width: 100%;
    font-family: raleway;
    padding: 0.5rem .5rem;
}
.submitform label{
    margin-bottom: 1rem;
}
.submitform textarea{
    padding: 0.5rem .5rem;
    font-family: raleway;
    
}
.submitform input[ type=SUBMIT]{
    max-width: 20%;
    display: flex;
    /* flex: 30%; */
    text-transform: uppercase;
    /* margin: 1rem 25rem; */
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color:#cdab58;
    color: white;
    cursor: pointer;
    border: none;
    font-style: bold;
}

                                         /* all rights reserved */

.allrights{
    display: flex;
    justify-content: center;
    padding:1% 10%;
    color: #b9b9b9;
}

       
                           
        
        
        
                                                           /* media queries */


@media all and (max-width:600px){
body{
 overflow-x: hidden !important;
} 
body h1{
    font-size: 1.5rem;
    line-height: 2rem;
}
      
html body  p{
  font-size: 1rem;
      }
.container{
 height:100vh;
 background: url(Intro_Mobile2.jpg) no-repeat center;
 background-size: cover;
 }
.logo{
    width: 100%;
}
.imglogo{
    /* width: 20%; */
    width: 50%;
    /* padding: 11px 0px; */
    }
.namelogo h3{
    line-height: 1rem;
    font-size: 1rem;
    }
.namelogo h3 span{
    font-size: 0.67rem;
    letter-spacing: 0.36rem;
}
.navbar{
    background:rgba(0, 0, 0, 0)
}

.links{
    padding: 1rem 1rem;
}

/* hamburger menu */
.slide{
    position: absolute;
    top: 0;
    right: 0;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.733);
    z-index: 3;
    display: flex;
    justify-content:center;
    align-items:center;
    transform: scaleX(0);
    transform-origin: right center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in;
    overflow-x: hidden;
    overflow-y: hidden;
}
.reveal-nav{
    transform: scaleX(1);
    opacity: 1;
    width: 70%;
    height: 70vh;
}
.menu{
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}
.menu li{
    padding: 1rem 0;
}
.menu-item{
    font-size: 10vw;  
}
.desktop{
    display: none;
}
.mobile{
    display: none;
}
.subtext2{
    display:none;
}
.maintext {
    position: absolute;
    bottom: 75px;
}
.subtext{
    flex-basis: 100%;
    max-width: 100%;
}
.maintext .subtext h1{
    font-size: 4.8vw;
    line-height: 1.4em;
    text-align: center;
font-weight: normal;}
.maintext .subtext h1::before{
    display: none;
}
.scroll-down-arrow{
  bottom: 33px;  
}
@keyframes bounce {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-30px); }

    100% { transform: translateY(0); }
}
.worksection{
    padding: 10vw 10% 0;
    flex-direction: column;
}

.brave{
    flex-basis: 100%;
}
.brave h1{
    font-size: 1.5rem;
    line-height: 2rem;
}
.brave h1::before{
    display: none;
}
.brave p{
    margin-top:1rem ;
}
.work{
    width:100%;
    padding-bottom: 100%;
}
.services{
    flex-direction:column ;
}
.about{
    background: url(BG_AboutUsmob.jpg) no-repeat center;
    background-size: cover;
    padding: 10vw 10% 0 10%;
    flex-direction:column-reverse;
}

.textabout h1{
    font-size: 1.5rem;
    line-height: 2rem;
}
.textabout h1::before{
    display: none;
}
.textabout p{
    font-size: 1rem;
}
.textabout span{
    font-size: 1rem;
}
.aboutUs{
    display: block;
    background: none;
}
.imagetext h1{
    font-size: 1.5rem;
    line-height: 2rem;
}
.imagetext h1::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000;
    margin-bottom: 2vw;
}
.aufsection{
    flex-direction: column;
}
.aufgif{
    padding-top: 10%;
}
.aufgif img{
    padding: 0;
}
.auf{
    padding-top: 10%;
}


.auf h4::before{
    content: "";
    display: block;
    width: 20px;
    border-top: 3px solid #000;
    margin-bottom: 2vw;
}
.auf h1{
    font-size: 1.5rem;
    line-height:2rem ;
}
.clientsection{
    flex-direction: column-reverse;
}
.ourclients img{
    max-width: 100%;
}
.clienttext{
    padding-top: 10%;
}
.clienttext h1{
    max-width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
}
.submitform {
    align-items: center;
    justify-content: center;
    max-width: 100%;
    /* margin: 0 10%; */
    margin: auto;
}
.submitform .Name {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
}
.submitform .Email{
    flex: 0 0 100%;
    max-width: 100%;
    align-items: start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
}
.submitform  input{
    width: 100%;
    padding: 0.5rem .5rem;
}
.submitform .Project{
    flex: 0 0 100%;
    max-width: 100%;
    align-self: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 2rem;
}

.submitform input[ type=SUBMIT]{
    max-width: 30%;
    display: flex;
    flex: 20%;
    /* margin: 1rem 25rem; */
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color:#cdab58;
    color: white;
    cursor: pointer;
    border: none;
}
.footercontent {
    flex-direction: column;
    padding-bottom: 0;
}
.solsection{
    flex-direction: column ;
}
.solsection h1{
    font-size: 1.5rem;
    line-height: 2rem;
}
.solsection h1::before{
    display: none;
}
.allrights p{
    font-size: 0.7rem !important;
    color: #b9b9b9;
}

}