.hero-background{
    position: absolute;
    inset: 0;
    height: 100%;
    overflow-x: clip;
    z-index: -1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 120px;
}
@media (max-width: 600px) {
    .hero-background {
        gap: 40px;
    }
}
.hero-background span {
    height: 100%;
    min-width: 1px;
    background-color: var(--secondary-color);
    opacity: 0.05;
}
.hero-background::after {
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, var(--section-color) 0%, #e9f0f400 100%);
}

#hero-section {
    position: relative;
    overflow-x: clip;
}

#hero-section .hero-title {
    padding: 100px 40px;
    text-align: center;
    color: var(--secondary-color);
    font-family: var(--secondary-text-font-family);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: -1px;
}
#hero-section .hero-title span {
    color: var(--primary-color);
}

/**************************************************************/
.content {
    padding-bottom: var(--section-padding);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.course-cover {
    border: 4px #ececec solid;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    min-height: 400px;
    height: 400px;
    overflow: hidden;
}

.course-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    padding: 10px 0;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
