@font-face {
    font-family: 'Cygre-Medium';
    src: url('./fonts/medium/cygre-medium.eot');
    /* IE 9 Compatibility Mode */
    src: url('./fonts/medium/cygre-medium.eot?#iefix') format('embedded-opentype'),
        /* IE < 9 */
        url('./fonts/medium/cygre-medium.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('./fonts/medium/cygre-medium.woff') format('woff'),
        /* Firefox >= 3.6, any other modern browser */
        url('./fonts/medium/cygre-medium.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('./fonts/medium/cygre-medium.svg#cygre-medium') format('svg');
    /* Chrome < 4, Legacy iOS */
}

@font-face {
    font-family: 'Cygre-Light';
    src: url('./fonts/light/cygre-light.eot');
    /* IE 9 Compatibility Mode */
    src: url('./fonts/light/cygre-light.eot?#iefix') format('embedded-opentype'),
        /* IE < 9 */
        url('./fonts/light/cygre-light.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('./fonts/light/cygre-light.woff') format('woff'),
        /* Firefox >= 3.6, any other modern browser */
        url('./fonts/light/cygre-light.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('./fonts/light/cygre-light.svg#cygre-medium') format('svg');
    /* Chrome < 4, Legacy iOS */
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

#header-div {
    box-shadow: 0px 1px 5px black;
    font-family: 'Cygre-Medium';
    padding: 0.5em;

    background-color: #5D75C3;
	
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.75;
	@media (max-width: 1000px) {
		height:5%;
	}
    display: flex;
    flex-direction: row;
    width: 99%;

    z-index: 4;
}


#nav-menu-div {
    display: flex;
    flex-direction: row-reverse;

    position: relative;
    width: 80%;
    margin-left: 2em;
    @media (max-width: 1000px) {
        display: none;
    }
}


#nav-menu-ul {

    list-style-type: none;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    display: inline;
}

.nav-menu-link {
    margin: 15px;
    display: inline-block;

    color: white;

    text-decoration: none;
}

.nav-menu-li {
    display: inline;
}

.nav-menu-div-mobile{
    display: none;
    list-style: none;
    background-color: #5d75c3;
    position: fixed;
    margin-top: 92px;
    width: 100%;
    display: none;
    z-index: 10;
	left: 0;
	right: 0;
	-webkit-box-shadow: 0px 10px 10px -7px rgba(34, 60, 80, 0.6);
	-moz-box-shadow: 0px 10px 10px -7px rgba(34, 60, 80, 0.6);
	box-shadow: 0px 10px 10px -7px rgba(34, 60, 80, 0.6);
    li {
    text-align: left;
    margin-bottom: 1rem;
    .nav-menu-link {
        font-size:2rem;
        text-decoration: none;
        color: white;
        padding: 0.5rem 1rem;
        transition: background-color 0.3s ease;
        &:hover {
        background-color: #657de4;
        }
    }
    }
}

.hamburger{
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    transform: translate(-140%, 75%);
    @media (max-width: 1000px) {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }
    .spam-bars{
        display: block;
        height: 0.55rem;
        width: 3rem;
        background: white;
        margin-bottom: 0.5rem;
    }
    span {
        display: block;
        height: 0.55rem;
        width: 3rem;
        background: white;
        margin-bottom: 0.5rem;
    }
}
#footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 99%;
    padding-top: 20px;
    padding-left: 20px;
    background-color: #f1f1f1;
    margin-top: 10px;

}
@media (max-width: 1000px) {
	#footer {display:none;}
}
.logo-container {
    align-items: center;
}

.footer-grid-item{

}
.left-content,
.address-section,
.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container img {
    width: 192.38px;
    height: 58.95px;
}

.basictexthf{
    color: #6A6A6A;
    font-size: 1em;
    font-family: 'Cygre-Light';
    font-weight: 100;
}

@keyframes header-div-on-scroll-down {
    from {
        background-color: #5D75C3;
        color: white;
        opacity: 0.75;
    }

    to {
        background-color: white;
        color: black;
        opacity: 1;
    }
}

@keyframes header-links-on-scroll-down {
    from {
        color: white;
    }

    to {
        color: black;
    }
}

#logo-img {
    position: relative;
    left: 40%;
    top: 10%;
    /* filter: drop-shadow(black 0rem 1px 1px); */
	width: 192.38px;
    height: 58.95px;
}
@keyframes header-links-on-scroll-down{
    from{color: white;}
    to{color: black;}
}

@media only screen and (max-device-width: 1000px) {
	#logo-img {
    position: relative;
    left: 19%;
    top: 10%;
    /* filter: drop-shadow(black 0rem 1px 1px); */
	width:250px;
	height: 78.95px;
}
}

