
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');


/* Only affects the homepage */
body.home {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.home.ready {
    opacity: 1;
}

:root {
    --nav-color: #3585b7;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Be Vietnam Pro", sans-serif;
}

.main-nav .menu {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu a {
    color: var(--nav-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: "Be Vietnam Pro", sans-serif;
}

.main-nav .menu a:hover {
    color: rgb(168, 214, 42);
    transition: 0.2s ease-in;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1023px) {
    .main-nav .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
    }
    .main-nav.active .menu {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

/* Responsive */
@media (min-width: 1024px) {
    .main-nav .menu a {
        font-size: 18px;
    }

}

#yoyo {
  transition: transform 0.1s linear;
}

html, body {
  background-color: white;
  overflow-x: clip;
}

[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade-up-right"],
[data-aos="fade-up-left"] {
  overflow: hidden;   /* contain the animation */
}