@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body{
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    color: #fff;
    background: #0D0D0D;
}

a{
    text-decoration-line: none;
}
h2{
    font-size: 2em;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    margin-top: 1.5vh;
}
h3{
    font-size: 1.8em;
    margin: 0 0 1vh 0;
}
h4{
    font-size: 1.4em;
    font-style: italic;
    margin: 0 0 2vh 0;
}
.content{
    margin: 6vh 2vw 2vh 2vw;
}
.resource{
    /* text-decoration: underline; */
    color: #fff;
    border-bottom: 1px solid;
}
.resource:hover{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
    cursor: pointer;
}

logo{
    /* background: #F77300; */
    grid-area: logo;
    margin: 2vh 2vw 0 2vw;
}
logo img{
    position: absolute;
    object-fit: cover;
    width: 4vw;
}
logo img:hover, logo img:focus{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
    cursor: pointer;
}
#mbtn{
    background: none;
    border: none;
}
#mtbn:focus img{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
}

.closer{
    position: absolute;
    top: 10px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}
  
.closer:hover,
.closer:focus{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
    cursor: pointer;
}

/* Filter Menu */
.dropbtn{
    background: none;
    color: #fff;
    border: none;
    border-bottom: #fff 1px solid;
    font-size: 1.4em;
    cursor: pointer;
}
.dropbtn:hover{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
}
.dropdown{
    position: relative;
    display: inline-block;
}
.dropdown-content{
    display: none;
    position: absolute;
    min-width: 20vw;
    height: 30vh;
    overflow: auto;
    z-index: 1;
}
#fbtn{
    background: none;
    margin: 0 0 0 1vw;
    color: #fff;
    text-align: left;
    font-size: 0.8em;
    border: none;
    border-bottom: #fff 1px solid;
    border-left: #fff 1px solid;
    padding-bottom: 0.5vh;
    cursor: pointer;
}
#fbtn:hover{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
}
.show{
    display: block;
}
  
.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    /*set the size of the lens:*/
    width: 40px;
    height: 40px;
}
  
.img-zoom-result {
    position: absolute;
    top: -2vh;
    right: 4vw;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    /*set the size of the result div:*/
    width: 150px;
    height: 150px;
}

.ste_page{
    display: grid;
    height: 100vh;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: .5fr 3fr .1fr;
    grid-template-areas:
        "logo     logo     logo     logo"
        "map      map      map      map"
        "footer   footer   footer   footer";
}

welcome{
    background: #0D0D0D;
    position: absolute;
    height: 100%;
    width: 32%;
    z-index: 1;
    display: grid;
    grid-template-rows: 3fr .1fr;
    grid-template-areas:
        "content"
        "footer";
}
.menu{
    /* display: none; */
    left: -100%;
    transition: .75s;
}
.menu.active{
    /* display: block; */
    left: 0;
    transition: .5s;
}
welcome footer{
    grid-template-areas: 
        "copyright   copyright   copyright";
}

about{
    background: #0D0D0D;
    position: fixed;
    width: 70%;
    height: 100%;
    z-index: 1;
    display: grid;
    grid-template-rows: 3fr .1fr;
    grid-template-areas:
        "content"
        "footer";
}
.abt-menu{
    top: 0;
    right: -100%;
    transition: .75s;
}
.abt-menu.active{
    right: 0%;
    transition: .5s;
}
video{
    margin-top: 6vh;
    width: 100%;
}
about footer{
    background: red;
    grid-template-areas: 
        "social_media   social_media   social_media";
}

map{
    /* background: peru; */
    grid-area: map;
    position: relative;
    width: 100%;
}
.map{
    position: relative;
    margin-top: -4vh;
    height: 80vh;
}
.map img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#icon{
    display: none;
    height: 14px;
    width: 14px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
}
#icon img{
    display: none;
    object-fit: cover;
    margin: 1vh 0 0 1vw;
    width: 8vw;
    height: 20vh;
    border-radius: 10%;
}
#icon:hover img{
    display: block;
}
#icon:hover, #icon:focus{
    background: #FFF;
    transition: .25s;
}
#icon.active{
    background: #FFF;
    transition: .25s;
}
#icon.show{
    display: block;
}

.acss{
    background: #FF1AA1;
}
.c{
    background: #FF1A1A;
}
.hm{
    background: #1AFF39;
}
.lpp{
    background: #9E1AFF;
}
.o{
    background: #B99D5F;
}

.modal{
    /* display: none; */
    position: fixed;
    z-index: 1;
    width: 70%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: .75s;
    overflow: auto;
    background-color: #0D0D0D;
}
.modal.active{
    /* display: block; */
    left: 0%;
    transition: .5s;
}

.layout{
    display: none;
    position: fixed;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}
.figure{
    position: fixed;
    max-width: 26vw;
    grid-column: 1;
}
.figure img{
    max-width: 26vw;
    object-fit: contain;
}
@keyframes linearwipe{
    from { height: 0; }
}
.info{
    grid-column: 2/4;
    padding: 0 2vw 0 8vw;
    height: 100%;
    /* animation: linearwipe 5s steps(60, end); */
}
.info .vl{
    position: absolute;
    border-left: 3px solid #FFF;
    height: 100%;
    /* animation: linearwipe 5s steps(60, end); */
}
.info .vl.half{
    height: 42%;
}
.info .year{
    position: absolute;
    left: 41%;
    font-size: 0.8em;
    transform: rotate(-90deg);
    /* animation: linearwipe 5s steps(60, end); */
}
.entry{
    margin: 0 0 5% 5%;
    line-height: 1.5;
}
.sig{
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 0.5vh;
}
.indent{
    margin: 2% 0 2% 8%;
}

