/*Custom Font*/
@font-face{
    font-family: "Quicksilver-Italic";
    src: url(../res/QuicksilverItalic-OV9Z4.woff2);
}
@font-face {
    font-family: "Lato-Regular";
    src: url(../res/Lato-Regular.woff2);
}
@font-face {
    font-family: "Lato-Bold";
    src: url(../res/Lato-Bold.woff2);
}
@font-face {
    font-family: "Lato-BoldItalic";
    src: url(../res/Lato-BoldItalic.woff2);
}
/*End Custom Font*/

/*Navbar*/
.navbar__desktop{
    display:none;
    width:100%;
    height:100px;
    font-size:0;
    background-color:#fff;
}
.navbar__desktop--inner{
    display:flex;
    max-width:100%;
    height:100%;
    justify-content:center;
    margin-left:auto;
    margin-right:auto;
    padding-top:10px;
    padding-bottom:10px;
    background-color:#fff;
}
.navbar__desktop--brand{
    display:inline-block;
    margin-right:35px;
    vertical-align:top;
}
.navbar__desktop--links-list{
    display:inline-block;
    width:auto;
    height:100%;
    vertical-align:top;
}
.navbar__desktop--list{
    display:inline-block;
    height:100%;
    list-style:none;
    padding:0;
    margin:0;
}
.navbar__desktop--list li{
    display:inline-block;
    width:auto;
    height:100%;
    vertical-align:top;
    margin-left:15px;
    margin-right:15px;
    padding-top:6px;
}
.navbar__desktop--link{
    display:block;
    width:auto;
    height:100%;
    position:relative;
    padding-top:12px;
    font-family:"Quicksilver-Italic", "Arial", "Helvetica", sans-serif;
    font-size:1.75rem;
    color:#9a9a9a;
    -webkit-text-stroke:1px #000;
    text-shadow: 1px 3px 6px rgba(0,0,0,1);
    text-decoration:none;
}
.navbar__desktop--link.active{
    color:#02c6fa;
}
.navbar__desktop--link:hover{
    color:#02c6fa;
}
.navbar__desktop--link-underline{
    position:absolute;
    bottom:0;
    left:0;
    width:103%;
    height:4px;
    background-color:#02c6fa;
}

