* {
    margin: 0;
    padding: 0;
}
.super_container {
	width: 100%;
}
.main_nav {
    height: 100%;
    flex-basis: 200%;
    text-align: center;
}
.nav_items {
    height: 100%;
}
ul {
    list-style: none;
    margin-bottom: 0px;
}
.nav_items li.active {
    background: #fff;
    color: #fff!important;
}
.nav_items li.active a {
    color: #fff;
    background-color: #BE0E1C;
}
.nav_items li {
    display: inline-block;
    margin-left: 35px;
    height: 100%;
}
.nav_items li a {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0b1033;
    letter-spacing: 3.5px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 14px;
    padding-right: 10px;
}
.logo {
	display: flex;
    align-items: baseline;
}
.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px!important;
    color: #171717;
    text-transform: uppercase;
}
.header {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 20;
    background: #FFFFFF;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.footer {
    background: #fff url(../images/footer2.png) 0 0 no-repeat;
    background-size: cover;
    height: 17vw;
    text-align: center;
    padding-top: 4.466vw;
}

.footer p {
    color: #fff;
}

.footer li {
    display: inline-block;
    margin: 30px 10px;
}
main h2 {
    position: relative;
}
main h2:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    width: 0;
    background-color: #000;
    /* background-color: var(--colorB); */
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -ms-transition-duration: 0.8s;
    -ms-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -webkit-transition-duration: 0.8s;
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -moz-transition-duration: 0.8s;
    -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
   
}

main section:nth-child(1) h2:after {
    animation: suibian 0.8s 1s;
}
.test::after {
    animation: suibian 0.8s;
}

.black {
    width: 0; 
}

@keyframes suibian {
    0% {width: 0%}
    50% {width: 100%;}
    100% {width: 0%;}
}

@keyframes scaleWidth {
    0% {
        transform: translateY(120vh);
    }
    100% {
        transform: translateY(0px);
    }
}

#first {
    animation: scaleWidth 1s ;
}

#joinus_logo {
    animation: scaleWidth 1s ;
}