footer{
    /* background: #F99C4B; */
    grid-area: footer;
    margin: 0 2vw 0.5vh 2vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
        "copyright   about   social_media";
}
footer img{
    object-fit: cover;
    width: 30px;
    margin-left: 0.5vw;
}
copyright{
    grid-area: copyright;
    padding-top: 0.5vh;
}
.about{
    grid-area: about;
    position: absolute;
    right: 8vw;
}
.abtn{
    background: none;
    border: none;
    padding: 0.5vh 0 0 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}
.abtn:hover{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
    cursor: pointer;
}
.social_media{
    grid-area: social_media;
    text-align: right;
}
footer img.top{
    opacity: 1;
    transition: opacity 0.25s ease-out;
}
footer img.top:hover{
    opacity: 0.25;
    transition: opacity 0.25s ease-out;
}

/* 8:5 (1728 x 1080) */
@media only screen and (max-width: 1536px){
    map{
        /* background: peru; */
        overflow: hidden;
    }
    .map{
        width: 109%;
        transform: translateX(-3%);
    }
    #icon{
        transform: scale(95%);
    }
    .about{
        right: 9vw;
    }
}

/* 3:2 (1620 x 1080) */
@media only screen and (max-width: 1368px){
    map{
        /* background: peru; */
        overflow: hidden;
    }
    .map{
        width: 132.5%;
        transform: translateX(-8%);
    }
    #icon{
        transform: scale(90%);
    }
    .about{
        right: 10vw;
    }
}

/* 4:3 (1440 x 1080) */
@media only screen and (max-width: 1440px){

}

/* 9:16 (1080 x 1920) */
@media only screen and (max-width: 1080px){
    body{
        font-size: 2.4em;
    }
    /* General Site Characteristics */
    h2{
        margin-top: 0.325vh;
    }
    .content{
        margin: 6vh 4vw 3vh 4vw;
    }
    
    logo{
        /* background: #F77300; */
        grid-area: logo;
        margin: 2vh 4vw 0 4vw;
    }
    logo img{
        position: absolute;
        object-fit: cover;
        width: 8vw;
    }
    
    .closer{
        top: 30px;
        right: 40px;
        transform: scale(250%);
    }
    
    /* Filter Menu */
    .dropdown-content{
        min-width: 50vw;
    }
    #fbtn{
        background: none;
        margin: 0 0 0 1vw;
        color: #fff;
        text-align: left;
        font-size: 0.8em;
        border: none;
        border-bottom: #fff 1px solid;
        border-left: #fff 1px solid;
        padding-bottom: 0.5vh;
        cursor: pointer;
    }
    .show{
        display: block;
    }
      
    .img-zoom-lens {
        position: absolute;
        border: 1px solid #d4d4d4;
        /*set the size of the lens:*/
        width: 40px;
        height: 40px;
    }
      
    .img-zoom-result {
        position: absolute;
        top: -2vh;
        right: 4vw;
        border: 1px solid #d4d4d4;
        border-radius: 50%;
        /*set the size of the result div:*/
        width: 150px;
        height: 150px;
    }

    .ste_page{
        display: grid;
        height: 93vh;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: .5fr 3fr .1fr;
        grid-template-areas:
            "logo     logo     logo     logo"
            "map      map      map      map"
            "footer   footer   footer   footer";
    }
    
    welcome{
        width: 100%;
    }
    
    map{
        /* background: peru; */
        grid-area: map;
        position: relative;
        overflow-y: hidden;
        overflow-x: auto;
    }
    .map{
        position: relative;
        margin-top: -4vh;
        height: 80vh;
        width: 404%;
    }
    
    #icon{
        display: none;
        height: 14px;
        width: 14px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        transform: scale(250%);
    }
    #icon img{
        margin: -5.5vh 0 0 -6vw;
        width: 24vw;
        transform: scale(40%);
    }
    
    .modal{
        width: 100%;
    }
    
    .layout{
        width: 100%;
        grid-template-columns: 1fr;
        position: relative;
        overflow: hidden;
    }
    .figure{
        position: relative;
        max-width: 100%;
        grid-column: 1;
    }
    .figure img{
        max-width: 100%;
        object-fit: contain;
    }
    @keyframes linearwipe{
        from { height: 0; }
    }
    .info{
        grid-column: 1;
        padding: 0 2vw 0 8vw;
        height: 100%;
        /* animation: linearwipe 5s steps(60, end); */
    }
    .info .vl.half{
        height: 31%;
    }
    .info .year{
        left: 0%;
    }
    
    footer{
        margin: 0 14vw 3vh 4vw;
    }
    footer img{
        object-fit: cover;
        width: 30px;
        margin-left: 8vw;
        transform: scale(250%);
    }
    .about{
        right: 40vw;
    }
    #abtn{
        font-size: 1em;
    }
}

/* 1:1 (1080 x 1080) */
@media only screen and (max-width: 1080px){

}