.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: linear-gradient(270.07deg, #81c784 0.07%, #81c784 99.95%);
    opacity: 0.9;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 126px 0;
    text-align: center;
    z-index: 9;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding: 140px 0;
    }
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        padding: 100px 0;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading {
        padding: 80px 0;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 65px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 42px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white);
}

.breadcrumb-wrapper .border-shape {
    position: absolute;
    top: 20px;
    left: 0;
}

.breadcrumb-wrapper .line-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.breadcrumb-wrapper .line-shape img {
    width: 100%;
    height: 100%;
}





.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}


.project-items .project-image {
    position: relative;
    /*height: 457px;*/
}

.project-items .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-items .project-image .project-content {
    /*position: absolute;*/
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 16px 0px 16px 0px;
    background-color: var(--white);
    overflow: hidden;
}

/*.project-items .project-image .project-content::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 28px;
    content: "";
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}*/

.error-message{padding-left:24px; display: none; color:#EF4444!important}
.show{display: block; float: right;}

.project-items .project-image .project-content p {
    color: var(--theme);
    font-weight: 500;
    margin-bottom: 5px;
}

.project-items .project-image .project-content h4 {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.project-items .project-image .project-content h4 a:hover {
    color: var(--theme);
}
.project-items .project-image:hover .project-content h4{
    color: var(--theme);
}


.project-items .project-image .project-content .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: var(--white);
    box-shadow: var(--box-shadow-2);
    border-radius: 50%;
    text-align: center;
    color: var(--theme);
    position: absolute;
    top: 130px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    transform: rotate(-40deg);
}

.project-items .project-image .project-content .icon:hover {
    background-color: var(--theme);
    color: var(--white);
}

.project-items:hover .project-image .project-content::before {
    height: 100%;
}

.project-items:hover .project-image .project-content .icon {
    top: 35px;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}

.project-items.style-2 {
    margin-top: 30px;
}



.team-card-items {
    margin-top: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    padding-bottom: 100px;
}

.team-card-items .team-image {
    padding-top: 28px;
    position: relative;
    text-align: center;

}


.team-card-items .team-image .social-profile {
    position: absolute;
    right: 30px;
    top: 30px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
}

.team-card-items .team-image .social-profile ul {
    transform: translateY(-100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.team-card-items .team-image .social-profile ul li:not(:last-child) {
    margin-bottom: 10px;
}

.team-card-items .team-image .social-profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    display: block;
    background: var(--white);
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
}

.team-card-items .team-image .social-profile ul li a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.team-card-items .team-image .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    display: inline-block;
    background: var(--theme);
    color: var(--white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}

.team-card-items .team-image .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


.team-card-items .team-content {
    text-align: center;
    margin-top: 0px;
    position: relative;
    z-index: 9;
    padding: 30px;
    background-color: var(--white);
    /*box-shadow: var(--box-shadow);*/
    margin-right: 0px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.team-card-items .team-content h3 {
    margin-bottom: 5px;
}

.team-card-items .team-content h3 a:hover {
    color: var(--theme);
}

.prolist .team-card-items{
  padding-bottom: 0px;
}
.prolist .team-card-items .team-image{
  padding-top:2px;
}
.prolist .team-card-items .team-image img{
  max-width:100%;
}

.prolist .team-card-items .team-content{
  padding:24px 0px;
  position: inherit;
}

.prolist .team-card-items .team-content h3{
  font-size:14px;
}
.prolist .team-card-items:hover{
  cursor: pointer;
}


.crumb{padding: 20px 0 0; background:var(--theme);}
.page-title { display: -ms-flexbox; display: flex; color: #0075aa;padding-bottom: 20px; justify-content: flex-start; align-items: center;border-bottom: 1px solid #e1dfdf;}
.page-title a{color: #fff; font-size:14px;    text-transform: capitalize;}
.page-title a:hover{text-decoration: underline;}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    align-self: center;
}
.page-title .breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    align-self: center;
justify-content: center; }
.breadcrumb-item+.breadcrumb-item {
    padding-left: 6px;
}
.breadcrumb-item + .breadcrumb-item::before { color: #fff;font-family: cmsfont; content: "\f054";font-size: 10px;      display: inline-block;
    padding-right: 6px;}
.page-title .breadcrumb:before {font-family: cmsfont; content: "\f016"; margin-top:0px; margin-right: 0.25rem; color: #fff}
@media(max-width:768px) {
    
}

.prodetailbox .flex{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content:space-between;
    -ms-justify-content:space-between;
    -webkit-justify-content:space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items:flex-start;
}
.prodetailbox .proimg{
    width:602px;
    overflow: hidden;
    /*display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;*/
}
.prodetailbox .proimg img{
    width:100%;
    border: 0px solid #ccc;
    max-width:100%;
    display: block;
}
.prodetailbox .proimg .item:hover{
    cursor: pointer;
}
.prodetailbox .procon{
    height:100%;
    width: calc(100% - 640px);
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items:flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-align-flex-wrap: nowrap;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-align-flex-direction: column;
}

.prodetailbox .procon h2{
    font-size: 30px;
    font-weight: bold;
    color:#81C784;
    margin-bottom:12px;
}
.prodetailbox .procon .explan{
    font-size: 16px;
    line-height: 30px;
    color: #000;
    padding-top: 10px;
}
.prodetailbox .procon .explan a{
        font-size: 18px;
    padding: 0px 6px;
    color: #5b9bf3;
    font-weight: bold;
}

.prodetailbox .procon .explan p{

}

.prodetailbox .procon .explan table{border-top:1px solid #ddd; border-left:1px solid #ddd;margin:12px 0px; max-width:100%;}
.prodetailbox .procon .explan table td{ color:#000; font-size:16px; padding:5px 10px; text-align:center; border-right:1px solid #ddd; border-bottom:1px solid #ddd; height:28px; line-height:28px; white-space:nowrap;}
.prodetailbox .procon .explan table td:nth-child(1){text-align:left; max-width:120px;}
.prodetailbox .procon .explan table td:nth-child(2){text-align:left; min-width:240px;}



.prosidebar {
    box-shadow: var(--box-shadow);
}

.pro-sidebar-title {
    text-align: center;
    padding: 24px 0px;
}

.pro-sidebar-title h3 {
    font-size: 28px;
    line-height: 36px;
    height: 36px;
    margin-bottom: 6px;
}

.pro-sidebar-title p {
    font-size: 16px;
    color: var(--theme);
}

.prosidebar_type {
    display: flex;
    padding: 0px 0px 12px;
    margin: 12px;
    border-bottom: 1px solid rgb(202, 202, 202);
}

.pro_type_item {
    width: 32%;
    margin-right: 2%;
    padding: 12px;
    border: 1px solid var(--black);
    border-radius: 6px;
}

.pro_type_item.act {
    border: 1px solid var(--theme);
    background-color: #E8F5E9;
}

.pro_type_item:hover {
    border: 1px solid var(--theme);
    background-color: #E8F5E9;
}


.pro_type_item:nth-child(3) {
    margin-right: 0px;
}

.prosidebar_type a {
    display: flex;
    align-items: center;
    height: 100%;
}

.prosidebar_type a img {
    width: 40%;
}

.prosidebar_type a span {
    padding-left: 6px;
    font-weight: bold;
    color: var(--black);

}

.prosidebarselectbox {
    margin: 0px 12px;
    margin-bottom: 16px;

}

.prosidebarselect {
    position: relative;
}

.prosidebaerselecttit {
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 9px;
}

.proselectitem {
    display: flex;
    border: 1px solid rgb(202, 202, 202);
    padding: 12px;
    align-items: center;
    border-radius: 6px;
}

.proselectitemimg {
    width: 64px;
    height: auto;
}

.proselectitemimg img {
    max-width: 100%;
}

.proselectitemtext {
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
    padding-left: 12px;
    width: calc(100% - 40px - 24px);
}

.rolls .proselectitemtext{
    width: calc(100% - 24px);
}

.sizebtn{
    background-color: var(--theme);
    color:#fff;
    padding:6px 12px;
    border-radius:6px;
    float:right;
    margin-top:12px;
}


.proselected {
    border: 1px solid var(--theme);
    border-radius: 6px;
    background-color: #E8F5E9;
}

.proselectitemlist {
    background-color: var(--white);
    border: 1px solid rgb(202, 202, 202);
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 9;
    max-height: 322px;
    overflow-y: auto;
}

.proselectitemlist .proselectitem {
    margin-bottom: 8px;
}

.proselectitemlist .proselectitem:hover {
    border: 1px solid var(--theme);
    border-radius: 6px;
    background-color: #E8F5E9;
    cursor: pointer;
}

.proselectitemsearchbox {
    background-color: #f2f2f2;
    padding: 12px 16px;
    border-radius: 6px;
}

.proselectitemsearchbox .stit {
    width: 100;
    color:var(--black);
    font-weight: bold;
    font-size: 18px;
}

#sizelistbox {
    display: flex;
    flex-wrap: wrap;
        justify-content: space-between;
}
#sizelistbox .proselectitem{
    padding:2px;
    width:32%;
        flex-wrap: wrap;
}
#sizelistbox .proselectitemimg{
    width:100%;
    text-align: center;
}
#sizelistbox .proselectitemtext{
    padding-top: 0px;
    width:100%;
    font-size: 13px;
}

#sizeselect .proselectitemlist{
    max-height:520px;
}




/* 去除webkit内核浏览器的上下箭头 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 针对Firefox浏览器的兼容处理 */
input[type="number"] {
    -moz-appearance: textfield;
}
.proselectitemsearchbox{margin-bottom:12px;}
.proselectitemsearchbox .stit a{float:right; color:var(--theme); font-size: 16px;}
.proselectitemsearchboxitem{display:flex; justify-content: space-between;}
.searchitem{width:calc((100% - 32px)/2); color:var(--black); font-size:16px; font-weight: bold; position: relative; height:64px}
.searchitem input{width:100%; padding-right:32px; position: absolute; left:0px; bottom:0px; z-index:9; text-transform: capitalize;
    background: transparent; line-height:20px; height:32px; color:var(--black); padding-left:12px; border:1px solid rgb(202, 202, 202);}
.searchitem span{position: absolute; right:12px; bottom:0px;z-index: 8;}

#total .proselectitemtext{ 
    margin-right:40px;
} 

