.principal-banner_cont {
    width: 100%;
    position: relative;
    height: 560px;
}

.principal-banner {
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.principal-banner_title {
    position: relative;
    z-index: 200;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 60px;
    margin: 0;
    font-weight: 600;
    padding: 10px 0;
    background-color: #0007;
}

.principal-title_cont{
    display: grid;
    align-items: center;
    height: 100%;
    width: 100%;
}

.principal-banner_text {
    font-size: 20px;
    margin: 15px 80px;
    padding: 14px;
    text-align: justify;
    border-radius: 2px;
    background-color: #0002;
}



.service_img {
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

.service_img-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.service-banner_cont {
    position: relative;
    width: 100%;
    height: 500px;
}

.service-title_cont {
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    z-index: 200;
}

.service-title {
    width: 60%;
    text-align: center;
    font-size: 50px;
    padding: 10px;    
    color: #fff;
    background: #0005;
    border-radius: 2px;
}

.hr1-deco_cont {
    display: grid;
    justify-items: center;
}

.hr1-deco {
    width: 90%;
    border: 2px solid #000;
    margin-top: 15px;
}

.service-text_cont {
    margin: 45px;
}

.service-text {
    font-size: 22px;
    text-align: justify;
}

.hr2-deco {
    border: 2px solid #000;
    width: 95%;
}

.hr3-deco {
    width: 85%;
    border: 2px solid #000;
}

.service-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #263b74;
}

/*------------------------------------------------------------------------------------------*/

.companies-services_cont {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 25%);
    margin: 20px;
}
  .companies-services_cont div {
    margin: 5px;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.5s;
  }
  .companies-services_cont div.show_service {
    opacity: 1;
    transform: scale(1);
    width: fit-content;
    transition: 0.5s;
  }
  .companies-services_cont img {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .filter {
    margin: 10px 0;
    text-align: center;
  }
  .filter button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .filter button:hover {
    background-color: #0056b3;
  }

  .hide_service{
    width: 0;
    opacity: 0;
    transition: 0.5s;
  }