/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f0faff;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header * {
    margin: 0;
    padding: 0;
    z-index: 300;
    position: relative;
}

.header-space {
    height: 75px;
    flex-shrink: 0;
}

.content {
    position: relative;
    flex: 1;
    width: 95%;
    margin: auto;
}

footer {
    background: #4a98f7;
    color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
    padding-left: 10px;
    flex-shrink: 0;
}

footer * {
    margin: 0;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background: #4a98f7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.nav,
.nav .nav-links {
    display: flex;
    align-items: center;
}

a {
    color: #fff;
    text-decoration: none;
}

.nav .logo {
    font-size: 22px;
    font-weight: 500;
}

.logo_div {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    margin-right: 10px;
}

.nav .nav-links,
.nav .nav-links-login {
    column-gap: 8px;
    list-style: none;
}

.nav .nav-links a {
    transition: all 0.2s linear;
}

.nav .nav-links-login {
    right: 0;
}

.nav .nav-links-login li {
    font-size: 14px;
    cursor: pointer;
    display: block;
    background: #4183d3;
    padding: 6px;
    text-align: center;
    border-radius: 10px;
}

.nav .nav-links li {
    border-radius: 10px;
    padding: 5px 6px;
}

.hero a {
    cursor: pointer;
    display: block;
    background: #44ada5;
    padding: 6px;
    text-align: center;
    border-radius: 10px;
    width: 50%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
    display: none;
    padding: 0px 5px;
    border-radius: 5px;
}

.nav .navOpenBtn:hover,
.nav .navCloseBtn:hover,
.nav .nav-links li:hover,
.nav .nav-links-login li:hover {
    background: #3167b3;
}

.hero a:hover {
    background: #24726c;
}


/* responsive */
/* @media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 15px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
} */
@media screen and (max-width: 768px) {

    /* .nav {
    padding: 15px 20px;
  } */
    .nav .navOpenBtn,
    .nav .navCloseBtn {
        display: block;
    }

    .nav .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        max-width: 200px;
        width: 100%;
        padding-top: 100px;
        row-gap: 30px;
        flex-direction: column;
        /* background-color: #116272; */
        background-color: #4183d3;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
    }

    .nav.openNav .nav-links {
        left: 0;
    }

    .nav .navOpenBtn {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .nav .navCloseBtn {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }
}

.hero {
    margin: auto;
    /* background-color: #0dc1d9; */
    background-color: #9bdec8;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    max-width: 750px;
}

.hero * {
    margin: 0;
}

.hero h1 {
    margin: 10px 0px;
}

.hero p {
    text-align: justify;
    margin: auto;
    margin-top: 20px;
    max-width: 500px;
}

.standard-content {
    background-color: #b6ddd0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.standard-content h1 {
    margin-top: 0px;
}

.spam {
    width: 95%;
    margin: auto;
    text-align: justify;
    text-indent: 0px;
}