.proneed{ flex-wrap: wrap; margin-bottom:6px;}
.prosidebarselectinput{width:40%; margin-top:4px; line-height:36px; height:48px; padding:6px; color:var(--black); border:1px solid rgb(202, 202, 202); border-radius:6px;}
.prosidebarselectinput:focus{ color:var(--black)}
.prosidebarselectbtn{
    padding: 10px 24px;
    background-color: var(--theme);
    border-radius: 6px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.prototalitem{
    border: 1px solid rgb(202, 202, 202);
    padding: 12px;
    border-radius: 6px;
    margin-bottom:6px;
}
.prototalitem:hover{
    background-color: #E8F5E9;
}

.hide {
    display: none;
}


.pro-details {}

.pro-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.procon {
    margin-top: 20px;
}

.prosidebar-btn {
    width: 100%;
    padding: 12px;
}

.prosidebar-btn button {
    display: block;
    width: 100%;
    padding: 20px 0px;
    background-color: var(--theme);
    border-radius: 6px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.prosidebar-btn a {
    display: block;
    width: 100%;
    padding: 20px 0px;
    background-color: var(--theme);
    border-radius: 6px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}


.rightype{width:calc(100% - 24px);border:1px solid #81C784; margin:0 auto 20px; border-radius:6px; padding:12px}

.rightype a{color:#2e2e2e; padding:8px 12px; margin-right:10px; margin-bottom: 2px; font-size: 16px; width:auto; border:0px solid #d1d1d1; float:auto}
.rightype a:hover,.rightype a.active{background:#FFF176; color:#0D0D0E; border-radius:6px;}




.about-wrapper .about-image-items {
  position: relative;
}
.about-wrapper .about-image-items .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.about-wrapper .about-image-items .video-box .video-buttton {
  width: 142px;
  height: 142px;
  line-height: 142px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  display: inline-block;
  z-index: 9;
  font-size: 24px;
  color: var(--white);
  position: relative;
}
.about-wrapper .about-image-items .video-box .video-buttton .text-circle {
  position: absolute;
  top: 7%;
  left: 7%;
  -webkit-animation: cir36 10s linear infinite;
  animation: cir36 10s linear infinite;
}
.about-wrapper .about-image-items .counter-shape {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 30px;
  left: -50px;
  z-index: 1;
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .counter-shape {
    left: 0;
  }
}
.about-wrapper .about-image-items .counter-shape .content h3 {
  font-size: 28px;
  font-weight: bold;
}
.about-wrapper .about-image-items .about-image-1 {
  max-width: 415px;
  height: 445px;
  position: relative;
}
@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1 {
    max-width: 560px;
  }
}
.about-wrapper .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -13%;
  right: -35%;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 200px;
    bottom: 0;
    right: -10%;
  }
  .about-wrapper .about-image-items .about-image-1 .about-image-2 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    bottom: -13%;
    right: -35%;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 140px;
    bottom: initial;
    top: 0;
    right: 0;
  }
}
.about-wrapper .about-image-items .about-image-1::after {
  content: "";
  width: 100%;
  height: 88%;
  position: absolute;
  right: -55px;
  top: 20%;
  border: 3px solid var(--theme);
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1::after {
    right: -30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1::after {
    width: 100%;
    height: 88%;
    right: -55px;
    top: 20%;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1::after {
    display: none;
  }
}
.about-wrapper .about-content .about-icon-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-icon-items {
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-icon-items .icon-items {
  display: flex;
  align-items: center;
  gap: 25px;
}
.about-wrapper .about-content .about-icon-items .icon-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
}
.about-wrapper .about-content .about-icon-items .icon-items .content {
  flex-basis: 60%;
}
.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-author .author-image .content p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-top: -2px;
}
.about-wrapper.style-2 .about-image-items .circle-shape {
  position: absolute;
  top: 0;
  right: 25%;
  animation: cir36 10s linear infinite;
}
.about-wrapper.style-2 .about-image-items .counter-shape {
  background-color: var(--theme);
  bottom: -70px;
  left: 30px;
}
@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .counter-shape {
    bottom: 20px;
  }
}
.about-wrapper.style-2 .about-image-items .counter-shape .icon {
  filter: grayscale(100%) brightness(300%);
}
.about-wrapper.style-2 .about-image-items .counter-shape .content h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.about-wrapper.style-2 .about-image-items .counter-shape .content h3 span {
  font-size: 28px;
  font-weight: bold;
  margin-right: 5px;
}
.about-wrapper.style-2 .about-image-items .counter-shape .content p {
  font-size: 14px;
  color: var(--white);
}
.about-wrapper.style-2 .about-image-items .about-image-1 {
  max-width: 386px;
  height: 415px;
}
@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 530px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 450px;
    height: 415px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 500px;
  }
}
.about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
  border: 10px solid var(--white);
  box-shadow: var(--box-shadow);
  right: -40%;
}
@media (max-width: 1199px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: 0;
  }
}
.about-wrapper.style-2 .about-image-items .about-image-1::after {
  display: none;
}
.about-wrapper.style-2 .about-content .about-icon-items .icon-items .icon {
  background-color: var(--white);
  color: var(--theme);
}

