<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.course-container {
    position: relative;
    overflow: hidden;
}

.course-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.course-card {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.course-card .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-card .btn {
    display: inline-block;
    width: 100%;
}

.course-row .img-warpper {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-row .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.course-row .card-body .card-text {
    min-height: 67.5px;
}

.course-search .img-warpper {
    width: 329px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-search .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.course-search .card-body .card-text {
    min-height: 67.5px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: black;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.cards_button {
    background-color: #15294E;
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 100%;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cards_button:hover {
    background-color: #111D3B;
    text-decoration: none;
    color: white;
}

#courseRow1::-webkit-scrollbar {
    display: none;
}

#courseRow1 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#courseRow2::-webkit-scrollbar {
    display: none;
}

#courseRow2 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}</pre></body></html>