.hero {
    height: 680px;
    position: relative;
    padding-top: 50px;
}
.main-h1 {
    position: absolute;
    top: 0;
    left: -1000px;
    opacity: 0;
}
.hero__title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 100px;
}
.hero__describe {
    font-size: 15px;
    font-weight: 500;
    margin-top: 30px;
    width: 250px;
    color: var(--text-sub-color);
    line-height: 26px;
    font-weight: 600;
}
.hero__button {
    margin-top: 20px;
    padding: 7px 20px;
    background-color: var(--accent-color);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}
.hero__button-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    background: none;
    color: white;
}
.hero__button-icon {
    width: 15px;
    background: none;
}
.hero__button:hover {
    filter:brightness(1.2);
    transition: 0.2s;
    border: 2px solid var(--text-sub-color);
}
.hero__image {
    width: 230px;
    position: absolute;
    right: 10px;
    bottom: 0;
}

/* --- Media --- */
@media (min-width: 500px) and (max-width: 768px) {
    .hero {
        height: 420px;
    }
    .hero__image {
        width: 210px;
        bottom: 30px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hero__image {
        width: 220px;
        right: 50px;
    }
}

@media (min-width: 768px) {
    .hero {
        height: 500px;
        padding-top: 90px;
    }
    .hero__title {
        font-size: 40px;
    }
    .hero__describe {
        font-size:18px;
        width: 400px;
        line-height: 33px;
    }
    .hero__button {
        padding: 10px 25px;
    }
    .hero__button-text {
        font-size: 13px;
    }
    .hero__image {
        width: 300px;
        right: 50px;
        bottom: 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        height: 600px;
        max-width: 1300px;
        margin: 0 auto;
        padding-top: 110px;
    }
    .hero__title {
        margin-top: 100px;
        font-size: 45px;
    }
    .hero__describe {
        width: 420px;
    }
    .hero__image {
        width: 400px;
    }
    .hero__button {
        padding: 13px 25px;
        border-radius: 40px;
        margin-top: 30px;
    }
    .hero__button-text {
        font-size: 15px;
    }
}