.btn-intro {
    color: var(--res-text-color);
    font-size: var(--res-font-size);
    font-weight: var(--res-font-weight);
    border-radius: 30px;
    height: 120px;
    cursor: pointer;
}
.btn-intro:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
.btn-intro .warpper {
    height: 100%;
    display: flex;
    align-content: stretch;
    justify-content: flex-start;
    align-items: center;
}
.btn-intro .icon {
    height: 100%;
    padding-right: 12px;
}

.btn-intro[data-columns="1"] {
    background-image: var(--res-1-bg);
}
.btn-intro[data-columns="2"] {
    background-image: var(--res-2-bg);
}
.btn-intro[data-columns="3"] {
    background-image: var(--res-3-bg);
}
.btn-intro[data-columns="4"] {
    background-image: var(--res-4-bg);
}
.btn-intro[data-columns="5"] {
    background-image: var(--res-5-bg);
}
.btn-intro[data-columns="6"] {
    background-image: var(--res-6-bg);
}
.btn-intro[data-columns="7"] {
    background-image: var(--res-7-bg);
}

@media (max-width: 575.98px) { 
    .btn-intro {
        color: var(--res-text-color);
        font-size: var(--res-mobile-font-size);
        font-weight: var(--res-font-weight);
        border-radius: 30px;
        height: 140px;
        cursor: pointer;
    }
    .btn-intro .warpper {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .btn-intro .icon {
        height: 90%;
        padding: 8px;
    }
}


.latest-news-section {
    background-color: var(--news-bg);
    color: var(--news-text-color);
    font-size: var(--news-font-size);
    max-height: 350px;
}
.latest-news-section .title img {
    height: 32px;
    margin-top: 24px;
    margin-bottom: 4px;
}
.latest-news-section .content {
    max-height: calc(100% - 56px);
    overflow-y: auto;
}
@media (min-width: 1200px) {  
    .latest-news-section .content {
        max-height: calc(100% - 56px);
    }
}
@media (max-width: 1199.98px) { 
    .latest-news-section .content {
        max-height: calc(100% - 56px);
    }
}
@media (max-width: 991.98px) {
    .latest-news-section .content {
        max-height: 180px;
    }
}


.latest-news-section .content .item {
    display: flex;
    background: #fff;
    margin: 20px;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: var(--news-font-size);
    font-weight: var(--news-font-weight);
}
.latest-news-section .content .item .date {
    color: var(--news-date-color);
    flex-shrink: 0;
}
.latest-news-section .content .item .text {
    color: var(--news-text-color);
    flex-grow: 1;
}


.carousel-section .carousel .carousel-img {
    background-color:#ccc;
    height: 100%;
    min-height: 350px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 575.98px) { 
    .carousel-section .carousel .carousel-img {
        min-height: 200px;
    }
}



.carousel-section .carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