.about-wrapper-2 {
  margin-bottom: -30px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-bottom: -10px;
  }
}
.about-wrapper-2 .about-image {
  position: relative;
  z-index: 9;
}
.about-wrapper-2 .about-image .video-box {
  position: absolute;
  top: 40%;
  right: 40%;
  width: 125px;
  height: 125px;
  line-height: 125px;
  background-color: var(--white);
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image .video-box {
    width: 105px;
    height: 105px;
    line-height: 105px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image .video-box {
    width: 95px;
    height: 95px;
    line-height: 95px;
  }
}
.about-wrapper-2 .about-image .video-box .video-btn {
  width: 85px;
  height: 85px;
  line-height: 85px;
  font-size: 22px;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image .video-box .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image .video-box .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.about-wrapper-2 .about-image .video-box .ripple::before, .about-wrapper-2 .about-image .video-box .ripple::after {
  box-shadow: 0 0 0 0 rgba(119, 184, 15, 0.5);
}
.about-wrapper-2 .about-image .shape-image {
  position: absolute;
  bottom: 10%;
  left: -12%;
  z-index: -1;
}
.about-wrapper-2 .about-image .circle-shape {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  bottom: 25px;
  z-index: -1;
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 35px;
  display: inline-block;
}
.about-wrapper-2 .about-content .icon-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .icon-area {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content .icon-area {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-content .icon-area {
    gap: 20px;
    margin-top: 20px;
  }
}
.about-wrapper-2 .about-content .icon-area .list li {
  font-weight: 500;
}
.about-wrapper-2 .about-content .icon-area .list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .icon-area .list li i {
  color: var(--theme);
  margin-right: 5px;
}
.about-wrapper-2 .about-content .icon-area .icon-items {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  padding: 28px 25px;
  border-left: 3px solid var(--theme);
}
.about-wrapper-2 .about-content .icon-area .icon-items .content h2 {
  font-size: 28px;
  margin-bottom: 5px;
}
.about-wrapper-2 .about-content .icon-area .icon-items .content span {
  color: var(--header);
}
.about-wrapper-2 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-author {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content .about-author {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-content .about-author {
    margin-top: 20px;
  }
}
.about-wrapper-2 .about-content .about-author .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-2 .about-content .about-author .author-icon .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  position: relative;
}
.about-wrapper-2 .about-content .about-author .author-icon .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--theme);
  content: "";
  transform: translate(-50%, -50%);
}
.about-wrapper-2 .about-content .about-author .author-icon .content h5 {
  font-weight: 600;
}
.about-wrapper-2 .about-content .about-author .author-icon .content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
}
.about-wrapper-2.style-2 .about-image-2 img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2.style-2 .about-content {
  margin-left: 50px;
}
@media (max-width: 991px) {
  .about-wrapper-2.style-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2.style-2 .about-content .about-button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper-2.style-2 .about-content .about-button {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2.style-2 .about-content .about-button {
    margin-top: 25px;
  }
}




.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title span {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}
.section-title h2 {
  font-weight: bold;
}
.section-title h2 span {
  color: var(--theme);
  font-weight: 700;
  margin-bottom: 0;
  text-transform: capitalize;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}




.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  position: relative;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items .news-image .post-date {
  padding: 12px 24px;
  background-color: var(--theme);
  position: absolute;
  bottom: 40px;
  left: 0;
}
.news-card-items .news-image .post-date h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}
.news-card-items .news-image .post-date h3 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.news-card-items .news-content {
  padding: 30px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 9;
  margin-right: 40px;
  margin-top: -40px;
}
.news-card-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-card-items .news-content ul {
    gap: 20px;
  }
}
.news-card-items .news-content ul li {
  font-size: 14px;
  font-weight: 500;
}
.news-card-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-card-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-card-items.style-2 {
  padding-bottom: 50px;
}
.news-card-items.style-2 .news-image {
  position: relative;
}
.news-card-items.style-2 .news-image .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: initial;
}
.news-card-items.style-2 .news-content {
  margin: 0;
}
.news-card-items.style-2 .news-content ul li {
  font-size: 16px;
}
.news-card-items.style-3 {
  padding-bottom: 0;
  background-color: var(--white);
  box-shadow: none;
}
.news-card-items.style-3 .news-image {
  padding: 15px 15px 0 15px;
}
.news-card-items.style-3 .news-image .post-date {
  left: 30px;
  top: 30px;
}
.news-card-items.style-3 .content {
  box-shadow: none;
}



