* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Figtree', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--color-light-lvl1);
    color: var(--color-dark-lvl1);
}

section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    clip-path: ellipse(120% 100% at 50% 0%)
}

section:last-child {
    padding: 0 0 10rem 0;
}

nav {
    z-index: 1000;
    background-image: var(--gradient-primary);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem 0 1rem;
    height: 4.5rem;
    border-radius: 100rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    padding: 2rem 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
}

.top-blur {
    mask: linear-gradient(black, black, transparent);
    backdrop-filter: blur(8px);
    width: 100%;
    height: 8rem;
    position: fixed;
    z-index: 999;
}

nav a {
    color: var(--color-light-lvl1);
    display: inline-block;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
}

nav .logo img {
    height: 6rem;
    /*filter: drop-shadow( 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.5));*/
}

nav .logo {
    margin-right: auto;
}

.hero img.background, .hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero img.background {
    opacity: 0.3;
}

.hero-image-overlay {
    z-index: 1;
    background: var(--gradient-all-key-colors);
    mix-blend-mode: hard-light;
}

.hero-text {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
}

.hero-text *::after, .hero-text *::before {
    display: none;
}

.logos-top {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.logos-top .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
    background-image: var(--gradient-primary);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 100rem;
    text-align: center;
    color: var(--color-dark-lvl1);
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.contact-card h4 {
    margin: 1rem 0 0.25rem 0;
}

.contact-card a {
    color: var(--color-light-lvl1);
}

.contact-card .portrait {
    width: 100%;
    max-width: 15rem;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

main {
    clip-path: ellipse(200% 100% at 50% 0%);
    z-index: 10000;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 85%, rgba(248, 250, 252, 1) 100%);
}

footer {
    margin-top: -10rem;
    background-image: var(--gradient-primary);
    min-height: 10rem;
    padding: 15rem 0 10rem 0;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li, footer a {
    margin-bottom: 0.5rem;
    color: var(--color-light-lvl1);
}

footer .logos a {
    display: block;
}

footer .logos {
    width: 100%;
}