/* Definición de variables */
:root {
    --blanco: #ffffff;
    --negro: #212121;
    --turquesa: #004C59;
}

/* Estilo global para todo el documento */
* {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
}
h2{
margin: 70px 0px 30px 0px;
color: #004C59;
font-weight: 400 ;
font-size: 3rem;
text-align: center;

}


h3{
    margin: 5px 0px 30px 0px;
color: black;
font-weight: 500 ;
font-size: 2.2rem;
}
@media (min-width: 750px) {h3{
    margin-top: 30px;

}
}
h4{
    margin: 200px 30px 30px 30px;
    color: #ffffff;
    font-weight: 100 ;
    font-size: 9vw;
    text-align: center;
     

}
@media (max-width: 780px) {h4{
    font-size: 15vw;
    margin: 150px 30px 30px 30px;
     
}
}
h5{
    margin: 0px 30px 30px 30px;
    color: #ffffff;
    font-weight: 100 ;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 7px;
    padding: 10px;
     

}

/* Definición del tamaño de fuente base en 10px */
html {
    font-size: 62.5%; /* equivale a 10px */
}

/* Establecimiento del box-sizing a border-box para todo el documento */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* Definición del ancho y altura del encabezado y su posición en primer plano */

.cont_head {
    position: fixed;
    top:2%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background-color: black;
    z-index: 9999; /* Asegura que la barra se muestre por encima de otros elementos */
    height: 50px; /* Ajusta la altura según tus necesidades */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* Agrega otros estilos según sea necesario */
}

.logo2{
    padding-right: 35px;
}

.logo2img{
    justify-content: center;
    align-items: center;
    height: 30px;
    padding-top: 10px;
    
}

nav ul{
    
    display: flex;
    text-decoration: none;
    align-items: center;
    list-style: none;

   
   

}
nav ul li{
    margin:0px 1.4vw;
    text-decoration: none;
    align-items: center;
    padding: 5px 20px;
    justify-content: center;
}

nav ul li a{
   
    text-align: center;
    color: #dddddd;
    font-size: 1vw;

}

.abrir-menu, .cerrar-menu{
    display: none;
    margin: 10px 10px;
    background: none;
    border: none;
    color: transparent;
    outline: none;
    cursor: pointer;

}

@media (max-width: 763px ) {
.cont_head{
    height: 60px;
    justify-content:space-between;
}
.logo2img{
    height: 60px;
}
    .abrir-menu, .cerrar-menu{
        display: block;
    }
    nav{
        opacity: 0;
        visibility: hidden;
    }
    
    nav{
        
        height: 400vw;
        display: flex;
        position: absolute;
        top:0;
        right: 0;
        bottom: 0;
        background-color:#000000;
        padding: 2rem;
        z-index: 3;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.7);
        flex-direction: column;

    }
    .nav.visible{
        opacity: 1;
        visibility: visible;
    }
    nav ul{
        flex-direction: column;
    
        display: flex;
    }
    nav ul li{
        padding: 20px;
        align-items: center;

    }
    nav ul li a{
        text-align: center; 
        font-size: 4vw;
    }

}


/* Diseño de botón de cotización 

.cotizacion{
display:block;
background-color: #ffffff;
padding:12px 40px;
border:3px solid #004C59;
border-radius:8px;
font-weight:normal;
transition:all 300ms;
text-transform:uppercase;
}

/* Diseño de animación de botón de cotización 

.cotizacion:hover{
transform: scale(1.05);
color: white;
background-color: #004C59;
font-weight: bolder;

}

*/

/* Diseño de sección hero */
.backcol {
    background-color: black;
    position: relative;
    height: 64vw;
    display: flex;
    flex-direction: column;

    
}
  