.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--bg);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
}



.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--bg);
  margin-bottom: 30px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
}
.main-sidebar .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}


.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb{
    max-width:100px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img{
    max-width:100px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}



.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background-color: var(--theme);
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--white);
}






.contact-wrapper-2 .contact-left-items .contact-info-area-2 {
  padding: 40px;
  background-color: var(--theme);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    flex-wrap: wrap;
  }
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/circle-3.png");
  animation: cir36 10s linear infinite;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
  border: none !important;
}
.contact-wrapper-2 .contact-left-items .video-image {
  position: relative;
}
.contact-wrapper-2 .contact-left-items .video-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper-2 .contact-left-items .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.contact-wrapper-2 .contact-left-items .video-image .video-box .video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  background-color: var(--white);
}

.contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::before, .contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::after {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}
.contact-wrapper-2 .contact-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h2 {
  margin-bottom: 10px;
}
.contact-wrapper-2 .contact-content .contact-form-items {
  margin-top: 30px;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 5px;
  width:100%;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.contact-wrapper-21 .contact-content {
  padding: 50px;
  background-color: var(--white);
  margin-left: -70px;
}
@media (max-width: 767px) {
  .contact-wrapper-21 .contact-content {
    padding: 50px 40px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-21 .contact-content {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper-21 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-21 .contact-content .form-clt input, .contact-wrapper-21 .contact-content .form-clt textarea {
  line-height: 1;
  border: 1.5px solid var(--border);
  padding: 17px 20px;
  color: var(--text);
  outline: none;
  width: 100%;
  border-radius: 5px;
}
.contact-wrapper-21 .contact-content .form-clt textarea {
  padding: 17px 20px 125px;
}
@media (max-width: 1199px) {
  .contact-wrapper-21.style-padding-minus {
    margin-bottom: -50px;
  }
}



.pagination {margin-top: 30px;    display: flex;
    flex-wrap: nowrap;
    justify-content: center;}
.page {
    width:100%;
  display:contents;
  font: 16px/28px '微软雅黑', sans-serif;
  *display:inline;
  :1;
  *zoom:1;}
.page a,.page strong{
  background:#FFF;
  border:1px solid #CCC;
  color:#333;
  float:left;
  font: 16px/24px  '微软雅黑', sans-serif;
  margin-right:5px;
  min-width:15px;
  padding:4px 8px;
  text-align:center;
  vertical-align:middle;
  white-space:nowrap;
  _width:15px;}
.page strong{background:var(--theme); color:#fff; }
.page a:hover,.page .active a {
  border:1px solid var(--theme);
  color:var(--theme);
  text-decoration:none;}
  
  
  @media (max-width: 768px) {
      .prodetailbox .flex{    flex-wrap: wrap;}
      .prodetailbox .proimg{width:100%}
      .prodetailbox .procon{width:100%}
  }
