/* --------------------------------------------------------------------------------------------------*/
/* ----------------------------------- TERMS & CONDITIONS ------------------------------------------ */
/* --------------------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
    background-color: #f9f9f9;
}
h1 {
    margin-top: 80px;
    color: #333;
}
h2 {
    margin-top: 20px;
    color: #555;
}
p {
    color: #444;
}
a {
    text-decoration: none;
}
ul {
    margin: 10px 0;
    padding-left: 20px;
}
li {
    margin: 5px 0;
}
.contact {
    margin-top: 20px;
    font-weight: bold;
}


/* Navigation Bar */

nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;

    width: 100vw;
    height: 55px;
    padding: 0 2vw;
    z-index: 2;

    transform: translate(-20px, -80px);

    background-color: #f2f3f5;    
    opacity: 0.9;
    backdrop-filter: blur(10px);
}

/* Navigation Bar - logo */

nav a .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    height: 50px;
    margin-bottom: 15px;
}
nav a .logo i {
    font-size: 30px;
    color: #181C1f;
    margin: 0 7px -10px 0;
}
nav a .logo h2{
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 23px !important;
    margin-bottom: 0 !important;
    color: #181C1f;
}

