*{
    margin: 0;
    padding: 0;
}



// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 900

.rubik-<uniquifier> {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.page-wrapper{
  width: 100vw;
}

@media(max-width: 1024px) 
{
  .page-wrapper{
    width: 100vw;
  }
}
@media(max-width: 768px) 
{
  .page-wrapper{
    width: 100vw;
    overflow-x: hidden;
  }
}

/*----navbar start----*/



.logo-container{
  padding: 10px 10px;
}

.logo-container img{
  width: 40px;
}


a {
    text-decoration: none;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    background: #ffffffdb;
    color: #000000;
    position:fixed;
    top:0;
    width: 95%;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.17);
    z-index: 99;
    border: solid white 1px;
    margin-top: 5px;
    font-family: 'rubik';
    margin-top: 5px;
    margin-left: 40px;
    border-radius: 50px;
    padding: 5px 10px;

  
  }

  .navbar-container #active{
    border-bottom: 2px solid rgb(0, 0, 0);

  }

.navbar-container .logo-container a {
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
}

.navbar-container .nav-items {
    display: flex;
    list-style-type: none;
    gap: 3rem;
    align-items: center;
}

.navbar-container .nav-items .nav-link a {
    color: #000000;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    padding: 10px;
    text-transform: uppercase;
}

.navbar-container .nav-items .nav-link:after {
    display: block;
    content: "";
    border-top: 2px solid rgb(0, 0, 0);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: transform 250ms ease-in-out;
    -ms-transition: transform 250ms ease-in-out;
    -o-transition: transform 250ms ease-in-out;
}

.navbar-container .nav-items .nav-link:hover:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
} 

.navbar-container .nav-items .nav-link a:hover {
    filter: brightness(80%);
    -webkit-filter: brightness(80%);
}

