#cog-overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.cog-section {
    padding: 50px 0;
}

.cog-term-head h4 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* -----------------------------------faq-------------------------------- */


.cog-faq .accordion-button:not(.collapsed) {
    color: #167dbe;
    background-color: #e5f6ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.cog-faq .accordion-button:focus {
    box-shadow: none;
}

.cog-faq .accordion-item {
    background-color: #fff;
    border: none;
    margin-bottom: 13px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 8%) !important;
}

.cog-faq .accordion-button:not(.collapsed) {
    color: #167dbe;
    background-color: #e5f6ff;
    box-shadow: none;
    font-weight: 500;
    border: none;
}

.accordion-collapse {
    border: solid rgba(0, 0, 0, 0.125);
    border-width: 0 1px;
    border: none;
}

.accordion-button.collapsed {
    border: none;

}

/* ---------------------------------blog detail-------------------------------- */
.cog-blog-detail {
    /* box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; */
    /* padding: 30px; */

}

.cog-blog-detail img {
    width: 100%;
    margin-bottom: 20px;

}


/* ------------------------------------error----------------------------------------- */
.cog-error {
    text-align: center;
    margin: 10% 0;
}

.cog-error h4 {
    font-size: 40px;
    margin: 20px 0;
}

.cog-error .btn-cog {
    color: #fff;
    background-color: #167dbe;
    border-color: #167dbe;
    font-weight: 500;
    padding: 5px 20px;
}

.cog-error p {
    font-size: 18px;
}

/* whatsapp sticky button */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    z-index: 10000;
    left: 20px;
}

.whatsapp-btn img {
    width: 60px;

}

.pulse {
    animation: pulse 1s infinite ease-in-out alternate;
}

@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

/* ------------------------------------director----------------------------------------- */
.director-area {
    background-color: var(--white);
}

.director-txt {
    padding-left: 30px;
}

@media only screen and (max-width: 991.9px) {
    .director-txt {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* ------------------------------------mission----------------------------------------- */
/* Override styles from style.css that were causing formatting issues */
.misson-area .misson-txt {
    text-align: left !important;
    padding-right: 30px;
}

.misson-area .misson-txt p {
    margin: 25px 0 45px 0 !important;
}

@media only screen and (max-width: 991.9px) {
    .misson-area .misson-txt {
        padding-right: 0;
        margin-top: 40px;
    }
}

.director-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-img img {
    width: 100%;
    height: auto;
    display: block;
}

.director-txt .section-title {
    margin-bottom: 25px;
}

.director-txt .director-name {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.director-txt p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
}