.main {
    width: 100vw;
    position: relative;
    background-color: black;
    overflow: hidden;
}

.main .bannerImg {
    position: relative;
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

.main .bannerImg.fadeIn {
    opacity: 0;
    left: -3%;
    width: 103%;

    -webkit-transition: opacity 2.6s ease-out 0.4s, left 3.3s ease-out 0.2s;
    -moz-transition: opacity 2.6s ease-out 0.4s, left 3.3s ease-out 0.2s;
    -o-transition: opacity 2.6s ease-out 0.4s, left 3.3s ease-out 0.2s;
    -ms-transition: opacity 2.6s ease-out 0.4s, left 3.3s ease-out 0.2s;
    transition: opacity 2.6s ease-out 0.4s, left 3.3s ease-out 0.2s;
}

.main .bannerImg.fadeIn.anim {
    opacity: 1;
    left: 0;
}

.main .bannerSection {
    display: flex;
    flex-direction: column;
    position: relative;
    top: -4px;
}

.main .bannerSection .top {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0;
    background-color: black;
    z-index:3;
}

.main .bannerSection .topGradient {
    position: absolute;
    z-index: 1;
    opacity: 0;
    left: 0;

    -webkit-transition: opacity 2.5s ease-in-out 0.5s;
    -moz-transition: opacity 2.5s ease-in-out 0.5s;
    -o-transition: opacity 2.5s ease-in-out 0.5s;
    -ms-transition: opacity 2.5s ease-in-out 0.5s;
    transition: opacity 2.5s ease-in-out 0.5s;
}

.main .bannerSection .topGradient.anim {
    opacity: 1;
}

.main .bannerText {
    left: 0;
    opacity: 0;
    top: 0;
    width: 48%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;

    -webkit-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -moz-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -o-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -ms-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
}

.main .bannerText::after {
    content: "";
    position: absolute;
    top: 0;
    background-color: white;
    height: 100%;
    z-index: -1;
    box-sizing: border-box;

    -webkit-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -moz-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -o-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    -ms-transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
    transition: opacity 1.2s ease-out 0.7s, left 2.5s ease-out 0.5s;
}

.main .bannerText.fadeIn.anim {
    left: 5%;
    opacity: 1;
}

.main .bannerText h1 {
    font-family: 'Proxima Nova Bl', Arial;
    color: black;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.main .bannerText p {
    color: black;
    font-family: 'Proxima Nova', Arial;
    font-weight: 500;
}

.main .switchBoard {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    width: 100%;
    opacity: 0;
    background-image: radial-gradient(at bottom, rgba(84,84,84,1) 0%, rgba(52,52,52,1) 30%, rgba(0,0,0,1) 60%, rgba(0,0,0,1) 100%);

    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.main .switchBoard.anim {
    opacity: 1;
}

.main .switchBoard .content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main .switchBoard img {
    object-fit: contain;
}

.main .switchboardDesc {
    position: relative;
    left: -5%;
    background-color: black;
    width: 105%;
    margin: 0;
    z-index: 2;
    border-top: 1px solid transparent;

    -webkit-transition: left 2.5s ease-out 1.3s, border 2.5s ease-in-out 1.6s;
    -moz-transition: left 2.5s ease-out 1.3s, border 2.5s ease-in-out 1.6s;
    -o-transition: left 2.5s ease-out 1.3s, border 2.5s ease-in-out 1.6s;
    -ms-transition: left 2.5s ease-out 1.3s, border 2.5s ease-in-out 1.6s;
    transition: left 2.5s ease-out 1.3s, border 2.5s ease-in-out 1.6s;
}

.main .switchboardDesc h1 {
    opacity: 0;
    color: white;
    text-transform: uppercase;
    font-family: 'Proxima Nova Bold', Arial;
    font-weight: 800;

    -webkit-transition: opacity 1.2s ease-out 1.3s;
    -moz-transition: opacity 1.2s ease-out 1.3s;
    -o-transition: opacity 1.2s ease-out 1.3s;
    -ms-transition: opacity 1.2s ease-out 1.3s;
    transition: opacity 1.2s ease-out 1.3s;
}

.main .switchboardDesc.fadeIn.anim {
    left: 0;
    border-top-color: rgb(80,80,80);
}

.main .switchboardDesc.fadeIn.anim h1 {
    opacity: 1;
}

.main .entShowcase {
    opacity: 0;
    z-index: 2;

    -webkit-transition: opacity 1.2s ease-out 2.3s, left 1.5s ease-out 2.3s, right 1.5s ease-out 2.3s;
    -moz-transition: opacity 1.2s ease-out 2.3s, left 1.5s ease-out 2.3s, right 1.5s ease-out 2.3s;
    -o-transition: opacity 1.2s ease-out 2.3s, left 1.5s ease-out 2.3s, right 1.5s ease-out 2.3s;
    -ms-transition: opacity 1.2s ease-out 2.3s, left 1.5s ease-out 2.3s, right 1.5s ease-out 2.3s;
    transition: opacity 1.2s ease-out 2.3s, left 1.5s ease-out 2.3s, right 1.5s ease-out 2.3s;
}

.main .entShowcase .showCaseSet {
    opacity:0;
    pointer-events: none;

    -webkit-transition: opacity 1.2s ease-in-out;
    -moz-transition: opacity 1.2s ease-in-out;
    -o-transition: opacity 1.2s ease-in-out;
    -ms-transition: opacity 1.2s ease-in-out;
    transition: opacity 1.2s ease-in-out;
}

.main .entShowcase img {
    -webkit-transition: margin 0.4s;
    -moz-transition: margin 0.4s;
    -o-transition: margin 0.4s;
    -ms-transition: margin 0.4s;
    transition: margin 0.4s;
}

.main .entShowcase.anim .showCaseSet.cover {
    opacity: 1;
    pointer-events: all;
}

.main .entShowcase.fadeIn.anim {
    opacity: 1;
}

.main .entShowcase img {
    position: absolute;
}

@media screen and (min-width: 860px) {

    .main {
        height: 100vh;
        min-height: 720px;
    }

    .page.scrollbar {
        display: none;
    }

    .main .entShowcase {
        position: absolute;
    }

    .main .bannerImg {
        width: 100%;
        height: 37%;
    }

    .main .bannerSection {
        height: 53%;
    }

    .main .bannerSection .top {
        height: 73%;
    }

    .main .bannerSection .topGradient {
        background-image: radial-gradient(at 50% 0%, rgba(54,54,54,1) 0%, rgba(32,32,32,1) 25%, rgba(10,10,10,1) 60%, rgba(0,0,0,1) 100%);
        width: 77%;
        height: 100%;
        top: 0;
        left: 23%;
    }

    .main .bannerText h1 {
        font-size: 18px;
        margin-top: 2vh;
        margin-bottom: 1.5vh;
    }
    
    .main .bannerText p {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 16px;
        margin-top: 0.3vh;
        width: 90%;
    }

    .main .bannerText p:first-of-type {
        width: 100%;
    }

    .main .bannerText p:nth-of-type(2) {
        width: 95%;
    }

    .main .bannerText::after {
        left: -50%;
        width: 160%;

        -webkit-transform: skew(-20deg, 0);
        transform: skew(-20deg, 0);
    }

    .main .switchBoard {
        height: 25%;

        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .main .switchBoard::-webkit-scrollbar {
        display: none;
    }

    .main .switchBoard .content {
        padding-bottom: 0;
        display: flex;
        justify-content: flex-start;
        margin-left: 2vw;
    }

    .main .switchboardDesc {
        height: 3%;
    }

    .main .switchBoard img {
        height: 40%;
        max-width: 10vw;
        min-width: 5vw;
        margin: 4vh 1vw 0 1vw;
        display: inline-block;
    }

    .main .switchboardDesc h1 {
        font-size: 12px;
        letter-spacing: 0.075vw;
        margin-bottom: 0;
        margin-top: 2vh;
        font-weight: 400;
        margin-left: 5%;
    }
}

@media screen and (max-width: 859px) {

    .main .bannerSection .topGradient {
        background-image: radial-gradient(at 0% 0%, rgba(64,64,64,1) 0%, rgba(32,32,32,1) 40%, rgba(10,10,10,1) 62%, rgba(0,0,0,1) 100%);
        left: 0;
        width: 100%;
        top: 0;
        height: 60vh;
        position: absolute;
    }

    .main {
        padding-bottom: 13vh;
    }

    .main .bannerImg {
        height: 55vh;
        width: 100%;
    }

    .main .bannerSection {
        height: unset;
    }

    .main .top {
        flex-direction: column;
        height: unset;
    }

    .main .bannerText {
        position: relative;
        padding: 2vh 15vw 2vh 10vw;
        margin-left: -6vw;
        width: 110%;
        background-color: white;
        box-sizing: border-box;
    }

    .main .entShowcase {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .main .bannerText h1 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 6px;
    }
    
    .main .bannerText p {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 18px;
        margin-top: 12px;
    }

    .main .bannerText::after {
        display: none;
    }

    .main .switchBoard {
        height: 12vh;
        overflow-x: scroll;
        overflow-y: hidden;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .main .switchBoard::-webkit-scrollbar {
        display: none;
    }
    
    .main .switchBoard .content {
        padding-bottom: 0;
        display: flex;
        margin-left: 5vw;
        margin-top: 2vh;
        height: 100%;
    }

    .main .switchboardDesc {
        height: 1%;
    }

    .main .switchBoard img {
        height: 60%;
        max-width: 24vw;
        min-width: 14vw;
        margin: 0 2vw 2vh 2vw;
        display: inline-block;
    }

    .main .switchboardDesc h1 {
        font-size: 3.1vw;
        width: 90%;
        margin-left: 5%;
        margin-top: 3%;
        margin-bottom: 3px;
        letter-spacing: 1px;
    }

    .main .entShowcase {
        background-image: radial-gradient(at 100% 100%, rgba(48,48,48,1) 0%, rgba(30,30,30,1) 35%, rgba(10,10,10,1) 62%, rgba(0,0,0,1) 100%);
    }
}