body{
    background-color: #E6DFDF;
}
/*Hero*/
.program-hero-image{
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.program-hero{
    max-width: 42rem;
    position: relative;
    left: 7.75rem;
    top: 7rem;
}

.hero-title,
.hero-text {
    margin: 0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #F1F1F1;
}

.hero-title {
    margin-bottom: 1.688rem;
}

.hero-text {
    width: 33.25rem;
}

/*Divider*/
.pink-divider{
    z-index: 0;
    width: 100%;
    display: block;
    position: relative;
    top: 13rem;
    margin: 10rem 0%;
} 

/* Exchange modules section*/ 
.program-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 5rem 2rem 5rem;
    justify-items: center;
}

.ex-module{
    width: 38rem;
    height: 12rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}

.ex-module:hover{
    transform: scale(1.1);
    background-color: #EFACAC;
    .module_title{
        color: #F1F1F1;
    }
}

.module_email{
    margin-bottom: 1rem;
    font-weight: 800;
}

.module_title{
    margin: 0 0 0.5rem 0;
    color: #5BB3CD;
    transition: .8s;
}

.module_description{
    line-height: 1.4;
    display: -webkit-box;
}

.two-lines{
    -webkit-line-clamp: 2; /* Clamp after 3 lines */
    -webkit-box-orient: vertical; /* Required for line-clamp */
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.module_divider{
    margin: 1rem 0 0.5rem 0;
    border: none;
    border-top: 1px solid #ccc;
}

/*Searchbar and Filters*/
.program-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 15rem auto 4rem auto;
    max-width: 56.25rem;
    padding: 0 2rem;
    justify-content: center;
    align-items: center;
}

.filter-select {
    flex: 0 1 12.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border: 0.0625rem solid #ccc;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: .5s;
}

.filter-select:hover{
    transform: scale(1.1);
}

.search-input {
    flex: 1 1 18.75rem;
    max-width: 25rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 0.0625rem solid #ccc;
    border-radius: 0.75rem;
}


