body{
    margin: 0;
    background-color: black;
}

@font-face {
    font-family: 'Kilton';
    font-style: bold;
    font-weight: 400;
    src: local('Kilton'), local('Kilton'),
         url('/fonts/Kilton.ttf') format('truetype')
}

@font-face {
    font-family: "Kilton";
    src: url("/fonts/Kilton.eot"); /* IE9 Compat Modes */
    src: url("/fonts/Kilton.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
      url("/fonts/Kilton.otf") format("opentype"), /* Open Type Font */
      url("/fonts/Kilton.svg") format("svg"), /* Legacy iOS */
      url("/fonts/Kilton.ttf") format("truetype"), /* Safari, Android, iOS */
      url("/fonts/Kilton.woff") format("woff"), /* Modern Browsers */
      url("/fonts/Kilton.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

.banner{
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.background{
    background-image: url("./media/background1.png");
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    height: 70%;
    position: relative;
}

.background-grad{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: linear-gradient(180deg, transparent 36%, black );
}

.banner-inner{
    background-color: black;
    height: 30%;
}

.container{
    width: auto;
    margin-left: 80px;
    padding-right: 60px;
    padding-left: 60px;
    display: flex;
    padding-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1;
    z-index: 1;
}

.banner .container{
    position: absolute;
    bottom: 20%;
    right: 0;
    left: 0;
    top: 0;
}

.footer .container{
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 80%;
    color: white;
    padding-bottom: 0px;
}

.content{
    width: 100%;
    color: white;
}

.title{
    font-size: 100px;
    max-width: 600px;
    font-family: "Kilton";
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1em;
    color: #4194a0;
    text-shadow: 2px 2px 8px black;
}

.subtitle{
    margin-top: 25px;
    font-family: "Roboto Condensed";
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px black;
}

.footer-content{
    display: grid;
    grid-template-columns:  1.5fr 1fr 3fr;
    grid-template-rows: auto;
    grid-gap: 2vw;
    margin-bottom: 20px;
}

.footer-content-logo{
    margin-bottom: 80px;
}

.footer-content-logo span{
    text-transform: uppercase;
    font-family: 'Kilton';
    line-height: 1em;
    font-size: 45px;
}

.footer-content-icons{
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 2px;
    margin-right: 5px;
}

.footer-content-icons svg path{
    fill: grey;
    transition: all .6s ease;
}

.footer-content-icons svg:hover path{
    fill: white;
}

.footer-content .footer-content-segment{
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 0px;
    padding-bottom: 60px;
    position: relative;
}

.disclaimer{
    font-family: 'Roboto Condensed';
    font-weight: 200;
    line-height: 2;
    font-size: .8rem;
}

.footer-content-left{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-content-link-title{
    font-family: 'Roboto Condensed';
    margin-bottom: 10px;
}

.footer-author{
    font-family: 'Roboto Condensed';
    font-weight: 200;
    line-height: 2;
    font-size: .8rem;
}

.footer-link-opac{
    opacity: 1;
}

.footer-content-segment:after {
    position: absolute;
    left:0;
    top:0;
    bottom: 0;
    content: '';
    border-left: solid 1px white; 
    transform: scaleY(0);  
    transform-origin:  50% 0%; 
    transition: transform 1s ease-in-out;
    transform: scaleY(1);
}

.footer-segment-grow:after{
    transform: scaleY(1);
}  

@media only screen and (max-width: 750px){

    .footer-content{
        display: block;
    }

    .container{
        padding-right: 20px;
        padding-left: 20px;
        margin-left: 0px;
    }

    .footer-content-logo {
        margin-bottom: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .footer-content-segment:after {
        transform: scaleY(0);
    }
    
    .footer-content .footer-content-segment{
        padding-bottom: 20px;
    }

}