/*
Theme Name: Fasi Box Carousel Style
Version: 1.2
*/


.fasi-dual-carousel-wrapper {
    padding: 60px 0 !important;
    background: #fff !important;
    overflow: hidden !important;
    font-family: 'Open Sans';
    display: block !important;
}

.fasi-nav-dots {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: block !important;
}

.nav-dot-item {
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
}

.nav-dot-inner {
    opacity: 0.3;
    transition: all 0.4s ease;
}

.dot-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #f0f3f8;
    margin-bottom: 12px;
    transition: 0.4s;
}

.dot-title {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans';
    color: #333;
}

.slick-current .nav-dot-inner {
    opacity: 1;
}

.slick-current .dot-line {
    width: 100%;
    background: #6abb90;
}

.fasi-main-slide {
    padding: 0 20px;
    outline: none;
    transition: opacity 0.5s ease;
    opacity: 0.5;
}

.slick-center.fasi-main-slide {
    opacity: 1;
}

.fasi-row-split {
    display: flex !important;
    height: 400px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.fasi-col-img {
    width: 67%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fasi-col-info {
    width: 33%;
    background: #f0f3f8;
    padding: 40px;
    display: flex;
    align-items: center;
}

.info-content h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    font-family: 'Open Sans';
    color: #333;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 15px;
    font-family: 'Open Sans';
    color: #333;
    line-height: 20px;
    margin-bottom: 25px;
}

.fasi-btn-read {
    color: #6abb90;
    font-weight: 700;
    font-family: 'Open Sans';
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 991px) {
    .fasi-row-split {
        flex-direction: column;
        height: auto;
    }

    .fasi-col-img {
        height: 400px;
    }
}