body {
    margin: 0;
    padding: 0;
    background-color: var(--color1);
    color: var(--color2);
    text-align: center;
    overflow-x: hidden;
}

.hero h1 {
    font-size: 32px;
    text-align: start;
    max-width: 1270px;
}

.hero-content {
    max-width: 95%;
    margin: 50px auto;
    background: url(../img/hero-background.png) no-repeat;
    background-position: center;
    background-size: cover;
    height: 564px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 39px;
}

.stats {
    display: flex;
    align-items: start;
    gap: 20px;
    flex-direction: column;
}

.stat {
    display: flex;
    gap: 10px;
    text-align: start;
    justify-content: center;
    align-items: center;
}

.stat strong {
    font-size: 13px;
}

.stat p {
    font-size: 12px;
    font-family: urbane, "sans-serif";
    font-weight: 300;
}

.stat-icon {
    background: var(--color2);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
}

.stat-icon img {
    width: 18px;
}

.description {
    display: flex;
    gap: 30px;
    align-items: center;  
    height: 75px;
    justify-content: space-between;
    max-width: 550px;
}

.description-text ::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 30px;
    background-color: var(--color2);
    left: 0;
    border-radius: 10px;
    top: calc((45px / 2) - 30px / 2);
}

.description-text {
    position: relative;
    display: none;
    width: calc(100% - 190px);
}

.description-text p{
    font-size: 8px;
    line-height: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: start;
    margin-left: 15px;
}

.cta {
    background-color: transparent;
    background: linear-gradient(90deg, #ff7b00, #bd3178);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid #ffffff1a;
    cursor: pointer;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-content {
        align-items: center;
    }

    .hero h1 {
        text-align: center;
        font-size: 44px;
    }

    .stats {
        flex-direction: row;
    }

    .description-text {
        display: flex;
    }

    .description-text p {
        font-size: 12px;
    }
}

@media (min-width: 1100px) {
    .hero h1 {
        font-size: 70px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon img {
        width: 30px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat p {
        font-size: 15px;
    }

    .hero-content {
        height: calc(100vh - 200px)
    }
}