.indexTitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 56px;
}

.indexTitle h2 {
    position: relative;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-align: center;
}

.indexBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.indexBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--primary-color);
    padding: 8px 8px 8px 32px;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    transition: all ease 0.3s;
}

.indexBtn a span {
    font-size: 22px;
    font-weight: bold;
    transition: all ease 0.3s;
}

.indexBtn a i {
    font-size: 56px;
    line-height: 1;
    transition: all ease 0.3s;
}

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

.indexBtn a:hover span,
.indexBtn a:hover i {
    color: #fff;
}



.indexProduct {
    padding: 80px 0 70px;
}

.iPro_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
    margin-bottom: 60px;
}

.iPro_tab h3 {
    color: #333;
    font-size: 26px;
    letter-spacing: -1px;
    line-height: 1.2;
    padding: 20px 20px;
    flex: 1;
    border-radius: 35px;
    text-align: center;
    background: var(--primary-bg);
    transition: all ease 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    height: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iPro_tab h3:hover,
.iPro_tab h3.active {
    background-color: var(--primary-color);
    color: #fff;
}

.iPro_option {
    display: none;
}

.iPro_option.active {
    display: block;
}

.iPro_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 76%;
    border-radius: 20px;
}

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

.iPro_des {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.iPro_des h4 a,
    .iPro_des h3 a {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    transition: all 0.3s ease;
    /*   word-break: break-all; */
}

.iPro_des p {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /*   word-break: break-all; */
}

.iPro_box:hover img {
    transform: scale(1.1);
}

.iPro_des h4:hover a ,
.iPro_des h3:hover a {
    color: var(--primary-color);
}


.indexAdva {
    padding: 70px 0;
    background: var(--primary-bg);
}

.iAdva_main .row>div {
    margin-bottom: 25px;
}

.iAdva_box {
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    transition: all ease 0.3s;
}

.iAdva_i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all ease 0.3s;
    margin-bottom: 18px;
}

.iAdva_i i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: all ease 0.3s;
}

.iAdva_box p {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    transition: all ease 0.3s;
}

.iAdva_box:hover {
    background: var(--primary-color);
}

.iAdva_box:hover .iAdva_i {
    background: #fff;
}

.iAdva_box:hover .iAdva_i i {
    color: var(--primary-color);
}

.iAdva_box:hover p {
    color: #fff;
}


.indexApply {
    padding: 85px 0;
}

.iApply_box {
    position: relative;
    padding-bottom: 70px;
}

.iApply_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
    border-radius: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.iApply_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    border-radius: 20px;
}

.iApply_des {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    padding: 35px 60px 40px 30px;
    background: #fff;
    border-radius: 20px 0 20px 20px;
    transition: all 0.3s ease;
}

.iApply_des h3 a {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.iApply_des p {
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    transition: all 0.3s ease;
}

.iApply_box:hover img {
    transform: scale(1.1);
}

.iApply_box:hover .iApply_des {
    background: var(--primary-color);
}

.iApply_box:hover .iApply_des h3 a,
.iApply_box:hover .iApply_des p {
    color: #fff;
}

.iApply_main .row>div {
    margin-bottom: 40px;
}


.indexAbout {
    background: url(../images/iabg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 110px 0 90px;
}

.indexAbout::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
}

.iAbout_top {
    position: relative;
}

.iAbout_limg {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 146%;
    border-radius: 22px;
}

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

.iAbout_rimg {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.iAbout_limg:hover img,
.iAbout_img:hover img {
    transform: scale(1.1);
}

.iAbout_des {
    height: 100%;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iAbout_des h2 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
}

.iAbout_des h1 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.iAbout_des p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /* word-break: break-all; */
}

.iAbout_des .indexBtn {
    margin-top: 10px;
    justify-content: flex-start;
}

.iAbout_bot {
    margin-top: 80px;
}

.iLogoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.iLogobox {
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 10px;
}

.iLogoimg {
    display: block;
    position: relative;
    width: 50%;
    height: auto;
    overflow: hidden;
    padding-top: 33%;
}

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


.indexProcess {
    padding: 90px 0;
}

.iProcess_main .accordion-wrapper {
    display: flex;
    gap: 6px;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
}

.iProcess_main .accordion-panel {
    position: relative;
    flex: 1;
    min-width: 80px;
    border-radius: 12px;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: flex-end;
}

.iProcess_main .accordion-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.iProcess_main .accordion-panel.active {
    flex: 7;
}

.iProcess_img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.iProcess_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    object-fit: cover;
}

.iProcess_txt {
    position: relative;
    z-index: 2;
    padding: 75px 44px 55px;
    width: 100%;
    height: 100%;
    color: #fff;
}

.iProcess_title {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    flex-shrink: 0;
}

.iProcess_txt .iProcess_title h3 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .5px;
    text-align: center;
    white-space: nowrap;
    width: max-content;
    height: auto;
    flex: none;
    box-sizing: border-box;
    transform: rotateZ(90deg);
    transform-origin: center center;

    transition: transform .6s ease;


}

.iProcess_content {
    display: none;
    width: 90%;
    animation: fadeInUp 1s ease forwards;
}

.iProcess_content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.iProcess_content ul {
    padding-left: 15px;
}

.iProcess_content ul,
.iProcess_content li {
    list-style: revert !important;
}

