﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    height: 100vh;
    background-color: #000;
    background-image: url(/Images/backgroundAboutAWI.jpg);
    background-size: cover;
    background-position: center;
}

li {
    list-style: none;
}

.alink {
    text-decoration: none;
    font-weight: bold;    
}

    .alink:hover {
        color: forestgreen;
        text-decoration: none;
    }

a {
    text-decoration: none;
    color: black;
    font-size: 1.25rem;
}

    a:hover {
        color: forestgreen;
        text-decoration: none;
    }

header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-family: Arial;
    font-weight: bold;
}

    .navbar .logo a {
        font-size: 2rem;
        font-weight: bold;
    }

    .navbar .links {
        display: flex;
        gap: 1.75rem;
    }

    .navbar .toggle_btn {
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

.action_btn {
    background-color: forestgreen;
    color: #fff;
    padding: 0.5rem 1rem;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

    .action_btn:hover {
        scale: 1.05;
        color: #fff;
        background-color: darkseagreen;
    }

    .action_btn:active {
        scale: 0.95;
    }

/* HERO */
section#hero {
    height: calc(100vh - 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font: bold 24pt arial;
    
}
/* home-headline xbold upper space */
.home-headline {
    font-size: 12.25em;
    line-height: 1.1em;
}

.xbold {
    font-weight: 800;
}

.upper {
    text-transform: uppercase;
}

.space {
    letter-spacing: .05em;
}



/*Responsive Design*/
@media (max-width: 992px) { 
    /*Whenever the browser window is <=992px*/
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }
}




@media (max-width: 576px) {
    /*Whenever the browser window is <=576px*/
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}

/*Dropdown Menu*/
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175,0.885,0.32,1.275);
}

    .dropdown_menu.open {
        height: 240px;
    }

    .dropdown_menu li {
        padding: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown_menu .action_btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

.dropdown_menu {
    display: block;
}


/* Required to hold the caption, or any closest parent selector to  .slide__caption */
.slide {
    position: relative;
}

.slide__caption {
    bottom: 0;
    min-height: 80px;
    left: 0;
    /*position: absolute;*/
    position: relative;
    top: 40px;
    left: 40px;
    width: 100%;
    z-index: 2;
}



.HomeCaption {
    position: relative;
    top: 150px;
    text-align: center;
    /* background: rgba(255,255,255,0.3);
            backdrop-filter: blur(15px);*/
    /* border-radius: 10px;*/
    padding: 20px 20px 20px 20px;
    color: white;
    font-weight: 800;
}



.centered {
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
}


.ImgWithCaption { /* keep images full screen */
    width: 100%;
}

.slider div {
    height: 100%;
    width: 100%;
}

    .slider div img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }





.slick-slider img { /* keep images full screen */
    width: 100%;
}

.chevron-container { /* full slider height container for chevrons */
    height: 100%;
    position: absolute;
    width: 100px;
}

.slick-right { /* keeps right arrow to the right */
    right: 0;
    top: 0;
}

.chevron-container > .fa { /* positions chevrons in vertical center */
    bottom: 0;
    color: white;
    font-size: 10em;
    height: 1em;
    margin: auto;
    position: absolute;
    top: 0;
    width: 5em;
    z-index: 10;
}

.slick-slider .info {
    color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 100vh;
    text-align: center;
    z-index: 10;
}

    .slick-slider .info > div {
        display: inline-block !important;
        vertical-align: middle;
    }


