* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
}

body {
    color: white;
    font-family: 'Helvetica';
    font-weight: 300;
    /*    overflow: hidden;*/
    background-color: black;
}

.burgerMenu,
#myNav {
    display: none;
}

.container {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: row;
    /*    align-items: center;*/
    background-color: black;
    background: linear-gradient(90deg, #FAE74C 6.7%, black 6.7%);
}

.burger {
    height: 100vh;
    width: 6.4vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 2.6vw;
    position: relative;
    z-index: 2;
    background-color: #FAE74C;
}

.containerBox {
    width: 93.3%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    width: 100%;
    height: 9.35vw;
    padding: 0vw 6vw 0 4.9vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

header .logo {
    width: 17.8vw;
    height: 37px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

header .logo .guer {
    margin: 0 0.7vw 0 0;
    width: 14vw;
}

header .logo .beta {
    width: 4vw;
}

header .logo:hover .beta {
    animation: flip ease-in-out 1s;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

header .menu {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


header .menu li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid transparent;
    width: 6.1vw;
    transition: all .8s;
}

header .menu li:hover {
    border-top: 1px solid white;
}

header .menu li:hover a {
    color: #FAE74C;
}

header .menu li:nth-of-type(2) {
    width: 16vw;
}

header .menu li a {
    text-decoration: none;
    text-align: left;
    width: 100%;
    color: white;
    transition: all .2s;
}

header .menuText {
    width: 100%;
    font-size: 0.93vw;
    padding: 1.5vw 0 1vw;
    letter-spacing: 0.12vw;
    font-family: Futura_Medium;
    transition: all .3s;
    border-top: 1px solid white;
}

header .menuNum {
    font-family: Silkscreen;
    font-size: 0.82vw;
    transition: all .3s;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-y: hidden;
    transition: 0.4s;
    display: flex;
    justify-content: center;
}

.overlay1 {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    overflow-y: hidden;
    transition: 0.4s;
    display: flex;
    justify-content: center;
}

.overlay-open {
    height: 93%;
    background-color: black;
    top: 13vw;
}

.overlay-content {
    position: relative;
    width: 78%;
    margin-top: 21%;
    margin-left: 9%;
}

.overlay1 a {
    padding: 5px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transition: 0.3s;
    color: white;
    line-height: 1.6;
    letter-spacing: 2px;
    text-align: left;
}


.overlay1 a:hover,
.overlay1 a:focus {
    color: white;
}

.open-close-btn {
    position: relative;
    left: 5px;
    text-decoration: none;
    z-index: 102;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4.7vw 6.8vw 3.3vw 3.3vw;
    background-image: url(../img/footerBG.png);
}

footer .btnContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

footer .btnContainer .leftHand {
    width: 3.24vw;
    margin: 0 0.8vw 0 0;
}

footer .btnContainer .rightHand {
    width: 2.45vw;
    margin: 3vw 0 0 0vw;
}

footer .btnContainer .btnBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 11.3vw;
}

footer .btnContainer .btnBox .p {
    font-size: 0.53vw;
    letter-spacing: 0.1vw;
    font-family: 'Helvetica';
    font-weight: 100;
    margin: 0 0 1.25vw;
    text-transform: uppercase;
}

footer .btnBox .btnGuer {
    border-radius: 32vw;
    background-color: #FAE74C;
    background-image: url(../img/btnBG.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 59%;
    width: 100%;
    height: 2.66vw;
    color: white;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    display: block;
    position: relative;
}

.testing:before,
.testing:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 0;
    width: 100%;
    -webkit-clip: rect(0px, 0px, 0px, 0px);
    clip: rect(0px, 0px, 0px, 0px);
    background: #FAE74C;
    color: white;
    border-radius: 32vw;
    background-image: url(../img/btnBG.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 59%;
}

.testing:before {
    left: -3px;
    top: -2px;
    text-shadow: 2px 0 #fff;
    box-shadow: 2px 0 #fff;
}

.testing:after {
    left: 2px;
    bottom: -2px;
    text-shadow: -1px 0 #fff;
    box-shadow: -1px 0 #fff;
}

.testing:hover {
    background: white;
    color: black;
}

.testing:hover:before {
    animation: glitch-test 1s infinite linear alternate-reverse;
}

.testing:hover:after {
    -webkit-animation: glitch-test 1.5s infinite linear alternate;
    animation: glitch-test 1.5s infinite linear alternate;
}

footer .btnBox .btnGuer:hover {
    cursor: pointer;
}

footer .footerRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

footer .footerRight .logo {
    width: 11.7vw;
    margin: 0 0 1.25vw;
}

footer .footerRight .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 52vw;
}

footer .footerRight .menu li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid white;
    width: 6vw;
    transition: all 1s;
}

footer .footerRight .menu li:nth-of-type(2) {
    width: 17vw;
}

footer .footerRight .menu li a {
    text-decoration: none;
    text-align: left;
    width: 100%;
    color: white;
    transition: all .3s;
    font-size: 0.9vw;
    padding: 0.9vw 0 1vw;
    letter-spacing: 0.1vw;
    font-family: Futura_Medium;
    transition: all .3s;
}

footer .footerRight .menu li a:hover {
    cursor: pointer;
}

footer .footerRight .infoBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

footer .footerRight .infoBox .social {
    display: flex;
    flex-direction: column;
}

footer .social .follow {
    font-size: 0.6vw;
    font-family: 'Helvetica';
    font-weight: 100;
    letter-spacing: 0.1vw;
}

footer .social .logoBox {
    display: flex;
    flex-direction: row;
    margin: 1vw 0 0;
}

footer .social .logoBox .logoImg {
    width: 2.34vw;
    height: 2.34vw;
    background-color: #FAE74C;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 1.2vw 0 0;
}

footer .social .logoBox .logoImg:hover {
    cursor: pointer;
}

footer .copy {
    font-size: 0.73vw;
    font-family: 'Helvetica';
    font-weight: 100;
    letter-spacing: 0.12vw;
}

@media screen and (max-height: 450px) {
    .overlay1 {
        overflow-y: auto;
    }
}


/* Hamburger Icon */
#hamburger-icon {
    display: inline-block;
    width: 7.2vw;
    height: 3vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}


#hamburger-icon span {
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    margin-top: 0.4vw;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


/* Hamburger Lines  */

#hamburger-icon span:nth-child(1) {
    top: 0px;
}

