

/* --------------------------------------------------------------- */
/* ---------------------------- intro ---------------------------- */
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* --------------------------- overview -------------------------- */
/* --------------------------------------------------------------- */

#section-about-overview {
    background-attachment: fixed;
    background-image: url(../../images/example/about/bg-about.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: rgba(var(--cpn-color-gray-light),1);
}
#section-about-overview hr {
    margin: 30px 0;
}

/* --------------------------------------------------------------- */
/* ---------------------------- items ---------------------------- */
/* --------------------------------------------------------------- */

.about-info-items,
.about-info-item {
    position: relative;
}
.about-info-items>.about-info-item+.about-info-item {
    margin-top: 40px;
}

/* odd */
.about-info-items>.about-info-item:nth-child(odd) {
    flex-direction: row;
}
.about-info-items>.about-info-item:nth-child(odd)>.col-info {
    padding-left: 80px;
}

/* even */
.about-info-items>.about-info-item:nth-child(even) {
    flex-direction: row-reverse;
}
.about-info-items>.about-info-item:nth-child(even)>.col-info {
    padding-right: 80px;
}

.about-info-item>.col-img,
.about-info-item>.col-info {
    position: relative;
}
.about-info-item {
    display: flex;
    flex-wrap: nowrap;
    align-items:center;
}
.about-info-item>.col-img {
    width: 500px;
    overflow: hidden;
    border-radius: var(--cpn-card-border-radius);
}
.about-info-item>.col-info {
    width: calc(100% - 500px);
}

.about-info-item>.col-info .info-topic,
.about-info-item>.col-info .info-content {
    position: relative;
}
.about-info-item>.col-info .info-topic+.info-content {
    border-top: 1px solid rgba(var(--cpn-color-black-dark),1);
    margin-top: 20px;
    padding-top: 20px;
}
.about-info-item>.col-info .info-topic>.title {}

/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {

    /* --------------------------------------------------------------- */
    /* ---------------------------- items ---------------------------- */
    /* --------------------------------------------------------------- */

    .about-info-item {
        display: flex;
        flex-wrap: wrap;
    }
    .about-info-item>.col-img {
        width: 450px;
    }
    .about-info-item>.col-info {
       width: calc(100% - 450px);
    }
    .about-info-items>.about-info-item:nth-child(odd)>.col-info {
        padding-left: 50px;
    }
    .about-info-items>.about-info-item:nth-child(even)>.col-info {
        padding-right: 50px;
    }

}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* --------------------------------------------------------------- */
    /* ---------------------------- items ---------------------------- */
    /* --------------------------------------------------------------- */

    .about-info-item {
        display: flex;
        flex-wrap: wrap;
    }
    .about-info-item>.col-img {
        width: 400px;
    }
    .about-info-item>.col-info {
       width: calc(100% - 400px);
    }
    .about-info-items>.about-info-item:nth-child(odd)>.col-info {
        padding-left: 50px;
    }
    .about-info-items>.about-info-item:nth-child(even)>.col-info {
        padding-right: 50px;
    }

}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {

    /* --------------------------------------------------------------- */
    /* ---------------------------- items ---------------------------- */
    /* --------------------------------------------------------------- */

    .about-info-item {
        display: flex;
        flex-wrap: wrap;
    }
    .about-info-item>.col-img,
    .about-info-item>.col-info {
        width: 100%;
    }
    .about-info-item>.col-info {
        padding: 30px 0 0 0 !important;
    }

}

/* sm - xs */
@media (max-width: 767.98px) {

    /* --------------------------------------------------------------- */
    /* ---------------------------- items ---------------------------- */
    /* --------------------------------------------------------------- */

    .about-info-item {
        display: flex;
        flex-wrap: wrap;
    }
    .about-info-item>.col-img,
    .about-info-item>.col-info {
        width: 100%;
    }
    .about-info-item>.col-info {
        padding: 30px 0 0 0 !important;
    }


}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* xs */
@media (max-width: 575.98px) {}

/* xs custom */
@media (max-width: 399.98px) {}