@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')
;

body{
    font-family: "Poppins", sans-serif;
}

.banner-full{
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #EEEEEE;
    position: relative;
    margin-top: 95px;
}

.title-service h1 { 
    font-size: 0;
  }

.flag-service{
    background: white;
    width: max-content;
    padding: 10px 45px;
    position: absolute;
    top: 50%;
    transform: translate(0%,-50%);
    color: #9C3353;
    letter-spacing: 2px     ;
}

.content-service{
    padding:60px 0;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}


.portafolio-grid .card {
    min-height: 450px;
    width: 100%;
    height: 55vh;
  }

  .my-custom-card {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(129, 32, 61, 0.9); /* Color de fondo semi-transparente */
    opacity: 0; /* Ocultar por defecto */
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease; /* Transición suave de la opacidad */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.my-custom-card:hover .overlay-text {
    opacity: 1; /* Mostrar cuando se hace hover */
 
}

.card.my-custom-card .btn{
    background: #fff;
    font-size: 14px;
}

.row.portafolio-grid {
    margin: 0 0 30px 0;
  }

  .row.portafolio-grid .card-title{
    color: white;
  }

  .logo-grid {
    max-width: 150px;
  }


  @media screen and (min-width: 1800px) {
    .banner-full{
      margin-top: 180px;
    }}
