@charset "UTF-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	font-size: 100%;
	box-sizing: border-box;
	vertical-align: baseline;
}

html {
    scroll-behavior: smooth;
}
/* FONTS */
body {
    font-family: museo-sans;
}

#wordmark {
    font-family: warbler-display;
    font-variant: small-caps;
    font-size: 2rem;
    letter-spacing: 0.2rem;
}

nav {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

h1 {
    font-family: warbler-display;
    font-variant: small-caps;
    font-weight: 100;
    font-size: 5rem;
    letter-spacing: 2rem;
}

footer h3 {
    font-size: 1rem;
    text-transform: uppercase;
}



/* GENERAL */

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;

    z-index: 100;
}

header:hover {
    background-color: #1E3A5F;
}

header .container {
    width: 90vw;
    margin: auto;

    padding-bottom: 1vw;

    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* WORDMARK */
header #wordmark a {
    text-decoration: none;
    color: white;
}

/* NAVIGATION BAR */
header nav {    
    display: flex;
    justify-content:space-between;
    align-items: center;
}

header nav li {
    display: inline-flex;
}

header nav .optical {
    padding-left: 20px;
}

header nav a {
    text-decoration: none;
    color: white;

    transition: all 0.2s ease-in-out;
}

nav a:hover {
    color: #3E6990;
}

/* DROP DOWN MENU */
header nav ul {
    list-style: none;

    position: relative;
    text-align: center;
}

header nav li {
    width: 9vw;
}

header nav ul li a { 
    display: block; 

    padding: 10px 10px; 
    margin: auto;

    text-decoration: none; 

    z-index: 99;
} 

header nav ul li:hover>ul {
    display: block; /*to show the dropdown menus*/

    padding-bottom: 1%;
    padding-top: 2.5vw;

    background-color: #1E3A5F;
}

header nav ul ul {
    display: none;
    position: absolute;
    z-index: 98;
}

header nav ul ul li {
    display: block;
}

/* UTILITIES */
#utilities {
    margin-left: 2vw;
    display: flex;
    align-items: center;
}

#utilities p {
    margin: 0 0.5vw;
}



/* MAIN */
main {
    background-color: #1E3A5F;
}

/* MAIN PIC SECTION */
#mainpicsection {
    position: relative;
    padding-bottom: 1vw;
}

#mainpicsection .img_box {
    height: 100vh;
    overflow: hidden;
}

#mainpicsection .img_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


h1 {
    padding-top: 4vw;
    padding-bottom: 4vw;
    width: 100%;

    position: sticky;
    bottom: 40%;

    text-align: center;
    color: white;
}

/* TITLE FADE IN EFFECT */
.fadeInTitle {
    opacity: 0;
    transition: all 1s ease-in-out;
}

.fadeInTitle.fade-in {
    opacity: 1;
}


/* section 1 */
#section1 h2 {
    font-family: warbler-display;
    color: white;
    font-variant: small-caps;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding-bottom: 2vw;

}

#section1 p {
    font-family: museo-sans;
    color: #EEEEEEE3;
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
}

#section1 #div1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#section1 #div2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#section1 #div1 .text_box {
    padding-left: 5vw;
    width: 40vw;
}

#section1 #div2 .text_box {
    padding-right: 5vw;
    width: 40vw;
}

#section1 .img_box {
    width: 50vw;
    overflow: hidden;
    height: 50vw;
}

#section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#section1 #div3{
    text-align: center;
    padding: 10vw 5vw;
    width: 50vw;
    margin: auto;

}

/* section 2 */
#section2 h2 {
    font-family: warbler-display;
    color: white;
    font-variant: small-caps;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 0.2rem;

}

#section2 p{
    font-family: museo-sans;
    color: #EEEEEEE3;
    line-height: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
    padding: 5vw;
    width: 50vw;
    margin: auto;

}

#section2 {
    padding-bottom: 5vw;
}

#section2 .img_box {
    width: 15vw;
    height: 15vw;
    overflow: hidden;
    margin: auto;
}

#section2 img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#section2 #div1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 5vw;
}

/* FOOTER */
footer {
    padding-top: 3vw;
    background-color: #EEEEEE;
    color: black;
}

footer .container {
    width: 90vw;
    margin: auto;
}

footer #wordmark {
    color: #1E3A5F;
}

#footer_grid {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: auto;
    grid-template-areas: 
        "nav logo";
}

footer nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-right: 15vw;

    grid-area: nav;
}

footer nav a {
    text-decoration: none;
    color: black;
    
    transition: all 0.2s ease-in-out;
}

footer nav section div {
    padding-bottom: 1vw;
}

footer h3 {
    padding-bottom: 3vw;
}

footer p {
    padding-bottom: 1vw;
}

#logo_box {
    width: 20vw;

    margin: auto;
    margin-top: 3vw;

    grid-area: logo;
}

#logo_box img {
    width: 100%;
}