@charset "utf-8";
/*Document CSS*/

body {
    background-color: rgb(239, 228, 206);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../img/Background/header.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

.animate-opacity {
    animation: opac 1.2s;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo1 {
    display: block;
    width: 350px;
    height: 283px;
}

.animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/** @section Page layout */
.page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    opacity: 0;
}

.page.fadeIn {
    animation-timing-function: ease-out;
}

.page.fadeOut {
    animation-timing-function: ease-in;
}

[data-x-mode] .page {
    opacity: 1;
}

.Encabezado {
    width: 100%;
    display: block;
    color: rgb(76, 57, 43);
    padding-top: 60px;
}

main {
    width: 60%;
    margin: 0 auto;
}

.disclaim1 {
    padding: 25px;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.footsection {
    display: block;
    width: 100%;
    padding: 12px 0px;
}

.imgfootsectin {
    width: 100%;
    height: auto;
    display: block;
}

.mapaloc {
    display: block;
    width: 100%;
    padding: 5%;
    min-height: 50vh;
}

.contentmap {
    display: block;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

#map {
    height: 100%;
    min-height: 500px;
}

@media screen and (max-width:1366px) {
    main {
        width: 80%;
    }

    .disclaim1 {
        width: 100%;
        font-size: .9em;
        text-align: center;
    }
}

@media screen and (max-width:1024px) {
    main {
        width: 90%;
    }

    .disclaim1 {
        width: 100%;
        font-size: .8em;
        text-align: center;
    }
}

@media screen and (max-width:1024px) and (orientation:portrait) {}

@media screen and (max-width:650px) {
    main {
        width: 100%;
    }

    .disclaim1 {
        width: 100%;
        font-size: .7em;
        text-align: center;
    }
}