.about-us-landing{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(./imgs/bgimg2.jpg);
    background-size: cover;
}

.relative{
    position: relative;
}

.main-services-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 100px;
}


.main-services-comercial-services{
    margin-bottom: 100px;
}

.main-services-comercial-services h1{
    color: #E6E6FF;
    font-size: 128px;
    margin-left: -10px;
    margin-bottom: -30px;
}

.main-services-comercial-services p{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: -20px;

}

.services-content h1{
    font-size: 48px;
}

.main-services-content p{
    width: 667px;
    font-size: 14px;
}

.services-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.services-contain-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.services-contain{
    width: 32%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-contain img{
    width: 100%;
    height: 270px;
    position: relative;
    object-fit: cover;
}

.services-contain::after{
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    transition: all 0.5s;
}

.services-contain:hover::after{
    height: 70px;
    background: rgba(0,0,0,1);
}

.services-contain:hover h5::before{
    background-color: rgba(0, 0, 0, 0);
}

.services-contain h5{
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-family: 'Oswald';
    z-index: 1;
    font-weight: 400;
    font-size: 20px;
    transition:all 0.5s;
}

.services-contain h5::before{
    content: "";
    position: absolute;
    z-index: 1;
    height: 3px;
    width: 100%;
    background-color: white;
    left: 0;
    top: -6px;
    transition:all 0.5s;
}

@media only screen and (max-width: 1200px) {
    .main-services-content{
        flex-direction: column;
    }
  }









.main-services-quote{
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 0px;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 20px;
}

.main-services-quote p{
    font-size: 28px;
    font-weight: 500;
    line-height: 35px;
}


@media only screen and (max-width: 1200px) {
    
    .main-services-comercial-services h1{
        font-size: 100px;
    }
    .main-services-content p{
        width: 100%;
    }
    
  }


  @media only screen and (max-width: 1000px){

    .services-list, .services-contain-row{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .services-contain{
        width: 45%;
    }
    .main-services-comercial-services{
        overflow: hidden;
    }

  }

  @media only screen and (max-width: 500px){

    .services-contain{
        width: 95%;
    }

    .main-services-comercial-services{
        overflow: hidden;
    }

    .services-content{
        transform: scale(1);
    }
    .services-content h1{
        font-size: 24px;
        align-self: flex-start;
    }
    .services-content p{
        width: 100%;
    }

    .main-services-quote p{
        font-size: 20px;
        text-align: center;
    }
  }