@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;1,100;1,300&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

:root {
    --texto-general: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

/* Servicios */

.servicios {
    padding-bottom: 20px;
    padding-left: 5%;
    padding-right: 5%;
    height: 45rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--texto-general);
}

.servicios-text h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 30px;
}

.opciones-servicios {
    position: relative;
    display: inline-block;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
}

.img-ser {
    width: 35.125rem;
    height: 35.6875rem;
    border-radius: 12px;
}

.opciones-servicios .text-venta, .text-renta{
    width: 35.125rem;
    position: absolute;
    font-size: 3rem;
    font-weight: 400;
    top: 80%;

    align-items: center;
    background-color: #97B3A5;
    
}



/* Medias  */


@media (min-width: 320px) and (max-width: 800px) {
    .servicios {
        padding: 0%;
    }

    .servicios-text h1 {
        font-size: 1.5rem;
    }

    .opciones-servicios {
        display: flex;
        flex-direction: column;
    }

    .opciones-servicios .img-ser {
        height: 30vh;
        width: 30vh;
    }

    .opciones-servicios .text-renta {
        width: 6rem;
        font-size: 1.5rem;
        top: 40%;
        background-color: #D9D9D9;
    }

    .opciones-servicios .text-venta {
        width: 6rem;
        font-size: 1.5rem;
        top: 90%;
        align-items: center;
        background-color: #D9D9D9;
    }
}