/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
ul, ol, li{
    list-style: none;
}
a{
    text-decoration: none;
}
.red{
    color: #C73119;
}
.blue{
    color: #1173D6;
}
.yellow{
    color: #FEB951;
}
h1{
    display: none;
}
.ta{
    text-align: center;
}
textarea {
    resize: none;
}
@media (min-width: 1680px) {
    .am-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 1680px;
    }
}
.am-container{
    max-width: 1680px !important;
}
.am-container:after,
.am-container:before{
    display: table;
    content: " ";
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}
header .all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .all .header-mobile-right{
    display: flex;
    align-items: center;
}
header .l {
    position: relative;
}
header .l .header-logo {
    width: 90px;
    height: 90px;
    position: relative;
}
header .l .header-logo a {
    display: flex;
    position: absolute;
    background-color: #fff;
    top: 0%;
    width: 110px;
    height: 110px;
    padding: 12px;
    border-radius: 50%;
    z-index: 10;
}
header .l .header-logo a img {
    height: 100%;
    width: auto;
}





.footer {
    background: linear-gradient(90deg, #00468D 0%, #00337D 100%); /* 深蓝背景，可调整 */
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-u{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-col {
    width: 65%;
}
.footer-logo {
    padding: 0% 0 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.fl{
    display: flex;
    align-items: center;
    padding: 0 11%;
}
.footer-logo img {
    margin-right: 4%;
}
.footer-logo h2 {
    width: 24%;
    color: #FFF;
    font-family: Arial;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}
.footer-col-content{
    display: flex;
    position: relative;
    padding: 5% 0 6% 11%;
    justify-content: space-between;
    flex-direction: row;
}
.footer-links {
    list-style: none;
    margin-top: 10px;
}
.footer-links li{
    display: flex;
    justify-content: flex-start;
    margin: 1.6em 0;
    align-items: flex-start;
}
.footer-links li i{
    padding-right: 5%;
}
.footer-links:last-child{
    width: 40%;
}
.footer-links h3 {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: .6em 0;
}
.footer-links a{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-links a:nth-child(2){
    margin: 0;
}
.footer-links:nth-child(3) li:nth-child(2) .footer-links-txt a:first-child{
    margin-bottom: 2%;
}
a.contact-btn{
    width: 173px;
    height: 43px;
    margin-top: 20%;
    padding-left: 22px;
    padding-right: 25px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
}
a.contact-btn i{
    font-size: 28px;
    margin-right: 23px;
}
a.contact-btn:hover{
    color: #0b3b8b;
    background-color: #fff;
}
/* 中间列（联系信息） */
.contact-col {
    flex: 1;
    min-width: 220px;
}
.contact-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.contact-info {
    line-height: 1.8;
    font-size: 0.95rem;
}
.contact-info p {
    margin: 6px 0;
}
.contact-info .icon {
    margin-right: 8px;
}

.form-col {
    width: 35%;
    padding: 4% 6% 2%;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.form-col h3 {
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.form-coll .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-coll .wpcf7-form p{
    margin: .4% 0;
}
.form-coll input,
.form-coll textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    border: 1px solid rgba(51, 51, 51, 0.10);
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    color: #9DA2A7;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
}
.form-coll textarea{
    resize: none;
    max-height: 150px;
}
.form-coll button {
    background-color: #fff; /* 红色按钮，可调整 */
    border: none;
    color: #A90000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    text-transform: capitalize;
    width: 180px;
    padding: 2%;
    border-radius: 26px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.form-coll button:hover {
    background-color: #e62c2c; /* hover 深色 */
    color: #fff;
}
.form-coll input::placeholder,.form-coll textarea::placeholder {
    color: #9DA2A7;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
}

/* 社交与底部信息 */
.social-follow {
    position: relative;
    margin-top: 20%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.social-follow-title{
    position: relative;
    width: 100%;
}
.social-follow-title h3{
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.social-icons {
    display: flex;
    justify-content: space-between;
}
.social-icons a {
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: all .3s;
    color: #99AFCB;
    margin-right: 30px;
}
.social-icons a:last-child {
    margin-right: 0;
}
.social-icons a:hover {
    color: #fff;
}
.social-icons a i{
    font-size: 20px;
}
.copyright {
    color: rgba(234, 234, 234, 0.60);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.bottom-links {
    font-size: 0.85rem;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.bottom-links a{
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    text-decoration: underline;
    transition: all .3s;
}
.bottom-links a:hover{
    color: #fff;
    text-decoration: none;
}
/* 响应式适配（小屏幕下堆叠） */
@media (max-width: 768px) {
    .footer-col,
    .contact-col,
    .form-col {
    min-width: 100%;        /* 小屏幕占满一行 */
    }
    .bottom-links {
    justify-content: flex-start; /* 小屏幕左对齐 */
    }
}





/* 右侧导航栏 */
.suspended-list {
    width: 46px;
    position: fixed;
    right: 0;
    top: calc(50% - 79px);
    z-index: 999;
}
.suspended-list ul {
    display: block;
    position: relative;
    padding-left: 0;
    padding: 5px 0;
    border-radius: 44px;
}
.suspended-list ul li {
    position: relative;
    width: 46px;
    height: 46px;
    margin-bottom: 5px;
    list-style: none;
}
.suspended-list ul li:last-child {
    margin: 0;
}
.suspended-list ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: rgba(112, 112, 112, 0.60);
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.suspended-list ul li a i {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}
.suspended-list ul li .qrcode {
    width: 110px;
    height: 100px;
    padding-right: 10px;
    position: absolute;
    top: -50%;
    z-index: -10;
    left: 0;
    transition: all 0.35s;
    opacity: 0;
}
.suspended-list ul li .qrcode > div {
    width: 100px;
    height: 100px;
    background-color: #C73119;
    padding: 5px;
}
.suspended-list ul li .qrcode > div img {
    width: 100%;
}
.suspended-list ul li .whatsapp-num {
    width: fit-content;
    height: 100%;
    line-height: 1.2;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: -10;
    padding-left: 10px;
    right: -385px;
    transition: all 0.35s;
    opacity: 0;
    border-radius: 30px;
    background-color: #C73119;
    padding: 0 65px 0 20px;
    white-space: nowrap;
    color: #fff;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}
.suspended-list ul li:hover {
    transition: all 0.5s;
}
.suspended-list ul li:hover .qrcode {
    left: -110px;
    opacity: 1;
    transition: all 0.35s;
}
.suspended-list ul li:hover a {
    background-color: #C73119;
}
.suspended-list ul li:hover a .ycxf_imgbox img:first-child {
    display: none;
}
.suspended-list ul li:hover a .ycxf_imgbox img:last-child {
    display: block;
    left: 15px;
}
.suspended-list ul li:hover .j_dhzs {
    left: -210px;
}
.suspended-list ul li:hover .whatsapp-num {
    right: 0;
    opacity: 1;
    transition: all 0.35s;
}













.index{
    position: relative;
    width: 100%;
}
.isc{
    position: relative;
    overflow: hidden;
}
.iscws.swiper-slide{
    overflow: hidden;
}
.page-info{
    position: absolute;
    bottom: 54px;
    left: 7.03125vw;
    max-width: 316px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-info .current-page{
    z-index: 10;
    color: #fff;
    margin: 0 18px;
}
.page-info .total-pages{
    z-index: 10;
    color: #fff;
    margin: 0 18px;
}
.index .isc .iscpa{
    width: 133px;
    position: relative;
}
.index .isc .iscpa span{
    background-color: #fff;
}
.index .isc .iscbtn-next,
.index .isc .iscbtn-prev{
    position: relative;
    color: #fff;
    margin: 0;
    width: fit-content;
    height: 32px;
}
.iscbtn-next::after,
.iscbtn-prev::after{
    content: "";
}
.index .isc .iscbtn-next{
    right: 0;
}
.index .isc .iscbtn-prev{
    left: 0;
}
.index-head{
    position: relative;
}
.ihi{
    position: relative;
    width: 100%;
}
.ihi img{
    width: 100%;
    height: 100%;
}
.ihm{
    position: absolute;
    top: 12.8125vw;
    left: 7.03125vw;
}
.ih{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.index-head-txt{
    position: relative;
}
.index-head-txt h4{
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    margin: 0;
    display: flex;
    align-items: center;
}
.index-head-txt h4::after{
    content: "";
    display: inline-block;
    width: 2px;
    height: 17px;
    flex-shrink: 0;
    background-color: #fff;
    margin-left: 12px;
}
.index-head-txt h3{
    color: #FFF;
    font-family: Arial;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 60px */
    text-transform: capitalize;
    margin: 40px 0 0;
    max-width: 930px;
}
.index-head-txt p{
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 31.5px */
    text-transform: capitalize;
    max-width: 740px;
    margin: 16px 0 0;
}
.index-head-txt-btns{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 100px;
}
.index-head-txt-btn{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */ 
    background-color: #a90000;
    padding: 9px 22px;
    border-radius: 30px;
    transition: all .3s;
}
.index-head-txt-btn:first-child{
    margin-right: 12px;
}
.index-head-txt-btn:hover{
    color: #A90000;
    background-color: #fff;
}
.index-head-bread{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #1B489C;
    text-align: center;
}
.index-head-bread p{
    color: #FFF;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0 auto;
    padding: .6%;
}

.index-main{
    position: relative;
    width: 100%;
}
.index-products{
    position: relative;
    width: 100%;
    margin: 100px 0 0;
}
.index-products-title{
    position: relative;
}
.index-products-title h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    margin: 0;
}
.index-products-title p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    margin: 6px 0 0;
}
.index-products-content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 70px 0 0;
}



.index-products-cont {
  position: relative;
  width: calc(33% - 36px);
  display: flex;
  flex-direction: column;
  margin-top: 200px;
}
.index-products-cont:nth-child(n+4) {
  margin-top: 220px;
}
.ipc {
  width: calc(100% - 91.5px);
  margin: 0 auto;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: -203px;
}
.index-product-cont-img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 308px;
  align-items: flex-end;
}
.index-product-cont-img img {
    height: fit-content;
    width: 100%;
    max-width: fit-content;
    display: block;
    object-fit: contain;
    max-height: 100%;
}
.index-product-cont-img .img-box {
  padding-bottom: 92.7%;
}
.index-products-cont:hover .index-product-cont-img img {
    transition: all .3s;
  transform: translateY(-8px);
}
.index-product-cont-txt {
  position: relative;
  width: 100%;
  padding: 0 30px 30px;
  margin-top: 10px;
  background-color: #F2F8FF;
    /* height: 216px; */
    box-sizing: border-box;
    padding-top: 130px;
}
.index-product-cont-txt h4 {
  color: #333;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 6px;
}
.index-product-cont-txt p {
  color: #1B489C;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
    text-align: center;
}

















.index-why{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 148px;
    margin-top: 94px;
}
.index-why-title{
    
}
.index-why-title h3{
    color: #FFF;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    margin: 0;
}
.index-why-title p{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 17px 0 0;
}
.index-why-content{
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}
.index-why-content-l{
    max-width: 602px;
    width: 602px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.index-why-content-l-cont{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: calc(33.333% - 13.333px);
    background: #FFF;
    padding: 25px 36px;
    transition: all .3s;
    cursor: pointer;
}
.index-why-content-l-cont:hover{
    background: linear-gradient(90deg, #1173D6 0%, #0751BC 100%);
}
.index-why-content-l-cont:hover i{
    color: #fff;
}
.index-why-content-l-cont:hover .index-why-content-l-cont-txt h3{
    color: #fff;
}
.index-why-content-l-cont:hover .index-why-content-l-cont-txt p{
    color: #fff;
}
.index-why-content-l-cont.active{
    background: linear-gradient(90deg, #1173D6 0%, #0751BC 100%);
}
.index-why-content-l-cont.active i{
    color: #fff;
}
.index-why-content-l-cont.active .index-why-content-l-cont-txt h3{
    color: #fff;
}
.index-why-content-l-cont.active .index-why-content-l-cont-txt p{
    color: #fff;
}
.index-why-content-l-cont i{
    font-size: 60px;
    margin-right: 20px;
    transition: all .3s;
}
.index-why-content-l-cont-txt{
    display: flex;
    flex-direction: column;
    transition: all .3s;
}
.index-why-content-l-cont-txt h3{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    transition: all .3s;
}
.index-why-content-l-cont-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 13px 0 0;
    transition: all .3s;
    max-width: 365px;
}
.index-why-content-r{
    width: 100%;
    max-width: 1013px;
}
.index-why-content-r-cont{
    display: none;
    width: 100%;
}
.index-why-content-r-cont.active{
    display: block;
}
.index-why-content-r-cont .img-box{
    padding-bottom: 47.1%;
}
.index-end{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 140px;
}
.index-end-title{

}
.index-end-title h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    margin: 0;
}
.index-end-title p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    max-width: 70%;
    margin: 17px 0 0;
}
.index-end-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 110px 0 0;
    
}
.index-end-cont{
    width: calc(33% - 20px);
    position: relative;
    border-radius: 15px;
    border: 2px solid #D9D9D9;
    background: #FFF;
    padding-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    transition: all .5s;
}
.index-end-cont:hover {
    top: -5px;
    border-color: #1173D6;
}
.index-end-cont:nth-child(n+4){
    margin-top: 80px;
}
.index-end-cont i{
    display: block;
    width: 70px;
    height: 70px;
    font-size: 38px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    color: #fff;
    background-color: #1173D6;
    margin-top: -40px;
}
.index-end-content .index-end-cont p{
    color: #222;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    margin: 24px 0 0;
}
.index-robust{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index-robust-title{

}
.index-robust-title h4{
    color: #FFF;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}
.index-robust-title a{
    display: flex;
    justify-content: center;
    margin: 9px 0 0;
    align-items: center;
}
.index-robust-title a span{
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Roboto;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}
.index-robust-title a .play{
    margin: 0 23px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-robust-title a .play img {
    position: relative;
    z-index: 3;
}
.line1 {
    -webkit-animation: line_animate 3s linear 0s infinite;
    animation: line_animate 3s linear 0s infinite;
    z-index: 2;
}
.line2 {
    -webkit-animation: line_animate 3s linear 1s infinite;
    animation: line_animate 3s linear 1s infinite;
    z-index: 1;
}
.line1,.line2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 50%;
    background: rgba(168, 0, 0, .7);
}
/* .line1 {
    background: rgba(168, 0, 0, .6);
}
.line2 {
    background: rgba(168, 0, 0, .3);
} */
.index-robust-content-main{
    position: relative;
    margin-top: 184px;
}
.index-robust-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(50%);
}
.index-robust-cont{
    width: calc(25% - 12.75px);
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 30px 40px 37px;
}
.index-robust-cont h3{
    font-family: Roboto;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.index-robust-cont h3 span{
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.index-robust-cont p{
    color: #333;
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 17.5px */
    text-transform: capitalize;
    margin: 10px 0 0;
    max-width: 297px;
}
.index-about{
    position: relative;
    margin: 180px 0 112px;
    display: flex;
    justify-content: space-between;
}
.index-about-content{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lai {
    width: 38.36%;
}
.iai .pic img {
    width: 100%;
}
.index-about-txt{
  max-width: 56.364%;
}
.index-about-txt h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    margin: 0;
}
.iat{
    margin-top: 33px;
}
.index-about-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin: 0;
}
.index-about-txt p:nth-child(n+2){
    margin-top: 30px;
}
.index-about-txt p span{
    color: #1173D6;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
a.index-about-txt-btn{
    display: block;
    color: #FFF;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    border-radius: 30px;
    padding: 9px 45px;
    background-color: #A90000;
    border: 1px solid #A90000;
    text-align: center;
    margin: 63px 0 0;
    width: fit-content;
    transition: all .3s;
}
a.index-about-txt-btn:hover{
    background-color: #fff;
    color: #A90000;
}
.index-about-content img{
    width: 100%;
    height: 100%;
}
.index-about-pq{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4% 0 32%;
}
.index-about-pq-title{

}
.index-about-pq-title h4{
    color: #FFF;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 27.5px */
}
.index-about-pq-title h3{
    color: #FFF;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 44px */
    margin: 2% 0 1%;
}
.index-about-pq-tit{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 73%;
}
.index-about-pq-tit-cont{
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 33px */
}
.index-about-pq-tit-cont span{
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.index-about-pq-content{
    display: flex;
    justify-content: space-between;
    border-radius: 60px;
    background-color: #fff;
    width: 33%;
    align-items: center;
    padding: 0 1%;
    margin-top: 4%;
}
.index-about-pq-cont{
    width: 19.8%;
}
.index-about-pq-cont img{
    width: 100%;
    max-width: fit-content;
}
.index-fre{
    padding-top: 5%;
    padding-bottom: 5%;
}
.index-fre-title{
    width: 55.45%;
}
.index-fre-title h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    margin: 0 0 1%;
}
.index-fre-title p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    margin: 1% 0 5%;
}
.index-fre-main{
    display: flex;
    justify-content: space-between;
    margin: 2% 0 1%;
    align-items: flex-start;
}
.index-fre-content{
    width: 55.45%;
}
.index-fre-content:last-child{
    width: 40.61%;
    aspect-ratio: 670 / 605;
}
.index-fre-main .index-fre-content:last-child .img-box {
    height: auto;
    padding-bottom: 0;
}
.index-fre-content:last-child img{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-fre-content ul{
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}
.index-fre-content ul li{
    padding: 1.7% 0;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
    width: 100%;
}
.index-fre-content ul li:first-child{
    border-top: 1px solid #e6e6e6;
}
.index-fre-content ul li:hover .index-fre-q{
    color: #1173D6;
}
.index-fre-content ul li:hover .index-fre-q span{
    background-color: #1173D6;
}
.index-fre-content ul li:hover .index-fre-a span{
    background-color: #1173D6;
}
.index-fre-content ul li.active .index-fre-q{
    color: #1173D6;
}
.index-fre-content ul li.active .index-fre-q span{
    background-color: #1173D6;
}
.index-fre-content ul li.active .index-fre-a span{
    background-color: #1173D6;
}
.index-fre-content ul li.active .index-fre-a{
    display: flex;
    height: 100%;
}
.index-fre-q{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: capitalize;
    display: flex;
    transition: all .3s;
}
.index-fre-q span{
    display: block;
    color: #FFF;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    background-color: #333;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
    margin-right: 2.4%;
    transition: all .3s;
    flex: none;
}
.index-fre-a{
    height: 0;
    overflow: hidden;
    display: none;
    transition: all .5s;
}
.index-fre-a span{
    color: #FFF;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    width: 30px;
    height: 30px;
    background-color: #1173D6;
    border-radius: 50%;
    line-height: 28px;
    margin: 1.7% 2.4% 0 0;
    transition: all .3s;
}
.index-fre-a-content{
    width: 80%;
    margin-top: 1.7%;
}
.index-head-img{
    position: relative;
    max-width: 553px;
    width: 553px;
    margin-left: 66px;
    aspect-ratio: 553 / 531;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-head-img .img-box{
    padding-bottom: 0;
    height: auto;
}
.index-fre-a-content p{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    text-transform: capitalize;
    margin: 0;
}
.index-fre-content .img-box{
    padding-bottom: 89%;
}
.index-new{
    position: relative;
}
.index-new-title{

}
.index-new-title h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    text-align: center;
}
.index-new-title p{
    color: #666;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    text-transform: capitalize;
}
.index-new-content{
    display: flex;
    justify-content: space-between;
    margin-top: 2%;
}
.index-new-cont{
    width: calc(33% - 24.6px);
}
.index-new-cont:hover .index-new-cont-txt h4{
    color: #1173D6;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}
.it{
    background: #F9F9F9;
    position: relative;
}
.itt h3{
    color: #333;
    text-align: center;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    margin: 6% 0 0;
}
.itt p{
    color: #666;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    margin: 1% auto;
    width: 75%;
}
.iti{
    position: relative;
    margin: 1% 0 0;
}
.itic{
    height: fit-content;
}
.itic:nth-child(2n-1){
    margin-left: -8%;
}
.itic .slick-slide{
    max-width: 380px;
}
.itict{
    max-width: 370px;
    max-height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 4px 5.6px 0 rgba(51, 51, 51, 0.15);
    padding: 4% 10%;
    margin: 1% 0;
}
.itict .img-box{
    padding-bottom: 40%;
}
.index-new-cont-img img{
    width: 100%;
    height: 100%;
}
.index-new-cont-txt{
    margin-top: 32px;
}
.index-new-cont-txt h4{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    text-transform: capitalize;
    margin: 0 0 4%;
    transition: all .3s;
}
.inctt{
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 12%;
}
.inctt p{
    color: #666;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 26.25px */
    text-transform: capitalize;
    margin: 0;
}
.inctt span{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    display: flex;
    align-items: center;
}
.inctt i{
    font-size: 21px;
    margin-right: 3%;
}
.index-un{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4%;
    margin-top: 4%;
}
.index-un-title{

}
.index-un-title h3{
    color: #FFF;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 27.5px */
}
.index-un-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-un-txt{

}
.index-un-txt h3{
    color: #FFF;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 44px */
}
.index-un-txt p{
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.index-un-btn{
    margin-left: 30px;
}
.index-un-btn a{
    color: #1173D6;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 7% 0;
    width: 204px;
    height: 52px;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-un-btn a:hover{
    color: #fff;
    background-color: #1173D6;
}

.contact{
    position: relative;
}
.contact-head{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12% 0;
}
.contact-head .am-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-head-title{
    position: relative;
    padding-top: 3%;
}
.contact-head-title-content{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 13.5%;
}
.contact-head-title-cont{
    display: flex;
    flex-direction: column;
}
.contact-head-title-cont span{
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Roboto;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-align: right;
    margin: 0 0 5%;
}
.contact-head-title-cont p{
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 33px */
    text-transform: capitalize;
    margin: 0;
}
a.contact-head-title-cont {
    margin: 0 1% 0 2.6%;
    width: fit-content;
}
a.contact-head-title-cont .play{
    margin: 0 23px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.contact-head-title-cont .play img {
    position: relative;
    z-index: 3;
}
a.contact-head-title-cont img{
    width: fit-content;
}
.contact-head-main{
    position: relative;
    width: 100%;
    padding: 4% 0 0;
}
.contact-head-content{
    width: 100%;
    position: absolute;
    top: 190px;
    left: 0;
    display: flex;
    justify-content: space-between;
}
.contact-head-cont{
    box-shadow: 0 4px 25.3px 0 rgba(0, 0, 0, 0.10);
    width: calc(25% - 12.75px);
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 1% 2% 2%;
}
.contact-head-cont h3{
    font-family: Roboto;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 4% 0;
}
.contact-head-cont h3 span{
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.contact-head-cont p{
    color: #333;
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 17.5px */
    text-transform: capitalize;
}
.contact-main{
    position: relative;
}
.contact-about{
    padding-top: 8%;
    
}
.contact-about-title{

}
.contact-about-title h4,
.contact-enginee-title h4
{
    display: flex;
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    text-transform: capitalize;
    align-items: center;
}
.contact-company-title h4{
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.contact-about-title h4::after,
.contact-company-title h4::after,
.contact-enginee-title h4::after{
    content: "";
    width: 2px;
    height: 17px;
    background-color: #C73119;
    flex-shrink: 0;
    margin-left: 1%;
}
.contact-about-title h3,
.contact-enginee-title h3{
    color: #000;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 1.6% 0 0;
    width: 45%;
}
.contact-company-title h3{
    color: #fff;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 1.6% 0 0;
    width: 45%;
}
.contact-about-title h3 span{
    color: #0F3D82;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
}
.contact-about-txt{
    margin-top: 3%;
}
.contact-about-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    margin: 2% 0;
}
.contact-company{
    margin-top: 10%;
    position: relative;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-company-img{
    display: flex;
    justify-content: space-between;
    margin-top: -6%;
    position: relative;
}
.contact-company-img img{
    width: 60%;
    position: relative;
    z-index: 2;
}
.contact-company-img img:last-child{
    width: 40%;
}
.contact-company-img .model {
    position: absolute;
    width: 100%;
    bottom: -7px;
    left: -7px;
    background: rgba(255, 255, 255, 0.50);
    height: 62.138%;
    padding: 7px;
    box-sizing: content-box;
}
.contact-company-title{
    margin-top: 4%;
}
.contact-company-content{
    display: flex;
    margin: 4% 0 8%;
    justify-content: space-between;
}
.contact-company-cont{
    display: flex;
    flex-direction: column;
    width: calc(25% - 53.25px);
}
.contact-company-cont span{
    display: block;
    color: #FFF;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    width: 60px;
    height: 60px;
}
.contact-company-cont h3{
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 30px */
    text-transform: capitalize;
    margin: 6% 0;
}
.contact-company-cont-txt{

}
.contact-company-cont-txt p{
    color: rgba(255, 255, 255, 0.70);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin: 0;
}
.contact-company-cont-txt ul{
    margin: 0;
}
.contact-company-cont-txt h4{
    color: rgba(255, 255, 255, 0.70);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin: 0;
}
.contact-company-cont-txt ul li{
    list-style: disc;
}
.contact-company-cont-txt li{
    list-style: disc;
}
.contact-company-cont-txt li::marker{
    margin: 0;
}
.contact-company-cont-txt li p{
    display: inline;
    color: rgba(255, 255, 255, 0.70);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.contact-company-cont-txt li::marker{
    color: rgba(255, 255, 255, 0.70);
}
.contact-company-cont-txt ul li::marker{
    color: rgba(255, 255, 255, 0.70);
}
.contact-company-cont-txt ul li p{
    color: rgba(255, 255, 255, 0.70);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.contact-enginee{
    padding-top: 4%;
    padding-bottom: 4%;
}
.contact-enginee-title{
    position: relative;
}
.contact-enginee-title h4{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
}
.contact-enginee-content{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 4%;
    width: 95%;
}
.contact-enginee-content-line{
    width: 95%;
    position: absolute;
    padding: 1px 0 0;
    background-color: #0F3D82;
    top: 47%;
    left: 0;
    z-index: 1;
}
.contact-enginee-cont{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.contact-enginee-cont span{
    color: #0F3D82;
    font-family: Arial;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.contact-enginee-cont i{
    font-size: 60px;
    width: 120px;
    height: 120px;
    border: 1px solid #0F3D82;
    border-radius: 50%;
    color: #0F3D82;
    margin: 20px 0 0;
    text-align: center;
    line-height: 120px;
    background-color: #fff;
    transition: all .3s;
}
.contact-enginee-cont:hover i{
    color: #fff;
    background-color: #0F3D82;
}
.contact-enginee-cont-txt{
    margin: 20px 0 0;
}
.contact-enginee-cont p{
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    text-transform: capitalize;
    margin: 0;
    cursor: default;
}
.contact-enginee-un{
    background: #F9F9F9;
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
    padding: 3%;
    align-items: center;
}
.contact-enginee-un-txt{
    width: 58%;
}
.contact-enginee-un-txt h3{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
}
.contact-enginee-un-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.contact-enginee-un-btn{
    
}
.contact-enginee-un-btn a{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    text-transform: capitalize;
    background-color: #A90000;
    border: 1px solid #A90000;
    padding: 2%;
    border-radius: 30px;
    transition: all .3s;
    width: 307px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-enginee-un-btn a:hover{
    background-color: #fff;
    color: #A90000;
}
.contact-un{
    position: relative;
    display: flex;
    margin: 6% 1% 4%;
    justify-content: space-between;
    align-items: stretch;
}
.contact-un-cont{
    border: 1px solid #E9E9E9;
    width: calc(14.3% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-un-cont img {
    max-width: fit-content;
    width: 90%;
}

.factory{
    position: relative;
}
.factory-head{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8% 0 8%;
}
.factory-head-title{
    position: relative;
}
.factory-head-title h3{
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Arial;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 86.957% */
}
.factory-head-title p{
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 22.5px */
}
.factory-head-btns{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 2%;
}
a.factory-head-btn{
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #A90000;
    padding: .8% 1.6%;
    border-radius: 30px;
    margin-right: 1%;
    transition: all .3s;
}
a.factory-head-btn:hover{
    color: #A90000;
    background-color: #fff;
}
.head-bread{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.head-bread-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #000;
    opacity: .4;
}
.head-bread-txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: .2% 0;
    width: 100%;
}
.head-bread-txt i{
    font-size: 16px;
    color: #fff;
}
.head-bread-txt i.arrow-l{
    font-size: 10px;
}
.bread-word{
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 .5%;
}
.bread-word:hover{
    color: #fff;
}
.bread i{
    color: #333;
    font-size: 16px;
}
.bread i.arrow-l{
    font-size: 10px;
}
.bread .bread-word{
    color: #333;
}
.bread .bread-word:hover{
    color: #333;
}
.factory-main{
    position: relative;
}
.factory-box{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.factory-box:nth-child(2n){
    flex-direction: row-reverse;
}
.factory-txt{
    width: 50%;
    padding: 4% 5.7%;
}
.factory-txt h3{
    color: #333;
    font-family: Arial;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 37.5px */
}
.box-line{
    position: relative;
    display: flex;
    width: 70%;
    height: 3px;
    background: rgba(17, 115, 214, 0.20);
}
.box-line span{
    display: block;
    width: 11%;
    background-color: #1173D6;
    height: 3px;
}
.factory-txt p{
    color: #666;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin: 4% 0;
}
.factory-txt ul{
    list-style: none;
}
.factory-txt ul li{
    list-style: disc;
}
.factory-txt ul li p{
    color: #666;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin: 0;
}
.factory-img{
    width: 50%;
}
.factory-img img{
    width: 100%;
}

.t{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10% 0 4%;
}
.t .am-container{
    display: flex;
    justify-content: flex-start;
}
.h{
    width: 56%;
    margin-right: 6%;
}
.t-i{
    width: 36%;
}
.t-t{
    position: relative;
}
.t-t h3{
    color: #333;
    font-family: Arial;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 60px */
    text-transform: capitalize;
    margin: 2% 0;
}
.t-t p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    margin: 0;
}
.t-btns{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 6%;
}
a.t-btn{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    padding: 1% 2.8%;
    border-radius: 30px;
    background-color: #a90000;
    margin-right: 2%;
    transition: all .3s;
}
a.t-btn:hover{
    color: #A90000;
    background-color: #fff;
}
.main{
    position: relative;
}
.p-box{
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.00) -35.39%, #F4F9FF -2.07%, #C5D5E8 97.88%);
    position: relative;
}
.mt6{
    margin-top: 6% !important;
}
.mt4{
    margin-top: 4% !important;
}
.mt3{
    margin-top: 3% !important;
}
.mt2{
    margin-top: 2% !important;
}
.p-box h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    margin: 2% 0 1%;
}
.w58{
    width: 58%;
}
.w60{
    width: 60%;
}
.w80{
    width: 80%;
}
.p-box p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    margin: 1% 0;
}
.box{
    margin-top: 4%;
    padding: 1% 0;
}
.b-prev,
.b-next {
    border: 1px solid #1173D6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 56%;
    transition: all .3s;
}
.b-prev:hover{
    background-color: #1173D6;
    color: #fff;
}
.b-next:hover{
    background-color: #fff;
    color: #1173D6;
}
.b-prev{
    background-color: #fff;
    color: #1173D6;
    left: 3%;
}
.b-next{
    background-color: #1173D6;
    color: #fff;
    right: 3%;
}
.p-box .b-prev::after,
.p-box .b-next::after{
    font-size: 16px;
}
.p-m-swiper{
    max-height: 460px;
}
.p-msilde{
    position: relative;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
}
.p-msilde:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.p-msilde:hover .st{
    border-top: 0;
    margin-top: 0px;
}
.p-msilde:hover .st h3{
    border: 0;
    color: #1173D6;
}
.p-msilde:hover .st p{
    height: auto;
    margin-top: 6px;
}
.lb{
    border-radius: 4px;
    background: rgba(217, 217, 217, 0.15);
    height: 0;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.lb a{
    color: #999;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 18.75px */
    text-transform: capitalize;
    transition: all .3s;
}
.lb a:nth-child(n+2){
    margin-top: 14px;
}
.lb a:hover{
    color: #0F3D82;
}
.p-msi{
    position: relative;
    width: 100%;
}
.p-msi img{
    position: relative;
    width: 100%;
}
.st{
    position: absolute;
    z-index: 10;
    bottom: 0%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 16px 20px;
    transition: all .3s;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
}
.st h3{
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 22.5px */
    text-transform: capitalize;
    transition: all .3s;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.st p{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 17.5px */
    text-transform: capitalize;
    transition: all .3s;
    overflow: hidden;
    margin: 0;
    height: 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.pb6{
    padding-bottom: 6%;
}
.pb5{
    padding-bottom: 5%;
}
.pb4{
    padding-bottom: 4%;
}
.pb3{
    padding-bottom: 3%;
}
.c-box{
    position: relative;
}
.c-box h4{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.c-box h4::after{
    content: "";
    width: 2px;
    height: 17px;
    background-color: #C73119;
    margin-left: 1%;
}
.c-box h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    margin: 0;
}
.c-box p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
}
.p-box h4{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.p-box h4::after{
    content: "";
    width: 2px;
    height: 17px;
    background-color: #C73119;
    margin-left: 1%;
}
.box-f{
    display: flex;
    justify-content: space-between;
    margin: 3% 0 2%;
}
.boxcont{
    position: relative;
    width: 32.12%;
    background: #F0F0F0;
    transition: all .3s;
    overflow: hidden;
}
.boxcont:hover{
    background: #1173D6;
}
.boxcont:hover p{
    color: #fff;
}
.boxcont:hover .boxconti img{
    transform: scale(1.1);
}
.boxcont .boxconti{
    position: relative;
    overflow: hidden;
}
.boxconti img{
    position: relative;
    width: 100%;
    transition: all .3s;
    z-index: 1;
}
.boxcont p{
    position: relative;
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    padding-left: 4%;
    transition: all .3s;
    z-index: 10;
    margin: 2% 0;
}
.box-hf{
    display: flex;
    justify-content: space-between;
}
.box-hf .boxcont{
    width: calc(50% - 15px);
}
.table{

}
.table table{
    text-align: center;
}
.table tr{
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.table th{
    background: #1173D6;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    padding: 4% 30px;
    border: 1px solid #418FDE;
}
.table td{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 35px */
    text-transform: capitalize;
    padding: 4% 30px;
    border: 1px solid #e9e9e9;
}
.p-boxtxt{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 65%;
}
.m0{
    margin: 0;
}
.p-gbox{
    background: rgba(255, 255, 255, 0.50);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 4%;
    padding: 1% 0% 4% 3%;
}
.p-gboxcont{
    display: flex;
    justify-content: flex-start;
    width: 49%;
    align-items: center;
    margin-top: 3%;
}
.p-gboxcont i{
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: #1173D6;
    color: #fff;
    font-size: 38px;
    border-radius: 50%;
    margin-right: 4%;
    text-align: center;
}
.p-gtxt{

}
.p-gtxt p{
    color: #333;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
}
a.p-boxbtn{
    color: #FFF;
    background-color: #1173D6;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    border-radius: 30px;
    padding: 1% 2.4%;
    width: 353px;
    height: 54px;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.p-boxbtn:hover{
    color: #1173D6;
    background-color: #fff;
}
a.p-boxbtn i{
    font-size: 32px;;
}
.p-box-img{
    width: 33%;
}
.p-box-img img{
    width: 100%;
}
.box-f{
    display: flex;
    justify-content: space-between;
}
.boxcont-f{
    width: calc(25% - 22.5px);
}
.boxcont-f img{
    width: 100%;
}
.boxcont-f p{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    text-transform: capitalize;
}
.c{
    display: flex;
    justify-content: space-between;
}
.prod .t{
    padding: 13% 0;
}
.prod .c-box h4{
    color: #333;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 27.5px */
}
.prod .c-box h3{
    margin: 2% 0 1%;
}
.prod .c-box p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
    text-transform: capitalize;
}

.prod .l{
    width: 21%;
}
.prod .l h5{
    border-radius: 4px;
    background: linear-gradient(90deg, #1173D6 0%, #0751BC 100%);
    color: #FFF;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 25px */
    text-transform: capitalize;
    padding: 3% 6%;
    margin: 0;
}
.prod .l ul{
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.prod .l li{
    margin-bottom: 4%;
}
.prod .l li>a{
    position: relative;
    display: block;
    border-radius: 4px;
    background: #EFEFEF;
    padding: 4% 6%;
    color: #333;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 20px */
    text-transform: capitalize;
}
.prod .l li>a::before{
    content: '';
    width: 3px;
    height: 0px;
    background-color: #1173D6;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    transition: all .35s;
}
.prod .l li:hover>a{
    border-radius: 4px;
    background: rgba(17, 115, 214, 0.20);
}
.prod .l li:hover>a::before{
    height: 50%;
}
.prod .l li:hover .lb{
    padding: 18px;
    margin-top: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
}

.prod .l li.active>a{
    border-radius: 4px;
    background: rgba(17, 115, 214, 0.20);
}
.prod .l li.active>a::before{
    height: 50%;
}
.prod .l li.active .lb{
    padding: 18px;
    margin-top: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
}
.prod .r{
    position: relative;
    width: 74%;
}
.rm{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.rmp{
    position: relative;
    margin-top: 60px;
}
.rmp .wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
}
.rmp .wp-pagenavi .pages,
.rmp .wp-pagenavi .last{
    display: none;
}
.rmp .wp-pagenavi .page{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    margin: 0 10px;
}
.rmp .wp-pagenavi .current{
    width: 40px;
    height: 40px;
    background-color: #0F3D82;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    margin: 0 10px;
}
.rmp .wp-pagenavi .previouspostslink,
.rmp .wp-pagenavi .nextpostslink{
    opacity: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #000000;
    text-align: center;
    line-height: 40px;
}
.rmp .wp-pagenavi .previouspostslink::after,
.rmp .wp-pagenavi .nextpostslink::after{
    content: "";
    opacity: 1;
    display: block;
    font-family: '\e655';
}
.rmp .wp-pagenavi .previouspostslink::after{
    transform: rotate(180deg);
}
.rmp .wp-pagenavi .previouspostslink{
    margin-right: 20px;
}
.rmp .wp-pagenavi .nextpostslink{
    margin-left: 20px;
}
.rm .rmi{
    width: 31.15%;
    margin-right: 3.27%;
    margin-bottom: 60px;
}
.rm .rmi:nth-child(3n) {
    margin-right: 0;
}
.rm .p-msilde{
    box-sizing: border-box;
    padding-bottom: 21%;
}
.rm .p-msilde .p-msi .img-box{
    padding-bottom: 100%;
}
.prod .p-msilde .st h3{
    margin: 0;
}
.p-msilde .st h3{
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 22.5px */
    text-transform: capitalize;
    overflow: hidden;
}
.p-msilde .st p{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 17.5px */
    text-transform: capitalize;
}
.l-u .wpcf7{

}
.l-u .wpcf7-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.l-u .wpcf7-form p{
    width: 48%;
    margin: 2% 0;
}
.l-u input.wpcf7-text{
    width: 100%;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    padding: 4% 2% 4% 10%;
    background: #FFF;
    outline: none;
}
.l-u textarea.wpcf7-textarea{
    width: 100%;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 2% 2% 2% 4%;
    max-height: 88px;
    resize: none;
    outline: none;
}
fieldset{
    display: none;
}
.l-u .wpcf7-form p:nth-child(6){
    width: 100%;
}
.l-u .wpcf7-form button{
    padding: 8% 4%;
    color: #FFF;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 32px;
    background: #A90000;
    border: 1px solid #A90000;
    outline: none;
    width: 90%;
    transition: all .3s;
}
.l-u .wpcf7-form button:hover{
    color: #A90000;
    background: #fff;
}
.l-u .wpcf7-form button i{
    font-size: 14px;
}

.main .d{
    display: flex;
    justify-content: space-between;
}
.di{
    width: 48.49%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.dt {
    width: 47.88%;
    max-width: none;
}
.di .img-box{
    padding-bottom: 100%;
}
.dt{
    max-width: 790px;
}
.dtit>div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.dtit h1{
    color: #000F2C;
    font-family: Arial;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 45px */
    text-transform: capitalize;
    display: block;
    text-indent: -18px;
    padding-left: 18px;
    margin: 0;
}
.dtit h1::before{
    content: "";
    display: inline-block;
    width: 4px;
    height: 26px;
    background-color: #1173D6;
    margin-right: 16px;
}
.dtit p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    margin: 15px 0 0;
}
.dtxt h4{
    color: #333;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    text-transform: capitalize;
}
.dtxt ul li{
    list-style: disc;
    margin: 2% 0;
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}
.dtxt ul li::marker{
    color: #A90000;
}
.dbtns{
    display: flex;
    justify-content: flex-start;
}
a.dbtn{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    padding: 1% 4%;
    background-color: #A90000;
    transition: all .3s;
    margin: 2% 0 4%;
    margin-right: 2%;
    border: 1px solid #a90000;
}
a.dbtn:last-child{
    color: #A90000;
    background-color: #fff;
}
a.dbtn:hover{
    color: #A90000;
    background-color: #fff;
}
a.dbtn:last-child:hover{
    color: #FFF;
    background-color: #A90000;
}
.l-u{
    margin-top: 70px;
}
.aaa{
    position: relative;
    background: #F0F0F0;
    padding: 15px 55px;
}
.dts{
    max-height: 150px;
    overflow: hidden;
}
.anext,
.aprev{
    color: #8A8A8A;
}
.anext::after,
.aprev::after{
    font-size: 24px;
}
/* .dts .disld .img-box{
    padding-bottom: 100%;
} */
.dts .disld img {
    width: 100%;
}
.dts-wrap{
    height: 120px;
}
.dts .disld{
    cursor: pointer;
    max-width: 120px;
    max-height: 120px;
}
.pd-m{
    display: flex;
    justify-content: space-between;
}
.pd-mcont{
    position: relative;
    width: calc(25% - 32.25px);
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid #1173D6;
    padding: 6% 0;
    transition: all .3s;
}
.pd-mcont::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/detail-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s;
}
.pd-mcont:hover::after{
    opacity: 1;
}
.pd-mcont:hover .b-line{
    background-color: #fff;
}
.pd-mcont:hover .pd-mtxt p{
    color: #fff;
}
.pd-mcont:hover i{
    border-color: #fff;
    color: #fff;
}
.pd-mcont i{
    position: relative;
    z-index: 10;
    border: 1px solid #9DA2A7;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 78px;
    font-size: 56px;
    transition: all .3s;
}
.b-line{
    position: relative;
    padding: 2px;
    background-color: #1173D6;
    width: 10%;
    margin: 4% 0;
    transition: all .3s;
    z-index: 10;
}
.pd-mtxt{
    position: relative;
    z-index: 10;
}
.pd-mtxt p{
    color: #333;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 25px */
    text-transform: capitalize;
    margin: 2% 0;
}

.pd-box{

}
.pd-box h3{
    display: block;
    position: relative;
    color: #000F2C;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: capitalize;
    width: fit-content;
}
.pd-box h3>div{
    position: relative;
    z-index: 10;
}
.pro-detail .pd-box>h3::after{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 14%;
    height: 8px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #1173D6 0%, #FFF 100%);
}
.pd-txt{
    margin-top: 2%;
}
.pd-txt p{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
    text-transform: capitalize;
}
.pd-txt ul{

}
.pd-txt ul li{
    list-style: disc;
    margin: 1% 0;
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-transform: capitalize;
}
.pd-txt ul li::marker{
    color: #A90000;
}
.pd-txt ul li p{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-transform: capitalize;
    margin: 0;
}
.pd-table{
    position: relative;
    overflow: hidden;
    overflow-x: auto;
}
.pd-table table{
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}
.pd-table tr{
    
}
.pd-table th{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    text-align: center;
    border: 1px solid #000;
    padding: 5px 30px;
}
.pd-table td{
    color: #333;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    border: 1px solid #000;
    padding: 5px 20px;
}
.pro-detail .pd-f .pd-fcont:hover img{
    transform: scale(1.1);
}
.pd-f{
    display: flex;
    justify-content: space-between;
}
.pd-fcont{
    position: relative;
    width: calc(25% - 32.25px);
}
.pd-fcont .img-box{
    padding-bottom: 70%;
}
.pd-f .p-msilde{
    width: calc(25% - 32.25px);
    padding-bottom: 5.7%;
}
.pdf-txt{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.73);
    z-index: 10;
}
.pdf-txt h4{
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 22.5px */
    text-transform: capitalize;
    text-align: center;
    margin: 2% 0;
}
.img-box {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    height: 0;
    padding-bottom: 100%;
}
.img-box img {
    display: block;
}

.service{
    position: relative;
}
.sh{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8% 0;
}
.sht{
    position: relative;
}
.sht h3{
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Roboto;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 86.957% */
}
.sht p{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.s-box{
    position: relative;
    background: #F8F8F8;
}
.s-box h4{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.s-box h4::after{
    content: "";
    width: 2px;
    height: 17px;
    background-color: #C73119;
    margin-left: 1%;
}
.s-box h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    margin: 1% 0 0%;
}
.s-box p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 28px */
}
.s-box .box-f{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.s-box .boxcont{
    margin-bottom: 2%;
}
.s-box .boxcont>div{
    position: absolute;
    width: 88.68%;
    left: 0;
    right: 0;
    margin: auto;
    top: 59.61%;
}
.s-box .boxcont h3{
    position: relative;
    z-index: 10;
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}
.s-box .boxcont p{
    position: relative;
    z-index: 10;
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    margin: 2% 0;
}
.s-box .boxcont img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.ac-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3%;
}
.ac-box .boxcont{
    width: calc(25% - 22.5px);
    margin-bottom: 2%;
    overflow: hidden;
}
.ac-box .boxcont img{
    width: 100%;
    height: 100%;
    transition: all .3s;
}
.ac-box .boxcont:hover img{
    transform: scale(1.1);
}
.s-boxx{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4% 0;
}
.s-box-txt{
    width: 50%;
}
.s-box-txt h3{
    color: #000;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}
.s-box-txt p{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    width: 95%;
    margin-bottom: 30px;
}
.s-box-txt ul{

}
.s-box-txt ul li{
    list-style: disc;
    margin: 0;
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 31.5px */
}
.s-box-txt ul li p{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 31.5px */
    margin: 0;
}
.s-box-img{
    width: 41.82%;
}
.s-box-img .img-box{
    padding-bottom: 88%;
}
a.s-box-btn{
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    padding: 2%;
    background-color: #a90000;
    border: 1px solid #A90000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 246px;
    height: 52px;
    margin-top: 8%;
    transition: all .3s;
}
a.s-box-btn i{
    margin-left: 4%;
}
a.s-box-btn:hover{
    color: #a90000;
    background-color: #fff;
}
.w{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6% 0;
}
.wi{
    width: 43.03%;
}
.wi .img-box{
    padding-bottom: 76.5%;
}
.wt{
    width: 50%;
}
.wt h3{
    color: #000;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}
.wt p{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.wt ul{
    margin-top: 4%;
}
.wt ul li{
    list-style: disc;
    margin: 0;
}
.wt ul li p{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 36px */
    margin: 0;
}

.news{
    position: relative;
}
.newst{
    position: relative;
     background: #FFF;
    box-shadow: 0 9px 40.8px 0 rgba(0, 0, 0, 0.05);
}
.nswiper{
    position: relative;
    padding: 5% 0;
    width: 1410px;
    margin: auto;
}
.nswiper.slick-initialized .slick-slide{
    height: fit-content;
}
.nswiper .slick-prev,
.nswiper .slick-next{
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #a90000;
    transition: all .3s;
    transform: translateY(-50%);
}
.nswiper .slick-prev{
    left: -7%;
    background-color: #a90000;
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}
.nswiper .slick-next{
    right: -7%;
    background-color: #fff;
    color: #a90000;
}
.nswiper .slick-prev::after{
    content: "\e655";
    font-family: "iconfont";
    font-size: 16px;
}
.nswiper .slick-next::after{
    content: "\e655";
    font-family: "iconfont";
    font-size: 16px;

}
.nswiper .slick-prev:hover{
    background-color: #fff;
    color: #a90000;
}
.nswiper .slick-next:hover{
    background-color: #a90000;
    color: #fff;
}
.nslide{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nslide .ni{
    width: 41.28%;
}
.nslide .nt{
    width: 55.89%;
}
.nslide .ni .img-box{
    padding-bottom: 50%;
    aspect-ratio: 582 / 285;
}
.img-box img {
    width: 100%;
}
.nslide .nt span{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.nslide .nt span i{
    margin-right: 1%;
}
.nslide .nt h3{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%; /* 42px */
    text-transform: capitalize;
    margin: 3% 0 1%;
}
.nslide .nt p{
    color: #666;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
a.nt-btn{
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    text-transform: capitalize;
    background-color: #a90000;
    border: 1px solid #a90000;
    padding: 1% 2%;
    transition: all .3s;
    margin: 5% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 50px;
    outline: none;
}
a.nt-btn:hover{
    background-color: #fff;
    color: #a90000;
}
.nmain{
    position: relative;
}
.ncontent{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1410px;
    margin: auto;
}
.ncont{
    width: calc(33% - 20px);
    margin-bottom: 2%;
}
.ncont:hover .nt h3{
    color: #1173D6;
}
.ncont:hover .nt span i{
    color: #0F3D82;
}
.ncont .ni{
    width: 100%;
}
.ncont .ni .img-box{
    padding-bottom: 48%;
}
.ncont .nt{
    margin-top: 4%;
}
.ncont .nt h3{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    text-transform: capitalize;
    width: 90%;
    transition: all .3s;
}
.ncont .nt p{
    color: #666;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 20px */
    width: 90%;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 4; 
    overflow: hidden; 
}
.ncont .nt span{
    color: #666;
    font-family: "Roboto Flex";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.ncont .nt span i {
    font-size: 18px;
    transition: all .3s;
    margin-right: 1%;
}


.about{
    position: relative;
}
.about .sh .sht{
    opacity: 0;
}
.aline{
    position: relative;
    background-color: #fff;
    height: 5%;
}
.alr{
    position: relative;
    height: 100%;
}
.alpr{
    opacity: 0;
}
.abox{
    position: absolute;
    width: 760px;
    height: 210px;
    right: 0;
    bottom: 20px;
    background-color: #fff;
}
.al-main{
    position: absolute;
    background-color: #0F3D82;
    width: 42%;
    right: 2%;
    top: -160px;
    z-index: 10;
    padding-top: 3.4375vw;
    padding-left: 2.34375vw;
    padding-right: 2.34375vw;
    padding-bottom: 4.167vw;
}
.al-main h3{
    color: #FFF;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    text-transform: uppercase;
}
.almt{

}
.almt p{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
}
.almtu{
    margin-top: 8%;
}
.almtu p{
    color: #FFF;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 26.25px */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.almtu p svg{
    margin-right: 1.67vw;
}
.almtu p span{
    margin-right: 4%;
    flex: 1;
}
.almtu p:first-child span{
    flex: none;
}
.a-c{
    position: relative;
    background-color: #F8F8F8;
}
.a-ct{
    width: 54%;
}
.a-ct h3{
    color: #333;
    font-family: Arial;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    width: 60%;
}
.a-ct h4{
    color: #A90000;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 36px */
    text-transform: capitalize;
    margin: 4% 0 0;
}
.a-ct p{
    color: #333;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    text-transform: capitalize;
    margin: 0;
}
.a-cf{
    width: 54%;
}
.a-cf .wpcf7-form{
    display: flex;
    flex-direction: column;
}
.a-cf .wpcf7-form>p{
    margin: .2% 0;
}
.a-cf input.wpcf7-text,
.a-cf .wpcf7-textarea{
    border: 1px solid rgba(51, 51, 51, 0.10);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2% 2%;
    width: 100%;
    outline: none;
    color: #9DA2A7;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
}
.a-cf input.wpcf7-text::placeholder,.a-cf .wpcf7-textarea::placeholder {
    color: #9DA2A7;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
}
.a-cf .wpcf7-textarea{
    resize: none;
    max-height: 150px;
}
.a-cf button{
    display: block;
    width: 18%;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%; /* 24.5px */
    text-transform: capitalize;
    border: 1px solid #a90000;
    background-color: #a90000;
    color: #fff;
    padding: 1% 2%;
    transition: all .3s;
    outline: none;
    margin: 2% 0;
}
.a-cf button:hover{
    background-color: #fff;
    color: #a90000;
}
.a-p{
    position: relative;
    padding: 4% 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.apt{
    position: relative;
}
.apt h3{
    color: #333;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    width: 95%;
    margin: 0;
}
.apt h4{
    color: #A90000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%; /* 31.5px */
    text-transform: capitalize;
    margin: 3% 0 2%;
}
.aptt{
    color: #333;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    text-transform: capitalize;
}
.aptt p{
    color: #333;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    text-transform: capitalize;
    margin: 0;
}
.aptt p span{
    text-decoration: underline;
}
.ap-map{
    width: 50%;
    margin-left: 2%;
    height: 550px;
    max-height: 600px;
}
.ap-map iframe{
    position: relative;
    width: 100%;
    height: 100%;
}



.single-news{
    position: relative;
    background-color: #F3F4F5;
}
.single-news-btn{
    position: relative;
}
.single-news-btn a{
    display: block;
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background-color: #164397;
    padding: .4% 1%;
    width: 12%;
    margin: 2% 0;
    border: 1px solid #164397;
    transition: all .3s;
}
.single-news-btn a:hover{
    background-color: #FFF;
    color: #164397;
}
.single-news-main{
    display: flex;
    justify-content: space-between;
    padding: 0 0 8%;
}
.single-news-main-l{
    background: #FFF;
    width: 68%;
    padding: 2%;
    margin-top: 70px;
}
.single-news-main-l-title{
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 50px;
}
.single-news-main-l-title h2{
    color: #333;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 39.2px */
    margin: 0;
}
.single-news-main-l-title h3{
    color: #333;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 39.2px */
    margin: 0;
}
.single-news-main-l-title-txt{
    display: flex;
    justify-content: space-between;
    padding: 1% 0;
}
.single-news-main-l-tit{

}
.single-news-main-l-tit span{
    color: #A1A1A1;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}
.single-news-main-l-btns{

}
.single-news-main-l-btns span{
    color: #A1A1A1;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}
.single-news-main-l-main{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 30px;
}
.single-news-main-l-u{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 30px;
    border-left: 2px solid #1B489C;
    padding-left: 1%;
}
.single-news-main-l-u a{
    color: #666;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.single-news-main-l-u a span{
    color: #333;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.single-news-main-r{
    position: relative;
    width: 27%;
}
.single-news-main-r-t{
    background: #FFF;
    padding: 6%;
}
.single-news-main-r-t h3{
    display: block;
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 6%;
    padding: 0 0 6%;
    border-bottom: 1px solid #d9d9d9;
}
a.single-news-main-r-t-btn{
    display: block;
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 4% 6%;
    transition: all .3s;
}
a.single-news-main-r-t-btn i{
    font-size: 18px;
    color: #fff;
    transition: all .3s;
}
a.single-news-main-r-t-btn.active{
    background: #EBEFF8;
}
a.single-news-main-r-t-btn.active i{
    color: #333;
}
a.single-news-main-r-t-btn:hover{
    background: #EBEFF8;
}
a.single-news-main-r-t-btn:hover i{
    color: #333;
}
.single-news-main-r-m{
    margin-top: 70px;
    background: #FFF;
    padding: 6%;
}
.single-news-main-r-m>h3{
    display: block;
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 6%;
    padding: 0 0 6%;
    border-bottom: 1px solid #d9d9d9;
}
.single-news-main-r-t-m-content{

}
.single-news-main-r-t-cont{
    margin-top: 2%;
}
.single-news-main-r-t-cont img{
    width: 100%;
}
.single-news-main-r-t-cont h4{
    color: #333;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 4% 0 2%;
}
.single-news-main-r-t-cont h3{
    color: #333;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 22.5px */
    margin: 0 0 10%;
}
.single-news-main-r-u{
    background: #FFF;
    padding: 6%;
    margin: 15% 0 0;
}
.single-news-main-r-u h3{
    display: block;
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 6%;
    padding: 0 0 6%;
    border-bottom: 1px solid #d9d9d9;
}
.single-news-main-r-u-form .wpcf7-text {
    padding: 4% 6%;
    border: 0;
    border-radius: 4px;
    background: #EBEFF8;
    outline: none;
    width: 100%;
}
.single-news-main-r-u-form .wpcf7-form button {
    display: block;
    width: 100%;
    border: 1px solid #1B489C;
    border-radius: 4px;
    background: #1B489C;
    color: #FFF;
    padding: 3%;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all .3s;
}
.single-news-main-r-u-form .wpcf7-form button:hover{
    background: #fff;
    color: #1B489C;
}
.single-news-main-r-u-form .wpcf7-form button i{
    font-size: 20px;
    color: #fff;
    transition: all .3s;
}
.single-news-main-r-u-form .wpcf7-form button:hover i{
    color: #1B489C;
}

.contact{
    position: relative;
}
.contact-head-txt h3{
    color: #FFF;
    font-family: Roboto;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; /* 60px */
}
.contact-main{
    position: relative;
}
.contact-content{
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}
.contact-cont{
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    width: calc(25% - 32.25px);
    padding: 1.2%;
}
.contact-cont i{
    font-size: 40px;
    color: #1B489C;
}
.contact-cont h3{
    color: #333;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 58.333% */
    margin: 4% 0;
}
.contact-cont p{
    color: #666;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.contact-main-box{
    display: flex;
    flex-direction: row;
    margin-top: 4%;
    padding-bottom: 6%;
}
.contact-main-map{
    width: 55%;
    height: 700px;
}
.contact-main-txt{
    width: 35%;
    margin: 2% 5%;
}
.contact-main-txt h4{
    color: #F5A406;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.contact-main-txt h3{
    color: #333;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 4%;
}
.contact-main-txt>p{
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 3% 0 0;
}
.contact-main-txt p.contact-main-txt-a {
    margin: 0;
}
.contact-main-txt-a span{
    color: #1B489C;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contact-main-txt-b span{
    color: #F5A406;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contact-main-txt-form .wpcf7-form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-main-txt-form p{
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 49%;
    margin: 2% 0;
}
.contact-main-txt-form p:nth-child(n+6){
    width: 100%;
}
.contact-main-txt-form  .wpcf7-form-control-wrap {
    display: block;
}
.contact-main-txt-form p input {
    display: block;
    padding: 4% 0% 4% 6%;
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: #EBEFF8;
    outline: none;
    margin-right: 0%;
}
.contact-main-txt-form p textarea{
    display: block;
    padding: 3%;
    width: 100%;
    max-height: 170px;
    border-radius: 4px;
    background: #EBEFF8;
    outline: none;
    border: 0;
    resize: none;
}
.contact-main-txt-form .wpcf7-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #1B489C;
    border-radius: 4px;
    background: #1B489C;
    color: #FFF;
    padding: 1.6%;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all .3s;
}
.contact-main-txt-form .wpcf7-form button i{
    font-size: 20px;
    color: #fff;
    transition: all .3s;
    margin-left: 1%;
}
.contact-main-txt-form .wpcf7-form button:hover{
    background: #fff;
    color: #1B489C;
}
.contact-main-txt-form .wpcf7-form button:hover i{
    color: #1B489C;
}
.pro-detail .t{
    padding: 14% 0;
}





.trp-ls-shortcode-current-language {
  width: fit-content !important;
  padding: 5px 0;
}
.trp-ls-shortcode-current-language a {
  color: #000 !important;
}
.inTop .trp-ls-shortcode-current-language a {
  color: #000 !important;
}
.trp_language_switcher_shortcode {
  /*position: absolute;*/
  /*right: 0;*/
  margin-left: 25px;
}
.trp_language_switcher_shortcode a {
  color: #000;
  display: flex!important;
  align-items: center;
  width: fit-content;
  margin-left: 0!important;
  transition: all 0.35s;
}
.trp_language_switcher_shortcode a:hover {
  color: #1B489C;
}
.trp_language_switcher_shortcode a img {
  margin-right: 5px;
}
.trp-language-switcher {
  position: relative;
}
.trp-language-switcher:hover .trp-ls-shortcode-language {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}
.trp-ls-shortcode-language {
  position: absolute;
  display: flex!important;
  flex-direction: column;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0px 2px 18px 0px rgba(9, 20, 30, 0.15);
  padding: 15px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  width: fit-content !important;
  opacity: 0;
  transition: all 0.35s;
}




@keyframes line_animate {
    0% {
        width: 80%;
        height: 80%;
        opacity: .1;
    }

    50% {
        width: 90%;
        height: 90%;
        opacity: .8;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }


}

.pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.pop .model {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.pop .content {
  position: relative;
  z-index: 1;
  width: 650px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #FFF;
  padding: 34px 2.083vw 30px 2.083vw;
  height: auto;
  box-sizing: border-box;
}
.pop .content .out {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all .5s;
}
.pop .content .out span {
  font-size: 40px;
  color: #333;
  transition: all .5s;
}
.pop .content .out:hover {
  transform: rotate(180deg);
}
.pop .content .out:hover span {
  color: #182E7A;
}
.pop .content h2 {
  width: 100%;
  font-family: RalewayRoman-Bold;
  font-size: 40px;
  line-height: 125%;
  color: #333;
  margin-bottom: 30px;
  margin-top: 0;
}
.pop .content form fieldset {
  display: none;
}
.pop .content form ul li p {
  line-height: 125%;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.pop .content form p span {
  color: #CD1414;
}
.pop .content form input {
  display: block;
  width: 100%;
  height: 47px;
  border-radius: 4px;
  background: #F3F3F3;
  border: none;
  outline: none;
  background: #F3F3F3;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 18px;
  color: #333;

}
.pop .content form textarea {
  width: 100%;
  border: none;
  outline: none;
  height: 137px;
  background: #F3F3F3;
  box-sizing: border-box;
  padding: 10px 15px;
  font-size: 18px;
  color: #333;
}
.pop .content form button {
  width: 200px;
  height: 40px;
  border-radius: 100px;
  font-size: 16px;
  color: #fff;
  font-family: RalewayRoman-Bold;
  background: #333333;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .5s;
}
.pop .content form button:hover {
  background: #182E7A;
}
.pop .content .pop-tips {
  margin-top: 30px;
}
.pop .content .pop-tips p {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.pop .content .pop-tips p span {
  color: #CD4648;
}

.single-news-main-r-u-form textarea {
    padding: 4% 6%;
    border: 0;
    border-radius: 4px;
    background: #EBEFF8;
    outline: none;
    width: 100%;
    height: 150px;
}
.video-box {
    position: relative;
    aspect-ratio: 825 / 500;
    width: 50%;
}
.video-box .video-bg{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    margin: 0;
}