.iProcess_content li {
    position: relative;
    font-size: 18px;
    line-height: 1.3;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.iProcess_content .indexBtn {
    justify-content: flex-start;
}

.iProcess_content .indexBtn a {
    background: var(--primary-color);
}

.iProcess_content .indexBtn span,
.iProcess_content .indexBtn a {
    color: #fff;
}

.iProcess_content .indexBtn a:hover {
    background: transparent;
}

.iProcess_content .indexBtn a:hover span,
.iProcess_content .indexBtn a:hover i {
    color: var(--primary-color);
}

.iProcess_main .accordion-panel.active .iProcess_content {
    /* display: block; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iProcess_main .accordion-panel.active .iProcess_txt .iProcess_title {
    opacity: 0;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.iFaq_main {
    background: var(--primary-bg);
    border-radius: 40px;
    padding: 80px;
}

.iFaq_form {
    background: #fff;
    border-radius: 40px;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 60px;
    position: sticky;
    top: 150px;
}

.iFaq_form .yandex-form {
    /* height: fit-content; */
}

.iFaq_form .yandex-form #form .list input,
.iFaq_form .yandex-form #form .list textarea {
    border: none;
    border-bottom: 2px solid #dee2eb;
}

.iFaq_form .yandex-form #form .list textarea {
    height: 150px;
}

.iFaq_form .yandex-form #form #submit {
    width: auto;
    line-height: 1.0;
    padding: 25px 60px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 45px;
    transition: all ease 0.5s;
    background: #fff;
    box-shadow: inset 0px 72px 0px 0px var(--primary-color);
    margin-top: 30px;
}

.iFaq_form .yandex-form #form #submit:hover {
    box-shadow: inset 0px 0px 0px 2px var(--primary-color);
    color: var(--primary-color);
}

.iFaq_right .indexTitle {
    align-items: flex-start;
    padding-left: 10%;
    margin-bottom: 30px;
}

.iFaq_right .accordion {
    padding-left: 10%;
}

.iFaq_right .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.iFaq_right .accordion-item {
    border: none;
}

.iFaq_right .accordion-button {
    background-color: transparent;
    padding: 20px 30px;
    color: #000;
    font-size: 17px;
    line-height: 1.2;
    font-weight: bold;
}

.iFaq_right .accordion-body {
    padding: 0px 30px 30px 65px;
}

.iFaq_right .accordion-item strong {
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    line-height: 1.3;
    color: #404040;
}

.iFaq_right .accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.iFaq_right .accordion-button:not(.collapsed)::after {
    background-image: #ee1c25;
}

.iFaq_right .accordion-item {
    border-radius: 40px !important
}


.indexNews {
    padding: 80px 0;
}

.iNews_box {
    display: flex;
    flex-direction: column;
}

.iNews_des {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
}

.iNews_des>span {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

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

.iNews_des>p {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    /*   word-break: break-all; */
}

.iNews_des .indexBtn {
    justify-content: flex-start;
}

.iNews_des .indexBtn a span {
    font-size: 18px;
}

.iNews_des .indexBtn a i {
    font-size: 40px;
}

.iNews_left .iNews_des {
    padding-left: 5%;
}

.iNews_left .iNews_box {
    flex-direction: row;
}

.iNews_left .iNews_img {
    flex: 0 0 40%;
}

.iNews_left .iNews_des {
    flex: 0 0 60%;
}

.iNews_img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 29%;
    border-radius: 15px;
}

.iNews_img img {
    width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    border-radius: 15px;
}

.iNews_box:hover img {
    transform: scale(1.1);
}

.iNews_box h3>a:hover {
    color: var(--primary-color);
}

.iNews_left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.iNews_right,
.iNews_right .iNews_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iNews_right .iNews_img {
    padding-top: 72%;
}

.iNews_right .iNews_des {
    padding-top: 20px;
}

.indexComment {
    background: linear-gradient(#fff 50%, var(--primary-bg) 50%);
}

.iComment_main {
    position: relative;
}

.iComment_rimg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    border-radius: 20px;
}

.iComment_rimg img {
    position: absolute;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
}

.index_comments_content {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    /* overflow: hidden; */
    height: 100%;
}

.iComment_left .swiper-slide {
    height: initial;
}

.iComment_box {
    height: 100%;
}

.index_comments_top {
    padding: 90px 30px 60px;
    border-radius: 20px;
    background-color: #fff;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* overflow: hidden; */
    height: 100%;
}

.index_comments_top p {
    font-size: 18px;
    color: #000;
    line-height: 1.4;
}

.index_comments_fixed1 {
    position: absolute;
    top: -80px;
    left: 40px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_comments_fixed1 i {
    font-size: 60px;
    line-height: 1;
    transform: rotate(180deg);
    color: #fff;
}

.index_comments_bot {
    width: 100%;
    margin-top: 60px;
    padding-left: 12px;
    display: flex;
}

.index_comments_bot .row {
    align-items: center;
    width: 100%;
}

.comments_bot_img {
    padding: 0px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

.comments_bot_img img {
    border-radius: 50%;
}

.comments_bot_info h5 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    word-wrap: break-word;
    /* word-break: break-all; */
}

.comments_bot_info p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #000;
    word-wrap: break-word;
    /* word-break: break-all; */
}



.indexContact {
    padding: 90px 0 80px;
    background: var(--primary-bg);
}

