/*Contacto*/
.contact{
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 3rem;
    justify-content: center;
    gap: 3rem;
}

.info-contact{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container-ctn{
    display: flex;
    align-items: center;
    justify-content: left;
}

.contact p{
    margin-bottom: 0;
    padding-left: 1rem;
    font-size: 20px;
    font-weight: bold
}

.img-con{
    display: inline-block;
    padding: 10px;
    background-color: #ea0027;
    border-radius: 50%;
}
    
    .img-con img{
        width: 30px;

    }

.google-map{
    width: 700px;
    height: 400px;
    border-radius: 5%;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:1000px){
/*Contacto*/
    .contact{
        flex-direction: column-reverse;
    }

    .info-contact{
        width: 100%;
    }

    .contact p{
        font-size: 20px;
        font-weight: normal;
    }

    .img-con{
        padding: 10px;
    }
        
        .img-con img{
            width: 25px;
        }

    .google-map{
        width: 80%;
    }
}

@media screen and (max-width:720px){
    .contact{
        width: 90%;
    }

    .contact p{
        font-size: 15px;
    }
    
    .img-con{
        padding: 12px;
    }
        
        .img-con img{
            width: 20px;
        }
    
    .google-map{
        width: 100%;
        height: 300px;
    }
}