.hero-section {
    color: #fff;
    padding: 120px 0 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, #0F1219 0%, rgba(15, 18, 25, 0) 100%);
}

.hero-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 107px;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid #A7B6BD;
}

.hero-main {
    max-width: 800px;
}

.hero-heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-bottom {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.mobile-text {
    display: none;
 }

.hero-subheading {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 520px;
    margin: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7855DA;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.hero-cta:hover {
    background-color: #5C35C6;
}

.scroll-text {
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
    width: 145px;
}

/* RWD */

@media (min-width: 1920px) {
    .hero-section {
        min-height: 50vh;
    }
}

@media (max-width: 1080px) {
    .hero-section {
        padding: 120px 0;
    }
    
    .hero-section .container {
        padding: 0 60px;
    }
    
    .hero-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .scroll-text {
        display: none;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }
}

@media (max-width: 768px) {
    .hero-heading{
        font-size: 32px;
		line-height: 39.36px;
    }
}

@media (max-width: 390px) {
    .hero-section .container {
        padding: 0 32px;
    }

    .hero-section {
        padding: 90px 0 40px;
    }

    .hero-heading {
        margin-bottom: 40px;
    }

    .hero-subheading {
        font-size: 16px;
    }
    
}