.iContact_main {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.iContact_main .indexTitle {
    margin-bottom: 0;
}

.iContact_main p {
    line-height: 1.3;
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.iContact_main .indexBtn {
    margin-top: 10px;
}

.iContact_main .indexBtn span,
.iContact_main .indexBtn i {
    color: #fff;
}

.iContact_main .indexBtn span {
    font-size: 18px;
}

.iContact_main .indexBtn i {
    font-size: 40px;
}

.iContact_main .indexBtn a {
    padding: 8px 8px 8px 22px;
    background: var(--primary-color);
}

.iContact_main .indexBtn a:hover {
    background: transparent;
}

.iContact_main .indexBtn a:hover span,
.iContact_main .indexBtn a:hover i {
    color: var(--primary-color);
}


footer {
    background: #101318;
}

.footer_top {
    padding: 85px 0 40px;
}

.foot_copyrights {
    padding: 24px 0;
    border-top: 1px solid #fff;
}

.foot_copyrights span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.footerLogo {
    max-width: 130px;
    /* max-height: 55px; */
    margin-bottom: 20px;
}

.footerLogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_conBox {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer_conBox i {
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background: #4d4f56;
    color: var(--primary-color);
    font-size: 22px;
}

.footer_top p,
.footer_top a {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    transition: all ease 0.3s;
    position: relative;
}

.footer_top a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    display: block;
    width: 100%;
    height: 1px;
    opacity: 1;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
}

.footer_top a:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
}

.footer_top a:hover {
    color: #fff;
}

.footer_top h3 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 22px;
}

.footer_top ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_nav li,
.footer_pro li{
    margin-bottom: 15px;
}




.indexRightFix {
    position: fixed;
    right: 15px;
    bottom: 40%;
    z-index: 9999999;
}

.RightFixbox {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    transition: all ease .3s;
    position: relative;
    right: 0;
}

.irBox {
    background: #535353;
    border-radius: 4px;
    position: relative;
    transition: all ease .3s;
}

.irBox_i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    /* pointer-events: none; */
    transition: all ease .3s;
    cursor: pointer;
}

.irBox_i i {
    font-size: 28px;
    color: #fff;
}

