/* SECTION: BANNER */
    .banner-list-wrapper {
        height: 500px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .banner-list {
        height: 100%;
        position: absolute;
        z-index: 1;
    }
    /* banner content */
    .banner-list li {
        display: none;
        height: 100%;
        opacity: 0;
        position: relative;
        -webkit-transition: opacity var(--g-time) ease;
        -o-transition: opacity var(--g-time) ease;
        transition: opacity var(--g-time) ease;
    }
    .banner-list li.display {
        display: block;
    }
    .banner-list li.current {
        opacity: 1;
    }
    .banner-list .general-margin {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
        position: relative;
        z-index: 2;
    }
    .banner-list li.right .general-margin {
        justify-content: end;
    }
    .banner-list .text-content-wrapper {
        min-width: 600px;
        width: 50%;
    }
    .banner-list .text-content-wrapper.code h2 {
        color: var(--white-color);
        font-size: var(--fze-giant);
        margin-bottom: 1em;
    }
    .banner-list .text-content-wrapper.code h2 strong {
        color: var(--p-color);
    }
    .banner-list .text-content-wrapper.code p {
        color: var(--white-color);
        font-size: var(--fze-subtitle);
    }
    .banner-list li.right .text-content-wrapper.code h2,
    .banner-list li.right .text-content-wrapper.code p {
        text-align: right;
    }
    .banner-list .text-content-wrapper.code p span {
        margin-right: 15px;
    }
    /* banner nav */
    .banner-nav-wrapper {
        bottom: 20px;
        left: 50%;
        padding: 0 !important;
        position: absolute;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        z-index: 2;
    }
    .banner-nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .banner-nav li {
        background-color: var(--darkgray-color);
        border-radius: 50%;
        cursor: pointer;
        height: 10px;
        list-style: none;
        width: 10px;
        -webkit-transition: all var(--g-time) ease;
        -o-transition: all var(--g-time) ease;
        transition: all var(--g-time) ease;
    }
    .banner-nav li:hover {
        background-color: var(--white-color);
    }
    .banner-nav li.current {
        background-color: var(--p-color);
        border-radius: 5px;
        height: 10px;
        width: 30px;
    }
    .banner-nav li:not(:first-child) {
        margin-left: 10px;
    }
/* SECTOON: COMMENT LINE */
    .comment-line .general-margin {
        padding-top: calc(var(--section-padding) / 2);
        padding-bottom: calc(var(--section-padding) / 2);
    }
    .comment-line h2 {
        font-size: var(--fze-almost-giant);
        text-align: center;
    }
    .comment-line strong {
        color: var(--p-color);
    }
    .comment-line i {
        color: var(--p-color);
        display: inline-block;
        margin-right: 30px;
    }
/* SECTION: TOPICS OF INTEREST */
.topics-of-interest {
    background-color: var(--p-color);
}
    /* topic articles */
    .topics-of-interest .general-margin {
        gap: 20px;
    }
    .topics-of-interest .article {
        position: relative;
        width: calc((100% - 20px * 2) / 3);
    }
    .topics-of-interest .article-text,
    .topics-of-interest .image-background {
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    .topics-of-interest .image-background .bg-image {
        background-size: cover;
    }
    .topics-of-interest .article-text {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 100%;
        padding: 10%;
        position: relative;
        text-align: center;
        z-index: 2;
    }
    .topics-of-interest .article-text div {
        width: 100%;
    }
    .topics-of-interest .article-text h2 {
        color: var(--white-color);
        font-size: var(--fze-subtitle);
        font-weight: normal;
        margin-bottom: 20px;
    }
    .topics-of-interest .article-text a {
        font-size: var(--fze-big);
    }
/* SECTION: SERVICES */
    .services {
        background-color: var(--gray-color);
    }
    .services .services-wrapper {
        gap: 20px;
    }
    .services h2,
    .services h3 {
        text-align: center;
    }
    .services .service {
        background-color: var(--white-color);
        border-radius: var(--border-radius);
        -webkit-box-shadow: 0 0 15px 2px rgba(0,0,0,.1);
                box-shadow: 0 0 15px 2px rgba(0,0,0,.1);
        padding: 30px;
        -webkit-align-content: space-between;
            -ms-flex-line-pack: justify;
                align-content: space-between;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: calc((100% - 20px * 4)/ 5);
        -webkit-transition: all var(--g-time) ease;
        -o-transition: all var(--g-time) ease;
        transition: all var(--g-time) ease;
    }
    .services .service .info {
        width: 100%;
    }
    .services .service .image-wrapper {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: var(--gray-color);
        border: 2px solid transparent;
        border-radius: 50%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 72px;
        margin: 0 auto;
        width: 72px;
        -webkit-transition: all var(--g-time) ease;
        -o-transition: all var(--g-time) ease;
        transition: all var(--g-time) ease;
    }
    .services .service .image-wrapper i {
        color: var(--p-color);
        font-size: var(--fze-subtitle);
    }
    .services .service .image-wrapper img {
        width: 55%;
    }
    .services .service h4 {
        color: var(--p-color);
        font-size: var(--fze-big);
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
        -webkit-transition: all var(--g-time) ease;
        -o-transition: all var(--g-time) ease;
        transition: all var(--g-time) ease;
    }
    .services .service .desc,
    .services .service a {
        font-size: var(--fze-short);
    }
    .services .service .desc {
        margin-bottom: 10px;
        text-align: center;
        -webkit-transition: all var(--g-time) ease;
        -o-transition: all var(--g-time) ease;
        transition: all var(--g-time) ease;
    }
    .services .service a {
        margin-top: 30px;
    }
    .services .service:hover {
        background-color: var(--p-color);
    }
    .services .service:hover .image-wrapper {
        background-color: var(--white-color);
    }
    .services .service:hover h4,
    .services .service:hover p,
    .services .service:hover a {
        color: var(--white-color);
    }
/* SECTION: HISTORY */
.history {
    background-color: var(--gray-color);
}
    .history .general-margin {
        gap: calc(var(--section-padding) / 2);
    }
    .history .image-wrapper,
    .history .text-wrapper {
        width: calc(50% - var(--section-padding) / 4 );
    }
    .history .image-wrapper {
        border-radius: var(--border-radius);
        position: relative;
        overflow: hidden;
    }
    .history .text-wrapper p:not(:last-child) {
        margin-bottom: 15px;
    }
    .history a {
        border-color: var(--p-color);
        color: var(--p-color);
        margin-top: 10px;
    }


@media (max-width: 1400px) {
    /* SERVICES */
        .services .service {
            width: calc((100% - 20px * 3) / 4);
        }
}
@media (max-width: 1270px) {
    /* SECTION: TOPICS OF INTEREST */
        /* topic articles */
        .topics-of-interest .article-text h2 {
            font-size: var(--fze-big);
        }
}
@media (max-width: 1165px) {
    /* SECTOON: COMMENT LINE */
        .comment-line h2 {
            font-size: var(--fze-title);
        }
}
@media (max-width: 1150px) {
    /* SECTION: SERVICES */
        .services .service {
            width: calc((100% - 20px * 2) / 3);
        }
}
@media (max-width: 945px) {
    /* SECTOON: COMMENT LINE */
    .comment-line h2 {
        font-size: var(--fze-subtitle);
    }
    .comment-line i {
        margin-right: 15px;
    }
}
@media (max-width: 900px) {
    /* SECTION: BANNER */
        /* banner content */
        .banner-list .text-content-wrapper.code {
            min-width: 0;
            width: 100%;
        }
        .banner-list .text-content-wrapper.code h2,
        .banner-list .text-content-wrapper.code p {
            text-align: center !important;
        }
        .banner-list .text-content-wrapper.code p span {
            display: block;
        }
        .banner-list .text-content-wrapper.code p a {
            margin: 20px 0 0 0;
        }
    /* SECTION: TOPICS OF INTEREST */
        .topics-of-interest .article {
            width: calc((100% - 20px) / 2);
        }
        .topics-of-interest .article:last-child {
            display: none;
        }
    /* SECTION: SERVICES */
        .services .service {
            width: calc((100% - 20px) / 2);
        }
    /* SECTION: HISTORY */
        .history .image-wrapper,
        .history .text-wrapper {
            width: 100%;
        }
        .history .text-wrapper {
            text-align: center;
        }
        .history .image-wrapper {
            height: 300px;
        }
        .history p {
            text-align: left;
        }
}
@media (max-width: 800px) {
    /* SECTION: BANNER */
    .banner-list .text-content-wrapper.code h2 {
        font-size: var(--fze-almost-giant);
    }
    .banner-list .text-content-wrapper.code p {
        font-size: var(--fze-big);
    }
    .banner-list .text-content-wrapper.code p a {
        margin: 10px 0 0 0;
    }
}
@media (max-width: 790px) {
    .comment-line h2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .comment-line i {
        display: block;
        font-size: var(--fze-giant);
        width: 54px;
    }
    .comment-line h2 span.t-w-i {
        display: block;
    }
}
@media (max-width: 600px) {
    /* SECTION: TOPICS OF INTEREST */
        .topics-of-interest .article-text h2,
        .topics-of-interest .article-text a {
            font-size: var(--fze-normal);
        }
    /* SECTION: SERVICES */
        .services .service {
            width: 100%;
        }
        .services .service .desc,
        .services .service a {
            font-size: var(--fze-normal);
        }
}
@media (max-width: 500px) {
    /* SECTOON: COMMENT LINE */
        .comment-line .general-margin {
            padding-top: var(--section-padding);
            padding-bottom: var(--section-padding);
        }
}
@media (max-width: 430px) {    
    /* SECTION: TOPICS OF INTEREST */
        /* topic articles */
        .topics-of-interest .article {
            width: 100%;
        }
        .topics-of-interest .article:last-child {
            display: block;
        }
        .topics-of-interest .article-text h2,
        .topics-of-interest .article-text a {
            font-size: var(--fze-big);
        }
}
@media (max-width: 400px) {
    .comment-line i {
        display: none;
    }
}
@media (max-width: 360px) {
    /* SECTOON: COMMENT LINE */
    .comment-line h2 .t-w-i-d {
        display: block;
    }
}