
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
.top {
  position: fixed;
  right: 1%;
  bottom: 45px;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transition: 0.5s;
}

.top a{
  color: #8a6f91ff;
  font-size: 1.5rem;
}

.top.active{
  visibility: visible;
  opacity: 1;
}

 .hamburger {
  display: none;
  cursor: pointer;
  color: #8a6f91ff;
  font-size: 1.6rem;
  background-color: white;
  margin-right: 30px;
  border: none;
}

.wrap{
  width: 100%;
  height: auto;
}

.meni{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

nav{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 2%;
}

.logo img{
  width: 280px;
  height: auto;
  margin-left: 5%;
}

nav ul li{
  display: inline-block;
  list-style: none;
}

nav ul li a{
  font-size: 1.1rem;
  color: #8a6f91ff;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

nav ul li a:hover{
  color: #6f916fff;

}
.contact-info {
 display: flex;
 flex-direction: column;
}

.contact-info a{
  font-size: 1.1rem;
  text-decoration: none;
  color: #6f916fff;
  padding-right: 1.5rem;
}
.contact-info a:hover{
  color: #8a6f91ff;
}


.main-header{

width: 100%;
height: auto;
background-image: url(img/bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;

}

.main-header h1{
  margin-top: 6rem;
  font-size: 2.5rem;
  color:  white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
}

.main-header p{
  margin-top: 2rem;
  font-size: 1.7rem;
  color: white;
  text-align: center;
}

.main-header .cont{
margin-top: 6rem;
margin-bottom: 6rem;

}

.main-header  a{
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: white;
  background: #6f916fff;
  padding: 0.8rem 2rem;
  border-radius: 5px;

}
.main-header a:hover{
  color: #8a6f91ff;
  background: white;
  font-weight: 800;
  transition: 0.2s ease-in;

}


#work-info{
  width: 100%;
  height: auto;
  background-image: url(img/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

#work-info h2{
  padding-top: 6rem;
  font-size: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  text-transform: uppercase;
  color: #8a6f91ff;
}

section {
  width: 80%;
  margin: 3rem auto;
}

article h3{
  font-size: 1.5rem;
  padding: 1.2rem 0 0.8rem 0;
  color: #6f916fff;

}

article p{
  font-size: 1.3rem;
  padding-bottom: 2rem;
  color: #646464;
}

#main{
  width: 100%;
  height: auto;
  background-color: #e6e6e6ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 8rem;
}

.main-info{
  width: 50%;
  background-color: #e6e6e6ff;
  text-align: center;
}

.main-info h3{
font-size: 2rem;
text-align: center;
padding-bottom: 3rem;
color: #8a6f91ff;
margin-top: 2rem;

}
.main-info p{
  font-size: 1.3rem;
  text-align: justify;
  padding-bottom: 2rem;
  color: #646464;
}

.main-info-img{
width: 400px;
height: 480px;
box-shadow: 8px 8px 10px -5px rgba(0, 0, 0, 0.5);
}

.main-info-img img{
  width: 100%;
  height: 100%;
}

.provide{
  width: 100%;
  height: 90vh;
  background-image: url(img/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-left: 5rem;

}
.provide-img{
  width: 600px;
  height: 400px;
  box-shadow: 8px 8px 10px -5px rgba(0, 0, 0, 0.5);
}

.provide-img img{
  width: 100%;
  height: 100%;

}

.test-info{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.test-info h3{
  padding-bottom: 2.5rem;
  font-size: 1.8rem;
  color: #6f916fff;
  text-transform: uppercase;
  text-align: center;

}


.test-info ul li{
  font-size: 1.6rem;
  text-transform: uppercase;
  list-style: none;
  color: #646464;
}

.galery-wrap{
   width: 100%;
   height: auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   grid-gap: 0.5rem;
   background-color: #6f916fff;
   padding-top: 4rem;
   padding-left: 2rem;
   padding-right: 2rem;
 }

 .img-box img{
   width: 100%;
   height: auto;
   box-shadow: 8px 8px 10px -5px rgba(0, 0, 0, 0.5);
 }

 #contact{
   width: 100%;
   height: auto;
   background-color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 #contact h3{
   text-align: center;
   font-size: 1.8rem;
   padding-top: 4rem;
   padding-bottom: 3rem;
   text-transform: uppercase;
  color: #6f916fff;

 }
 .info{
   width: 90%;
   height: auto;
   display: flex;
   justify-content: space-around;
   align-items: center;
   padding-bottom: 3rem;
 }
 .info a{
   font-size: 1.3rem;
   font-weight: 800;
   text-decoration: none;
   color: #8a6f91ff;
   padding-bottom: 2rem;
 }
 .info a:hover{
   color: #646464;

 }
 .info-links{
   display: flex;
   flex-direction: column;
   align-items: center;

 }
 .info i{
   font-size: 1.8rem;
   padding-bottom: 1.2rem;
   color: #6f916fff;
 }

 footer{
   width: 100%;
   height: 60px;
   background-color: #333333ff;
   text-align: center;
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 footer span{
   font-size: 1rem;
 }

 @media all and (max-width: 1100px){

   #navbar {
    display: none;
  }
  .hamburger{
    display: block;
  }

  #navbar.active {
    display: block;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.9;
    align-items: center;
    padding-top: 3rem;
    z-index: 100;

  }
   nav{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 0 6rem;
   }
   nav ul li{
     display: flex;
     flex-direction: column;
     align-items: center;
    list-style: none;
    padding-top: 1.5rem;
   }
   .provide{
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     flex-direction: column;
     padding: 3rem 1rem;
   }

   .test-info{
     margin-top: 2rem;
   }

   #main{
     flex-direction: column;
     align-items: center;
     padding: 0rem;
    padding-bottom: 2rem;
   }


   .info{
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-bottom: 4rem;
   }
 }

  @media all and (max-width: 700px){

    .logo img{
      width: 200px;
      height: auto;
      padding-top: 1rem;
      margin-left: 2%;
    }

    .contact-info{
      display: none;
    }


    .main-header h1{
      font-size: 1.8rem;
      color:  white;
      padding-left: 1rem;
      padding-right: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
    }

    .main-header p{
      padding-top: 2rem;
      font-size: 1.2rem;
      color: white;
    }

    #work-info h2{
      font-size: 1.8rem;
    }
    section {
      width: 100%;

    }

    article h3{
      font-size: 1.4rem;
      text-align: center;
    }

    article p{
      font-size: 1.3rem;
      padding-bottom: 2rem;
      padding-left: 1rem;
      padding-right: 1rem;
      text-align: justify;

    }
    .galery-wrap{
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       grid-gap: 0.5rem;

       padding-bottom: 0px;
     }
     section {
       width: 100%;
       margin: 0 auto;
     }

     .provide-img{
       width: 350px;
       height: 250px;
       box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5);
     }
     .test-info{
       width: 100%;
       display: flex;
       flex-direction: column;
       align-items: center;
       padding-top: 1rem;
     }
     #main{
       padding-bottom: 1rem;
     }
     .main-info{
     width: 80%;
     padding-top: 1rem;

     }
     .main-info-img{
     width: 300px;
     height: auto;

     }
     .info{

       padding: 2rem;
     }
     #contact{
       padding-left: 1rem;
       padding-right: 1rem;
     }
     footer span{
       font-size: 0.7rem;
     }
  }
