#hero {
    width: 100%;
    height: max-content;
    padding: 20px;
}

.hero-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.hero-left {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-left h1 {
    font-size: var(--large);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    text-align: center;
}

.hero-left p {
    font-size: var(--small);
    color: var(--text-color);
    line-height: 1.5;
    text-align: center;
}

.hero-right {
    width: 100%;
    height: max-content;
    display: flex;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 350px;
    background: url(/assets/employees.webp) no-repeat left center;
    background-size: cover;
    -webkit-mask: url(/assets/hero-mask.svg) center/contain no-repeat, url(/assets/hero-mask-2.svg) center/contain no-repeat, linear-gradient(#000000 0 0);
    mask-size: 100px, 180px;
    mask-position: top right, bottom center;
    mask-composite: exclude;
    border-radius: 30px;
}

.experience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    text-align: center;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.experience .number {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--blue-500);
}

.experience .text {
    font-size: var(--small);
    color: var(--blue-500);
}

.chips {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.chip {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: var(--blue-50);
    flex-shrink: 0;
}

.chip p {
    font-size: 10px;
    color: var(--blue-500);
}

/* Media Queries */

@media (min-width: 425px) {
    .hero-left h1 {
        font-size: var(--h4);
    }

    .hero-left p {
        font-size: var(--body);
    }

    .hero-img {
        mask-size: 100px, 200px;
    }

    .experience {
        bottom: -30px;
    }

    .experience .text {
        font-size: var(--body);
    }

    .chip p {
        font-size: var(--small);
    }
}

@media (min-width: 768px) {
    .hero-left h1 {
        font-size: var(--h3);
    }

    .hero-left p {
        max-width: 600px;
    }

    .hero-img {
        mask-size: 150px, 250px;
    }

    .experience {
        bottom: -20px;
    }

    .chips {
        justify-content: start;
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 20px;
    }

    .hero-left {
        width: 50%;
        align-items: start;
        gap: 20px;
    }

    .hero-right {
        width: 50%;
    }
    
    .hero-left h1, .hero-left p {
        text-align: left;
    }

    .hero-img {
        height: 400px;
        mask-position: top right, bottom 0 left 15%;
        mask-size: 120px, 250px;
    }

    .experience {
        left: -150px;
    }
}

@media (min-width: 1440px) {
    .hero-left h1 {
        font-size: var(--h2);
        max-width: 550px;
    }

    .hero-left p {
        font-size: var(--large);
        max-width: 100%;
    }

    .hero-img {
        height: 500px;
        mask-position: top right, bottom 0 left 10%;
        mask-size: 150px, 300px;
        border-radius: 40px;
    }

    .experience {
        left: -320px;
        bottom: -30px;
    }

    .experience .number {
        font-size: var(--h2);
    }

    .experience .text {
        font-size: var(--large);
    }

    .chip p {
        font-size: var(--small);
    }

    .chips {
        justify-content: start;
        max-width: 450px;
        margin-top: 20px;
    }
}