.navbar__mobile{
    display:block;
    width:100%;
    height:100px;
}
.navbar{
    width:100%;
    height:100%;
    border-bottom:solid 1px #000;
    position:relative;
}
.navbar > .navbar-brand{
    position:absolute;
    top:10px;
    left:25px;
}
.navbar__mobile--brand{
    width:auto;
    height:70px;
}
.navbar > .navbar-toggler{
    position:absolute;
    top:15px;
    right:25px;
    width:100px;
    height:70px;
    border:solid 3px #000;
    box-shadow:none;
}
.navbar > .navbar-toggler.active{
    background-color:#9a9a9a;
    box-shadow: 0px 0px 9px 4px rgba(2,198,250,0.8), 0px 0px 15px 0px rgba(0,0,0,0.75) inset;
    -webkit-box-shadow: 0px 0px 9px 4px rgba(2,198,250,0.8), 0px 0px 15px 0px rgba(0,0,0,0.75) inset;
}
.navbar > .navbar-toggler > .navbar-toggler-icon{
    width:60px;
    height:50px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(2,198,250, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-collapse{
    position:absolute;
    width:100%;
    top:75px;
    left:0;
    background-color:#fff;
    z-index:1000;
    box-shadow: 0px 9px 10px 1px rgba(0,0,0,0.8);
    -webkit-box-shadow: 0px 9px 10px 1px rgba(0,0,0,0.8);
}
.nav-item{
    margin:20px;
}
.navbar-nav > .nav-item > .nav-link{
    width:100%;
    height:auto;
    padding:4px 10px 7px 10px;
    text-align:center;
    border:solid 3px #000;
    border-radius:10px;
    font-family:"Quicksilver-Italic", "Arial", "Helvetica", sans-serif;
    font-size:1.75rem;
    color:#02c6fa;
    background-color:#fff;
    -webkit-text-stroke:1px #000;
    text-shadow: 1px 3px 6px rgba(0,0,0,1);
    box-shadow: 0px 0px 9px 4px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 9px 4px rgba(0,0,0,0.5);
}
.navbar-nav > .nav-item > .nav-link:hover{
    background-color:#9a9a9a;
}
.navbar-nav > .nav-item > .nav-link.active{
    background-color:#9a9a9a;
    box-shadow: 0px 0px 9px 4px rgba(2,198,250,0.8), 0px 0px 15px 0px rgba(0,0,0,0.75) inset;
    -webkit-box-shadow: 0px 0px 9px 4px rgba(2,198,250,0.8), 0px 0px 15px 0px rgba(0,0,0,0.75) inset;
}

.section__general-header{
    width:100%;
    height:500px;
    background-color:#02c6fa;
    font-size:0;
    overflow:hidden;
}
.general-header__inner--div{
    width:100%;
    height:100%;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    overflow:hidden;
}
.general-header__img--div{
    width:100%;
    height:50%;
}
.general-header__img--cover{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
}
.general-header__img--div img{
    width:100%;
    height:100%;
    object-fit:cover;
    pointer-events:none;
    animation:animate-image-resize 10s ease-in-out;
}
.general-header__text--div{
    width:100%;
    height:50%;
    background-color:#02c6fa;
}
.general-header__text--skew-div{
    display:none;
    position:absolute;
    top:0;
    left:-70px;
    width:200px;
    height:100%;
    background-color:#02c6fa;
    transform:skew(-14.5deg);
}
.general-header__text-box{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    z-index:10;
    font-family:"Quicksilver-Italic", "Arial", "Helvetica", sans-serif;
    font-size:3.5rem;
    color:#fff;
    text-shadow: 1px 3px 6px rgba(0,0,0,1);
    animation:animate-fade-in-up 1s ease-out;
}

@keyframes animate-fade-in-right{
    0%{
        opacity:0;
        left:50%;
    }
    40%{
        opacity:0;
    }
    100%{
        opacity:1;
        left:-10%;
    }
}
@keyframes animate-fade-in-up{
    0%{
        opacity:0;
        margin-top:100%;
    }
    40%{
        opacity:0;
    }
    100%{
        opacity:1;
        margin-top:0;
    }
}
@keyframes animate-image-resize{
    0%{
        transform:scale(1.2);
    }
    100%{
        transform:scale(1);
    }
}
.animation-paused{
    animation-play-state:paused !important;
}

.contact-page-link{
    width:100%;
    height:auto;
    padding:25px;
    background-color:#000;
    color:#fff;
    font-family:"Lato-Bold", "Arial", "Helvetica", sans-serif;
    font-size:1.75rem;
    text-align:center;
}
.contact-page-link a{
    color:#fff;
    white-space:nowrap;
}
.contact-page-link a:hover{
    color:#9a9a9a;
}

.skewed-images-container{
    width:100%;
    height:auto;
    margin-left:auto;
    margin-right:auto;
    padding:25px 25px 0 25px;
    overflow:hidden;
}
.skewed-image-wrapper{
    width:100%;
    height:50vw;
    margin-bottom:25px;
    vertical-align:top;
    overflow:hidden;
    position:relative;
    z-index:1;
}
.skewed-image-left{
    width:100%;
    height:100%;
    background-color:#000;
    margin-left:auto;
    margin-right:auto;
    padding:3px;
    position:relative;
}
.skewed-image-left > .img-div-left{
    width:100%;
    height:100%;
    overflow:hidden;
}
.skewed-image-center{
    width:100%;
    height:100%;
    border:solid 3px #000;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    overflow:hidden;
}
.skewed-image-center > .img-div-center{
    width:100%;
    height:100%;
}
.skewed-image-right{
    width:100%;
    height:100%;
    background-color:#000;
    margin-left:auto;
    margin-right:auto;
    padding:3px;
    position:relative;
}
.skewed-image-right > .img-div-right{
    width:100%;
    height:100%;
    overflow:hidden;
}
.skewed-image-left > .img-div-left img,
.skewed-image-center > .img-div-center img,
.skewed-image-right > .img-div-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    pointer-events:none;
}
.skewed-margin-spacer{
    width:100%;
    height:1px;
}

.section__footer{
    width:100%;
    height:auto;
    font-size:0;
    background:linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(1,81,102,1) 50%, rgba(2,198,250,1) 100%);
    color:#fff;
}
.footer__inner{
    height:auto;
    margin-left:auto;
    margin-right:auto;
}
.footer__inner h3{
    font-family:"Lato-BoldItalic", "Arial", "Helvetica", sans-serif;
    margin-bottom:25px;
}
.footer__links--div,
.footer__contact--div,
.footer__address--div{
    display:inline-block;
    height:auto;
    vertical-align:top;
}
.footer__links--div{
    width:auto;
}
.footer__links-list,
.footer__contact-list,
.footer__address-list{
    display:inline-block;
    vertical-align:top;
    list-style:none;
    padding:0;
    margin:0;
    font-family:"Lato-Regular", "Arial", "Helvetica", sans-serif;
}
.footer__links-list.left{
    margin-right:50px;
}
.footer__link,
.footer__contact--list-item,
.footer__address--list-item{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
    margin-bottom:10px;
}
.footer__link img,
.footer__contact--list-item img,
.footer__address--list-item img,
.footer__address--list-spacer{
    margin-right:10px;
}
.footer__link:hover{
    opacity:0.7;
}
.footer__contact--list-item > .heading{
    font-weight:bold;
}
.footer__copyright-div{
    width:100%;
    height:auto;
    font-family:"Lato-Regular", "Arial", "Helvetica", sans-serif;
    font-size:1.125rem;
    color:#fff;
    text-align:center;
}
.footer__copyright-div a{
    color:#fff;
}
.footer__copyright-div a:hover{
    opacity:0.7;
}