#hamburger-icon span:nth-child(2),
#hamburger-icon span:nth-child(3) {
    top: 1.5vw;
}

#hamburger-icon span:nth-child(4) {
    top: 3vw;
}

#hamburger-icon.hamburger-open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#hamburger-icon.hamburger-open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-icon.hamburger-open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger-icon.hamburger-open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.xAnimate {
    width: 1.7vw;
    left: 4%;
    top: -9%;
    position: absolute;
    animation: rotate ease-in-out 4s infinite;
}

.xAnimate1 {
    bottom: -44%;
    right: 20%;
    width: 1.2vw;
    position: absolute;
    animation: rotate2 ease-in-out 6s infinite;
}



@media all and (max-width:1024px) {
    body {
        overflow: auto;
    }

    .container {
        background-color: black;
        background: linear-gradient(90deg, #FAE74C 9.7%, black 6.7%);
    }

    .xAnimate {
        width: 2.7vw;
        top: 0%;
    }

    .nav {
        display: none;
    }

    header .menu {
        display: none;
    }

    header {
        justify-content: space-between;
        padding: 5.6vw 7.4vw 0;
    }

    header .logo {
        margin: 0;
        width: 39vw;
        position: relative;
        z-index: 102;
    }

    header .logo .guer {
        margin: 0 0.7vw 0 0;
        width: 23vw;
    }

    header .logo .beta {
        width: 6vw;
    }

    .containerBox {
        width: 91.3%;

    }

    header .menuText {
        font-size: 2.93vw;
        letter-spacing: 0.4vw;
    }

    header .menuNum {
        font-size: 2.93vw;
    }

    .burgerMenu,
    #myNav {
        display: flex;
    }

    footer .btnContainer {
        margin: 0 0 4vw;
    }

    footer .btnContainer .btnBox .p {
        font-size: 1.7vw;
    }

    footer .btnBox .btnGuer {
        height: 5.66vw;
    }

    footer .footerRight .logo {
        width: 29.7vw;
        margin: 0 auto 3vw;
    }

    footer .footerRight {
        align-items: center;
    }

    footer .footerRight .infoBox {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    footer .footerRight .infoBox .social {
        margin: 0 0 4vw;
    }

    footer .footerRight .menu {
        width: 100%;
        display: none;
    }

    footer .footerRight .menu li a {
        font-size: 2vw;
        padding: 1.9vw 0 2vw;
    }

    footer .footerRight .menu li {
        width: 12vw;
        margin: 0 2vw 0 0;
    }

    footer .footerRight .menu li:nth-of-type(2) {
        width: 35vw;
    }

    footer {
        flex-direction: column;
        padding: 4.7vw 1vw 3.3vw;
    }

    footer .social .follow {
        font-size: 2.3vw;
        margin-top: 2vw;
    }

    footer .social .logoBox .logoImg {
        width: 6.34vw;
        height: 6.34vw;
        background-position: 49% 50%;
    }

    footer .copy {
        font-size: 2.3vw;
        letter-spacing: 0.2vw;
    }

    footer .btnContainer .leftHand {
        width: 6.24vw;
        margin: 0 1.8vw 0 0;
    }

    footer .btnContainer .rightHand {
        width: 5.45vw;
        margin: 3vw 0 0 1vw;
    }

    footer .btnContainer .btnBox {
        width: 30vw;
    }

    .overlay-open {
        height: 100%;
        background-color: black;
        top: 0;
    }

}
