
*{
    margin: 0;
   padding: 0; 
}

body{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #F2F2F2;


}

header {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    box-shadow: 1px 1px 3px;
    height: 10em;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
}

.img_logo_header {

    width: 450px;
    height: 250px;

}

.navigation_header {
    display: flex;
    padding-top: 10px;
    flex-direction: row;
    height: 70px;
    align-items: center;
    gap: 5em; 
    font-size: 20px;
    margin-right: 1em;
    
}

.navigation_header a{
    text-decoration: none;
    color: #0367A6;
    transition: 1s;
    font-weight: normal;

}

.navigation_header a:hover{
    color: #010326 ;
}


#translate-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#translate-btn:hover {
    background-color: #0056b3;
}



.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../images/banner3.jpg);
    width: 100%;
    height: 430px;
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover;
    opacity: 3;
}

.banner_text {
    color:white;
    text-align: center;
    opacity: 2;
    
    


}

.banner_text p{
    padding: 20px;
    font-size: 30px;

}

.banner_text2{
    padding-top: 5em;
   
}

.information_banner{
    width: 100%;
    height: 430px;
    box-sizing: border-box;
    padding: 4em;
    text-align: center;
    background-color: #ACD1F2;
    

    

}

.information_banner h1{
    text-align: center;
}
.information_banner_content{
    display: flex;
    flex-direction: row;
    align-items: center;
    

   

}
.information_banner_content h1{
    font-weight: bold;
    padding-bottom: 2em;
}

.image_holder{ display: flex;
    flex-direction: column;
    padding-left: 4em;
    height: 300px;
    width: 500px;
}


.description{
    padding-top: 1em;
    word-wrap: break-word;
    line-height: 30px;
    font-size: 20px;
    font-weight: 20px;

    
    
}



.description2{

    word-wrap: break-word;
    line-height: 30px;
    font-size: 20px;
    font-weight: 20px;
    margin-top: 2em;
}

.practice_area {
    width: 100%;
    min-height: auto; 
    margin-top: 3em;
    padding-bottom: 5em;
}


.practice_area_title{
    display: flex;
   justify-content: center;
}
.practice_area h1{
    font-weight: bold;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    place-items: center;
    width: 100%;
    padding: 3em 0px;
}

  

  .card {
    height: 450px;
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .card-title {
    font-size: 1.5em;
    color: #333;
    padding: 10px 0;
    margin: 0;
    background-color: #f5f5f5;
  }
  
  .card-image {
    width: 100%;
    height: 250px;
  }
  
  .card-description {
    font-size: 1em;
    color: #555;
    padding: 10px;
    margin: 0;
    line-height: 1.4;
  }

  .card-button-container {
    display: flex;
    justify-content: center;
    margin-top: auto; 
    padding-bottom: 15px; 
}

  .card-button {
    width: 150px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
  }
  
  .card-button:hover {
    background-color: #0056b3;
  }


  footer{

    background-color: #010326;
    width: 100%;
    height: 300px;
    align-content: center;
  }

  footer p{
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px;
    font-weight: bolder;
    font-size: large;
    font-weight: 400;

}