@media (max-width: 780px) {.backcol{
    height:100vw;
}
     
}
.hero {
    background-image: url(../images/hero.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 110%;
    height: 64vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

  

@media (max-width: 780px) {.hero{
    height: 100vw;
    background-size: 135%;
}
     
}
.texthero{
    display: flex;
    padding-top: 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

  
.texthero1{
    color: #ffffff;
    font-family: 'Almarai', sans-serif;
    
    text-align: start;
    font-size: 3.7vw;
    font-weight: bolder;
}
.texthero21{
    background: linear-gradient(to right, rgb(246, 14, 246), rgb(255, 179, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.texthero2{
    color: #ffffff;
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    font-weight: bolder;
    text-align: start;
    font-size: 2.3vw;
}
@media (max-width: 780px ) {

.texthero1{
    padding-top: 10vw;
    font-size: 6vw;
}
.texthero2{
    font-size: 5vw;
}
     
}
.cotiza{
    
    display:block;
    color: white;
    background-color: #4c0059;
    padding:12px 12px;
    border:3px solid #4c0059 ;
    border-radius:8px;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    margin-top: 30px;

    

}
.cotiza:hover{
transform: scale(1.05);
color: black;
background-color: rgb(227, 102, 0);
border:3px solid rgb(227, 102, 0) ;
font-weight: bolder;
cursor: pointer;


}
/* Diseño de GRID Puertometal */
.contgrid{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gridpm{
    margin-top: 5vw;
    display: grid;
    grid-template-columns: repeat(6, 10vw);
    grid-template-rows: repeat(2,13vw);

}

.textodesc3{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: normal;
    color: #565656;
    font-size: 1.2vw;
    line-height: 1.4;
    padding: 1vw;
}

.griditempm1{
    background-image: url(/images/puertometallogofull.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    height: 20vw;
    width: 60vw;
    position: absolute;
    
    
}
.griditempmgen:nth-child(1){
    grid-column-start: span 6;
    grid-row-start: span 1;
}
.griditempmgen:nth-child(2){
    grid-column-start: span 6;
    grid-row-start: span 1;
}


/* Diseño de box principal de nuestros servicios */ 
.contserv{
    display: flex;
    flex-direction: column;
    margin-top: 4vw;
}
.contgal{
    padding: 30px;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(5, 12vw);
    grid-template-rows: repeat(3,22vw);
    gap: 1.5vw;
}

.serv-item:nth-child(1){
    grid-column-start: span 3;
    grid-row-start: span 2;
}
.serv-item:nth-child(2){
    grid-column-start: span 2;
    grid-row-start: span 1;
}
.serv-item:nth-child(3){
    grid-column-start: span 2;
    grid-row-start: span 1;
}
.serv-item:nth-child(4){
    grid-column-start: span 2;
    grid-row-start: span 1;
}
.serv-item:nth-child(5){
    grid-column-start: span 3;

    
}
.serv-item{
    display:block;
    background-color: #f2f2f2;
    height: 100%;
    border-radius: 25px;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    margin-top: 10px;
    position: relative;
    overflow: hidden; /* Para ocultar partes de la imagen que se salgan del bloque */
}

.serv-item:hover{
    transform: scale(1.03);
    cursor: pointer;
}
.serv-img1{
    pointer-events: none;
    background-image: url(/images/boquilla.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    background-origin: content-box;
    height: 100%;
    width: 100%;
    position: absolute;
}
.serv-img2{
    pointer-events: none;
    background-image: url(/images/dobladora.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    background-position: center;
    background-origin: content-box;
    height: 105%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.serv-img3{
    pointer-events: none;
    background-image: url(/images/Pintor.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    background-position: left;
    background-origin: content-box;
    height: 80%;
    width: 100%;
    position: absolute;
   
}
.serv-img4{
    pointer-events: none;
    background-image: url(/images/Soldador.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    background-position: top;
    background-origin: content-box;
    height: 80%;
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 5vw;
}
.serv-img5{
    pointer-events: none;
    background-image: url(/images/Diseñador.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    background-position: top;
    background-origin: content-box;
    height: 80%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 4.4vw;
}

.textosold{
    padding-top: 2vw;
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 3vw; 
    color: #2b2b2b;
}

.textocorte{
    padding-top: 36vw;
    color: #2b2b2b;
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 4vw; 
}

.textolaser{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 2.5vw;
    margin-top: -1vw;
    color: #2b2b2b;
    
}
.textodob{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 3vw;
    margin-top: 2vw;
    color: #2b2b2b;
}
.textodelam{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 2vw;
    margin-top: -1vw;
    color: #2b2b2b;
    
}
.textoHQ{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 3vw;
    margin-top: 15vw;
    color: #2b2b2b;
}
.textopint{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 2vw;
    margin-top: -1vw;
    color: #2b2b2b;
    
}
.textodis{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 3vw;
    margin-top: 2vw;
    color: #2b2b2b;
    
}
.textoperso{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 2vw;
    margin-top: -1vw;
    color: #2b2b2b;
}
.textosold2{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
    font-size: 2vw;
    margin-top: -0.7vw;
    color: #2b2b2b;  
}

.textobox {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    transition: opacity 0.9s ease;

  }

  .txtbox {
    font-size: 2.2vw;
    background: linear-gradient(to right, rgb(56, 0, 56), rgb(174, 11, 174));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   padding: 3vw;
  }
  .textobox1, .textobox2, .textobox3, .textobox4{
    visibility: hidden;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    transition: opacity 0.9s ease;
  }

  .txtbox1, .txtbox2, .txtbox3, .txtbox4{
    font-size: 1.5vw;
    background: linear-gradient(to right, rgb(56, 0, 56), rgb(174, 11, 174));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   padding: 2vw;
  }
/* Creacion de seccion de mapa*/
.titulo2{
    justify-content: center;
    align-items: center;
}

.boxsec{
    display: flex;
    

}

.boxmapa{
    display: flex;
    flex-direction: row;
    margin: 40px 0px;
    justify-content: space-around;

}
@media (max-width: 980px) {.boxmapa{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
     
}
.boxcont{
display: flex;

}
.mapa{
    width: 55vw;
   height: 529px;
}
@media (max-width: 980px) {.mapa{
    width: 80vw;
    padding-bottom: 40px;
}
}

/*creacion de boxes input de formulario*/

.formbox{
    display:block;
    color:  #004C59;
    background-color: #dceaed;
    padding:12px 70px;
    border:3px solid #dceaed;
    border-radius: 50px;
    font-weight:300;
    text-transform:uppercase;
        
}

.formboxmen{
    resize: vertical;
    max-width: 100%;
}

.contenedor-campos{
display: flex;
flex-direction: column;
padding: 0px 40px;

}
.campo{
margin: 10px;
color: #9bb8be;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;


}
.contbox{
    text-align: center;
    color: #004C59;
    text-transform: uppercase;
    letter-spacing: 7px;
    padding: 10px;
}
@media (max-width: 980px) {.boxcont{
    margin-top: 50px;

}
}
@media (max-width: 980px) {.contenedor-campos{
    padding: 0px 4vw;

}    
}
fieldset .campo textarea{
    resize: vertical;

}

/* Estilo MAteriales */
.backmat{
    background-image: url(/images/IMG_0508.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height:80vw;
    width: 70%;
    position: relative;
    justify-content: center;
    margin-top: 50px;
    display: flex;
    margin-right: 30vw;
   
    

}

.materiales{
    margin-left: 70vw;
    padding-top: 9vw;
    width: 100%;
    
    justify-content: start;
    align-items: center;
}
 
.matimg{
    max-height: 20vw;
    
}

.mate{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Set 2 columns of equal width */
    gap: 6vw; /* Set gap between grid items */
}

@media (max-width: 650px) {.materiales{
    margin-top: 0px;
  
}
}

  .mats{
    margin: 0;
    display:block;
    color: black;
    background-color: white;
    border:1px solid rgb(176, 176, 176) ;
    cursor: pointer;
    transition: all 300ms;
    
   
}
.mats:hover{
    transform: scale(1.2);
}

.matimg{
    max-height: 10vw;
    
    
}

.contpanto{
    padding: 2px; 

}
.panto, .panto1{
    text-align: left;
    font-size: 1.1vw;
    
}
.panto1{
    font-weight: bolder;
}


.containexp{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    z-index: 3;
    height: 75vw;
    margin-left: 16.5vw;
}
.boxmatexp{
    display:flex;
    width: 25vw;
    height: 15vw;
    border-radius: 3vw;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    margin-top: 10vw;
    overflow: hidden;
    position: relative;
    left: -200%; /* Inicialmente oculto fuera de la pantalla */
    transition: left 0.3s ease;
    
}
.boxmatexp1{
    display:flex;
    width: 25vw;
    height: 15vw;
    border-radius: 3vw;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    overflow: hidden;
    position: relative;
    left: -200%; /* Inicialmente oculto fuera de la pantalla */

}
.boxmatexp2{
    display:flex;
    width: 25vw;
    height: 15vw;
    border-radius: 3vw;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    overflow: hidden;
    position: relative;
    left: -200%; /* Inicialmente oculto fuera de la pantalla */

}
.boxmatexp3{
    display:flex;
    width: 25vw;
    height: 15vw;
    border-radius: 3vw;
    font-weight:bold;
    transition:all 300ms;
    text-transform:uppercase;
    overflow: hidden;
    position: relative;
    left: -200%; /* Inicialmente oculto fuera de la pantalla */

}

.imgexp{
    width: 100%;
    display: block;
    z-index: 1;

    
}
.txtmatexp{

    backdrop-filter: blur(10px);
    display: block;
    height: 100%;
    width: 100%;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2vw;
    font-family: 'Almarai', sans-serif;
    text-align: left;
    padding: 3vw 2vw;
    line-height: 1.3;
    color: #000000;
    font-weight: lighter;
    

}

.palabra-destacada{
    font-size: 1.8vw;
    font-weight: bold;
    color: #222222;
}
.palabra-destacada2{
    font-size: 1.3vw;
    font-weight: bold;
    color: #222222;
    background: linear-gradient(to right, rgb(56, 0, 56), rgb(174, 11, 174));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Estilo Acabados*/
.backacab{
    background-image: url(/images/Ilustración_sin_título.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height:57vw;
    width: 100%;
    position: relative;
    margin-top: 50px;
    display: flex;
}
@media (max-width: 780px) {.backacab{
    margin-top: -5vw;
}
.mattxt{
    padding-top: 10vw;
}
.acabtxt{
    padding-top: 5vw;

}
     
}
.mattxt{
    margin-top: -33vw;
    margin-left: 47vw;
    margin-right: 5vw;
    
}
.mattxt1{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    font-weight: bolder;
    font-size: 3.5vw;
 
}
.mattxt2{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    font-weight: lighter;
    color: #565656;
    font-size: 3vw;
    margin-top: 2vw;

}
.acabtxt{
    position: absolute;
    margin-left: 5vw;
    margin-top: -53vw;

}
.acabtit{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    font-weight: bolder;
    font-size: 3.3vw;
    
}

.acabcont{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    color: #565656;
    font-weight: normal;
    font-size: 2vw;
    margin-top: 2vw;
    max-width: 45vw;
    line-height: 1.4;
}
.colores{
    background-image: url(/images/colorpallete.png);
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ajusta proporcionalmente al tamaño del bloque */
    position: absolute;
    margin-left: 10vw;
    margin-top: -25vw;
    z-index: 99;
    height: 25vw;
    width: 25vw;
}
/* Estilo Galeria*/
.gallery-container{
    display:grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 220px;
}
@media (max-width: 780px) {.gallery-container{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
}
}

.gallery-img{
    width:100%;
    height: 100%;
    object-fit:cover;
}
.gallery-item:nth-child(1){
    grid-column-start: span 2;
    grid-row-start: span 2;
}
.gallery-item:nth-child(9){
    grid-row-start: span 2;
}
.gallery-item:nth-child(8){
    grid-row-start: span 2;
}
.gallery-item:nth-child(10){
    grid-row-start: span 2;
}
.gallery-item:nth-child(7){
    grid-column-start: span 2;
}
.gallery-item:nth-child(11){
    grid-column-start: span 2;
}
.gallery-item:nth-child(12){
    grid-column-start: span 2;
}

@media (max-width: 780px) {.gallery-item:nth-child(8){
    grid-row-start: span 1;
}
     
}
.galeria{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    height: 660px;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 780px) {.galeria{
    height: 550px;
     
}
}
.gallery-item{
    position: relative;
    z-index: 1;
}
.gallery-item:hover{
    z-index: 2;   
}

/* Estilo Mision y Vision*/
.qsomos{
    display: flex;

}
.mision{
    position: absolute;
    z-index: 1;
    float:left;
    width: 30vw;
    height: 60vw;
}
.vision{
    display: block;
    position: absolute;
    z-index: 1;
    width: 30vw;
    height: 60vw;
    margin-left: 127vw;
    
   
}
.qstxt1{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    font-weight: bolder;
    font-size: 3.5vw;
    margin-top: 2vw;
}
.qstxt2{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: start;
    font-weight: normal;
    color: #565656;
    font-size: 1.3vw;
    margin: 0;
    margin-top: 2vw;
    max-width: 36vw;
    line-height: 1.3;
    

}.qstxt3{
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: end;
    font-weight: bolder;
    font-size: 3.5vw;
    margin-top: 2vw;
  
}
.qstxt4 {
  font-family: 'Almarai', sans-serif;
  text-transform: initial;
  font-weight: normal;
  color: #565656;
  font-size: 1.3vw;
  margin-top: 2vw;
  text-align: end; /* Cambia a text-align: left; o simplemente elimínalo */
  line-height: 1.3;
}
.pano{
    position: absolute;
    display: inline-block;
    height: 75vw;
    z-index: -1;
  
}

.containerqsomos{
    height: 75vw;
    margin-top: 6vw;
    width: 100%;
    display: flex;
    text-align: center;
    overflow-x:auto;
    scroll-snap-type: mandatory;
    scroll-behavior: smooth;
    position: relative;
    overflow: hidden; /* Oculta la barra de desplazamiento */
   
    
  }
  
  
  .arrow {
    margin-top: 30vw;
    margin-left: 8px;
    margin-right: 8px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ccc;
    color: #fff;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
  }
  
  .arrow.left {
    left: 10px;
  }
  
  .arrow.right {
    right: 10px;
  }

  /* Contacto */

.containercontacto{
    display: flex;
    justify-content: space-around;
    padding-top: 5vw;
    
}
.whatsapp{
    display: flex;
    flex-direction: column;
    width: 10vw;
    height: 20vw;
    align-items: center;
    transition: 300ms;
    cursor: pointer;
    
}
.whatsapp:hover{
    transform: scale(1.1);
}
.whatsapp1{
    display: flex;
    flex-direction: column;
    width: 20vw;
    height: 20vw;
    align-items: center;
}
.continfo1{
    margin-top: 0.5vw;
    font-size: 1vw;
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: bolder;
}
.continfo2{
    margin-top: 0.5vw;
    font-size: 1vw;
    font-family: 'Almarai', sans-serif;
    text-transform: initial;
    text-align: center;
    font-weight: normal;
}
.contmini{
    max-width: 100%;
}
@media (max-width: 780px) {.whatsapp{
    width: 20vw;
    font-size: 2vw;
}
}
@media (max-width: 780px) {.continfo1{
    font-size: 2vw;
}
}
@media (max-width: 780px) {.continfo2{
    font-size: 2vw;
}
}
  /* Piedepag */

.footer{
    color: #ccc;
    text-align: center;
    padding-top: 3vw;
    padding-bottom: 1vw;
    margin-bottom: 1vw;
    font-size: 1vw;
    background-color: black;
    
}
@media (max-width: 780px) {.footer{
    margin-top: 10vw;
    font-size: 2vw;
}
}