.bannerBot {
    /* position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    top: auto;
    z-index: 9; */
}

.bannerBotBox {
    background: url(../images/bannerbg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 125px;
    border-radius: 25px;
    /* border-bottom: 3px solid #fff; */
}

.bannerBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bannerBoxi i {
    font-size: 68px;
    color: #fff;
    width: 78px;
    height: 78px;
}

.bannerBoxDes p {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

.bannerBoxDes>span {
    font-size: 16px;
    color: #fff;
}

.indextitle {
    font-size: 40px;
    line-height: 1.3;
    font-weight: bold;
}

/* indexAbout */
.indexAbout {
    margin-top: -50px;
    background: url(../images/iabg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0 85px;
    overflow: hidden;
}

.indexAbout_l {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* justify-content: center; */
}

.indexAbout_l h1 {
    color: #fff;
}

.indexAbout_l p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.iabout_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    padding: 6px 50px;
    transition: all ease 0.3s;
}

.iabout_btn a:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: var(--primary-color);
}

.indexAbout_r {
    padding-left: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iAbout_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 66%;
    border-radius: 30px;
}

.iAbout_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.index_aboutus_video {
    position: relative;
    width: 100%;
    height: fit-content;
}

.index_aboutus_video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(20, 24, 27, 0.1);
    width: 100%;
    height: 100%;
}

.dr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.drbtn {
    position: relative;
}

.cw {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    position: relative;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw:hover {
    border: 5px solid #ffffff;
    background-color: transparent;
    transition: 0.5s;
}

.cw:hover i {
    color: #ffffff;
}

.cw i {
    font-size: 25px;
    color: #ffffff;
}

.bo {
    position: absolute;
    top: 0;
}

.bo::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: scale 2s infinite;
}

.bo::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    animation: scale2 2s infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes scale2 {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.videomain {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999999999999999999;
}

.videoclose {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
}

.videoclose img {
    width: 50px;
    height: 50px;
    display: block;
    cursor: pointer;
}

.videobox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    overflow: hidden;
    max-height: 800px;
    min-height: 600px;
}

.videobox video {
    width: 100%;
    height: 100%;
}

.videobox iframe {
    width: 100%;
    height: 100%;
    max-height: 800px;
    min-height: 600px;
}


/* indexProduct */
.indexProduct {
    padding: 90px 0;
    overflow: hidden;
}

.indexProduct .indextitle {
    text-align: center;
    color: #252525;
    margin-bottom: 50px;
}

.indexPro_box {
    max-width: 370px;
    margin: 0 auto 65px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    overflow: hidden;
}

.indexProduct .row>div:nth-child(n+4) .indexPro_box {
    margin-bottom: 0;
}

.indexPro_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
}

.indexPro_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.indexPro_box:hover img {
    transform: scale(1.15);
}

.indexPro_des {
    padding: 20px 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indexPro_des h3 {
    color: #353535;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.indexPro_des>a:hover {
    text-decoration: underline !important;
}

.indexPro_des p {
    color: #353535;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.indexPro_btn {
    display: flex;
    justify-content: center;
}

.indexPro_btn a {
    display: inline-block;
    padding: 10px 35px;
    line-height: 24px;
    font-size: 20px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    transition: all ease 0.5s;
}

.indexPro_btn a:hover {
    background-color: transparent;
    color: var(--primary-color);
}


/* indexIntro */
.indexIntro {
    background: url(../images/iibg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0 100px;
}

.indexIntro_des {
    padding-left: 10%;
}

.indexIntro .indextitle {
    color: #fff;
    margin-bottom: 32px;
}

.indexIntro_des p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}


/* indexNews */
.indexNews {
    padding: 70px 0 60px;
    overflow: hidden;
}

.indexNews_tab {
    width: fit-content;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
}

.indexNews_tab h2 {
    color: #333;
    padding: 10px 85px;
    line-height: 28px;
    font-size: 22px;
    border-radius: 30px;
    transition: all ease 0.3s;
    cursor: pointer;
}

.indexNews_tab h2.active {
    background-color: var(--primary-color);
    color: #fff;
}

.inewTab_main {
    display: none;
}

.inewTab_main.active {
    display: block;
}


.indexNews_main {
    position: relative;
}

.iNewsSwiper {
    max-width: 1440px !important;
    margin: 0 auto !important;
    position: static !important;
}

.indexNews_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 80%;
}

.indexNews_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.swiperbtns {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 110%;
    z-index: 1;
}

