.home_hero {
    position: relative;
    padding: 160px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_hero .txt h1 span {
    color: var(--c1);
}

@media(max-width:990px) {
    .home_hero {
        padding: 180px 0 60px;
    }
    .home_hero::before {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        opacity: 0.7;
        height: 80%;
        background: linear-gradient(0deg, #fff 50%, rgb(255, 255, 255, 0.42) 74%, rgba(255, 255, 255, 0.01) 94%);
    }
    .home_hero .txt {
        position: relative;
    }
}


/* ---- plain_content ---  */

.plain_content {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

.plain_content .txt {
    text-align: center;
}


/* --- why_choose ---  */

.why_choose {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

.why_choose .wrap {
    text-align: center;
}

.why_choose .wrap h3 {
    margin-top: 32px;
    margin-bottom: 24px;
}

.why_choose .btns {
    margin-top: 40px;
}


/* --- sbs ---  */

.sbs {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}


/* --- our_offer ---  */

.our_offer {
    position: relative;
    margin-top: 120px;
    margin-bottom: 120px;
}

.our_offer .wrap {
    position: relative;
    /* padding: 40px; */
    border-radius: 16px;
    margin-bottom: 40px;
}

.our_offer .col-lg-6:nth-last-child(2) .wrap,
.our_offer .col-lg-6:nth-last-child(1) .wrap {
    margin-bottom: 0px;
}

.our_offer .wrap .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 16px;
}

.our_offer .wrap .txt {
    padding: 80px 50px 35px;
}

.our_offer .wrap .txt h3 {
    font-size: 20px;
    display: inline-block;
    border-radius: 7px;
    padding: 10px 14px;
    background-color: var(--cf);
}

.our_offer .wrap .txt h4 {
    color: var(--cf);
    font-size: 42px;
}

.our_offer .wrap .txt p {
    color: var(--cf);
}

@media(max-width:1440px) {
    .our_offer .wrap .txt h3 {
        font-size: 18px;
    }
    .our_offer .wrap .txt h4 {
        font-size: 36px;
    }
}

@media(max-width:1300px) {
    .our_offer .wrap .txt h4 {
        font-size: 32px;
    }
}


/* --- indutries_serve ---  */

.indutries_serve {
    position: relative;
    padding-top: 80px;
    padding-bottom: 0px;
    margin-bottom: 80px;
    background-color: var(--c1);
}

.indutries_serve .title_sec {
    text-align: center;
}

.indutries_serve .title_sec h2,
.indutries_serve .title_sec p {
    color: var(--cf);
}

.indutries_serve .wrap .txt {
    padding-top: 24px;
}

.indutries_serve .wrap h3 {
    color: var(--cf);
    font-size: 20px;
    text-decoration: underline;
}

.indutries_serve .wrap h4 {
    color: var(--cf);
    font-size: 28px;
}

.indutries_serve .wrap .btn-read-more {
    color: var(--cf);
    text-decoration: unset;
}

.indutries_serve .indus_bot_txt {
    padding: 45px 0;
    margin-top: 60px;
    background-color: var(--ct);
}

.indutries_serve .indus_bot_txt h4 {
    /* font-size: 28px; */
    color: var(--cf);
    text-align: center;
    font-weight: 400;
}


/* --- explore_product ---  */

.explore_product {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

.explore_product .wrap {
    display: flex;
    padding: 40px 24px 24px;
    height: 100%;
    text-align: center;
    border-radius: 8px;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid rgba(82, 96, 109, 0.40);
}

.explore_product .wrap .img {
    display: flex;
    align-items: center;
    height: 70%;
    text-align: center;
}

.explore_product .wrap h3 {
    margin-top: 24px;
    margin-bottom: 0px;
}


/* ----- sbs_system ---  */

.sbs_system .txt {
    width: 80%;
}

@media(max-width:990px) {
    .sbs_system .txt {
        width: 100%;
    }
}


/* --- lets_build ---  */

.lets_build {
    position: relative;
    padding: 20px 80px 0px;
    margin-bottom: 80px;
    border-radius: 20px;
    background-color: var(--c1);
}

.lets_build .txt {
    padding: 40px 0 60px;
}

.lets_build .txt h2,
.lets_build .txt p {
    color: var(--cf);
}

.lets_build .flex {
    flex-wrap: wrap;
}

.lets_build .wrap {
    width: 48%;
    align-self: center;
    /* padding-bottom: 32px; */
}

.lets_build .wrap .content {
    position: relative;
    color: var(--ct);
    padding: 26px;
    border-radius: 20px;
    background-color: var(--cf);
    box-shadow: 0px 5.26px 31.559px 0px rgba(0, 0, 0, 0.25);
}

.lets_build .wrap .content::before {
    position: absolute;
    content: '';
    bottom: 10%;
    right: -4%;
    border-right: solid 24px var(--cf);
    border-bottom: solid 24px transparent;
    border-left: solid 24px transparent;
    transform: rotate(45deg);
}

.lets_build .wrap .content h4 a {
    color: var(--c1);
    text-decoration: none;
}

.lets_build .wrap .content .btn {
    display: block;
}

.lets_build .img {
    width: 52%;
}

@media(max-width:1440px) {
    .lets_build .wrap .content {
        padding: 22px;
    }
    .lets_build .wrap .content h4 {
        font-size: 20px;
    }
}

@media(max-width:1300px) {
    .lets_build .wrap .content {
        padding: 20px;
    }
    .lets_build .wrap .content h4 {
        font-size: 18px;
    }
}


/* --- customer_stories ---  */

.customer_stories {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

.customer_stories .wrap {
    height: 100%;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid rgba(82, 96, 109, 0.40);
}

.customer_stories .wrap .top {
    display: flex;
}

.customer_stories .wrap .top .img {
    width: 30%;
}

.customer_stories .wrap .top .img img {
    width: 110px;
    height: 75px;
}

.customer_stories .wrap .top p {
    width: 70%;
    padding-left: 12px;
}

.customer_stories .wrap .bot {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(82, 96, 109, 0.40);
}

.customer_stories .wrap .bot h3 {
    font-size: 24px;
}

.customer_stories .wrap .bot .rating {
    color: var(--c1);
    padding: 20px 0;
}

.customer_stories .wrap .bot .rating em {
    font-size: 20px;
    color: var(--c1);
}

.customer_stories .wrap .bot .rating span {
    padding-left: 16px;
}

.customer_stories .wrap .bot .pro_wrap {
    display: flex;
    align-items: center;
}

.customer_stories .wrap .bot .pro_wrap .img {
    width: 22%;
}

.customer_stories .wrap .bot .pro_wrap h4 {
    font-size: 20px;
    padding-left: 16px;
}

@media(max-width:1440px) {
    .customer_stories .wrap {
        padding: 28px;
    }
    .customer_stories .wrap .bot {
        padding-top: 20px;
        margin-top: 20px;
    }
    .customer_stories .wrap .bot .pro_wrap h4 {
        font-size: 18px;
    }
    .customer_stories .wrap .bot .rating em {
        font-size: 16px;
    }
}

@media(max-width:1300px) {
    .customer_stories .wrap {
        padding: 22px;
    }
}


/* --- partner_sec ---  */

.partner_sec {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--c1);
}

.partner_sec .title_sec {
    max-width: 70%;
    margin: 0 auto 60px;
}

.partner_sec .title_sec h2,
.partner_sec .title_sec p {
    color: var(--cf);
}

.partner_sec .slick-slide {
    margin: 0 20px;
}

.partner_sec .slick-list {
    padding-right: 8% !important;
}


/* --- artical_sec ----  */

.artical_sec {
    position: relative;
    margin-bottom: 80px;
}

.artical_sec::before {
    position: absolute;
    content: '';
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
    background-color: var(--c1);
}

.artical_sec .title_sec h2,
.artical_sec .title_sec p {
    color: var(--cf);
}

.artical_sec .wrap {
    padding: 40px;
    height: 100%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.10);
}

.artical_sec .wrap .img img {
    border-radius: 16px;
}

.artical_sec .wrap .txt {
    padding-top: 20px;
}

.artical_sec .wrap .txt h5 {
    color: var(--c1);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    text-decoration: underline;
}

.artical_sec .wrap .txt h3 {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 4px solid var(--c1);
}

.artical_sec .wrap .txt .btn-read-more {
    margin-top: 24px;
}

@media(max-width:1440px) {
    .artical_sec .wrap {
        padding: 28px;
    }
}