@media(min-width:1441px){
    .navbar__desktop--inner,
    .general-header__inner--div,
    .skewed-images-container,
    .footer__inner{
        max-width:1440px;
    }
    .general-header__img--div{
        width:855px;
    }
    .general-header__text--div{
        width:580px;
    }
    .skewed-images-container{
        height:400px;
    }
    .skewed-image-wrapper{
        height:350px;
    }
    .skewed-image-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 90px) 100%, 0% 100%);
    }
    .skewed-image-left > .img-div-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 90px) 100%, 0% 100%);
    }
    .skewed-image-right{
        clip-path:polygon(90px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .skewed-image-right > .img-div-right{
        clip-path:polygon(90px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .footer__contact--div{
        width:570px;
    }
    .footer__address--div{
        width:480px;
    }
}
@media(min-width:1281px) and (max-width:1440px){
    .navbar__desktop--inner,
    .general-header__inner--div,
    .skewed-images-container,
    .footer__inner{
        max-width:1280px;
    }
    .general-header__img--div{
        width:730px;
    }
    .general-header__text--div{
        width:550px;
    }
    .skewed-images-container{
        height:300px;
    }
    .skewed-image-wrapper{
        height:250px;
    }
    .skewed-image-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 64px) 100%, 0% 100%);
    }
    .skewed-image-left > .img-div-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 64px) 100%, 0% 100%);
    }
    .skewed-image-right{
        clip-path:polygon(64px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .skewed-image-right > .img-div-right{
        clip-path:polygon(64px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .footer__contact--div{
        width:455px;
    }
    .footer__address--div{
        width:444px;
    }
}
@media(min-width:1281px){
    .navbar__desktop--brand{
        margin-right:132.5px;
    }
    .navbar__desktop--list li{
        margin-left:17.5px;
        margin-right:17.5px;
        padding-top:0;
    }
    .navbar__desktop--link{
        font-size:2.1875rem;
    }
    .section__general-header{
        height:500px;
    }
    .general-header__text-box{
        font-size:5rem;
    }
}
@media(min-width:992px) and (max-width:1280px){
    .navbar__desktop--inner,
    .general-header__inner--div,
    .skewed-images-container{
        max-width:991px;
    }
    .section__general-header{
        height:350px;
    }
    .general-header__img--div{
        width:650px;
    }
    .general-header__text--div{
        width:400px;
    }
    .general-header__text-box{
        font-size:3.75rem;
    }
    .skewed-images-container{
        height:300px;
    }
    .skewed-image-wrapper{
        height:250px;
    }
    .skewed-image-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 64px) 100%, 0% 100%);
    }
    .skewed-image-left > .img-div-left{
        clip-path:polygon(0 0, 100% 0%, calc(100% - 64px) 100%, 0% 100%);
    }
    .skewed-image-right{
        clip-path:polygon(64px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .skewed-image-right > .img-div-right{
        clip-path:polygon(64px 0, 100% 0%, 100% 100%, 0% 100%);
    }
    .footer__inner{
        width:100%;
    }
    .footer__contact--div{
        max-width:430px;
    }
    .footer__address--div{
        max-width:420px;
    }
}
@media(min-width:992px){
    .navbar__desktop{
        display:block;
        background-image:url(../res/background.jpg);
        background-repeat:repeat;
        background-size:auto;
        background-attachment:fixed;
    }
    .navbar__mobile{
        display:none;
    }
    .section__general-header{
        background-image:url(../res/background.jpg);
        background-repeat:repeat;
        background-size:auto;
        background-attachment:fixed;
    }
    .skewed-images-container{
        display:flex;
        flex-wrap:wrap;
        margin-top:25px;
        padding:25px 0 25px 0;
    }
    .skewed-image-wrapper{
        flex: 0 0 33.33%;
    }
    .center-skewed-wrapper{
        transform:skew(-14.5deg);
    }
    .skewed-image-left,
    .skewed-image-right{
        width:100%;
        height:100%;
    }
    .skewed-image-center{
        width:100%;
        height:100%;
    }
    .skewed-image-center > .img-div-center{
        position:absolute;
        top:0;
        left:-10%;
        width:120%;
        transform:skew(14.5deg);
    }
}
@media(min-width:768px) and (max-width:991px){
    .section__general-header{
        height:350px;
    }
    .general-header__text--div{
        width:40%;
    }
    .general-header__img--div{
        width:60%;
    }
    .general-header__text-box{
        font-size:3.25rem;
    }
    .skewed-image-wrapper{
        width:100%;
        height:50vw;
    }
}
@media(min-width:768px){
    .general-header__text--div{
        position:absolute;
        top:0;
        right:0;
        z-index:10;
        height:100%;
    }
    .general-header__text-box{
        position:absolute;
        top:0;
        left:-10%;
        width:110%;
        animation:animate-fade-in-right 1s ease-out;
    }
    .general-header__text--skew-div{
        display:block;
    }
    .general-header__img--div{
        position:absolute;
        top:0;
        left:0;
        z-index:1;
        height:100%;
    }
    .contact-page-link{
        font-size:1.875rem;
    }
}
@media(min-width:576px) and (max-width:767px){
    .skewed-image-wrapper{
        width:100%;
        height:50vw;
    }
}
@media(min-width:576px){
    .navbar-collapse{
        top:100px;
    }
    .footer__links--div,
    .footer__contact--div,
    .footer__address--div{
        padding:25px;
    }
    .footer__links-list,
    .footer__contact-list,
    .footer__address-list{
        font-size:1.5625rem;
    }
    .footer__link img,
    .footer__contact--list-item img,
    .footer__address--list-item img,
    .footer__address--list-spacer{
        width:25px;
        height:25px;
    }
    .footer__copyright-div{
        margin-top:50px;
        padding:25px 25px 20px 25px;
    }
}
@media(max-width:575px){
    .navbar__mobile{
        height:75px;
    }
    .navbar > .navbar-brand{
        top:2px;
        left:15px;
    }
    .navbar__mobile--brand{
        height:60px;
    }
    .navbar > .navbar-toggler{
        top:12px;
        right:15px;
        width:80px;
        height:50px;
    }
    .navbar > .navbar-toggler > .navbar-toggler-icon{
        width:50px;
        height:35px;
    }
    .nav-item{
        margin:15px;
    }
    .navbar-nav > .nav-item > .nav-link{
        font-size:1.25rem;
    }
    .general-header__text-box{
        font-size:2.75rem;
    }
    .skewed-images-container{
        padding:25px 15px 0 15px;
    }
}
@media(min-width:401px){
    .footer__contact--list-item.mobile{
        display:none;
    }
}
@media(max-width:400px){
    .footer__contact--list-item.desktop{
        display:none;
    }
}
@media(min-width:351px) and (max-width:575px){
    .footer__links--div,
    .footer__contact--div,
    .footer__address--div{
        padding:15px;
    }
    .footer__links-list,
    .footer__contact-list,
    .footer__address-list{
        font-size:1.25rem;
    }
    .footer__link img,
    .footer__contact--list-item img,
    .footer__address--list-item img,
    .footer__address--list-spacer{
        width:20px;
        height:20px;
    }
    .footer__copyright-div{
        margin-top:35px;
        padding:15px;
    }
}
@media(max-width:350px){
    .general-header__text-box{
        font-size:12vw;
    }
    .skewed-images-container{
        padding:25px 5vw 0 5vw;
    }
    .contact-page-link{
        padding:5vw;
        font-size:6vw;
    }
    .footer__inner h3{
        font-size:6vw;
    }
    .footer__links--div,
    .footer__contact--div,
    .footer__address--div{
        padding:5vw;
    }
    .footer__links-list,
    .footer__contact-list,
    .footer__address-list{
        font-size:4.5vw;
    }
    .footer__link img,
    .footer__contact--list-item img,
    .footer__address--list-item img,
    .footer__address--list-spacer{
        width:6vw;
        height:6vw;
    }
    .footer__copyright-div{
        padding:5vw;
        font-size:4vw;
    }
}
/*End Navbar*/