@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

body {
    font-family: 'Kanit', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.fnt-kanit{
    font-family: 'Kanit', sans-serif;
}

.fnt-parisienne{
    font-family: 'Parisienne', sans-serif;
}

.fnt-quicksand{
    font-family: 'Quicksand', sans-serif;    
}

.fnt-through{
    text-decoration: line-through  
}

.fnt-cnt{
    text-align: center;
}

.fnt-rgt{
    text-align: right;
}

.fnt-jtf{
    text-align: justify;
}

.fnt-nml{
    font-weight: normal;
}

.fnt-bld{
    font-weight: bold;
}

.fnt-lgt{
    font-weight: lighter;
}

.fnt-bco{
    color: #FFF;
}

.fnt-negro{
    color: #000;
}

.fnt-rojo{
    color:#FF0000;    
}

.fnt-gris{
    color:#777;
}

.fnt-verde{
    color: #367230;
}

.fnt-dorado{
    color:#efae45;
}

.fnt-05 { 
    font-size: calc(0.5em + 0.5vw);
}

.fnt-06 { 
    font-size: calc(0.6em + 0.6vw);
}

.fnt-07 { 
    font-size: calc(0.7em + 0.7vw);
}

.fnt-08 { 
    font-size: calc(0.8em + 0.8vw);
}

.fnt-1 { 
    font-size: calc(1em + 1vw);
}

.fnt-12{
    font-size: calc(1.2em + 1.2vw);
}

.fnt-13{
    font-size: calc(1.3em + 1.3vw);
}

.fnt-15{
    font-size: calc(1.5em + 1.5vw);
}

.fnt-17{
    font-size: calc(1.7em + 1.7vw);
}

.fnt-2{
    font-size: calc(2em + 2vw);
}

.fnt-100{
    font-size: calc(4em + 4vw);    
}

.fnt-underline{
    text-decoration: underline;
}

.fnt-interlineado-3{
    line-height: 1.2em;
}

.fnt-not-underline{
    text-decoration: none;
}

.cursor-pointer{
    cursor: pointer;
}

.axy{
    display: flex;
    justify-content: center;
}

.axx{
    display: flex;
    align-items: center;
}

.axz{
    text-align: center;
}

.bck-color-gris{
    background-color: #f0eded;
}

.bck-color-oferta{
    background-color:rgb(215, 81, 36);
}

.bck-color-dorado{
    background-color: #efae45;
}

.bck-color-whatsapp{
    background-color: #25D366;
}

.color-dorado{
    color: #efae45;
}

.color-verde{
    color: #367230;
}


.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.border-solid-1{
    border: solid 1px;
}

.border-color-dorado{
    border-color:#efae45;
}

.border-radius-04{
    border-radius: 4px;
}

.shadow-0{
    box-shadow: 7px 7px 12px 0 rgba(137, 131, 121, 0.3);
}

.shadow-2 {
    box-shadow: 7px 7px 12px 7px rgba(239, 174, 69, 0.3);
}

.btn-primary {
    color: #fff;
    background-color: #efae45;
    border-color: #efae45;
}

.btn-secondary{
    color: #fff;
    background-color: #00A884;
    border-color: #00A884;    
}

.width-30{
    width: 30%;
}

.movible {
    opacity: 0;
    transition: opacity 0.5s;
}

.contenedor-relative{
    position: relative;
}

.img-sup-izq{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width:10%;
}

.img-inf-der{
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: cover;    
    width: 10%;
}

.img-izq{
    position: absolute;
    top: 10;
    left: 0;
    object-fit: cover;    
    width: 7%;
}

.img-der{
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;    
    width: 7%;    
}

/*********************************************************************


                                FOOTER


**********************************************************************/
#footer {
  background: #343A40;
  padding: 30px 0 0 0;
  font-size: 12px;
  color: #999;
}

#footer h3.widget-title {
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #ccc;
  margin: 0 0 20px;
}

#underfooter {
  background: #191919;
  padding: 15px 0;
  color: #777;
  font-size: 12px;
}

#underfooter p {
  margin: 0;
}

.follow-me-icons {
  font-size: 20px;
}

.follow-me-icons i {
  float: left;
  margin: 0 10px 0 0;
}


/**************************************************
                     MEDIA QUERY 
**************************************************/  

/*** PARA PANTALLAS PEQUEÑAS ***/

@media (max-width: 767px) {
    .imagen-grande{
        display: none; /* Oculta ambas imágenes en pantallas pequeñas */
    }

    .imagen-mobile {
        display: block; /* Muestra la imagen para dispositivos móviles */
    }
}

/*** PARA PANTALLAS GRANDES ***/

@media (min-width: 768px) {
    .imagen-mobile {
        display: none; /* Oculta la imagen para dispositivos móviles en pantallas grandes */
    }
    .imagen-grande{
        display: block;
    }
    .img-sup-izq{
        width:10%;
    }
    .img-inf-der{
        width: 10%;
    }        
    .img-izq{
        width: 7%;        
    }
    .img-der{
        width: 7%;        
    }        
}

/** PANTALLAS MAYORES A 576PX */
@media(min-width:576px){
    .texto-corto{
        display: none;
    }
    .texto-largo{
        display: block;
    }
    .img-sup-izq{
        width:15%;
    }
    .img-inf-der{
        width: 15%;
    }        
    .img-izq{
        width: 12%;
    }    
    .img-der{
        width: 12%;        
    }    
}

/** PANTALLAS MENORES A 576PX */
@media(max-width:576px){
    .texto-corto{
        display: block;
    }
    .texto-largo{
        display: none;
    }
    .img-sup-izq{
        width:25%;
    }
    .img-inf-der{
        width: 25%;
    }    
    .img-izq{
        width: 17%;
    }
    .img-der{
        width: 17%;        
    }
}
