@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Geologica', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#hello {
    z-index: 999;
}

header {
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

nav {
    height: 62px;
    width: 88%;
    display: flex;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: #323232;
    border-radius: 8px;
}

.logo img {
    height: 50px;
    width: auto;
    padding-top: 4px;
    padding-left: 40px;
}

.logo a {
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding-right: 40px;
    justify-content: flex-end;
    gap: 48px;
    align-items: center;
    text-transform: uppercase;
}

.nav-links li a {
    text-decoration: none;
    color: #EFEFEF;
    transition: all 0.3s ease 0s;
    font-size: 14px;
    font-weight: 600;
}

.nav-links li a:hover {
    color: #68d59a;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #ffff;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.hamburger {
    display: none;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

#content {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 20px;
    color: #fff;
    text-align: center;
    width: 60%;
    display: flex;
    flex-direction: column;
}

#content span {
    font-size: 16px;
    color: #C3EED7;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

#content .headings {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 24px; */
    align-self: stretch;
}

#content .heading h1 {
    color: #68d59a;
    text-align: center;
    font-size: 5.5rem;
    font-family: 'Geologica', sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -4.9px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

#content p {
    font-size: 16px;
    margin: 0;
    padding: 0;
}

#content .cta {
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
}

.cta a {
    text-decoration: none;
    width: fit-content;
}


button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #68d59a;
    border-style: solid;
    border-width: 0.5px;
    border-color: #c3eed7;
    border-radius: 40px 40px 40px 40px;
    padding: 0.8rem 2rem;
    transform: translate(0px, 0px) rotate(0deg);
    transition: 0.2s;
    width: fit-content;
    margin: 0px auto;
    background-color: rgb(0 0 0 / 0%);
    cursor: pointer;
}

button:hover {
    color: #209b59;
    background-color: #E5EDF5;
    box-shadow: -2px -1px 8px 0px #ffffff, 2px 1px 8px 0px rgb(95 157 231 / 48%);
}

button:active {
    box-shadow: none;
}

























@media screen and (max-width: 800px) {

    nav {
        position: fixed;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 99;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #222222;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        gap: 2rem;
        justify-content: center;
        overflow: hidden;
        top: 0;
        margin: 0;
        padding: 0;
        left: 0;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(10000px at 90% -10%);
        pointer-events: all;
        width: 100%;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li a {
        font-size: 24px;
        font-weight: 600;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        transition: all 0.7s ease;
        width: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

}

@media screen and (min-width: 544px) and (max-width: 767.98px) {

    #content {
        width: 70%;
        gap: 8px;
    }

    #content .heading h1 {
        text-align: center;
        font-size: 3.278rem;
        line-height: 3.333rem;
        letter-spacing: -2px;
    }

    #content p {
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: -0.022222222222222223rem;
    }
}

@media screen and (max-width: 543.98px) {

    #content {
        width: 88%;
        gap: 8px;
    }

    #content .heading h1 {
        text-align: center;
        font-size: 2.778rem;
        line-height: 2.778rem;
        letter-spacing: -0.117rem;
    }

    #content p {
        font-size: 0.8rem;
        line-height: 1rem;
        letter-spacing: -0.022222222222222223rem;
    }
}