@charset "utf-8";
/* CSS Document */

/* new header */
.header .dropdown-hover:hover>.dropdown-menu {
	display: inline-block;
}
.header .dropdown-hover>.dropdown-toggle:active {
	/*Without this, clicking will make it sticky*/
	pointer-events: none;
}
.header .gallery{
    white-space: nowrap;
}
.nav-link{
	display: flex;
	justify-content: center;
	flex-direction: column;
    padding:0.5rem;
    cursor: pointer;
    color: #ffffff;
}
.landing-picture
{
	width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

header {
    z-index: 99;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

header .logo img {
    margin-top: 12px;
    margin-bottom: 12px;
}

header a {
    color: white;
    text-decoration: none;
    transition: all 0.6s;
    height:100%;
}
.weather{
    color: white;
    text-decoration: none;
    transition: all 0.6s;
}
header .menu-toggle {
    font-size: 1.2em;
			}
.nav-item{
	height:100%;
}
.nav-item:hover .dropdown-toggle{
    color: var(--color-primary-light);
}
.header .dropdown-menu{
	position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    /* -webkit-background-clip: padding-box; */
    background-clip: padding-box;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	border: 0px;
    min-height:450px;
    border-radius:0;
}
.menu-toggle{
	display:flex;
	flex-direction: column;
	justify-content: center;

}
.link-set{
	overflow-y: auto;
	overflow-x: hidden;
    max-height: 40rem;
}

.weather a{
    color:black;
    position:absolute;
    display: flex;
    right:0;
    top:6.5rem;
    max-height:32px;
    font-size: 1rem;
    z-index: 98;
    background-color: rgb(255, 255, 255);
    border-bottom-left-radius: 10px;
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .weather a {
        font-size: 0.8rem;
    }
}
.weather img{
    max-height:2rem;
}
.weather div{
    padding-left:1rem;
}
.weather .container{
    display:flex;
    flex-direction: row;
    align-items: center;
}

@media (max-height: 768px) {
    .col-sm-6{
        max-height:360px;
    }

}
@media (max-height: 500px) {
    .col-sm-6{
        max-height:224px;
    }
    .landing-picture img {
        height:auto;
        width:100%
    }
}
@media (max-height: 344px) {
    .col-sm-6{
        max-height:100px;
    }
    .landing-picture-container
    {
        display: none;
    }
    .landing-picture img {
        height:100%;
        width:auto
    }
}
