* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
}

.nav-logo {
    width: 90px;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 120px;
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 600;
}

/* STORYTELLING */
.storytelling {
    position: relative;
    width: 100%;
}

.story-bg {
    width: 100%;
    display: block;
}

.story-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.quote {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.concept {
    font-size: 20px;
    font-style: italic;
}

.story-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 110px;
}

/* SERVICES */
.services img {
    width: 100%;
    display: block;
}

/* CLIENTS */
.clients img {
    width: 100%;
    display: block;
}

/* CONTACT */
.contact img {
    width: 100%;
    display: block;
}

/* FOOTER */
.footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    background: #000;
    color: #fff;
}

/* FADE */
.fade {
    opacity: 0;
    animation: fadeIn 1.4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
