*{
    margin:0;
    padding: 0%;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-evenly;
    font-size: 2em;
    background-color:rgb(216, 165, 71);
   padding-top: 20px;
   padding-bottom: 20px;
   position: sticky;
   top: 0%;
           z-index: 999;
}
nav{
    width: 60%;
    display: flex;
    justify-content:space-between;
    align-items: center;
   
 }
nav a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
}
main{
   width: 100%;
   height:100vh;
   background: url(sebastian-pichler-bAQH53VquTc-unsplash.jpg);
   background-size: cover;
   text-align: center;
}
main h3{
    font-size: 6em;
    color:orange;
    text-transform: capitalize;
    padding-top: 200px;
    text-shadow:10px 20px  6px black;
}
main h4{
    font-size: 5em;
    color: white;
    text-transform: capitalize;
    padding-top: 20px;

}
main button{
     background-color:orange;
     height: 70px;
     width: 300px;
     margin-top: 100px;
     font-size: 2em;
     border-radius: 20px;
     border: none;
    
}

.aboutus{
    margin-top: 200px;
    max-width: 100%;
    max-height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
}
.about-con{
    width: 800px;
   font-size: 3em;
}
.about-img{
    width: 700px;
   
    padding-left: 200px;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: 0.4s;
    
}
/* .about-img:hover{
    background: url(./pexels-ekaterina-bolovtsova-6077123.jpg);
    background-size: cover;
     border-radius: 40px;
    transform: translate(30px,20px);
} */

.service{
    margin-top: 150px;
    max-width: 100%;
    max-height: fit-content;
    background: url(giammarco-boscaro-zeH-ljawHtg-unsplash.jpg);
    background-color: gray;
    text-align: center;
    padding-top: 70px;
    background-size: cover;
}
.service h2{
   font-size: 5em;
   text-transform: capitalize;
   color:#fff;
}
.service h1{
    font-size: 2.5em;
    color:#fff;
    text-transform: capitalize;

}
.items{
    margin-top: 100px;
    display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.box{
    margin-bottom: 50px;
     height: 400px;
     width: 500px;
     border: 5px dotted black;
     position: relative;
    background: transparent;
    backdrop-filter:blur(10px);
    
}
.box::after{
    content:"";
    position: absolute;
height:100%;
width:100%;
left: 0%;
transition: 0.5s;
background: url(.pexels-ekaterina-bolovtsova-6077123.jpg);
background-size: cover;
    background-position: center;
top: 0%;
}
.box:hover.box::after{
    background-color: antiquewhite;
    transform: rotatey(90deg);
       

}
.box h1{
 font-size: 3.5em; 
 text-transform: uppercase;
 color: #fff; 
  text-shadow: 5px 5px 7px black, 5px 5px 7px black,5px 5px 7px black;
}

.laws-img{
    width: 200px;
}
.box p{
    color:#fff;
    font-size: 1.5em;
    text-transform: capitalize;
    
}        

.lawyer{
    max-width: 100%;
    max-height: fit-content;
    text-align: center;
    background:url();
    padding-bottom: 100px;
}
.lawyer h1{
    font-size: 5em;
    text-transform: capitalize;

}
.lawyer p{
   font-size: 2.5em;
  font-weight: 600;
  text-transform: capitalize; 
}
.lawyer-blog{
    display: flex;
    justify-content: space-evenly;
    margin-top: 200px;
    flex-wrap: wrap;
    
}
.blog{
    height: 450px;
    background-color:rgb(216, 165, 71) ;
    position: relative;
    margin-bottom: 100px;
}
.blog::after{
    content:"";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
        background:url(.melinda-gimpel-xcVW_sFp4jQ-unsplash.jpg);
    background-size: cover;
background-position:center;    
    transition: 0.4s;
}
.blog h1{
    padding-top: 10px;
    font-size: 3em;
}
.blog h4{
    font-size: 2em;
    padding-top: 10px;
    text-transform: capitalize;
    color: gray;
    
}

.blog:hover.blog::after{
    height: 1px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    max-height: fit-content;
    font-size: 2em;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
  }
  
  .footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  
  .footer-section p, 
  .footer-section ul, 
  .footer-section li, 
  .footer-bottom p {
    margin: 5px 0;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 5px 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
  
  .footer-bottom p a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom p a:hover {
    text-decoration: underline;
  }
  header nav {
    display: none;
    flex-direction: column;
  }
  
  header nav.active {
    display: flex;
  }
  
  header img {
    cursor: pointer;
  }
  
  header nav a.active {
        color: #ff6347;
  }
  
