:root {
  --crl-primary-1 :#111810;
  --clr-primary-2 :#121214;
  --clr-primary-3 :#2e3135;
  --clr-primary-4 :#1a1819;
}

html {
  scroll-behavior: smooth;
}

*,::after,
::before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Roboto', 'Ubuntu';
}

h1 {
  color: #fff;
  display: inline;
  width: 50%;
  
}

a {
  color: #fff;
}

.nav {
  background: transparent;
  
  /* background:var(--clr-primary-4); */
  
}

/* making the images to lap properly */
.img-container {
  position:relative;
  background-image: cover;
  margin: auto;
}


.navbar-container {
  display:flex;
  align-items: center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1720px;
  position:absolute;
  top: 0;
  z-index: 9999;
  padding: 1em 1em 0.7em 2em;
  
}

.navbar-links{
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  
}

.navbar-items{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
  gap: 1em;
}


.navbar-items a {
  text-decoration: none;
}


.btn.mobile {
  display: none;
}



.btn-container {
  display: flex;
}


.btn-site
{
  display: block;
  padding: 1em;
  margin: 0 0.5em;
  width: 100px;
  outline: none;
  border-style: none;
  border-radius:20px;
  color: #fff;
  background:var(--clr-primary-3);
  font-size:0.6em;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.4;
}

.btn-site:hover {
  border: 1px solid #fff;
}



.fade {
  display: none;
} 



@media screen and (max-width:960px) {
  
  .nav{
    background: var(--clr-primary-4);
    
  }

  .navbar {
    background: var(--clr-primary-2);
  }
  .navbar-links {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    height: 0vh;
    z-index: -1;
    transition: all 0.5s ease;
    padding-top: 1em;
    opacity: 0; 
  }

  .navbar-links.active {
    background: transparent;
    top: 100%;
    height: 100vh;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    z-index: 99;

  }
  
  .navbar-items {
    padding-top: 1em;
    flex-direction: column;
    align-items: flex-start;
    
  }

  .nav-toggle .bar{
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  
  }

  .btn.mobile{
    display: block;
    padding: 1em;
    outline: none;
    border-style: none;
    border-radius:20px;
    line-height:16px;
    color: #fff;
    background: rgb(10, 227, 10);
    font-size:0.6em;
    font-weight: 600;
    cursor: pointer;
  }

  .btn-container {
    margin-top: 1em;
    margin-left: -10px;
    
  }

  
  img{
    width: 100%;
    height:90vw;
  }
  

  a {
    font-size: 0.5em;
  }

  
  #mobile-menu.is-active .bar:nth-child(2){
    opacity: 0;
  }
  
  #mobile-menu.is-active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  
   /* Adding the menue bar to be display */
  /* .navbar-links{
    display: none;
  } */
} 

@media screen and (max-width:400px) {

  
  img{
    width: 100%;
    height:90vw;
  }
}


/*  Hero section */

.quote {
  background: var(--clr-primary-2)transparent;
  position: absolute;
  top: 70%;
  margin: 2em;
  color: #fff; 
  opacity: 0.9;
}

.quote .quote-four{
  color: #fff;
  font-size: 2em;
  font-weight: 400;
}

.quote-tag {
  font-weight: 500;
}

.quote .quote-with-star {
  margin-top:0.8em;
  margin-bottom: 0.8em;
  font-weight: 500;
}

.quote .quote-star {
  font-size: 0.7em;
  color:blue;
  margin-right: 0.7em;
}

.quote .quote-number {
  font-weight: 500;
}

@media screen and (max-width:900px) {
  .quote {
    background: var(--clr-primary-2)transparent;
    position: absolute;
    top: 50%;
    margin: 2em;
    /* color: #fff; */
  }
  .quote .quote-four{
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    
  }

  .quote .quote-tag {
    font-size: .6em;
    font-weight: 500;
  }

  .quote .quote-with-star{
    font-size: 0.6em;
  }

  .quote .quote-number {
    font-size: 0.6em;
  }
}

@media screen and (max-width:460px){
   
  .quote .quote-four {
    font-size: 0.6em;
    font-weight: 500;
  }

  .quote .quote-tag{
    font-size: 0.3em;
  }
  .quote .quote-with-star{
    font-size: 0.3em;
  }
  .quote .quote-number{
    font-size: 0.3em;
  
  }

}