.navbar-container .nav-items .login-register {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.navbar-container .nav-items .login-register .button {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    font-size: 13px;
    border-radius:50px ;
    -webkit-border-radius:50px ;
    -moz-border-radius:50px ;
    -ms-border-radius:50px ;
    -o-border-radius:50px;
    text-transform: uppercase;
    transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -ms-transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;
}

.navbar-container .nav-items .login-register .button:hover {
    border: solid .5px white;
    background-color: black;
    color: white;
}

/* Now lets style the content of this design */


/*injection*/




/* Adjustment for ipad screens */

@media(max-width: 1024px) {
    .navbar-container {
        padding: 0 1rem;
        position: fixed;
        margin: 0;
    }

    .navbar-container .nav-items {
        gap: 0.1rem;
    }

    

    .navbar-container .nav-items .nav-link a {
      color: #000000;
      transition: 0.2s;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      padding: 10px;

      text-transform: uppercase;
  }
  

}

/* adjustment for mobile phones */

@media(max-width: 768px) {


  .navbar-container{
    border-radius: 0;
    position: fixed;

  }

    .navbar-container .nav-items {
        flex-direction: column;
        position: fixed;
        top: 70px;
        width: 100%;
        background: rgb(0, 0, 0);
        padding: 1rem 0;
        height: 100vh;
        z-index: 99;
        right: -100%; 
        transition: 0.2s ease-in;
        -webkit-transition: 0.2s ease-in;
        -moz-transition: 0.2s ease-in;
        -ms-transition: 0.2s ease-in;
        -o-transition: 0.2s ease-in;
}

.bars {
    height: auto;
    width: 22px;
    cursor: pointer;
    margin-right: 30px;
}

.bars .bar {
    height: 2px;
    width: 100%;
    background: #000000;
    margin: 5px;
}

.navbar-container .nav-items {
    gap: 7rem;
}

.navbar-container .nav-items .nav-link a {
  color: #ffffff;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 50px;
}




}

/* The active class below will be used to toggle the nav -items in JS */

.navbar-container .nav-items.active {
    right: 0;
}


  /*------navbar end------*/

  

/*------cursor------*/

  /*------cursor end------*/


  /*----header start-----*/





  .main-container h1{
    font-size: 0px;
    font-family: "Rubik", sans-serif;

  }

span{

    align-items: last baseline;
    color: #ECD823;
    justify-content: space-between;
}

.hero-contain{
    color: rgb(255, 255, 255);
    padding: 50px 0 70px 0;
}

.hero-contain h2{
    font-size: 50px;
    text-transform:uppercase;
    color:#ECD823;
   font-family: "Rubik", sans-serif;
}

.hero-contain h1{
    font-size: 120px;
}

.main-container{

    background-color: #000000;
    padding: 120px 25px;
}


/*-----breakpoints------*/

  
@media only screen and (max-width: 1024px){
  .main-container {
    border: none;
    padding: 0 20px;

  }

 
  
}  



  @media only screen and (max-width: 768px){
    .hero-contain h1 {
      font-size: 60px;
    }
    
    .main-container{
      width: 100%;
      border: none;
      padding: 50px 20px;
    }

    
  }





/*------header end------*/




.main-container scroll-down mouse effect1{
    text-align: center;
}

/*---quotes----*/

.quote{
    background: #ffffff;
    display:none;

}

.blockquote-wrapper {
    display: flex;
    height: 100vh;
    padding: 0 20px;
 }
 
 /* Blockquote main style */
 .blockquote {
     position: relative;
     font-family: 'Barlow Condensed', sans-serif;
     max-width: 620px;
     margin: 80px auto;
     align-self: center;
 }
 
 /* Blockquote header */
 .blockquote h1 {
     font-family: 'Abril Fatface', cursive;
     position: relative; /* for pseudos */
     color: #e74848;
     font-size: 2.8rem;
     font-weight: normal;
     line-height: 1;
     margin: 0;
     border: 2px solid #fff;
     border: solid 2px;
     border-radius:20px;
     padding: 25px;
 }
 
 /* Blockquote right double quotes */
 .blockquote h1:after {
     content:"";
     position: absolute;
     border: 2px solid #e74848;
     border-radius: 0 50px 0 0;
     width: 60px;
     height: 60px;
     bottom: -62px;
     left: 50px;
     border-bottom: none;
     border-left: none;
     z-index: 3; 
 }
 
 .blockquote h1:before {
     content:"";
     position: absolute;
     width: 80px;
     border: 6px solid #ffffff;
     bottom: -3px;
     left: 50px;
     z-index: 2;
 }
 
 /* increase header size after 600px */
 @media all and (min-width: 600px) {
     .blockquote h1 {
         font-size: 3rem;
         line-height: 1.2;
    }

    .quote{
      width: 100vw;
    }
 
 }
 
 /* Blockquote subheader */
 .blockquote h4 {
     position: relative;
     color: #000000;
     font-size: 1.3rem;
     font-weight: 400;
     line-height: 1.2;
     margin: 0;
     padding-top: 15px;
     z-index: 1;
     margin-left:150px;
     padding-left:12px;
 }
 
  
 .blockquote h4:first-letter {
   margin-left:-12px;
 }


 


/*-------projects start-----*/

.project{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-right: 20px;
    margin-top: 150px;

}



.project img{
  width: 600px;
}

h2{
  font-size: 50px;
  font-weight: bold;
}


.text-box{
  width: 600px;
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-evenly;
    marhin-left:50px;
}
.text-box button{
  width: 200px;
  border: solid .5px;
  background: none;
  color: black;
}

.text-box button:hover{
    background: black;
    color: white;
    border: none;
}

.text-box p{
  font-size: 16px;
  line-height: 25px;
}

/* inspired form gumroad website */
button {
  --bg: #3A9FD5;
  --hover-bg: #ff90e8;
  --hover-text: #bc1515;
  color: #fff;
  border: 1px solid var(--bg);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem,-0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem  var(--bg);
}

button:active {
  transform: translate(0);
  box-shadow: none;
}

/*--button end---*/



.project-inverse{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: right;
  padding-left: 20px;
  margin-top: 60px;
}

.project-inverse img{
  width: 600px;
}

.expertise{
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  cursor: default;
  padding-top: 80px;
}

.expertise h3{
    font-size: 40px;
    margin-left: 30px;
    margin-bottom: 60px;
}

/*-----breakpoints------*/

@media only screen and (max-width: 1024px) {
    .expertise h1 {
      font-size: 50px;
      width: 100%;
    }
  
    h2{
      font-size: 30px;
    }
  
      
  .project{
    flex-direction: column;
    padding: 0;
  }

  .project-inverse{
    flex-direction: column;
    padding: 0;
  }

  
  .project img{
    width: 100%;
  }
  
  .project-inverse img{
    width: 100%;
  }
  
  
  .text-box{
    width: 80%;
    text-align: center;
    align-items: center;
    margin-top: 50px;
  }
  
  
  .service-inverse{
    flex-direction: column;
  }

  .cursor{
    display: none;
  }
  
  
  
  
  
  }
  
  
  @media only screen and (max-width: 380px){
    h1 {
      font-size: 50px;
    }
  
    h2{
      font-size: 20px;
    }
  
      
  .project{
    flex-direction: column;
    padding: 0;
    width: 100vw;
  }
  
  .project img{
    width: 350px;
    height: 350px;
  }
  
  .project-inverse img{
    width: 350px;
    height: 350px;
  }
  
  
  .service-text{
    width: 80%;
    text-align: center;
    align-items: center;
  }
  
  
  .service-reverse{
    flex-direction: column;
  }

  .expertise{
    width: 100%;
  }
  
  .text-box{
    width: 80%;
    text-align: center;
    align-items: center;
    margin-top: 100px;
  }
  
    
  }
  

/*---project end----*/



/*-----process start----*/

.process h3{
    font-size: 40px;
    margin-left: 30px;
    margin-bottom: 60px;
}

.process{
    width: 100%;
    font-family: "Rubik", sans-serif;
    background-color: black;
    padding-top: 180px;
    color: white;
    padding: 90px 0;
    justify-content: center;
    display:none;

}


.process-container{

    justify-content: space-evenly;
    text-align: center;
    margin-top: 150px;
}

.process-container img{
    width: 180px;
}

h4{
    font-size: 25px;
}


/*-----breakpoints------*/

@media only screen and (max-width: 1024px) {
    .process h1 {
      font-size: 50px;
    }
  
    h2{
      font-size: 30px;
    }
  
      
  .process-container{
    flex-direction: column;
    padding: 0;
  }
  
  .processes{
    padding-top: 80px;
  }

  .process{
    width: 100%;
  }

  
  
  
  }
  
  
  @media only screen and (max-width: 380px){
    .process h1 {
        font-size: 50px;
      }
    
      h2{
        font-size: 20px;
      }
    
        
    .process-container{
      flex-direction: column;
      padding: 0;
    }
    
    .processes{
      padding-top: 80px;
    }

    .process{
      width: 100%;
    }

  
    
  }
  

/*-----process end----*/


/*------form-----*/

.form-elements{
    width: 100%;
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    color: rgb(0, 0, 0);
}

.fields{
    width: 100%;
    margin-left: 10px;
    margin-top: 120px;

}

.fields textarea{
    width: 95%;
    height: 200px;
    margin-bottom: 70px;
}

textarea{
    display: block;
    width: 400px;
    padding: 0 10px;
}

textarea,
textarea::placeholder{
    font: 20px/3 'rubik';
}


.fields input{
    width: 95%;
    height: 50px;
}

input {
    display: block;
    width: 400px;
    padding: 0 10px;
}

input,
input::placeholder {
    font: 20px/3 'rubik';
}

.giant-text{
    font-size: 70px;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
    font-family: 'rubik';
}


.fields button{
    padding: 10px 30px;
  border-radius: 4px;
  border: none;
  background-color: black;
  color: white;
  margin-top: 20px;
  font-size: 18px;
}

.fields button:hover{
  border: solid .5px;
  background: none;
  color: black;
}

.thankyou_message{
    padding-top: 100px;
    padding-bottom: 100px;
}

/*-----breakpoints------*/

@media only screen and (max-width: 1024px) {
   .form-elements .giant-text{
    font-size: 50px;
   }
  
   .form-elements{
    padding: 0;
    margin-top: 100px;
   }

   textarea{
    display: block;
    width: 400px;
    padding: 0px;
}

input{
  width: 100%;
}

  
  }
  
  
  @media only screen and (max-width: 380px){
   
    .form-elements{
      padding: 0;
    }

    textarea{
      display: block;
      width: 400px;
      padding: 0px;
  }

  input{
    width: 100%;
  }


    
  
    
  }


/*---form end---*/

/*---footer start---*/

.footer{
  background:#000;
  padding:30px 0px;
  font-family: "Rubik", sans-serif;
  text-align:center;
  }
  
  .footer .row{
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  color:rgb(255, 255, 255);
  font-size:0.8em;
  }
  
  .footer .row a{
  text-decoration:none;
  color:rgb(255, 255, 255);
  transition:0.5s;
  }
  
  .footer .row a:hover{
  color:#fff;
  }
  
  .footer .row ul{
  width:100%;
  }
  
  .footer .row ul li{
  display:inline-block;
  margin:0px 30px;
  }
  
  .footer .row a i{
  font-size:2em;
  margin:0% 1%;
  }
  
  @media (max-width:720px){
  .footer{
  text-align:left;
  padding:5%;
  }
  .footer .row ul li{
  display:block;
  margin:10px 0px;
  text-align:left;
  }
  .footer .row a i{
  margin:0% 3%;
  }
  }

/*----footer end----*/

