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

html,
body {
    overflow-x: hidden;
}

body {
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
}

::placeholder {
    font-family: 'Poppins', sans-serif;
}

p {
    opacity: .8 !important;
}

section {
    width: 100%;
    min-height: 100vh;
    padding: 4vw;
    display: flex;
    position: relative;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

::selection {
    background: #000000;
    color: #ffffff;
}

::-moz-selection {
    background: #000000;
    color: #ffffff;
}

.light {
    position: absolute;
    top: -4vw;
    left: 0;
    opacity: .4;
    z-index: 1;

    img {
        width: 100%;
    }
}

.cubics {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .06;

    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.hero {
    width: 100%;
    padding-bottom: 16vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;

    h1 {
        font-size: 4.4vw;
        font-weight: 500;
        line-height: 1.05;
        background: linear-gradient(180deg, #E7E7E7 0%, #424141 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-title {
        z-index: 4;

        .line {
            display: block;
            white-space: nowrap;
        }

        .line-one {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
        }

        img {
            width: 6vw;
            height: 6vw;
            object-fit: contain;
        }
    }

    p {
        width: 65%;
        opacity: .7;
        text-align: right;
        font-weight: 300;
        font-size: 1.1vw;
        margin-bottom: 2rem;
        margin-left: auto;
    }

    a {
        display: flex;
        background: linear-gradient(to bottom, #ffffff 0%, #616161 100%);
        backdrop-filter: blur(10px);
        color: black;
        font-weight: 500;
        padding: 22px 28px;
        border-radius: 50px;
        text-decoration: none;
        width: fit-content;
        margin-left: auto;
        z-index: 6;
        font-size: .8vw;
    }

    .gradient {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: -1;

        img {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            filter: blur(4px);
            width: 100%;
        }
    }

    .gradient-container {
        position: absolute;
        left: 0;
        bottom: 1vw;
        width: 100%;
        padding: 0 4vw;
        font-weight: 100;
        z-index: 4;

        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;

        align-items: center;
        row-gap: 11vw;


        span {
            font-size: .9vw;
            opacity: .4;
        }

        span:nth-child(odd) {
            justify-self: start;
        }

        span:nth-child(even) {
            justify-self: end;
        }
    }
}

.arrow-bottom {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 9;
}