/*--START RESET SWITCHES--*/
body {
    
    margin: 0px;
    padding: 0px;
    border: 0px;
    background: #000;
    overflow-x: hidden;
    
}

main, .section, #chevron-down, .footer {
    
    opacity: 1;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

main.fade, .section.fade, #chevron-down.fade, .footer.fade {
    
    opacity: 0;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}
/*--END RESET SWITCHES--*/



/*--START FONT DELEGATIONS--*/
a {
    
    text-decoration: none;
    color: inherit;
    
}

li {
    
    list-style: none;
    
}

#title {
    
    text-transform: none;
    font-family: "dense";
    font-size: 95px;
    font-weight: 100;
    margin: 0px;
    color: #fff;
    
}

#upper {
    
    text-transform: uppercase;
    font-family: "dense";
    font-size: 95px;
    font-weight: 400;
    margin: 0px;
    color: #fff;
    opacity: 0.2;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}

#nav {
    
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    font-family: "dense";
    font-weight: 100;
    font-size: 95px;
    margin: 10px;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

#nav.activate {
    
    opacity: 1;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

#upper.start {
    
    opacity: 1;
    -webkit-transition: ease-in-out 1s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}

#lower {
    
    text-transform: none;
    font-family: "simplifica";
    font-size: 40px;
    font-weight: 100;
    margin: 0px;
    color: #fff;
    
}

#content-one {
    
    text-transform: none;
    font-family: "simplifica";
    font-size: 40px;
    font-weight: 100;
    margin: 0px;
    color: #fff;
    
}

#content-two, #card-link {
    
    text-transform: uppercase;
    font-family: "dense";
    font-size: 50px;
    font-weight: 200;
    margin: 0px;
    padding: 10px;
    color: #fff;
    
}

#logos {
    
    font-size: 30px;
    
}
/*--END FONT DELEGATIONS--*/



