:root {
    --site-color-01: rgb(255, 255, 255);
    --site-color-01-hover: rgb(255, 0, 0);
  }
  
  html {
    font-size: 62.5%;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  
  body {
    background-color: rgb(0, 0, 0);
  }
  
  body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: clip;
    z-index: 1000;
  }
  
/*base tags */
  
  h1 {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 3px;
  }
  
  h2 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  h3 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    text-transform: uppercase;
  }
  
  p {
    font-size: 1.4rem;
    line-height: 1.75;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
  }
  
 
 /* header*/
  
  header {
    background-color: black;
    position: relative;
    width: 100%;
    
}

a{
    color: white;
    text-decoration: none;
    
}

.navbar{
    
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 900;
   
}

.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-branding {
    font-size: 4rem;

}

.nav-link {
    transform: 0.7s ease;
    font-size: 14px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    cursor: pointer;
}

.nav-link:hover {
    color: red;
    text-shadow: 8px 8px 8px red;
    
}

.hamburger {
    display: none;
    cursor: pointer;
    
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid #ffffff;
}

/*hero*/
main {
  width: 100%;
  height: calc(50vh - 60px);
  background-image: url(../Images/AdobeStock_187318626.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  
  
}

main .main-intro h1 {
  font-size: 6.5rem;
  line-height: 1.25;
  border-left: 5px solid #000000;
  margin-left: 50px;
  margin-top: 200px;
  margin-right: 250px;
}

main .main-intro a {
  font-size: xx-large;
  line-height: 6rem;
  display: block;
  background-color: #000000;
  width: fit-content;
  padding: 1rem;
  border-radius: 2rem;
    }

    main .main-intro a:hover {
      font-size: xx-large;
      line-height: 60px;
      display: block;
      background-color: #000000;
      width: fit-content;
  }

/*soc 1*/
 
.social{
  width: 100vw;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  justify-content: center;
  
  background-size: 100vw;
  overflow: hidden;
  cursor: pointer;
 }
.soc1 {
  display: grid;
  grid-template-columns: 100px;
  grid-auto-rows: 100px;
  grid-template-areas: "image";
  background-image: url(../Images/fb.jpg);
  background-repeat: no-repeat;
  border-radius: 18px;
  box-shadow: 5px 5px 15px;
  transition: 0.5s ease-in-out;

}
.soc1-image1 {
  grid-area: image;
  
  background-size: cover;
 

} 


  .soc1:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  

  /*soc 2*/
 
.soc2 {
  display: grid;
  grid-template-columns: 100px;
  grid-auto-rows: 100px;
  grid-template-areas: "image";
  background-image: url(../Images/yout.jpg);
  background-repeat: no-repeat;
  border-radius: 18px;
  box-shadow: 5px 5px 15px;
  transition: 0.5s ease-in-out;

}
.soc2-image2 {
  grid-area: image;
  
  background-size: cover;
 

} 


  .soc2:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  
 
  /*soc 3*/
 

.soc3 {
  display: grid;
  grid-template-columns: 100px;
  grid-auto-rows: 100px;
  grid-template-areas: "image";
  background-image: url(../Images/insta.jpg);
  background-repeat: no-repeat;
  border-radius: 18px;
  box-shadow: 5px 5px 15px;
  transition: 0.5s ease-in-out;

}
.soc3-image3 {
  grid-area: image;
  
  background-size: cover;
 

} 


  .soc3:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }  

/*soc 4*/
 
.soc4 {
  display: grid;
  grid-template-columns: 100px;
  grid-auto-rows: 100px;
  grid-template-areas: "image";
  background-image: url(../Images/twit.jpg);
  background-repeat: no-repeat;
  border-radius: 18px;
  box-shadow: 5px 5px 15px;
  transition: 0.5s ease-in-out;

}
.soc4-image4 {
  grid-area: image;
  
  background-size: cover;
 

} 


  .soc4:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }    

  /*soc 5*/
 
.soc5 {
  display: grid;
  grid-template-columns: 100px;
  grid-auto-rows: 100px;
  grid-template-areas: "image";
  background-image: url(../Images/mix.jpg);
  background-repeat: no-repeat;
  border-radius: 18px;
  box-shadow: 5px 5px 15px;
  transition: 0.5s ease-in-out;

}
.soc5-image5 {
  grid-area: image;
  
  background-size: cover;
 

} 


  .soc5:hover {
    transform: scale(1.2);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6 );
  }    

/*soc6*/

  .soc6 {
    display: grid;
    grid-template-columns: 600px;
    grid-auto-rows: 130px;
    grid-template-areas: "image";
    background-image: url(../Images/geo2.jpg);
    background-repeat: no-repeat;
    border-radius: 18px;
    box-shadow: 5px 5px 15px;
    transition: 0.5s ease-in-out;
  
  }
  .soc6-image6 {
    grid-area: image;
    
    background-size: cover;

  }

  .welcome {

  background-color: #fff;
  
  }
.welcome h1 {
color: #000000;
text-align: center;
padding: 2rem 2rem;
}

.welcome p {
text-align: center;
color: #000000;
padding: 6rem;
font-size: 2.4rem;


}


 


/* footer */  

  .footer {
    padding: 40px 0;
  }

 
  .footer .list {
    text-align: center;
  }

  .footer ul a {

  padding: 0 20px;
  font-size: 15px;
  padding: 40px;
}

.footer ul a:hover {

  color: red;
  text-shadow: 8px 8px 8px red;
}  

.footer .copyright {
  text-align: center;
  margin: 20px 0;
}

/*mobile v*/

@media (max-width:768px) {
  .main-intro .H1 {
    font-size:  3.1rem;
    margin-right: 30px;
    margin-top: 150px;
    -webkit-text-stroke-width: 2px;
  }

  main {
    justify-content: right;
  } 
  main .main-intro h1 {
 margin-right: 35px; 
  }

  .body {
  width: 350px;
}

.hamburger {
  display: block;

}

.hamburger.active .bar:nth-child(2){
  opacity: 0;
}
.hamburger.active .bar:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
  
}
.nav-menu{
  position: fixed;
  left: -100%;
  top: 70px;
  gap: 0;
  flex-direction: column;
  background-color: black;
  width: 100%;
  text-align: center;
  transition: 0.3s;

}

.nav-item {
  margin: 16px 0;
}

.nav-menu.active {
  left: 0;
}

.s1 {
    height: fit fit-content;
  }

}
