/* Made by Tegan Hakim */
/* February 2021 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #070814;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
header {
    width: 100vw;
    height: 100px;
    background-color: rgb(11, 14, 33);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
header img {
    width: 230px;
    height: 80px;
    transform: translateY(-5px);  
    transition: opacity 0.5s ease-in-out;  
}
header a {
    z-index: 2;
}

/* Nav */
nav {
    width: 100%;
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    border-bottom: 2px solid rgb(255, 255, 255);
    box-shadow: 10px 8px 10px rgb(28, 38, 85);
}
nav .nav-1, nav .nav-2 {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .nav-1 {
    margin-left: 12vw;
}
nav .nav-2 {
    margin-right: 12vw;
}
nav li {
    list-style-type: none;
}
nav li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    padding: 6px 15px 6px 15px;
}
nav li a:hover {
    border: 1px solid white;
    border-radius: 18px;
    transition: border-radius 0.5s ease-out;
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 5px;
    margin-right: 25px;
    transition: transform 0.3s ease;
    z-index: 5;
    pointer-events: all;
}
.mobile-nav {
    display: none;
    pointer-events: none;
}



.privacy-info {
    position: relative;
    height: 100%;
    font-size: 14px;
    padding-left: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}
.privacy-info h3{
    font-size: 16px;
    color:#2b71b1
}
.privacy-info a {
    color:#2b71b1;
    text-decoration: underline;
}
.privacy-info h1 {
    margin-top: 20px;
    color: #2b71b1
}
.privacy-info ol, .privacy-info ul {
    margin-left: 50px;
}
footer {
    height: 15vh;
    background-color:#070814;
    display: flex;
    justify-content: center;
    position: relative;
    border-top: 1px solid white;
    margin-top: 20px;
}
footer ul {
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 110px;
}
footer ul a {
    text-decoration: none;
    color: white;
    margin-right: 15px;
}
footer ul a:hover {
    text-decoration: underline;
}
footer span {
    position: absolute;
    bottom: 65px;
    color: white;
}
footer p {
    display: inline;
}
footer span a {
    text-decoration: underline;
    color: white;
}
.icons {
    position: absolute;
    bottom: 15px;
}
.footer-icon {
    transform: scale(1.2);
    margin-right: 25px;
    padding: 8px;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
}


/* Ipad */
@media screen and (max-width: 768px) {
    header img {
        width: 200px;
        height: 70px;
        transform: translateY(-4px);    
    }
    nav .nav-1 {
        margin-left: 8vw;
    }
    nav .nav-2 {
        margin-right: 8vw;
        width: 24%;
    }
} 
/* Iphone X */
@media screen and (max-width: 375px) {
    header img {
        width: 120px;
        height: 50px;
        transform: translateY(-3px);   
    }     
    nav li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
    
    .footer-icon {
        transform: scale(1);
    }
    footer ul a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        margin-right: 8px;
    }
    footer ul {
        list-style: none;
        display: flex;
        position: absolute;
        bottom: 90px;
    }
    footer span {
        position: absolute;
        bottom: 60px;
        font-size: 13px;
        color: white;
    }   
}
/* Iphone 6/7/8 Plus */
@media screen and (max-width: 414px) {
    body {
        overflow-x: hidden;
    }
    header img {
        width: 130px;
        height: 50px;
        transform: translateY(-4px);    
    }
    .nav-links {
        display: none;
        pointer-events: none;
    }
    .mobile-nav {
        position: absolute;
        right: 0;
        height: 115vh;
        width: 110vw;
        top: 0px;
        background-color: #1c294e;
        background-image: linear-gradient(105deg, #1c2b57, #384e88 20%, #112666 40%, #0d1430);
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(-450px);
        transition: transform 0.5s ease-in-out;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: left;
    }
    .mobile-nav .links {
        opacity: 1;
        pointer-events: all;
        transform: rotate(-35deg) translate(100px, 100px);
        position: relative;
        top: -90px;
        padding: 35px;
    }
    .mobile-nav li a {
        z-index: 10;
    }
    nav li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
    .footer-icon {
        transform: scale(.9);
    }
    footer ul a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        margin-right: 8px;
    }
    footer ul {
        list-style: none;
        display: flex;
        position: absolute;
        bottom: 82px;
    }
    footer span {
        position: absolute;
        bottom: 52px;
        font-size: 13px;
        color: white;
    }
    .icons {
        position: absolute;
        bottom: 10px;
    }
}
/* Iphone 6/7/8*/
@media screen and (max-width: 375px) {
    header img {
        width: 120px;
        height: 50px;
        transform: translate(-4px, -4px);    
    }
    nav li {
        opacity: 0;
    }
    .burger {
        display: block;
        z-index: 5;
    }
    .footer-icon {
        transform: scale(.9);
    }
    footer ul a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        margin-right: 8px;
    }
    footer ul {
        list-style: none;
        display: flex;
        position: absolute;
        bottom: 75px;
    }
    footer span {
        position: absolute;
        bottom: 50px;
        font-size: 13px;
        color: white;
    }
    .icons {
        position: absolute;
        bottom: 9px;
    }
    .back-face {
        transform: rotateY(0deg);
    }
}
.nav-active {
    transform: rotate(35deg) translate(-200px, -60px);
}
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
.display-off {
    opacity: 0;
    pointer-events: none;
}
.hidden {
    display: none;
}