@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,800;1,800&family=Roboto:wght@400;500;900&display=swap');


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primario: rgb(121, 23, 13);
    --color-secundario: #B31217;
    --color-terciario: #333333;
    --color-opcional: #515151;
    --color-4: #f7c600;
    --ppal-font: 'Roboto', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

}

html {
    font-family: var(--ppal-font);
    font-size: 10px;
    color: var(--color-terciario);
    scroll-behavior: smooth;
    list-style: none;
    
}

section {
    padding: 3.9rem 0;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
}

h4 {
    font-size: 1.5rem;
    justify-content: center;
    font-weight: 400;
}


.container {
    width: 100%;
    max-width: 122.5rem;
    margin: 0 auto;
    padding: 0 2.4rem;
}
.modal{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);

    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    z-index: 999999;
    animation: modal 2s 1.5s forwards;
    visibility: hidden;
    opacity: 0;
}
.covid19{
    margin: 10rem auto;
    width: 70%;
    height: 50%;    
    position: relative;
}

.modal.covid19 img{
    width: 60%;
    object-fit: cover;    
    
}
#cerrar{
    display: none;
}
#cerrar + label{
    position: fixed;
    color: #fff;
    font-size: 3rem;
    z-index: 99999999999;   
    right: 2rem;   
    cursor: pointer;
    animation: modal 2s 1.5s forwards;
    visibility: hidden;
    opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
    display: none;
}

@keyframes modal{
    100%{
        visibility: visible;
        opacity: 1;  
    }
}



/* Header Estilos */

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
    
}
.nav {
    height: 7.2rem;
    position: fixed;
    align-items: center;
    justify-content: center;   
}
.menu-toggle {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    transform: translateX(2000%);
    cursor: pointer;
    z-index: 1500;
    
}
.fa-times{
    display: none;
}
.nav-list {
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--color-terciario);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
    transition: transform .5s;
}
.nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}
.open .fa-times {
    display: block;
}
.open .fa-bars {
    display: none;
}
.open .nav-list {
    transform: translateX(0);
}
.open .nav::before {
    opacity: 1;
    transform: scale(1);
}
.nav-item {
    border-bottom: 2px solid rgba(255, 255, 255, .3);

}
.nav-link {
    display: block;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color .5s;
}
.nav-link:hover {
    color: #fff;
}
.logo {
    width: 16rem;
    height: 6rem;
    display: flex;
    position: absolute;
    top: 30%;
    left: 5%;
    cursor: pointer;
}

/* Hero */

.hero {
    width: 100%;
    height: 70vh;
    background-image: linear-gradient(to bottom, rgba(25, 10, 5, .9),
            rgba(135, 0, 0, .8), rgba(25, 10, 5, .6)), url("/imagenes/Buenos Aires.jpg");
    background-blend-mode: darken;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2rem 2rem var(--color-terciario);
    /* clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%); */
}

.hero::after {
    content: ('');
    position: absolute;
    top: 0;
    left: 0;
}

.container-hero {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: text 1.5s;

}

.content-text {
    width: 80%;
    position: absolute;
    justify-content: center;
    align-items: center;
    margin-top: 18rem;
    left: 4.5rem;
    
}

.headline {
    position: relative;
    color: #b31217;
    font-family: var(--font-secondary);
    font-size: 3.8rem;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1rem;
    animation: text 1.5s;

}

.headline span {
    position: relative;
    color: #fff;
    font-size: 3.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .8rem;
    
}

.subheadline {
    font-size: 1.4rem;
    font-family: var(--ppal-font);
    position: relative;
    left: .5rem;
    color: #fff;
    font-weight: 100;
    line-height: 2;
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeup .5s ;
    animation-delay: 1;
    
}

