
/* hero-section  */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-content h1 strong {
    font-weight: 700;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.circle-btn {
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-btn::before {
    content: "";
    position: absolute;
    left: -40px;
    width: 30px;
    height: 1.5px;
    background-color: white;
}

.circle-btn i {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.cta-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2rem;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}