html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
    margin: 0;
}

@font-face {
    font-family: Aaargh;
    src: url('Fonts/Aaargh.ttf');
}

.btn {
    margin: 5px;
    border-radius: 12px;
}

.fa-facebook-f, .fa-instagram, .fa-whatsapp, .fa-map-marker-alt, .btn-mapa {
    color: white !important;
}

.btn-facebook, .li-facebook {
    background-color: #3B5998 !important;
}

.li-facebook, .li-instagram, .li-whatsapp, .li-mail {
    border-radius: 50%;
    width: 1.5em !important;
}

.li-instagram {
    border-radius: 5px;
}

.btn-instagram, .li-instagram {
    background-color: #f09433 !important; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.btn-whatsapp, .li-whatsapp {
    background-color: #25D366 !important;
}

#navbar-link {
    color: #a52504;
    font-size: 1.25em;
    font-family: Aaargh;
    font-weight: bold;
}

#navbar-link-disabled {
    color: grey;
    font-size: 1.25em;
    font-family: Aaargh;
    font-weight: bold;
    pointer-events: none;
}

.pajaro-logo {
    width: 60px;
    height: auto;
}

.titulo-logo {
    color: #a52504;
    font-size: 1.2em;
    margin-bottom: 0;
    font-weight: bold;
}

.subtitulo-logo {
    color: black;
    font-size: 0.6em;
    margin-bottom: 0;
    font-weight: bold;
}

.titulo-apart {
    background-color: #a52504;
    padding: 10px;
}

.titulo-apart img {
    height: auto;
    width: 40px;
}

.titulo-apart p {
    margin-left: 10px;
    font-size: 2rem;
    color: white;
    margin-top: auto;
    margin-bottom: auto;
}

.descripcion-ubicacion h3 {
    font-family: 'Oswald', sans-serif;
    color: #a52504;
}

.descripcion-apart, .descripcion-ubicacion, .descripcion-contacto {
    padding-top: 8px;
}

.titulo-servicios-instalaciones {
    color: #a52504;
}

.fa-angle-double-right {
    color: #a52504;
}

.fa-comments, .fa-map-marked-alt {
    font-size: 2em !important;
    color: white;
}

.fa-ul>li {
    font-size: 1.25em;
}

p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25em;
}

.gps {
    height: auto;
    width: auto;
    padding: 0px;
    background-color: #a52504;
    color: white;
    margin-bottom: 1rem;
}

.gps p {
    margin-bottom: 0 !important;
}

#thumbnail {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#thumbnail:hover {
    opacity: 0.7;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.gallery-column {
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
}

.gallery-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.container-ubicacion {
    min-height: 70vh;
}

.formulario-contacto {
    padding: 10px;
    background-color: rgba(214, 212, 212, 0.534);
    border-radius: 15px;
    margin-top: 8px;
}

.mapa-ubicacion {
    margin-top: 8px;
}

.mapa {
    width: 100%; 
    height: 500px;
}

.formulario-contacto textarea {
    resize: none;
}

@media screen and (max-width: 990px) {
    .gallery-column {
        flex: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .fa-ul>li {
        font-size: 1em;
    }
}

.footer {
    height: auto;
    margin-top: 10px;
}

.footer .fa-ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}

.footer .fa-ul>li {
    font-size: 1em;
    padding-top: 5px;
    color: white;
}

.footer .nosotros {
    font-size: 1em;
    color: white;
    margin-top: 0;
}

.footer a:link {
  color: white;
  text-decoration: underline;
}

.footer a:visited {
  color: white;
}

.footer a:hover {
  color: red;
}

.footer a:active {
  color: white;
}

/*------------- Estilos Modal ---------------*/

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: none !important; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block !important;
    width: 80% !important;
}

.modal-content {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1 !important;
    font-size: 40px !important;
    font-weight: bold;
    transition: 0.3s;
    z-index: 10;
    opacity: 1 !important;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 990px){
    .modal-content {
        width: 100% !important;
    }
}