.carousel-slider-wrapper{
    position: relative;
}

.carousel-cards-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EAECF0;
    min-height: 300px; /* Default value */
}

.carousel-cards-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 30px 0;
}



.carousel-title {
    font-family: 'EuropaBold', sans-serif;
    font-size: 2.5rem;
    color: #1F2E4C;
    margin-bottom: 20px;
}

.carousel-title h1,
.carousel-title h2,
.carousel-title h3,
.carousel-title h4,
.carousel-title h5,
.carousel-title h6 {
    margin: 0 0 0px 0;
    padding: 0;
    font-size: unset;
    font-weight: unset;
}

.carousel-description {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 1.2rem;
    color: #1F2E4C;
    margin-bottom: 20px;
}

.carousel-description a{
    color: #0073e6;
}


.carousel-card {
    background-color: #F7F7F7;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



.carousel-card-title {
    font-family: 'EuropaBold', sans-serif;
    font-size: 24px;
    color: #1F2E4C;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px 15px;
}

.carousel-card-description {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 16px;
    color: #1F2E4C;
    margin-bottom: 10px;
    width: 100%;
    padding: 0 15px;
}

.carousel-read-more {
    font-family: 'EuropaBold', sans-serif;
    font-size: 14px;
    color: #1f2e4d;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    padding: 0 15px 15px 15px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.carousel-read-more:hover {
    text-decoration: underline;
}


.carousel-cards-widget .carousel-left {
    width: 40%;
    padding: 0 5%;
}

.carousel-cards-widget .carousel-right{
    width: 60%;
    padding: 0 0 0 0;
}


.carousel-cards-widget .glide__track {
    padding: 0 0 3px 0;
}

.carousel-arrows button {
    background: #f7f7f7;
    border: navajowhite;
    border-radius: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 3px 2px rgba(0, 0, 0, 0.1);
}

.carousel-arrows button:first-child {
    position: absolute;
    left: -125px;
    top: 60%;
    transform: translateY(-50%);
}

.carousel-arrows button:last-child{
    position: absolute;
    right: 100px;
    top: 60%;
    transform: translateY(-50%);
}

.carousel-arrows button i {
    color: #1F2E4C;
    font-size: 18px;
}

.carousel-bullets {
    display: flex;
    gap: 5px;
    justify-content: center;
    padding: 20px 0 0 0;
}

.carousel-bullets .glide__bullet {
    background-color: #1F2E4C;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    opacity: 0.3;
    display: block;
    padding: 0;
    border: none;
}

.carousel-bullets .glide__bullet.glide__bullet--active{
    opacity: 1;
}


/* media 1024 */
@media (max-width: 1140px) {

    .carousel-cards-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 30px 0;
    flex-direction: column;
    gap: 20px;
}


.carousel-cards-widget .carousel-left {
    width: 100%;
    padding: 0 5%;
}

.carousel-cards-widget .carousel-right{
    width: 100%;
    padding: 0 5%;
}

.carousel-arrows button:first-child {
    position: absolute;
    left: 25px;
    top: 20%;
    transform: translateY(-50%);
}

.carousel-arrows button:last-child{
    position: absolute;
    right: 25px;
    top: 20%;
    transform: translateY(-50%);
}

.carousel-title{
    text-align: center;
}

.carousel-title br{
    display: none;
}

.carousel-description{
    text-align: center;
}

}