* {
    padding: 0;
    margin: 0;
}

body {
    text-align: center;
}


/* 1] Nav */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100vw;
    max-width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    max-height: 8vh;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    z-index: 9999;
    width: 100vw;
    max-width: 100%;
}


/* Main logo text */

.logo a {
    display: flex;
    padding-left: 1em;
    padding-top: 4em;
    float: left;
    width: 120px;
    height: auto;
}

.logo {
    display: flex;
}

.logo_text {
    padding-top: 5.5em;
    padding-left: 1em;
}

#img {
    width: 80px;
}

#logo {
    width: 7em;
}


/*Navbar links */

.nav-links {
    padding-right: 1em;
    display: flex;
    justify-content: flex-end;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: rgb(0, 0, 0);
    padding: 0.5em 0.5em 0.5em 0.5em;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.1s;
    transition-timing-function: ease-in-out;
}


/* Active list item */

.nav-links li a.active {
    background-color: rgba(169, 249, 252, 0.699);
    opacity: 1;
}


/* Hover over list item */

.nav-links li:hover a {
    font-size: 16px;
    opacity: 1;
}


/* Hover over active list item */

.nav-links li:hover a.active {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}


/* Navbar menu burger */

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(87, 86, 86);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width:1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width:768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links a {
        color: #ffffff;
    }
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #000000;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    /* .nav-links li a.active {
    
        background-color: rgba(236, 148, 148, 0.3);
        opacity: 1;
    } */
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

.nav-inactive {
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* 2] */

.policy {
    margin-top: 25vh;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 5vh;
    text-align: left;
}

.intro {
    margin-bottom: 5vh;
}

.policy h1 {
    font-size: 24px;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(43, 43, 43);
}

.policy h2 {
    font-size: 22px;
    color: rgb(30, 88, 163);
    font-family: Arial, Helvetica, sans-serif;
}

.policy h3 {
    font-size: 20px;
    color: rgb(43, 43, 43);
    font-family: Arial, Helvetica, sans-serif;
}

.policy h4 {
    font-size: 18px;
    color: rgb(25, 79, 180);
    font-family: Arial, Helvetica, sans-serif;
}