/*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*/
h3 {
    font-family: "Open Sans", sans-serif;
    /* text-align: center; */
}

.nav-pills-custom .nav-link {
    /* color: #aaa; */
    /* color: #444444; */
    color: #AAAAAA;
    /* color: #012970; */
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    /* color: #45b649; */
    color: #0275D8;
    background: #fff;
}

/* section plans content container shadow */
.section__plans .shadow{
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #fff;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

/*-------------------------------*/

/* Column title */
.column-title {
    color: #012970;
    margin: 0 0 40px;
    font-size: 32px !important;
    font-weight: bold;
}

/* Column title small */
.column-title-small {
    color: #012970;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 25px;
}

/*-------------------------------*/

.section__plans--content-separator {
    margin-top: 40px;
}

/*-------------------------------*/

/* ul, ol */
.list-arrow {
    list-style: none;
    margin: 0;
    padding: 0 0 0 15px;
}

.list-arrow {
    padding: 0;
}

ul.list-arrow li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    margin-right: 10px;
    color: #0275D8;
    font-size: 16px;
    font-weight: bold;
}

/*-------------------------------*/

/* carousel caption text and bg color */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    color: #f8f9fa;
    text-shadow: 2px 2px 4px #000000;
}

/* resize the size of h5 and p of the caption on small screen */
@media only screen and (max-width: 1199px) {
    .carousel-caption h5 {
        font-size: 17px;
    }

    .carousel-caption p {
        font-size: 13px;
    }
}

/* Limit the carousel caption h5 content to 2 line for small and large screen */
.truncate-carousel-caption-h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;  
}

/* Limit the carousel caption p content to 4 line for small and large screen */
.truncate-carousel-caption-p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;  
}

/*------------------------*/

.carousel-item {
    --bs-aspect-ratio: 66%;
}

.carousel-item img {
    object-fit: cover;
}

/*-------------------------------*/

.accordion-group .card {
    border-radius: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #dfdfdf !important;
}

.accordion-group .card-body {
    padding: 15px 20px;
    color: #444444;
}

.accordion-group .card-header .btn {
    color: #012970;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 15px;
    padding-bottom: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.accordion-group .card-header .btn:before {
    top: 12px;
    z-index: 0;
    color: #fff;
    right: 16px;
    font-size: 14px;
    transition: 0.3s;
    content: "\f107";
    font-weight: 700;
    text-align: center;
    border-radius: 3px;
    position: absolute;
    padding: 3px 8px 1px;
    background-color: #333;
    font-family: "Font Awesome 5 Free";
}

.accordion-group .card-header .btn[aria-expanded=true] {
    color: #0275D8;
}

.accordion-group .card-header .btn[aria-expanded=true]::before {
    content: "\f106";
    background-color: #0275D8;
}

.accordion-group.accordion-classic .card-header .btn:before {
    display: none;
}

/*-------------------------------*/