.iNewsSwiper .swiper-button-next {
    right: 0px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    transition: all ease 0.3s;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.iNewsSwiper .swiper-button-prev {
    left: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    z-index: 9999;
    position: absolute;
    border-radius: 50%;
    transition: all ease 0.3s;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.iNewsSwiper .swiper-button-next::after,
.iNewsSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.iNewsSwiper .swiper-button-next:hover,
.iNewsSwiper .swiper-button-prev:hover {
    background-color: #fff;
    color: var(--primary-color);
    transition: all ease 0.3s;
}

.indexNews_des {
    padding: 35px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.indexNews_des h3 {
    font-size: 24px;
    font-weight: bold;
    color: #353535;
    display: -webkit-box;
    -webkit-line-clamp: 1s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    transition: all ease 0.3s;
}

.indexNews_des h3:hover {
    color: var(--primary-color);
}

.indexNews_des p {
    font-size: 16px;
    color: #6a6a6a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}

.indexNews_des span {
    font-size: 16px;
    color: #6a6a6a
}

.indexNews_box:hover img {
    transform: scale(1.15);
}


/* indexContact */
.indexContact {
    padding-bottom: 90px;
}

.indexCon {
    padding: 60px 60px 50px;
    background: #ededed;
    border-radius: 13px;
}

.indexCon_l {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.indexCon_l h2 {
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
    color: var(--primary-color);
}

.indexCon_Lform .yandex-form {
    min-height: auto;
}

.indexCon_Lform .yandex-form #form .list input {
    padding: 8px 5px 8px 10px;
    border: none;
}

.indexCon_Lform .yandex-form #form .list textarea {
    padding: 8px 5px 8px 10px;
    border: none;
}

.indexCon_Lform .yandex-form #form #submit {
    width: auto;
    display: inline-block;
    padding: 6px 35px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #fff;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    line-height: 1.5;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    transition: all ease 0.5s;
}

.indexCon_Lform .yandex-form #form #submit:hover {
    background: transparent;
    color: var(--primary-color);
}

.indexCon_r {
    padding-bottom: 20px;
    padding-left: 4%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.indexCon_r img {
    height: 320px;
    border-radius: 15px;
    object-fit: cover;
}

/* footer */
.index_footer {
    padding: 50px 0;
    background: url(../images/footerbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.footer_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #a1abba;
}

.index_footer .container {
    z-index: 999;
    position: relative;
}

.footer_logo img {
    max-height: 100px;
    vertical-align: middle;
    max-width: initial;
}

.footer_main1 p{ color: #fff; font-size: 14px; line-height: 24px; max-width: 350px;}
.footer_mainp {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    max-width: 350px;
}

.footer_main h2 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.index_footer .public_ad_header_social_media {
    justify-content: flex-start;
    margin-left: 0;
}

.footer_nav {
    padding: 0 40px;
}

.footer_page h3,
.footer_product h3,
.footer_contact h3,
.footer_nav h3 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer_page a,
.footer_product a {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: capitalize;
    word-wrap: break-word;
    word-break: break-all;
}

.footer_product a:hover {
    text-decoration: underline !important;
    color: #eee;
}

.footer_page a:hover {
    text-decoration: underline !important;
    color: #eee;
}

.footer_contact li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.footer_contact li:nth-child(1) {
    align-items: flex-start;
}

.footer_contact li i {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
    padding: 9px;
    border-radius: 4px;
}

.footer_main1 {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer_p p {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
}

.footer_p {
    margin-top: 5px;
}

.footer_contact li p {
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.footer_contact li a {
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.footer_tags {
    border-bottom: 1px solid #a1abba;
    padding: 0 0 10px 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.footer_tags p {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    margin-right: 10px;
}

.footer_tags a {
    font-size: 16px;
    color: #fff;
    display: block;
    margin: 3px 5px 3px 0px;
}

.footer_tags a:hover,
.footer_contact li a:hover {
    text-decoration: underline !important;
    color: #eee;
}

.public_ad_header_social_media {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.public_ad_header_social_media a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in-out;
}

.public_ad_header_social_media a i {
    font-size: 18px;
    color: #fff;
    transition: all 0.35s ease-in-out;
}

.public_ad_header_social_media a:hover {
    background-color: #fff;
}

.public_ad_header_social_media a:hover i {
    color: var(--primary-color);
}

@media (max-width:575px) {
    .banner {
        margin-top: 67px;
    }

    .bannerBot {
        margin-top: 30px;
    }

    .bannerBotBox {
        background-size: cover;
        background-position: center;
        padding: 30px 25px;
    }

    .bannerBox {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .bannerBoxi {
        height: 45px;
    }

    .bannerBoxi i {
        font-size: 38px;
    }

    .bannerBoxDes p {
        font-size: 22px;
        text-align: center;
    }

    .bannerBoxDes>span {
        text-align: center;
        display: block;
    }

    .indexAbout {
        margin-top: 20px;
        padding: 40px 0;
    }

    .indextitle {
        font-size: 28px;
    }

    .indexAbout_l {
        gap: 20px;
        margin-bottom: 30px;
    }

    .indexAbout_r {
        padding-left: 0;
    }

    .iabout_btn a {
        font-size: 18px;
        padding: 5px 40px;
    }

    .videobox {
        width: 90%;
        margin: 0 auto;
        max-height: auto;
        min-height: 300px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 300px;
    }

    .indexProduct {
        padding: 40px 0;
    }

    .indexProduct .indextitle {
        margin-bottom: 30px;
    }

    .indexPro_des {
        padding: 20px 20px 25px;
        gap: 15px;
    }

    .indexPro_btn a {
        padding: 6px 25px;
        font-size: 18px;
    }

    .indexPro_box {
        margin-bottom: 35px !important;
        max-width: fit-content;
    }

    .indexProduct .row>div:nth-last-child(1) .indexPro_box {
        margin-bottom: 0 !important;
    }

    .indexIntro {
        padding: 45px 0;
    }

    .indexIntro .indextitle {
        margin-bottom: 20px;
    }

    .indexNews {
        padding: 50px 0 40px;
    }

    .indexNews_tab {
        margin: 0 auto 30px;
        flex-direction: column;
    }

    .indexNews_tab h2 {
        padding: 10px 55px;
        width: 100%;
        text-align: center;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .indexNews_des {
        padding: 20px 0 0;
        gap: 12px;
    }

    .indexCon {
        padding: 45px 25px;
    }

    .indexCon_Lform .yandex-form #form .list p {
        line-height: 1.5;
    }

    .indexCon_Lform .yandex-form #form #submit {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .indexCon_r {
        padding-bottom: 0;
        padding-left: 0;
        height: auto;
    }

    .indexCon_r img {
        height: auto;
    }

    .indexContact {
        padding-bottom: 40px;
    }

    .indexCon_l h2 {
        line-height: 1.3;
        font-size: 24px;
    }

    .footer {
        padding: 40px 0 90px 0;
    }

    .index_footer {
        padding: 35px 0 100px;
    }

    .footer_logo img {
        max-height: 50px;
        margin-bottom: 20px;
    }

    .footer_main1 {
        gap: 0px;
    }

    .footer_tags {
        margin-bottom: 20px;
    }

    .footer_page,
    .footer_product {
        margin-top: 20px;
    }

    .footer_page h3,
    .footer_product h3,
    .footer_contact h3,
    .footer_nav h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer_page a,
    .footer_product a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_nav {
        margin-top: 20px;
        padding: 0 calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_mainp {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .footer_contact li {
        margin-bottom: 0;
    }

    .index_footer .public_ad_header_social_media {
        padding-top: 10px;
    }

    .footer_flex {
        padding-bottom: 0;
        border-bottom: none;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .banner {
        margin-top: 67px;
    }

    .bannerBot {
        margin-top: 40px;
    }

    .bannerBotBox {
        background-size: cover;
        background-position: center;
        padding: 30px 25px;
    }

    .bannerBox {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .bannerBoxi {
        height: 45px;
    }

    .bannerBoxi i {
        font-size: 38px;
    }

    .bannerBoxDes p {
        font-size: 22px;
    }

    .indexAbout {
        margin-top: 35px;
        padding: 50px 0;
    }

    .indextitle {
        font-size: 32px;
    }

    .indexAbout_l {
        gap: 30px;
        margin-bottom: 40px;
    }

    .indexAbout_r {
        padding-left: 0;
    }

    .videobox {
        width: 90%;
        margin: 0 auto;
        max-height: auto;
        min-height: 350px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 350px;
    }

    .indexProduct {
        padding: 45px 0;
    }

    .indexProduct .indextitle {
        margin-bottom: 30px;
    }

    .indexPro_des {
        padding: 20px 20px 25px;
        gap: 15px;
    }

    .indexPro_btn a {
        padding: 6px 25px;
        font-size: 18px;
    }

    .indexPro_box {
        margin-bottom: 35px !important;
        max-width: fit-content;
    }

    .indexProduct .row>div:nth-child(n+5) .indexPro_box {
        margin-bottom: 0 !important;
    }

    .indexIntro {
        padding: 45px 0;
    }

    .indexIntro .indextitle {
        margin-bottom: 10px;
    }

    .indexNews {
        padding: 50px 0 40px;
    }

    .indexNews_tab {
        margin: 0 auto 30px;
    }

    .indexNews_tab h2 {
        padding: 8px 65px;
        font-size: 20px;
        text-align: center;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .indexNews_des {
        padding: 20px 0 0;
        gap: 12px;
    }

    .indexCon {
        padding: 45px 25px;
    }

    .indexCon_Lform .yandex-form #form #submit {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .indexCon_r {
        padding-bottom: 0;
        padding-left: 0;
        height: auto;
    }

    .indexCon_r img {
        height: auto;
        width: 100%;
    }

    .indexContact {
        padding-bottom: 40px;
    }

    .footer {
        padding: 40px 0 90px 0;
    }

    .index_footer {
        padding: 35px 0 100px;
    }

    .footer_logo img {
        max-height: 70px;
        margin-bottom: 10px;
    }

    .footer_p {
        margin-bottom: 15px;
    }

    .public_ad_header_social_media {
        padding-top: 15px;
    }

    .footer_tags {
        margin-bottom: 30px;
    }

    .footer_main1 {
        gap: 5px;
    }

    .footer_mainp {
        max-width: 100%;
        margin-bottom: 5px;
    }

    .footer_product {
        margin-top: 30px;
    }

    .footer_page h3,
    .footer_product h3,
    .footer_contact h3,
    .footer_nav h3 {
        margin-bottom: 15px;
    }

    .footer_page a,
    .footer_product a {
        margin-bottom: 10px;
    }

    .footer_page {
        margin-top: 30px;
    }

    .footer_nav {
        margin-top: 30px;
        padding: 0 calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_contact li {
        margin-bottom: 5px;
    }

    .footer_flex {
        border: none;
        padding-bottom: 0px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .banner {
        margin-top: 67px;
    }

    .bannerBot {
        margin-top: 40px;
    }

    .bannerBotBox {
        background-size: cover;
        background-position: center;
        padding: 30px 25px;
    }

    .bannerBox {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .bannerBoxi {
        height: 50px;
    }

    .bannerBoxi i {
        font-size: 48px;
    }

    .bannerBoxDes p {
        font-size: 22px;
        text-align: center;
    }

    .bannerBoxDes>span {
        display: block;
        text-align: center;
    }

    .indexAbout {
        margin-top: 45px;
        padding: 50px 0;
    }

    .indextitle {
        font-size: 34px;
    }

    .indexAbout_l {
        gap: 30px;
        margin-bottom: 40px;
    }

    .indexAbout_r {
        padding-left: 0;
    }

    .videobox {
        width: 90%;
        margin: 0 auto;
        max-height: auto;
        min-height: 400px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 400px;
    }

    .indexProduct {
        padding: 50px 0;
    }

    .indexPro_box {
        margin-bottom: 40px !important;
    }

    .indexProduct .row>div:nth-child(n+5) .indexPro_box {
        margin-bottom: 10px !important;
    }

    .indexIntro {
        padding: 60px 0;
    }

    .indexIntro .indextitle {
        margin-bottom: 20px;
    }

    .indexNews {
        padding: 70px 0 50px;
    }

    .indexNews_des {
        padding: 15px 0 0;
        gap: 10px;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .indexCon {
        padding: 60px 40px 50px;
    }

    .indexCon_l h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .indexCon_r {
        padding-bottom: 0;
        padding-top: 15px;
    }

    .indexContact {
        padding-bottom: 50px;
    }


    .footer {
        padding: 40px 0 90px 0;
    }

    .index_footer {
        padding: 35px 0 100px;
    }

    .footer_mainp {
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer_main {
        display: flex;
        justify-content: space-between;
    }

    .footer_main1 {
        gap: 10px;
    }

    /* .index_footer .public_ad_header_social_media a:nth-last-child(1) {
    margin-right: 0;
  } */

    .footer_logo img {
        max-height: 70px;
        margin-bottom: 10px;
    }

    .public_ad_header_social_media {
        padding-top: 10px;
        justify-content: flex-end;
    }

    .footer_tags {
        margin-bottom: 20px;
    }

    .footer_tags p {
        margin-right: 10px;
    }

    .footer_tags a {
        margin: 5px 5px 5px 0px;
    }

    .footer_product {
        margin-top: 30px;
    }

    .footer_page h3,
    .footer_product h3,
    .footer_contact h3,
    .footer_nav h3 {
        margin-bottom: 15px;
    }

    .footer_page h3 {
        margin-right: 15px;
    }

    .footer_page a,
    .footer_product a {
        margin-bottom: 10px;
    }

    .footer_page a {
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .footer_page {
        margin-top: 30px;
    }

    .footer_nav {
        margin-top: 30px;
        padding: 0 calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_contact li i {
        border: none;
        padding: 5px 5px;
    }

    .footer_flex {
        padding-bottom: 20px;
        border-bottom: none;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .banner {
        margin-top: 67px;
    }

    .bannerBotBox {
        background-size: cover;
        background-position: center;
        padding: 30px 25px;
    }

    .bannerBox {
        height: 100%;
    }

    .bannerBoxi i {
        font-size: 50px;
    }

    .bannerBoxDes p {
        font-size: 26px;
    }

    .indexAbout {
        padding: 100px 0 70px;
        margin-top: -40px;
    }

    .indextitle {
        font-size: 34px;
    }

    .indexAbout_l {
        gap: 30px;
    }

    .indexAbout_r {
        padding-left: 0;
    }

    .videobox {
        width: 90%;
        margin: 0 auto;
        max-height: auto;
        min-height: 500px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 500px;
    }

    .indexProduct {
        padding: 70px 0;
    }

    .indexPro_box {
        margin-bottom: 40px;
    }

    .indexIntro {
        padding: 90px 0 70px;
    }

    .indexIntro .indextitle {
        margin-bottom: 25px;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .footer {
        padding: 40px 0 90px 0;
    }

    .index_footer {
        padding: 35px 0 100px;
    }

    .footer_main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer_main1 {
        gap: 15px;
    }

    .footer_contact li {
        margin-bottom: 0;
    }

    .footer_mainp {
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer_p {
        margin-bottom: 10px;
    }

    .public_ad_header_social_media {
        width: auto;
        padding-top: 0;
        border: none;
    }

    .footer_logo img {
        max-height: 50px;
        margin-bottom: 0;
    }

    .footer_tags {
        margin-bottom: 20px;
    }

    .footer_tags p {
        margin-right: 10px;
    }

    .footer_tags a {
        margin: 5px 5px 5px 0px;
    }

    .footer_nav {
        padding: 0 calc(var(--bs-gutter-x) * 0.5);
    }

    .footer_flex {
        padding-bottom: 20px;
        border-bottom: none;
    }
}

@media (min-width:1201px) and (max-width:1400px) {
    .nav_wrap .head_nav>li>a {
        padding: 0 20px;
    }

    .bannerBotBox {
        padding: 50px 60px;
    }

    .bannerBoxi i {
        font-size: 56px;
    }

    .bannerBox {
        height: 100%;
        justify-content: flex-start;
    }

    .indexAbout {
        padding: 110px 0 85px;
    }

    .indexAbout_l {
        gap: 36px;
    }

    .indexAbout_r {
        padding-left: 10%;
    }

    .videobox {
        width: 80%;
        margin: 0 auto;
        max-height: auto;
        min-height: 500px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 500px;
    }

    .indexProduct {
        padding: 80px 0;
    }

    .indexIntro {
        padding: 100px 0 80px;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .indexContact {
        padding-bottom: 70px;
    }

    .footer_nav {
        padding: 0 calc(var(--bs-gutter-x) * 0.5);
    }

}

@media (min-width:1401px) and (max-width:1680px) {
    .videobox {
        width: 88%;
        margin: 0 auto;
        max-height: auto;
        min-height: 600px;
    }

    .videobox iframe {
        width: 100%;
        max-height: auto;
        min-height: 600px;
    }

    .indexIntro {
        padding: 100px 0 80px 10%;
    }

    .iNewsSwiper {
        padding-bottom: 60px;
    }

    .iNewsSwiper .swiperbtns {
        top: auto;
        bottom: 32px;
        width: calc(100% - var(--bs-gutter-x));
    }

    .iNewsSwiper .swiper-button-prev {
        right: 70px;
        left: auto;
    }

    .iNewsSwiper .swiper-button-prev,
    .iNewsSwiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }
}