@font-face {
    font-family: 'BIG JOHN';
    font-style: normal;
    font-weight: normal;
    src: local('BIG-JOHN'), url('../fonts/BIG-JOHN.woff') format('woff');
}

@font-face {
    font-family: 'Hind Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Hind-Bold'), url('../fonts/Hind-Bold.woff') format('woff');
}

@font-face {
  font-family: 'HighlandGothicFLF Regular';
  font-style: normal;
  font-weight: normal;
  src: local('HighlandGothicFLF Regular'), url('../fonts/HighlandGothicFLF.woff') format('woff');
}

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #004680;
    position: relative;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5c5c5c;
}

/**** NAV */

.nav {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fff;
}

.nav-logo {
    width: 150px;
}

.nav-logo img {
    width: 100%;
}

.nav-frase {
    font-family: 'Hind Bold';
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #004680;
}

@media (max-width: 500px) {
    .nav-frase {
        font-size: 12px;
    }
}

.nav-redes {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-red {
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #004680;
    cursor: pointer;
}

.contenido {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}

.portada {
    width: 100%;
    height: 90vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/portada.png');
}

@media (max-width: 500px) {
    .portada {
        background-image: url('../img/portada_movil.png');
    }
}

.seccion {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.titulo-seccion {
    width: 90%;
    text-align: center;
    font-family: 'Hind Bold', sans-serif;
    font-size: 40px;
    color: #fff;
}

.texto-seccion {
    width: 90%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
}

.mapa {
    width: 90%;
    max-width: 500px;
}

.mapa img {
    width: 100%;
}

.productos {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}

.producto {
    width: 200px;
    min-height: 200px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}

.producto-icono {
    font-size: 50px;
    color: #004680;
}

.producto-nombre {
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #004680;
}

.producto-descripcion {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background-color: #fff;
    transition-duration: 1s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.producto-descripcion.active {
    height: 100%;
}

.producto-flecha {
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 17px;
    color: #004680;
    cursor: pointer;
    z-index: 5;
}

.texto-producto-descripcion {
    width: 90%;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: #004680;
    text-align: center;
    display: none;
    transition-duration: 2s;
}

.texto-producto-descripcion.active {
    display: block;
}

.telefonos {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.titulo-telefonos {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.telefono {
    width: 100%;
    text-align: center;
    max-width: 275px;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    cursor: pointer;
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    background-color: #25D366;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 50;
}

.footer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.texto-footer {
    width: auto;
    height: auto;
    font-size: 12px;
    margin-right: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer img {
    width: 100px;
}

.somm-footer {
    font-size: 10px;
    font-family: 'HighlandGothicFLF Regular';
}