* {
    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] Cards */

.big_div {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 30vh;
}

.container {
    position: relative;
    width: 1200px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.container .card {
    position: relative;
    max-width: 250px;
    height: 180px;
    background-color: #fff;
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    border-radius: 4px;
}

.container .card:hover {
    height: 320px;
}

.container .card .imgBx {
    position: relative;
    width: 250px;
    height: 224;
    top: -60px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.container .card .imgBx img {
    max-width: 100%;
    border-radius: 4px;
}

.container .card .content {
    position: relative;
    margin-top: -180px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.container .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

.container .card:hover .content h1 {
    font-size: 1.5em;
}

.container .card:hover .card_heading {
    visibility: hidden;
    opacity: 0;
}

.container .card .card_heading {
    margin-top: 1vh;
}

a:link {
    text-decoration: none;
}

a {
    color: rgb(43, 43, 43);
}

.privacy_policy {
    text-align: left;
    margin-top: 15vh;
    margin-left: 5vw;
}

.privacy_policy h2 {
    color: rgb(39, 147, 180);
}

.privacy_policy h2:hover {
    color: rgb(56, 197, 75);
}