@keyframes text{

    0% {
        transform: translateX(-100rem);
        opacity: 0;
        letter-spacing: 2rem;
    }
    
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeup{

    0% {
        transform: translateY(-4rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0rem);
    }
}


/* Main */


.contenedor {
    
    margin-bottom: 2rem;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
}

.general {
    margin-top: 4rem;
}

.title-empresa{
    color:var(--color-secundario);
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: .2rem ;
    margin-bottom: 2.8rem;
}
p{
    font-size: 1.5rem;
    padding: 2rem;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.slider-empresa{
    display: none;
}

.servicios.contenedor {
    width: 100%;
    margin: auto; 
    background-color: var(--color-secundario);   
}

.title-servicios{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: .2rem ;
    margin-bottom: 2.8rem;
}
.info, .info-2 {
    text-align: center;
    list-style: none;
    font-size: 1.5rem; 
    font-weight: 500;
    margin-top: 1rem; 
    transition: all .5s; 
    
}
.info a{
    color: var(--color-secundario);
    padding: .4rem 3.5rem;
    border-radius: 2rem;
    background-color: #fff;    
}
.info:hover{
    transform: scale(1.1);
    transition: all .5s;
}
.info:hover a{
    background-color:var(--color-opcional);
    color: #fff;
    transition: all .5s; 
}
.operadora{
    width: 100%;
    height: 30vh;
    justify-content: center;
    display: flex;
    
}
.operadora-content{
    width: 26rem;
    height: 26rem;
    display: flex;
    margin-top: 2rem;
    border-radius: 50%;
    background-color: #fff;
}
.operadora-content img{
    margin: auto;
    width: 26rem;
    height: 30rem;
    padding: 2rem; 
      
}
.caja-servicios{
    width: 100%;
    height: 20vh;
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    
}
.caja{
    width: 11rem;
    height: 11rem;
    margin: auto;
    text-align: center; 
}
.caja img{
    width: 70%;
    margin-top: 1rem;
    padding: 1rem;
    border: solid .2rem #fff;
    border-radius: 10%;
    transition: all 400ms; 
}
.caja h4{
    font-size: 1.6rem;
    color: #fff;
    margin-top: 1.3rem;
    font-weight: 500;
    transition: all 500ms; 
}
.caja.contenido{
    width: 100%;
    position: absolute;
    overflow: hidden;
    
}
.contenido p{
    display: none;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    padding: .6rem;
    color: #fff;
    opacity: 0;
    font-weight: 100;
    transform: translateY(-6rem);
    transition: all 600ms; 
    
}
.caja:hover{  
    background-color: rgba(135, 0, 0, .5);  
    box-shadow: 0 .5rem .5rem 0.5rem rgba(0, 0, 0, .5);   
    
}
.caja:hover img{
    transform: translateY(-3rem);
}
.caja:hover h4{
    transform: translateY(-3rem);
}
.caja:hover .contenido p{
    transform: translateY(-3rem);
    opacity: 1;
    
}
.contacto.contenedor{
    width: 100%;
    height: 5vh;
    margin-top: 1rem;
    margin-bottom: -5rem;
    justify-content: center;
}
.contacto-card{
   display: none;
}

.title-contacto{
    display: block;
    color:var(--color-secundario);
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: .2rem ;
    margin-bottom: -2.5rem;
}
    
.info-2 a{
    color: #fff;
    padding: .4rem 3.5rem;
    border-radius: 2rem;
    background-color: var(--color-primario);    
}
.info-2:hover{
    transform: scale(1.1);
    transition: all .5s;
}
.info-2:hover a{
    background-color:var(--color-opcional);
    color: var(--color-primario);
    transition: all .5s; 
}

/* Footer */

footer {
    position: relative;
    text-align: center;
    width: 100%;
    height: 20vh;
    background-color: var(--color-terciario);
}
.footer.contenedor h5{
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 100;
    margin-bottom: 2rem;
}
.logo-footer img {
    width: 22rem;
    display: flex;
    margin: auto;
    padding: 1rem;
}
.social-icons{
    list-style: none;
    margin-bottom: -2rem;
    display: flex;
    justify-content: center;
    background-color: rgba(133, 127, 127, 0.9);
}
.social-icons img{
    width: 7rem;
    color: #fff;
    padding: .1rem 2rem;
    cursor: pointer;    
}

.social-icons img:hover{
    transform: scale(1.25);
    transition: all .5s;
}
.footer.contenedor p{
    font-size: 1.2rem;
    color:#fff;
    margin-top: 0.5rem;
    text-transform: capitalize;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#63b160;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}


/* Estilos responsive */


/* @media screen and (min-width: 360px){

    .nav {
        height: 7.2rem;
        position: fixed;
        align-items: center;
        justify-content: center;   
    }
    .menu-toggle {
        width: 2rem;
        height: 2rem;
        position: absolute;
        top: 50%;
        transform: translateX(1400%);
        cursor: pointer;
        z-index: 1500;
        
    }
    .fa-times{
        display: none;
    }
    .nav-list {
        list-style: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background-color: var(--color-terciario);
        padding: 4.4rem;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        z-index: 1250;
        transform: translateX(-100%);
        transition: transform .5s;
    }
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        opacity: 0;
        transform: scale(0);
        transition: opacity .5s;
    }
    .open .fa-times {
        display: block;
    }
    .open .fa-bars {
        display: none;
    }
    .open .nav-list {
        transform: translateX(0);
    }
    .open .nav::before {
        opacity: 1;
        transform: scale(1);
    }
    .nav-item {
        border-bottom: 2px solid rgba(255, 255, 255, .3);
    
    }
    .nav-link {
        display: block;
        color: rgba(255, 255, 255, .6);
        text-transform: uppercase;
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-right: -2px;
        transition: color .5s;
    }
    .nav-link:hover {
        color: #fff;
    }
    .caja-servicios{
        width: 100%;
        height: 40vh;
        margin-top: 12rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; 
        
    }
    footer {
        position: relative;
        text-align: center;
        width: 100%;
        height: 35vh;
        background-color: var(--color-terciario);
    }


} */



@media screen and (min-width: 1024px) {

    
    section {
        padding: 7.9rem 4rem 7.9rem 4rem;
    }
    .menu-toggle{
        display: none;
    }
    .nav{
        justify-content: space-between;
        width: 100%;
        height: 12vh;
        margin: auto;
        display: flex;       
        position: fixed;        
    }
    .nav-list{
        width: 100%;
        height: initial;
        background: linear-gradient(to bottom, rgba(45, 45, 45, .9), rgba(45,45,45,.6),
        transparent);
        justify-content: flex-end;  
        flex-direction: row;
        transform: initial;        
    }
    .nav-item{
        position: relative;
        margin: 1rem .5rem;        
        border: none;       
    }
    .nav-link{
        font-size: 1.4rem;
        margin-right: 2rem;        
    }
    .active{
        position: relative;
        
    }
    .active::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 1.2px;
        background-color: #fff;
        left: 0;
        bottom: -4px;
    }
    .logo {
        width: 26rem;
        height: 8rem;
        top: 20%;
        left: -4%;
        cursor: pointer;
        z-index: 2500;
    }
    .hero {
        height: 100vh;
        background-image: linear-gradient(to bottom, rgba(25, 10, 5, .9),
                rgba(135, 0, 0, .8), rgba(25, 10, 5, .6)), url("/imagenes/Mendoza.jpg");
    }
    .hero::after {
        content: ('');
        position: absolute;
        top: 0;
        left: 0;    
    }
    .container-hero {
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(25,10,5,.52);
        clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
    
    }    
    .content-text {
        width: 50%;
        margin-top: 28rem;
        left: 20rem;        
    }
    
    .headline {
        font-size: 6rem;
        
    }    
    .headline span {
        font-size: 6rem;
        letter-spacing: 1.2rem;        
    }    
    .subheadline {
        font-size: 2.2rem;
        line-height: 1.5;
        letter-spacing: .2rem; 
        
    }
    .general {
        margin-top: -2rem;    
        height: 100vh;
        
    }
    .general h3 {
        color: var(--color-secundario);
        text-align: center;        
        font-size: 2.6rem;  
        font-weight: 500;  
        margin-bottom: -1rem;    
    }    
    p {
        font-size: 2rem;
        padding: 2rem;
        justify-content: center;
        text-align: center;
        font-weight: 200;
        margin-bottom: 4rem;
    }
    .slider-empresa{          
        width: 100%;
        height: 45vh;        
        margin-top: 6rem;
        display: flex;    
        flex-wrap: wrap;
        justify-content: space-around; 
          
    }
    .slide-item {
        position: relative;
        width: 42rem; 
        height: 40vh; 
        box-shadow: 0 2rem 2rem rgba(0, 0, 0, .5);     
        overflow: hidden;
    }
    .slide-item img{
        width: 100%;
        height: 100%;
        object-fit: cover; 
        position: relative;       
    }
    .content-1{
        width: 80rem;
        height: 80rem;
        position: absolute;
        background: rgba(135, 0, 0, .7);
        top: 0;
        transform: rotate(-30deg);
        margin-left: -70rem;
        transition: all 0.8s;
        
    }
    .content-2{
        width: 80rem;
        height: 80rem;
        position: absolute;
        background: rgba(135, 0, 0, .6);
        top: 0;
        transform: rotate(-30deg);
        margin-left: -65rem;
        transition: all 0.5s;
        box-shadow: 0 2rem 2.5rem rgba(0, 0, 0, 0.938);
    }
    .slide-item:hover .content-1{
        width: 260%;
        transition: all 0.8s;
    }
    .slide-item:hover .content-2{
        width: 240%;
        transition: all 0.5s;
    }
    .text-slide{
        position: absolute;
        top: 8rem;       
        width: 25rem;
        padding: 2rem;
        color: #fff;
        z-index: 2500;
    }
    .text-slide h4{
        text-align: center;
        font-size: 1.8rem;
        color: #fff;
        opacity: 0;
        transform: scale(0.2);
        transition: all .8s;
        text-transform: uppercase;
    }
    .text-slide p{
        font-size: 1.5rem;
        margin: auto;
        text-align: center;
        font-weight: 100;        
        opacity: 0;
        transform: scale(1.5);
        transition: all .8s;
        text-transform: initial;
    }
    .slide-item:hover h4{
        opacity: 1;
        transition: all .8s;
        transform: scale(1);
    }
    .slide-item:hover p{
        opacity: 1;
        transform: scale(1);
        transition: all .8s;
    }
   
    .servicios.contenedor{
        background-color: var(--color-secundario);
    }
   
    .title-servicios{
        margin-left: -75rem;
        margin-top: -5rem;
        font-size: 2.6rem;
        letter-spacing: .5rem ;
        font-weight: 500;
        margin-bottom: 2rem;
    }
    .info{
        position: relative;
        font-size: 1.8rem;
        padding: 2.2rem;
        margin-right: -70rem; 
        margin-top: -8rem;   
    }
    .info a{
        color: var(--color-secundario);
        padding: .8rem 8rem;
        border-radius: 3rem;
        
    }
    .operadora{
        width: 100%;
        height: 12vh;
        justify-content: center;
       
        
    }
    .operadora-content{
        position: absolute;
        width: 30rem;
        height: 30rem;
        display: flex;
        margin-top: -20rem;
        box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .5);
        
    }
    .operadora-content img{
        position: absolute;
        margin-left: 2rem;
        width: 26rem;
        height: 30rem;
        padding: .5rem;           
    }
    .caja-servicios{
        width: 100%;
        height: 22vh;
        margin-top: 6rem;        
    }
    .caja{
        width: 18rem;
        height: 24rem;
        margin: auto;
        text-align: center; 
    }
    .caja img{
        width: 65%;
        margin-top: -1rem;
        padding: 1rem;
        border: solid .2rem #fff;
        border-radius: 10%;
        transition: all 400ms; 
    }
    .caja h4{
        font-size: 1.8rem;
        color: #fff;
        margin-top: 1.3rem;
        font-weight: 400;
        transition: all 500ms; 
    }
    .contenido p{
        display: block;
        font-size: 1.6rem;
        margin-top: 2rem;
        font-weight: 200;
        padding: .8rem;
        text-transform: initial;
    }
    .contacto.contenedor{
        width: 100%;
        height: 56vh;
        margin-top: 4rem;
        margin-bottom: 8rem;
        justify-content: center;
        
    }
     
    .title-contacto{
        color:var(--color-secundario);
        text-align: center;
        font-size: 2.6rem;
        letter-spacing: .5rem ;
        font-weight: 500;
        margin-top: -4rem;
        margin-bottom: 0rem;
    }
    
    .contacto p{
        font-size: 1.8rem;
        padding: 2rem;
        justify-content: center;
        text-align: center;
        font-weight: 300;
        margin-bottom: -1rem;            
    }
    .contacto-card{
        width: 100%;
        height: 100%;
        margin-top: -1rem;
        display: flex;    
        flex-wrap: wrap;
        justify-content: space-between;       
    }
    .columna-card{
        position: relative;
        width: 49%; 
        height: 30vh;       
        line-height: 1.4;        
             
    }
    .columna-card h4{
        width: 100%;
        font-size: 2rem;
        font-weight: 500;
        color: var(--color-secundario);
        display: flex;
    }
    .lista-contenido{
        list-style: none;
        font-size: 1.6rem;
        font-weight: 500;
        padding: 2rem 2rem 2rem 1rem;
        color: var(--color-terciario);
        margin: auto;
        justify-content: center;
        align-items: center; 
        line-height: 2;         
    }
    
    .lista-contenido span{
        display: inline-block;       
    }

    .lista-contenido img{
        width: 2.8rem;
        margin: -0.8rem 2rem;
        padding: .4rem;        
    }      
    a {
        color: var(--color-secundario);
        
    }
    .footer.contenedor h5{        
        font-size: 1.5rem;
        margin-bottom: 0rem;
    }
    .logo-footer img {
        width: 26rem;
        display: flex;
        margin-left: 2rem;
        padding: .2rem;
        margin-bottom: -2rem;
    }
    .social-icons{
        position: relative;
        margin-top: -4rem;
        background-color: var(--color-secundario);
    }
    .social-icons img{
        width: 7.2rem;
        margin: 0 2rem;
        
        padding: .1rem 2.2rem;
        cursor: pointer;    
    }
    
    .social-icons img:hover{
        transform: scale(1.25);
        transition: all .5s;
    }
    .footer.contenedor p{
        font-size: 1.4rem;
        color:#fff;
        margin-top: 1rem;
        text-transform: capitalize;
    }    
}
@media screen and (min-width: 1600px){

    .modal{
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
    
        position: absolute;
        top: 0;
        left: 0;
    
        display: flex;
        z-index: 999999;
        animation: modal 2s 1.5s forwards;
        visibility: hidden;
        opacity: 0;
    }
    .covid19{
        margin: 10rem auto;
        width: 40%;
        height: 20%;    
        position: relative;
    }
    
    .modal.covid19 img{
        width: 60%;
        object-fit: cover;    
        
    }
    #cerrar{
        display: none;
    }
    #cerrar + label{
        position: fixed;
        color: #fff;
        font-size: 3rem;
        z-index: 99999999999;   
        right: 49rem;
        top: 60rem;
        cursor: pointer;
        animation: modal 2s 1.5s forwards;
        visibility: hidden;
        opacity: 0;
    }
    
    #cerrar:checked + label, #cerrar:checked ~ .modal {
        display: none;
    }
    
    @keyframes modal{
        100%{
            visibility: visible;
            opacity: 1;  
        }
    }
    .logo {
        width: 24rem;
        height: 8rem;
        left: -6%;        
    }
    .content-text {
        margin-top: 40rem;
        left: 18rem;        
    }
    .headline {
        font-size: 6rem;
        font-weight: 600;
        letter-spacing: 1.2rem;    
    }    
    .headline span {
        font-size: 6rem;
        font-weight: 600;
        letter-spacing: 1px;        
    }    
    .subheadline {
        font-size: 2rem;
        line-height: 2.5;
        letter-spacing: 1px;      
        
    }
    .general h3 {
       margin-bottom: 4rem;    
    }    
    
    
    .title-empresa p{
        text-transform: uppercase;
    }
    .slide-item {
        position: relative;
        width: 50rem; 
        height: 44vh; 
        box-shadow: 0 2rem 2rem rgba(0, 0, 0, .5);     
        overflow: hidden;
    }
    .content-1{
        width: 80rem;
        height: 80rem;
        position: absolute;
        background: rgba(135, 0, 0, .7);
        top: 0;
        transform: rotate(-30deg);
        margin-left: -70rem;
        transition: all 0.8s;
        
    }
    .content-2{
        width: 80rem;
        height: 80rem;
        position: absolute;
        background: rgba(135, 0, 0, .6);
        top: 0;
        transform: rotate(-30deg);
        margin-left: -75rem;
        transition: all 0.5s;
        box-shadow: 0 2rem 2.5rem rgba(0, 0, 0, 0.938);
    }
    .slide-item:hover .content-1{
        width: 220%;
        transition: all 0.8s;
    }
    .slide-item:hover .content-2{
        width: 240%;
        transition: all 0.5s;
    }
    .text-slide{
        position: absolute;
        top: 14rem;       
        width: 30rem;
        padding: 2rem;        
    }
    .text-slide h4{
        text-align: center;
        font-size: 2rem;      
    }
    .text-slide p{
        font-size: 1.8rem;       
    }

    .caja-servicios{
        width: 100%;
        height: 28vh;              
    }
    .caja{
        width: 35rem;
        height: 33rem;        
    }
    .caja img{
        width: 65%;
        margin-top: -3rem;
        padding: 3rem;       
    }
    .caja h4{
        font-size: 2.5rem;        
    }

    .contenido p{
        font-size: 1.8rem;   
        padding: 1.2rem;                  
    }
    .title-contacto{
        color:var(--color-secundario);
        text-align: center;
        font-size: 2.6rem;
        letter-spacing: .5rem ;
        font-weight: 500;
        margin-top: -4rem;
        margin-bottom: -1rem;
    }
    
    .columna-card h4{
        width: 100%;
        margin-top: 2rem;
        font-weight: 600;        
    }
    .lista-contenido{
        list-style: none;
        font-size: 1.7rem;
        font-weight: 500;
        padding: 2rem 2rem 2rem 15rem;
        line-height: 2;          
    }
    .lista-contenido img{
        width: 3.4rem;
        margin: -1.4rem 2rem;
        padding: .4rem;        
    }   
    .footer.contenedor{
        margin-top: -4rem;
    }   
    


    
}