/*--START PORTRAIT OVERLAY--*/
.portrait-overlay {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.portrait-overlay.in-use {
    
    z-index: 4;
    visibility: visible;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.rotate {
    
    position: fixed;
    text-transform: uppercase;
    font-family: "dense";
    font-size: 200px;
    font-weight: 400;
    margin: 0px;
    color: #fff;
    
}
/*--END PORTRAIT OVERLAY--*/



/*--START NAVIGATION BAR--*/
.page-header {
    
    background: transparent;
    padding: 40px;
    
}

.pull-left {
    
    float: left;
    
}

.page-header {
    
    position: fixed;
    left: 0px;
    top: 0px;
    width: auto;
    z-index: 2;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.page-header.off-canvas {
    
    top: -105px;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.page-header.nav {
    
    top: 0px;
    
}

.page-header.fixed {
    
    top: 0px;
    z-index: 2;
    
}
/*--END NAVIGATION BAR--*/



/*--START CONTENT SECTOR--*/
main {

    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
    text-transform: none;
    font-family: "simplifica";
    font-size: 35px;
    font-weight: 100;
    color: #fff;
    z-index: 0;

}
/*--END CONTENT SECTOR--*/



/*--START HAMBURGER MENU--*/
#hamburger-menu {
    
    width: 35px;
    height: 22px;
    padding: 20px;
    cursor: pointer;
    margin: 0px auto;
    opacity: 0.6;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

#hamburger-menu.start:hover {
    
    opacity: 1;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.bar-one, .bar-two, .bar-three {
    
    background: #fff;
    opacity: 1;
    width: 35px;
    height: 2px;
    margin-bottom: 8px;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.bar-one.open {
    
    transform: translateY(10px) rotate(45deg);
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.bar-two.open {
    
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.bar-three.open {
    
    transform: translateY(-10px) rotate(-45deg);
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}
/*--END HAMBURGER MENU--*/



/*--START BOX BORDERS--*/
.box {
    
    position: relative;
    vertical-align: middle;
    color: #fff;
    display: inline-block;
    height: auto;
    line-height: auto;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    
}

.box::before, .box::after {
    
    width: 100%;
    height: 100%;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transition: 0.3s;
    
}

.border::before {
    
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform-origin: 0% 100%;
    
}

.border::after {
    
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform-origin: 100% 0%;
    
}

.box:hover::before, .box:hover::after {
    
    -webkit-transform: scale(1);
    
}
/*--END BOX BORDERS--*/



/*--START BOX BORDERS (HOVER)--*/
.box-hover {
    
    position: relative;
    vertical-align: middle;
    color: #fff;
    height: auto;
    line-height: auto;
    text-align: center;
    padding: 0px 12px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    
}

.box-hover::before, .box-hover::after {
    
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transition: 0.3s;
    
}

.border-hover::before {
    
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform-origin: 0% 100%;
    
}

.border-hover::after {
    
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform-origin: 100% 0%;
    
}

.box-hover:hover::before, .box-hover:hover::after {
    
    -webkit-transform: scale(1);
    
}

#active {
    
    border: 2px solid #fff;
    padding: 0px 12px;
    
}
/*--END BOX BORDERS (HOVER)--*/



/*--START BOX BORDERS (START)--*/
.box-start {
    
    position: relative;
    vertical-align: middle;
    color: #fff;
    display: inline-block;
    height: auto;
    line-height: auto;
    text-align: center;
    padding: 0px 12px;
    cursor: pointer;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    
}

.box-start::before, .box-start::after {
    
    width: 100%;
    height: 100%;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transition: 1s;
    
}

.border-start::before {
    
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform-origin: 0% 100%;
    
}

.border-start::after {
    
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform-origin: 100% 0%;
    
}

.box-start.start::before, .box-start.start::after {
    
    -webkit-transform: scale(1);
    
}
/*--END BOX BORDERS (START)--*/



/*--START BOX BORDERS (TOGGLED)--*/
#hamburger-menu.toggle {
    
    opacity: 1;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

.box-menu {
    
    position: relative;
    vertical-align: middle;
    color: #fff;
    display: inline-block;
    height: auto;
    line-height: auto;
    text-align: center;
    padding: 0px 12px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    
}

.box-menu::before, .box-menu::after {
    
    width: 100%;
    height: 100%;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transition: 0.3s;
    
    
}

.border-menu::before {
    
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform-origin: 0% 100%;
    
}

.border-menu::after {
    
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform-origin: 100% 0%;
    
}

.box-menu:hover::before, .box-menu:hover::after {
    
    -webkit-transform: scale(1);
    
}

.box-menu.toggle::before, .box-menu.toggle::after {
    
    -webkit-transform: scale(1);
    
}
/*--END BOX BORDERS (TOGGLED)--*/



/*--START DOWN ARROW--*/
#chevron-down {
    
    position: absolute;
    top: 90vh;
    transform: translateY(-100%);
    width: 100%;
    z-index: 0;
    text-align: center;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

#chevron-down.expand {
    
    top: 85vh;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

#arrow {
    
    color: #fff;
    font-size: 80px;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: ease-in-out 1s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}

#arrow.expand {
    
    opacity: 1;
    -webkit-transition: ease-in-out 1s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}

#arrow:hover {
    
    opacity: 0.6;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

#scroll {
    
    text-transform: uppercase;
    font-family: "simplifica";
    font-size: 30px;
    font-weight: 100;
    margin: 0px;
    color: #fff;
    opacity: 0;
    -webkit-transition: ease-in-out 1s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}

#scroll.expand {
    
    opacity: 1;
    -webkit-transition: ease-in-out 1s;
    -moz-transition: ease-in-out 1s;
    transition: ease-in-out 1s;
    
}
/*--END DOWN ARROW--*/



/*--START NAVIGATION MENU--*/
.navigation {
    
    position: fixed;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: auto;
    top: 50%;
    left: 0px;
    z-index: -1;
    perspective: 2000px;
    transform: translateY(-50%);
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.navigation.activate {
    
    z-index: 2;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.blur {
    
    position: fixed;
    height: 100vh;
    width: 100%;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.blur.activate {
    
    z-index: 2;
    opacity: 0.9;
    visibility: visible;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    
}

.navigation-ul {
    
    padding: 10px 0 10px 0; /*--Top, Right, Bottom, Left--*/
    opacity: 0.4;
    transform: translateY(-25%) rotateX(35deg);
    transition: transform 0.5s;
    
}

.navigation-ul.activate {
    
    opacity: 1;
    transform: rotateX(360deg);
    
}
/*--END NAVIGATION MENU--*/



/*--START CARD CONTENT--*/
.top {
    
    padding-top: 40px;
    
}

.bottom {
    
    padding-bottom: 40px;
    
}

#parent {
    
    display: flex;
    max-width: 100vw;
    height: 300px;

}

#left-child {

    flex: 1;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));

}

#right-child {

    width: 50%;
    background: transparent;
    
}

#left-child, #right-child {
    
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.card-text-left, .card-text-right {

    margin: 10px 10px 0 10px; /*--Top, Right, Bottom, Left--*/

}

#card-text {
    
    font-family: "simplifica";
    font-size: 40px;
    font-weight: 100;
    
}
/*--END CARD CONTENT--*/



/*--START FOOTER CONTENT--*/
.footer {
    
    position: relative;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    text-align: center;
    
}

#left {
    
    float: left;
    font-size: 40px;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

#right {
    
    float: right;
    font-size: 40px;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

#left:hover {
    
    color: #3B5998;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}

#right:hover {
    
    color: #4099FF;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    
}
/*--END FOOTER CONTENT--*/