#hero-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.hero-content {
    padding: 20px;
}

.hero-content .title {
    font-size: 2.5rem;
    font-weight: var(--f-weight-2);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.typewriter {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: var(--f-weight);
    justify-content: center;
}

.typewriter::after {
    content: "|";
    position: absolute;
    right: -12px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    /* border: solid 1px var(--primary-color);
    border-radius: 10px; */
    padding: 10px 5px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.feature-item span {
    color: var(--primary-color);
    font-weight: var(--f-weight);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image svg {
    max-width: 100%;
    height: auto;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* RESPONSIVITY */
@media (min-width: 768px) and (max-width: 992px) {

    .hero-content {
        text-align: center;
    }

    .hero-image svg {
        width: 350px;
        height: 350px;
    }

    .btn {
        margin: auto;
    }

    .hero-features {
        margin: auto;
    }

}

@media (max-width: 768px) {

     #hero-section {
        padding: 30px;
    }

    .social-links {
        margin: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .title {
        font-size: var(--title-small);
    }

    .hero-text {
        font-size: var(--f-small);
    }

    .hero-text p {
        font-size: var(--f-small);
    }

    .hero-image svg {
        margin-top: 0;
        width: 230px;
        height: 230px;
    }

    .btn {
        font-size: 13px;
        margin: auto;
    }

    .hero-features {
        margin: auto;
    }

    .feature-item {
        gap: 0px;
        margin: auto;
    }

    .feature-item i {
        color: var(--primary-color);
        font-size: var(--f-small);
    }

    .feature-item span {
        color: var(--primary-color);
        font-weight: var(--f-weight);
    }

}