.irBox_p {
    position: absolute;
    right: 76px;
    top: 0;
    background: #fff;
    border-radius: 4px;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: all ease .3s;
    padding: 15px 5px 15px 20px;
    border: 1px solid #dcdcdc;
    -webkit-box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
    box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
    min-width: 260px;
    gap: 14px;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.irBox_p i {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f1f1;
    font-size: 28px;
    color: #787878;
}

.irBox_p p{
    display: flex;
    flex-direction: column;
}

.irBox_p p span,
.irBox_p p a {
    font-size: 16px;
    color: #000;
    transition: all ease .3s;
}

.irBox_p p a:hover {
    color: var(--primary-color);
}

.irBox:hover .irBox_p {
    z-index: 3;
    opacity: 1;
    pointer-events: visible;
    right: 55px;
}

.irBox:hover {
    background: var(--primary-color);
}


@media (max-width:575px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexRightFix {
        display: none;
    }


    .banner {
        margin-top: 73px;
    }

    .bannerSwiper .swiper-pagination {
        display: none;
    }

    .indexProduct {
        padding: 35px 0;
    }

    .indexTitle {
        margin-bottom: 25px;
    }

    .indexTitle h2,
    .iAbout_des h1 {
        font-size: 24px;
    }

    .iPro_tab {
        gap: 2%;
        margin-bottom: 20px;
    }

    .iPro_tab {
        flex-direction: column;
        gap: 10px;
    }

    .iPro_tab h3 {
        font-size: 14px;
        letter-spacing: 0px;
        padding: 12px 16px;
        flex: 0 0 auto;
        width: 100%;
        border-radius: 8px;
    }

    .iPro_option .row>div:nth-child(n+3) {
        display: none;
    }

    .iPro_des {
        margin-top: 15px;
        gap: 10px;
    }

    .iPro_des h4 a,
    .iPro_des h3 a {
        font-size: 18px;
    }

    .iPro_des p {
        font-size: 14px;
        line-height: 1.1;
    }

    .indexBtn {
        margin-top: 10px;
    }

    .indexBtn a {
        gap: 10px;
        padding: 5px 5px 5px 15px;
    }

    .indexBtn a span {
        font-size: 14px;
    }

    .indexBtn a i {
        font-size: 26px;
    }

    .indexAdva {
        padding: 40px 0;
    }

    .iAdva_i {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .iAdva_i i {
        font-size: 26px;
    }

    .iAdva_box p {
        font-size: 14px;
        line-height: 1.15;
        /* word-break: break-all; */
        word-wrap: break-word;
    }

    .iAdva_box {
        padding: 15px 15px;
    }

    .indexApply {
        padding: 35px 0;
    }

    .iApply_box {
        padding-bottom: 40px;
    }

    .iApply_des {
        padding: 15px 40px 20px 25px;
    }

    .iApply_des h3 a {
        font-size: 20px;
    }

    .iApply_des p {
        font-size: 14px;
    }

    .iApply_main .row>div {
        margin-bottom: 30px;
    }

    .iAbout_top>.row>div:nth-child(1) {
        order: 2;
    }

    .iAbout_top>.row>div:nth-child(21) {
        order: 1;
    }

    .indexAbout {
        padding: 50px 0;
    }

    .iAbout_des {
        padding-left: 0;
        gap: 10px;
        padding-bottom: 25px;
    }

    .iAbout_des h1 {
        margin-bottom: 0;
    }

    .iAbout_des p {
        font-size: 14px;
    }

    .iAbout_bot {
        margin-top: 30px;
    }

    .iLogobox {
        border-radius: 14px;
        padding: 12px 2px;
    }

    .indexProcess {
        padding: 40px 0;
    }

    .iProcess_main .accordion-wrapper {
        flex-direction: column;
    }

    .iProcess_txt {
        padding: 0;
    }

    .accordion-panel.active .iProcess_txt {
        padding: 35px 30px 30px;
    }

    .iProcess_main .accordion-panel.active .iProcess_content {
        width: 100%;
    }

    .iProcess_content h3 {
        font-size: 18px;
    }

    .iProcess_content ul {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .iProcess_content li {
        position: relative;
        font-size: 14px;
    }

    .iProcess_txt .iProcess_title h3 {
        padding: 0 15px;
        transform: none;
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
        text-align: left;
        flex: auto;
    }

    .iFaq_main {
        border-radius: 20px;
        padding: 35px 20px;
    }

    .iFaq_form {
        border-radius: 20px;
        padding: 20px;
    }

    .iFaq_form .yandex-form #form .list input,
    .iFaq_form .yandex-form #form .list textarea {
        padding: 4px 0px 5px 0px;
    }

    .iFaq_form .yandex-form #form .list {
        margin-bottom: 5px;
    }

    .iFaq_form .yandex-form #form .list textarea {
        height: 100px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 16px;
    }

    .yandex-form {
        min-height: 100px !important;
    }

    .iFaq_main>.row>div:nth-child(1) {
        order: 2;
        margin-top: 30px;
    }

    .iFaq_main>.row>div:nth-child(2) {
        order: 1;
    }

    .iFaq_right .accordion-item {
        border-radius: 20px !important;
    }

    .iFaq_right .accordion-button {
        padding: 18px 20px;
        font-size: 16px;
    }

    .iFaq_right .accordion-body {
        padding: 0px 20px 20px;
    }

    .iFaq_right .accordion-item strong {
        font-size: 14px;
    }

    .iFaq_right .accordion,
    .iFaq_right .indexTitle {
        padding-left: 0;
    }

    .indexNews {
        padding: 40px 0;
    }

    .iNews_des>span {
        font-size: 14px;
    }

    .iNews_des>h3>a {
        font-size: 20px;
    }

    .iNews_des>p {
        font-size: 14px;
    }

    .iNews_des .indexBtn a span {
        font-size: 14px;
    }

    .iNews_des .indexBtn a i {
        font-size: 26px;
    }

    .iNews_des {
        gap: 5px;
        padding-left: 0 !important;
    }

    .iNews_left .iNews_box {
        flex-direction: column;
    }

    .iNews_left .iNews_img {
        padding-top: 72%;
    }

    .iNews_left .iNews_des {
        flex: auto;
    }

    .iNews_des {
        padding-top: 20px !important;
    }

    .iNews_left {
        gap: 30px;
        padding-bottom: 30px;
    }

    .index_comments_fixed1 {
        top: -40px;
        width: 80px;
        height: 80px;
    }

    .index_comments_fixed1 i {
        font-size: 40px;
    }

    .index_comments_content {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .index_comments_top {
        padding: 55px 25px 30px;
    }

    .index_comments_bot {
        margin-top: 30px;
    }

    .index_comments_top p {
        font-size: 14px;
    }

    .comments_bot_info h5 {
        font-size: 18px;
    }

    .iComment_rimg,
    .iComment_rimg img {
        position: relative;
    }

    .indexContact {
        padding: 40px 0;
    }

    .iContact_main {
        width: 100%;
        gap: 15px;
    }

    .iContact_main p {
        font-size: 18px;
    }

    .iContact_main .indexBtn span {
        font-size: 14px;
    }

    .iContact_main .indexBtn i {
        font-size: 26px;
    }


    .footer_top {
        padding: 45px 0 20px;
    }

    .footer_nav,
    .footer_pro,
    .footer_top h3 {
        display: none;
    }

    .footer_conBox {
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer_top p,
    .footer_top a {
        font-size: 14px;
    }

    .footerLogo {
        max-width: 110px;
        margin-bottom: 35px;
    }

    .foot_copyrights {
        padding: 16px 0;
    }

    .foot_copyrights span {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
        display: flex;
        padding: 0 2%;
        justify-content: center;
    }

}

@media (min-width:576px) and (max-width:767px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexRightFix {
        display: none;
    }


    .banner {
        margin-top: 73px;
    }

    .bannerSwiper .swiper-pagination {
        display: none;
    }

    .indexProduct {
        padding: 40px 0;
    }

    .indexTitle {
        margin-bottom: 30px;
    }

    .indexTitle h2,
    .iAbout_des h1 {
        font-size: 26px;
    }

    .iPro_tab {
        gap: 2%;
        margin-bottom: 25px;
    }

    .iPro_tab {
        width: 100%;
        overflow: scroll;
        justify-content: flex-start;
        gap: 10px;
    }

    .iPro_tab h3 {
        font-size: 16px;
        letter-spacing: 0px;
        padding: 10px 16px;
        border-radius: 8px;
    }

    .iPro_option .row>div:nth-child(n+3) {
        display: none;
    }

    .iPro_des {
        margin-top: 15px;
        gap: 10px;
    }

    .iPro_des h4 a,
    .iPro_des h3 a {
        font-size: 20px;
    }

    .iPro_des p {
        font-size: 16px;
        line-height: 1.1;
    }

    .indexBtn {
        margin-top: 20px;
    }

    .indexBtn a {
        gap: 10px;
        padding: 6px 6px 6px 20px;
    }

    .indexBtn a span {
        font-size: 16px;
    }

    .indexBtn a i {
        font-size: 26px;
    }

    .indexAdva {
        padding: 45px 0;
    }

    .iAdva_i {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .iAdva_i i {
        font-size: 26px;
    }

    .iAdva_box p {
        font-size: 16px;
        line-height: 1.15;
        /* word-break: break-all; */
        word-wrap: break-word;
    }

    .iAdva_box {
        padding: 15px 15px;
    }

    .indexApply {
        padding: 40px 0;
    }

    .iApply_box {
        padding-bottom: 40px;
    }

    .iApply_des {
        padding: 15px 40px 20px 25px;
    }

    .iApply_des h3 a {
        font-size: 20px;
    }

    .iApply_des p {
        font-size: 14px;
    }

    .iApply_main .row>div {
        margin-bottom: 15px;
    }

    .iAbout_top>.row>div:nth-child(1) {
        order: 2;
    }

    .iAbout_top>.row>div:nth-child(21) {
        order: 1;
    }

    .indexAbout {
        padding: 60px 0;
    }

    .iAbout_des {
        padding-left: 0;
        gap: 10px;
        padding-bottom: 25px;
    }

    .iAbout_des h1 {
        margin-bottom: 0;
    }

    .iAbout_des p {
        font-size: 14px;
    }

    .iAbout_bot {
        margin-top: 40px;
    }

    .iLogobox {
        border-radius: 14px;
        padding: 12px 2px;
    }

    .indexProcess {
        padding: 45px 0;
    }

    .iProcess_main .accordion-wrapper {
        flex-direction: column;
    }

    .iProcess_txt {
        padding: 0;
    }

    .accordion-panel.active .iProcess_txt {
        padding: 35px 30px 30px;
    }

    .iProcess_main .accordion-panel.active .iProcess_content {
        width: 100%;
    }

    .iProcess_content h3 {
        font-size: 18px;
    }

    .iProcess_content ul {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .iProcess_content li {
        position: relative;
        font-size: 14px;
    }

    .iProcess_txt .iProcess_title h3 {
        padding: 0 15px;
        transform: none;
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
        text-align: left;
        flex: auto;
    }

    .iFaq_main {
        border-radius: 20px;
        padding: 45px 20px;
    }

    .iFaq_form {
        border-radius: 20px;
        padding: 20px;
    }

    .iFaq_form .yandex-form #form .list input,
    .iFaq_form .yandex-form #form .list textarea {
        padding: 4px 0px 5px 0px;
    }

    .iFaq_form .yandex-form #form .list {
        margin-bottom: 5px;
    }

    .iFaq_form .yandex-form #form .list textarea {
        height: 100px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 16px;
    }

    .yandex-form {
        min-height: 100px !important;
    }

    .iFaq_main>.row>div:nth-child(1) {
        order: 2;
        margin-top: 30px;
    }

    .iFaq_main>.row>div:nth-child(2) {
        order: 1;
    }

    .iFaq_right .accordion-item {
        border-radius: 20px !important;
    }

    .iFaq_right .accordion-button {
        padding: 18px 20px;
    }

    .iFaq_right .accordion-body {
        padding: 0px 20px 20px;
    }

    .iFaq_right .accordion-item strong {
        font-size: 14px;
    }

    .iFaq_right .accordion,
    .iFaq_right .indexTitle {
        padding-left: 0;
    }

    .indexNews {
        padding: 50px 0;
    }

    .iNews_des>span {
        font-size: 14px;
    }

    .iNews_des>h3>a {
        font-size: 20px;
    }

    .iNews_des>p {
        font-size: 14px;
    }

    .iNews_des .indexBtn a span {
        font-size: 14px;
    }

    .iNews_des .indexBtn a i {
        font-size: 26px;
    }

    .iNews_box {
        display: flex;
        flex-direction: row !important;
    }

    .iNews_des {
        gap: 5px;
        padding-left: 5% !important;
        padding-top: 0 !important;
        flex: 0 0 60% !important;
    }

    .iNews_des .indexBtn {
        margin-top: 10px;
    }

    .iNews_img {
        flex: 0 0 40% !important;
        padding-top: 29% !important;
    }

    .iNews_left {
        gap: 30px;
        padding-bottom: 30px;
    }

    .index_comments_fixed1 {
        top: -40px;
        width: 80px;
        height: 80px;
    }

    .index_comments_fixed1 i {
        font-size: 40px;
    }

    .index_comments_content {
        padding-top: 50px;
        padding-bottom: 30px;
    }


    .indexComment {
        background: linear-gradient(#fff 40%, var(--primary-bg) 40%);
    }

    .index_comments_top {
        padding: 55px 25px 30px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        margin: 0 1%;
    }

    .index_comments_bot {
        margin-top: 30px;
    }

    .index_comments_top p {
        font-size: 16px;
    }

    .comments_bot_info h5 {
        font-size: 18px;
    }

    .iComment_rimg,
    .iComment_rimg img {
        position: relative;
    }

    .indexContact {
        padding: 50px 0;
    }

    .iContact_main {
        width: 100%;
        gap: 15px;
    }

    .iContact_main p {
        font-size: 18px;
    }

    .iContact_main .indexBtn span {
        font-size: 14px;
    }

    .iContact_main .indexBtn i {
        font-size: 26px;
    }


    .footer_top {
        padding: 45px 0 20px;
    }

    .footer_nav,
    .footer_pro,
    .footer_top h3 {
        display: none;
    }

    .footer_conBox {
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer_top p,
    .footer_top a {
        font-size: 14px;
    }

    .footerLogo {
        max-width: 110px;
        margin-bottom: 35px;
    }

    .foot_copyrights {
        padding: 16px 0;
    }

    .foot_copyrights span {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
        display: flex;
        padding: 0 2%;
        justify-content: center;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexRightFix {
        display: none;
    }


    .banner {
        margin-top: 73px;
    }

    .bannerSwiper .swiper-pagination {
        display: none;
    }

    .indexProduct {
        padding: 50px 0;
    }

    .indexTitle {
        margin-bottom: 35px;
    }

    .indexTitle h2,
    .iAbout_des h1 {
        font-size: 26px;
    }

    .iPro_tab {
        gap: 2%;
        margin-bottom: 25px;
    }

    .iPro_tab {
        width: 100%;
        overflow: scroll;
        justify-content: flex-start;
        gap: 10px;
    }

    .iPro_tab h3 {
        font-size: 16px;
        letter-spacing: 0px;
        padding: 10px 16px;
        border-radius: 8px;
    }

    .iPro_des {
        margin-top: 15px;
        gap: 10px;
    }

    .iPro_des h4 a,
    .iPro_des h3 a {
        font-size: 20px;
    }

    .iPro_des p {
        font-size: 16px;
        line-height: 1.1;
    }

    .indexBtn {
        margin-top: 20px;
    }

    .indexBtn a {
        gap: 10px;
        padding: 8px 8px 8px 30px;
    }

    .indexBtn a span {
        font-size: 16px;
    }

    .indexBtn a i {
        font-size: 26px;
    }

    .indexAdva {
        padding: 50px 0;
    }

    .iAdva_i {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .iAdva_i i {
        font-size: 30px;
    }

    .iAdva_box p {
        font-size: 16px;
        line-height: 1.15;
        /* word-break: break-all; */
        word-wrap: break-word;
    }

    .indexApply {
        padding: 50px 0;
    }

    .iAdva_main .row>div:nth-child(n+7) {
        width: 50%;
    }

    .iApply_box {
        padding-bottom: 40px;
    }

    .iApply_des {
        padding: 15px 25px 20px 25px;
    }

    .iApply_des h3 a {
        font-size: 20px;
    }

    .iApply_des p {
        font-size: 14px;
    }

    .iApply_main .row>div {
        margin-bottom: 15px;
    }

    .indexAbout {
        padding: 60px 0;
    }

    .iAbout_des {
        gap: 10px;
    }

    .iAbout_des h1 {
        margin-bottom: 0;
        line-height: 1.1;
    }

    .iAbout_des p {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .iAbout_bot {
        margin-top: 40px;
    }

    .iLogobox {
        border-radius: 14px;
        padding: 12px 2px;
    }

    .indexProcess {
        padding: 55px 0;
    }

    .iProcess_txt {
        padding: 0;
    }

    .accordion-panel.active .iProcess_txt {
        padding: 45px 30px 40px;
    }

    .iProcess_content h3 {
        font-size: 22px;
    }

    .iProcess_content ul {
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .iProcess_content li {
        position: relative;
        font-size: 14px;
    }

    .iProcess_txt .iProcess_title h3 {
        padding: 0 15px;
        font-size: 16px;
    }

    .iProcess_main .accordion-wrapper {
        height: 400px;
    }

    .iFaq_main {
        border-radius: 20px;
        padding: 55px 20px;
    }

    .iFaq_form {
        border-radius: 20px;
        padding: 20px;
        top: 110px;
    }

    .iFaq_form .yandex-form #form .list input,
    .iFaq_form .yandex-form #form .list textarea {
        padding: 4px 0px 5px 0px;
    }

    .iFaq_form .yandex-form #form .list {
        margin-bottom: 5px;
    }

    .iFaq_form .yandex-form #form .list textarea {
        height: 100px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 16px;
    }

    .yandex-form {
        min-height: 100px !important;
    }

    .iFaq_right .accordion-item {
        border-radius: 20px !important;
    }

    .iFaq_right .accordion-button {
        padding: 18px 20px;
    }

    .iFaq_right .accordion-body {
        padding: 0px 20px 20px;
    }

    .iFaq_right .accordion-item strong {
        font-size: 14px;
    }

    .iFaq_right .accordion,
    .iFaq_right .indexTitle {
        padding-left: 0;
    }

    .indexNews {
        padding: 55px 0;
    }

    .iNews_des>span {
        font-size: 14px;
    }

    .iNews_des>h3>a {
        font-size: 20px;
    }

    .iNews_des>p {
        font-size: 14px;
    }

    .iNews_des .indexBtn a span {
        font-size: 14px;
    }

    .iNews_des .indexBtn a i {
        font-size: 24px;
    }

    .iNews_des .indexBtn {
        margin-top: 10px;
    }

    .iNews_des {
        gap: 5px;
    }

    /* 
    .iNews_left .iNews_img,
    .iNews_left .iNews_des {
        flex: 0 0 50%;
      } */

    .iNews_des .indexBtn a {
        gap: 10px;
        padding: 5px 5px 5px 20px;
    }

    .index_comments_fixed1 {
        top: -40px;
        width: 80px;
        height: 80px;
    }

    .index_comments_fixed1 i {
        font-size: 40px;
    }

    .index_comments_content {
        padding-top: 50px;
        padding-bottom: 30px;
    }


    .indexComment {
        background: linear-gradient(#fff 40%, var(--primary-bg) 40%);
    }

    .index_comments_top {
        padding: 55px 25px 30px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        margin: 0 1%;
    }

    .index_comments_bot {
        margin-top: 20px;
    }

    .index_comments_top p {
        font-size: 14px;
    }

    .comments_bot_info h5 {
        font-size: 18px;
    }

    .indexContact {
        padding: 60px 0;
    }

    .iContact_main {
        gap: 15px;
    }

    .iContact_main p {
        font-size: 18px;
    }

    .iContact_main .indexBtn span {
        font-size: 14px;
    }

    .iContact_main .indexBtn i {
        font-size: 26px;
    }


    .footer_top {
        padding: 50px 0 30px;
    }

    .footer_top ul {
        gap: 10px;
    }

.footer_nav li,
.footer_pro li{
    margin-bottom: 10px;
}


    .footer_conBox {
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer_top p,
    .footer_top a {
        font-size: 14px;
    }

    .footerLogo {
        max-width: 110px;
        margin-bottom: 35px;
    }

    .foot_copyrights {
        padding: 16px 0;
    }

    .foot_copyrights span {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
        display: flex;
        padding: 0 2%;
        justify-content: center;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .bg-dark {
        background-color: #fff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
    }

    .btn:hover {
        background-color: #333 !important;
        border-color: #333 !important;
    }

    .text-bg-dark {
        background-color: #fff !important;
    }

    .navbar-nav .show>.nav-link,
    .navbar-nav .nav-link.active {
        color: #111;
        font-weight: bold;
    }

    .nav-link {
        color: #111;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #111;
    }

    .btn-close {
        --bs-btn-close-white-filter: auto;
    }

    .dropdown-menu-dark {
        --bs-dropdown-bg: transparent;
    }

    .dropdown-item {
        color: #222;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
    }

    .indexRightFix {
        display: none;
    }


    .banner {
        margin-top: 73px;
    }

    .bannerSwiper .swiper-pagination {
        display: none;
    }

    .indexProduct {
        padding: 60px 0;
    }

    .indexTitle {
        margin-bottom: 35px;
    }

    .indexTitle h2,
    .iAbout_des h1 {
        font-size: 32px;
    }

    .iPro_tab {
        margin-bottom: 40px;
    }

    .iPro_tab {
        width: 100%;
    }

    .iPro_tab h3 {
        font-size: 18px;
        padding: 15px 16px;
    }

    .iPro_des {
        margin-top: 25px;
    }

    .iPro_des h4 a,
    .iPro_des h3 a {
        font-size: 22px;
    }

    .indexBtn {
        margin-top: 20px;
    }

    .indexBtn a {
        gap: 10px;
        padding: 8px 8px 8px 30px;
    }

    .indexBtn a span {
        font-size: 18px;
    }

    .indexBtn a i {
        font-size: 30px;
    }

    .indexAdva {
        padding: 70px 0;
    }

    .iAdva_i {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .iAdva_i i {
        font-size: 36px;
    }

    .iAdva_box p {
        line-height: 1.15;
        /* word-break: break-all; */
        word-wrap: break-word;
    }

    .indexApply {
        padding: 60px 0;
    }

    .iApply_box {
        padding-bottom: 40px;
    }

    .iApply_des {
        padding: 25px 30px 30px 25px;
    }

    .iApply_des h3 a {
        font-size: 22px;
    }

    .iApply_des p {
        font-size: 16px;
    }

    .iApply_main .row>div {
        margin-bottom: 15px;
    }

    .indexAbout {
        padding: 80px 0;
    }

    .iAbout_des {
        gap: 10px;
    }

    .iAbout_des h1 {
        margin-bottom: 0;
        line-height: 1.1;
    }

    .iAbout_des p {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .iAbout_bot {
        margin-top: 40px;
    }

    .iLogobox {
        border-radius: 14px;
        padding: 12px 2px;
    }

    .indexProcess {
        padding: 70px 0;
    }

    .iProcess_txt {
        padding: 0;
    }

    .accordion-panel.active .iProcess_txt {
        padding: 45px 30px 40px;
    }

    .iProcess_content ul {
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .iProcess_txt .iProcess_title h3 {
        padding: 0 15px;
        font-size: 18px;
    }

    .iProcess_main .accordion-wrapper {
        height: 400px;
    }

    .iFaq_main {
        padding: 70px 20px;
    }

    .iFaq_form {
        padding: 30px 20px;
        top: 110px;
    }

    .iFaq_form .yandex-form #form .list input,
    .iFaq_form .yandex-form #form .list textarea {
        padding: 4px 0px 5px 0px;
    }

    .iFaq_form .yandex-form #form .list {
        margin-bottom: 5px;
    }

    .iFaq_form .yandex-form #form .list textarea {
        height: 100px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 10px 20px;
        font-size: 16px;
        margin-top: 16px;
    }

    .yandex-form {
        min-height: 100px !important;
    }

    .iFaq_right .accordion-item {
        border-radius: 20px !important;
    }

    .iFaq_right .accordion-button {
        padding: 18px 20px;
    }

    .iFaq_right .accordion-body {
        padding: 0px 20px 20px;
    }

    .iFaq_right .accordion-item strong {
        font-size: 14px;
    }

    .iFaq_right .accordion,
    .iFaq_right .indexTitle {
        padding-left: 0;
    }

    .indexNews {
        padding: 65px 0;
    }

    .iNews_des>span {
        font-size: 14px;
    }

    .iNews_des>h3>a {
        font-size: 22px;
    }

    .iNews_des>p {
        font-size: 16px;
    }

    .iNews_des .indexBtn a span {
        font-size: 18px;
    }

    .iNews_des .indexBtn a i {
        font-size: 24px;
    }

    .iNews_des .indexBtn {
        margin-top: 10px;
    }

    .iNews_des {
        gap: 5px;
    }

    .index_comments_fixed1 {
        top: -40px;
        width: 80px;
        height: 80px;
    }

    .index_comments_fixed1 i {
        font-size: 40px;
    }

    .index_comments_content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .index_comments_top {
        padding: 55px 25px 30px;
    }

    .index_comments_bot {
        margin-top: 20px;
    }

    .index_comments_top p {
        font-size: 14px;
    }

    .comments_bot_info h5 {
        font-size: 18px;
    }

    .indexContact {
        padding: 70px 0;
    }

    .iContact_main {
        gap: 20px;
    }

    .iContact_main p {
        font-size: 20px;
    }

    .iContact_main .indexBtn span {
        font-size: 16px;
    }

    .iContact_main .indexBtn i {
        font-size: 30px;
    }


    .footer_top {
        padding: 60px 0 30px;
    }

    .footer_top ul {
        gap: 10px;
    }

.footer_nav li,
.footer_pro li{
    margin-bottom: 10px;
}


    .footer_conBox {
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer_top p,
    .footer_top a {
        font-size: 14px;
    }

    .footerLogo {
        max-width: 110px;
        margin-bottom: 35px;
    }

    .foot_copyrights {
        padding: 16px 0;
    }

    .foot_copyrights span {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
        display: flex;
        padding: 0 2%;
        justify-content: center;
    }
}

@media (min-width:1200px) and (max-width:1400px) {
    .headernav_box {
        margin-left: 30px;
    }

    .nav_wrap .head_nav>li {
        margin: 0 10px;
        font-size: 16px;
    }

    .js .web-search .search-ipt {
        font-size: 26px;
    }

    .head-search form i {
        right: 14%;
    }

    .indexProduct {
        padding: 70px 0;
    }

    .indexTitle {
        margin-bottom: 40px;
    }

    .indexTitle h2 {
        font-size: 38px;
    }

    .iPro_tab {
        margin-bottom: 40px;
    }

    .iPro_tab h3 {
        font-size: 20px;
        padding: 15px 16px;
    }

    .iPro_des {
        margin-top: 25px;
    }

    .indexBtn a i {
        font-size: 36px;
    }

    .indexAdva {
        padding: 80px 0;
    }

    .indexApply {
        padding: 80px 0;
    }

    .iApply_main .row>div {
        margin-bottom: 30px;
    }

    .indexAbout {
        padding: 80px 0;
    }

    .iAbout_des {
        gap: 10px;
    }

    .iAbout_des h1 {
        margin-bottom: 0;
        line-height: 1.1;
    }

    .iAbout_des p {
        -webkit-line-clamp: 4;
    }

    .iLogobox {
        border-radius: 14px;
        padding: 12px 2px;
    }

    .indexProcess {
        padding: 80px 0;
    }

    .iProcess_content ul {
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
        word-break: break-all;
    }

    .iProcess_txt .iProcess_title h3 {
        padding: 0 15px;
        font-size: 20px;
    }


    .iFaq_main {
        padding: 80px 20px;
    }

    .iFaq_form {
        padding: 40px 30px;
    }

    .iFaq_form .yandex-form #form .list {
        margin-bottom: 10px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 14px 25px;
        font-size: 18px;
        margin-top: 16px;
    }

    .iFaq_right .accordion,
    .iFaq_right .indexTitle {
        padding-left: 5%;
    }

    .indexNews {
        padding: 75px 0;
    }

    .iNews_des .indexBtn {
        margin-top: 20px;
    }

    .iNews_des .indexBtn a i {
        font-size: 30px;
    }

    .iNews_des {
        gap: 5px;
    }

    .index_comments_fixed1 {
        width: 100px;
        top: -50px;
        height: 100px;
    }

    .index_comments_fixed1 i {
        font-size: 40px;
    }

    .index_comments_content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .index_comments_bot {
        margin-top: 40px;
    }

    .comments_bot_info h5 {
        font-size: 20px;
    }


    .footer_top ul {
        gap: 10px;
    }

.footer_nav li,
.footer_pro li{
    margin-bottom: 10px;
}


    .footer_conBox {
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer_top p,
    .footer_top a {
        font-size: 16px;
    }
}

@media (min-width:1400px) and (max-width:1680px) {
    .iPro_tab h3 {
        font-size: 24px;
    }

    .indexBtn a i {
        font-size: 48px;
    }

    .iFaq_form .yandex-form #form #submit {
        padding: 20px 50px;
    }
}