* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.logo{
  width: 200px;
}
body{
  font-family: "Poppins", serif;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  -webkit-background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  -moz-background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  
}



nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
.w3-teal{
  height: 8%;
  padding: 0 30px;
  text-decoration: none;
  display: none;
  align-items: center;
  color: black;
}
@media(max-width: 800px){
  .w3-teal{
    display: flex;
  }
  }
  

nav a:hover{
  background-color: #f0f0f0;
}
.sidebar{
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
    .menu-button{
      display: block;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
}
/*services*/
.container{
  width: 100%;
  height: 100vh;
  padding: 0 8%;
}
.container h1{
  text-align: center;
  padding-top: 5%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
  margin-top: -60px;

}
.container h1::after{
  content: '';
  background: #af8b6b;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.service{
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}
.service i{
  font-size: 40px;
  margin-bottom: 10px;
  color: #af8b6b;
}
.service h2{
  font-weight: 600;
  margin-bottom: 8px;
}
.service:hover{
  background: #af8b6b;
  color: #fff;
  transform: scale(1.05);
}
.service:hover i{
  color: #fff;
}
.text-space{
  margin-bottom: 130px;
}








footer{
  background-color: #111;
}
.footer-container{
width: 100%;
padding: 70px 30px 20px;
display: flex;
flex-direction: row;
position: fixed;
bottom: 30px;
}
.social-icons{
  display: flex;
  justify-content: center;
}
.social-icons a{
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}
.social-icons a i{
  font-size: 2em;
  color: black;
  opacity: 0.9;
}
/* hover effects on social media icons */
.social-icons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.social-icons a:hover i{
  color: white;
  transition: 0.5s;
}
.footerNav{
  margin: 30px 0;
  
}
.footerNav ul{
  display: flex;
  justify-content: center;
}
.footerNav ul li a{
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.em;
  opacity: 0.7;
  transition: 0.5s;
}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: white;
  padding: 0px;
  text-align: center;
  position:fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  font-size: 14px;
}
.footerBottom p{
  color: black;
}
.author{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 400;
  margin: 0px 5px;;
  color: black;
  font-size: 14px;
}