
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0; 
}

/* 1. 超小屏 ≤319px */
@media (max-width: 319px) {
  .header-1 .container-fluid {
    padding: 10px 10px;
  }
  .header-main {
    padding: 8px 0;
  }
  .header-main .logo a img {
    height: 22px;
  }
  .header-left {
    display: none;
  }
}

/* 2. 小屏手机 320px - 374px */
@media (min-width: 320px) and (max-width: 374px) {
  .header-1 .container-fluid {
    padding: 10px 10px;
  }
  .header-main {
    padding: 8px 0;
  }
  .header-main .logo a img {
    height: 24px;
  }
  .header-left {
    display: none;
  }
}

/* 3. 主流手机 375px - 413px */
@media (min-width: 375px) and (max-width: 413px) {
  .header-1 .container-fluid {
    padding: 10px 10px;
  }
  .header-main {
    padding: 10px 0;
  }
  .header-main .logo a img {
    height: 25px;
  }
  .header-left {
    display: none;
  }
}

/* 4. 大屏手机 ≥414px */
@media (min-width: 414px) and (max-width: 768px) {
  .header-1 .container-fluid {
    padding: 10px 10px;
  }
  .header-main {
    padding: 10px 0;
  }
  .header-main .logo a img {
    height: 28px;
  }
  .header-left {
    display: none;
  }
}

/* 5. 平板 769px - 1920px */
@media (min-width: 769px) and (max-width: 1920px) {
  .header-1 .container-fluid {
    padding: 10px 150px;
  }
  .header-main {
    padding: 12px 0;
  }
  .header-main .logo a img {
    height: auto;
  }
  .header-left {
    display: block;
  }
  .header__hamburger {
    display: none;
  }
}

/* 6. 超大屏 ≥1921px */
@media (min-width: 1921px) {
  .header-1 .container-fluid {
    padding: 10px 10px;
  }
  .header-main {
    padding: 15px 0;
  }
  .header-main .logo a img {
    height: 36px;
  }
  .header-left {
    display: block;
  }
  .header__hamburger {
    display: none;
  }
}
/*/////////////*/

.testimonials-one {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../image/testimonials-map-1-1.png);
  background-position: top center;
  background-repeat: no-repeat;
}

.testimonials-one__box {
  text-align: center;
}

.testimonials-one__box p {
  background-color: #eff2f6;
  transition: all 500ms ease;
  margin-bottom: 0;
  position: relative;
  padding: 50px 61px;
  padding-bottom: 65px;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .testimonials-one__box p {
    padding: 30px 35px;
    padding-bottom: 65px;
  }
}

.testimonials-one__box p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 4px);
  background-color: #fff;
  opacity: 0;
  transition: all 500ms ease;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: all 500ms ease;
}

.testimonials-one__box p span {
  position: relative;
}

.testimonials-one__box-info {
  /*! position: relative; */
  /*! top: -35px; */
}

.testimonials-one__box-info > img {
  border-radius: 50%;
}

.testimonials-one__box-info h3 {
  margin: 0;
  font-size: 20px;
  color: #000;
  line-height: 1;
  margin-top: 19px;
  margin-bottom: 13px;
}

.testimonials-one__box-info span {
  /*! font-size: 14px; */
  /*! font-weight: 500; */
  /*! line-height: 1; */
  /*! display: block; */
}

.testimonials-one__box:hover p {
  background-color: var(--thm-primary);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.testimonials-one__box:hover p::before {
  opacity: 1;
}

.testimonials-one__swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .testimonials-one__swiper-pagination {
    text-align: center;
  }
}

.testimonials-one__swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #0c2139;
  border-radius: 50%;
  transition: transform 500ms ease;
  transform: scale(1);
  transform-origin: center center;
}

.testimonials-one__swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--thm-base);
  transform: scale(1.5);
  transform-origin: center center;
}

.testimonials-one__about-page {
  padding-bottom: 70px;
}

.testimonials-one__about-page .testimonials-one__swiper-pagination {
  text-align: center;
}

.block-title {
  margin-bottom: 50px;
}

@media (max-width: 425px) {
  .block-title {
    margin-bottom: 30px;
  }
}

.block-title p {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--thm-color);
  margin: 0;
  line-height: 1;
  position: relative;
  top: -10px;
}

.block-title p::after {
  content: '';
  width: 43px;
  height: 3px;
  background-color: var(--thm-base);
  border-radius: 4px;
  margin-left: 10px;
}

.block-title h2 {
  margin: 0;
  color: var(--thm-black);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 481px) {
  .block-title h2 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .block-title h2 {
    font-size: 60px;
    line-height: 1;
  }
}

@media (max-width: 575px) {
  .block-title h2 br {
    display: none;
  }
}

.ul-list-one {
  margin-bottom: 0;
}

.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 18px;
  font-weight: 500;
  color: var(--thm-black);
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: var(--thm-secondary);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}



/* //////////////// */
.gd1{margin-bottom:25px;}
.xian{border-bottom: 1px solid #ccc;padding:15px 0px;}
.texttext-box {
	background: #fff;
	box-shadow: 0 0 10px #ddd;
	
	}
.more-content {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .more-content:hover {
            color: #ED2C25;
            text-decoration: underline;
        }
        .more-content::before,
        .more-content::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 2px;
            background-color: #ED2C25;
        }
        .more-content::before {
            right: calc(50% + 60px);
        }
        .more-content::after {
            left: calc(50% + 60px);
        }
        .more-content {
            position: relative;
        }
        @media (max-width: 768px) {
            .more-content {
                font-size: 14px;
                padding: 8px;
            }
        }
        @media (max-width: 480px) {
            .more-content {
                font-size: 12px;
                padding: 6px;
            }
        }
.read {
  -webkit-transition:.3s ease-in-out;
  font-weight:700;
  position:relative;
  font-size:25px;
  color:#fff;
  display: inline-block;
  padding-bottom: 2px;
}
.read::before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:1px;
  background:#fff;
  -webkit-transition:.3s ease-out;
  transition:.3s ease-out;
}
.read:hover::before {
  width:0%
}

.xyxw{overflow:hidden;padding:1.01rem 0 .96rem;position:relative;margin-top:0rem}
.xyxw:after{content:"";position:absolute;right:0;top:0;bottom:0;width:61.8%;}
*{
			 /*  margin: 0;
			  padding: 0;
			  box-sizing: border-box;  
			}
			.mySwbox-main{
			    background-color: #f4f4f4;
			}
			.mySwbox{
			    max-width: 1400px;
			    margin: 0 auto;
			    position: relative;
			    padding: 35px 10px 0;
			    width: 100%;
			    height: 100%;
			   
			} */
			.text-align-right {text-align:right;color: #fff;font-size: 20px;}
			.text-align-right a {text-align:right;color: #fff;font-size: 20px;}
			.footer-content p{color: #fff;font-size: 20px;}
			
			.titlebox{
			width: 40%;
			position: absolute;
			left: 10px;
			top: 5%;
			z-index: 10;
			}
			.titlebox .section-title1{
			    color: #333333;
			font-size: 26px;
			padding-top: 40px;
			}
			.titlebox strong{
			    display: block;
			font-weight: normal;
			padding-bottom: 20px;
			border-bottom: 1px solid #ddd;
			margin-bottom: 10px;
			position: relative;
			}
			.titlebox strong::before {
			content: '';
			display: block;
			width: 100px;
			height: 5px;
			background: #ED2C25;
			position: absolute;
			bottom: -3px;
			left: 0;
			border-radius: 10px;
			}
			.titlebox p{
			    margin: 0;
			background-color: #1b1b1b;
			border-radius: 3px;
			text-align: center;
			font-size: 14px;
			line-height: 26px;
			color: #f4f4f4;
			padding: 0 15px;
			display: inline-block; 
			}
			.swiper-container {
			width: 100%;
			
			margin-left: auto;
			margin-right: auto;
			overflow: hidden;
		}
		.gallery-thumbs-container {
			background-color: #fff;
			box-shadow: 0 0 10px #ddd;
			margin-top: 25px;
			width: 100%;
			margin-bottom: 60px;
		}
		.gallery-thumbs-container .gallery-thumbs {
			max-width: 100%;
			margin: 0 auto;
			padding: 20px;
			width: 100%;
		}
			.swiper-slide {
			    background-size: cover;
			    background-position: center;
        text-align: center;

			}
			.gallery-top {
			    height: 500px;
			    width: 100%;
			}
			.gallery-thumbs {
			    height: auto;
			    box-sizing: border-box;
			    padding: 10px 0;
			}
			.gallery-thumbs .swiper-slide {
			    width: 14.28%;
			    height: 100%;
			    opacity: 1;
			}
			.gallery-thumbs .swiper-slide-thumb-active {
			    opacity: 1;
			}
			.slide .text{ width: 50%;   
				color:#333333; 
				background: #fff;
				flex-shrink: 0;
				-webkit-box-shadow: 0 0 15px rgba(0,0,0,.1);
				-moz-box-shadow: 0 0 15px rgba(0,0,0,.1);
				box-shadow: 0 0 15px rgba(0,0,0,.1);
				transition: .5s ease-in-out;
				-webkit-transition: .5s ease-in-out;
				 border-radius: 4px 0px 0px 4px;
				padding: 30px;
	}
			.slide .text h2{margin: 0;text-align: left;font-size: 28px;}
			.slide .text h2 .s1{
				font-size:28px;
				line-height:46px;
				text-align: left;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				max-width: 80%;
			}
			.slide .text h2 .s2{font-size:14px;font-weight:normal;line-height:46px;margin-left:15px}
			.slide .text h2 .s3{float:right;font-size:57px;line-height:46px;}
			.slide .text p{font-size:20px;line-height:30px;color:#000; margin: 0;line-height: 35px;border-bottom: 1px #ccc solid;padding: 19px 0px 25px 0px;}
			.slide .text ul {
				margin-top: 15px;
				padding-left: 0;
				list-style: none;
			}
			.slide .text ul li {
				font-size: 20px;
				color: #000;
				line-height: 40px;
				transition: color 0.3s ease;
				cursor: pointer;
				padding: 13px 0;
				border-bottom: 1px solid #e8e8e8;
				display: flex;
				align-items: center;
			}
			.slide .text ul li > span:first-child {
				color: #ED2C25;
				margin-right: 15px;
				flex-shrink: 0;
			}
			.slide .text ul li .title {
				flex: 1;
				text-align: left;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
			}
			.slide .text ul li .date {
				color: #ED2C25;
				font-size: 18px;
				margin-left: 20px;
				flex-shrink: 0;
				min-width: 45px;
				text-align: right;
			}
			.slide .text ul li:hover {
				color: #ED2C25;
			}
			.slide .text ul li:hover .title {
				color: #ED2C25;
			}
			.slide {
			    display: flex;
			    justify-content: space-between;
			    align-items: flex-start;
			}
			.slide img{
			    max-width: 100%;
			}
			.mySwbox-thumbs{background-color: #fff;box-shadow: 0 0 10px #ddd; margin-top: 25px;}
			.mySwbox-thumbs .gallery-thumbs{
			    max-width: 1400px;
			    margin: 0 auto;
			    padding: 20px;
			}
			.gallery-thumbs .swiper-slide{
			    flex: 1;
			    position: relative;
			    transition: all ease .5s;
			    cursor: pointer;
			    display: flex;
			    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
			    padding: 20px;
			    border-right: 1px solid #ebebeb;
			}
			.img-center{
			    position: relative;
			    z-index: 999;
			    display: flex;
			    justify-content: center;
			    align-items: center;
			    width: 50px;
			    border-right: 1px solid #ebebeb;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .i1 {
			    display: none;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active::before {
			    width: 100%;
			}
			.gallery-thumbs .swiper-slide:before {
			    width: 0;
			    height: 100%;
			    background: linear-gradient(to right, #ED2C25, #f65012);
			    content: '';
			    position: absolute;
			    bottom: 0;
			    left: 0;
			    transition: all 0.5s;
				border-radius: 4px;
			}
			.gallery-thumbs .slide-icon {
			    display: flex;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .text h2 {
			    color: #FFF;
			}
			.gallery-thumbs .swiper-slide .i2 {
			    display: none;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .i2 {
			    display: block;
			}
			.gallery-thumbs .swiper-slide .text {
			    position: relative;
			    z-index: 999;
			    padding-left: 25px;
			    color: #333333;
			}
			.gallery-thumbs .swiper-slide .text h2 {
			    font-size: 22px;
			    margin: 0;
			    line-height: 30px;
			    color: #000;
			    font-weight: 500;
			    transition: color 0.3s ease;
			}
			.gallery-thumbs .swiper-slide:last-child {
			    border-right: 0;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .text p {
			    color: #FFF;
			}
			.gallery-thumbs .swiper-slide .text p {
			    font-size: 12px;
			    color: #666666;
			    margin: 0;
			    line-height: 25px;
			}
			.gallery-thumbs .swiper-slide .img-center i {
			  font-size: 35px;
			  color:#dc0023;
			  transition: all ease .5s;
			}
			.gallery-thumbs .swiper-slide.swiper-slide-thumb-active .img-center i {
			  color: #ffffff;
			}


			@media (max-width:992px) {
			.gallery-thumbs-container .gallery-thumbs{padding: 10px;}
			.gallery-thumbs .swiper-slide{padding: 10px;}
			.img-center{width: 55px;}
			.swiper-container {height: 250px;}
			.slide .text{padding-top: 10%;}
		}
		@media (max-width:768px) {
			.gallery-thumbs-container{margin-left: 10px;margin-right: 10px;}
			.slide .text{width: 100%;padding-top: 20px;padding-right: 0;}
			.slide{flex-direction: column;}
			.slide .img{margin-top: 10px;width: 100%;}
			.slide .img img{width: 100%;height: auto;}
			.gallery-thumbs .swiper-slide .text{display: none;}
			.gallery-thumbs .slide-icon{width: 100%;}
			.img-center {border-right: 0;width: 100%;}
			.gallery-thumbs .swiper-slide{margin-right: 0 !important;}
			.slide .text h2 .s3{display: none;}
			.swiper-container {height: 300px;}
			.slide .text h2 .s1{font-size: 18px;line-height: 30px;}
			.slide .text h2 .s2{font-size: 12px;line-height: 30px;margin-left: 10px;}
			.slide .text p{font-size: 12px;line-height: 20px;}
		}
		@media (max-width:480px) {
			.swiper-container {height: 350px;}
			.slide .text h2 .s1{font-size: 16px;line-height: 25px;}
			.slide .text h2 .s2{font-size: 10px;line-height: 25px;margin-left: 8px;}
			.slide .text p{font-size: 11px;line-height: 18px;}
			.gallery-thumbs .swiper-slide{padding: 8px;}
			.img-center i{font-size: 20px !important;}
		}
		/* 手机端通用响应式样式 - 已整合到文件末尾 */
/* 标题列表统一样式 */
.news-title-list,
.single-news-items-2 .news-content h4,
.single-news-items-2 .news-content h4 a,
.news-title-d li,
.choose-content .news-title{
   font-size: 28px;
   margin: 0;
   margin-bottom: 20px;
   font-weight: 500;
   line-height: 35px;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   letter-spacing: 0.5px;
   padding-bottom: 6px;
   color: #000;
   font-family: "Rubik", serif;
}
.news-title-list a {color: #043d90; font-family: "Rubik", serif;font-size: 28px;}

/* 右侧列表标题单行显示省略号 */
.choose-content .icon-area .news-title-d li {
   font-size: 20px !important;
   margin: 0 !important;
   margin-bottom: 15px !important;
   font-weight: 500 !important;
   line-height: 40px !important;
   overflow: hidden !important;
   letter-spacing: 0.5px !important;
   padding-bottom: 10px !important;
   color: #000 !important;
   font-family: "Rubik", serif !important;
   border-bottom: 1px solid #e8e8e8 !important;
   display: flex !important;
   align-items: center !important;
   cursor: pointer !important;
   transition: color 0.3s ease !important;
}
.choose-content .icon-area .news-title-d li > span:first-child {
   color: #ED2C25 !important;
   /*! margin-right: 15px !important; */
   flex-shrink: 0 !important;
}
.choose-content .icon-area .news-title-d li .title {
   flex: 1 !important;
   text-align: left !important;
   white-space: nowrap !important;
   overflow: hidden !important;
   text-overflow: ellipsis !important;
   color: #000 !important;
}
.choose-content .icon-area .news-title-d li .date {
   color: #ED2C25 !important;
   font-size: 18px !important;
   margin-left: 20px !important;
   flex-shrink: 0 !important;
   min-width: 45px !important;
   text-align: right !important;
}
.choose-content .icon-area .news-title-d li:hover {
   color: #ED2C25 !important;
}
.choose-content .icon-area .news-title-d li:hover .title {
   color: #ED2C25 !important;
}

/* Pad端适配 */
@media (max-width: 991px) {
   .choose-content .icon-area .news-title-d li {
      font-size: 16px !important;
      line-height: 28px !important;
      margin-bottom: 12px !important;
   }
   .choose-content .icon-area .news-title-d li a {
      font-size: 16px !important;
      max-width: calc(100% - 105px) !important;
   }
}

/* 手机端适配 */
@media (max-width: 575px) {
   .choose-content .icon-area .news-title-d li {
      font-size: 14px !important;
      line-height: 26px !important;
      margin-bottom: 10px !important;
      padding-bottom: 4px !important;
   }
   .choose-content .icon-area .news-title-d li a {
      font-size: 14px !important;
      max-width: calc(100% - 95px) !important;
   }
   .choose-content .icon-area .news-title-d li span {
      font-size: 14px !important;
      margin-right: 8px !important;
   }
}
.desc{font-size: 20px;  color: #ED2C25;  line-height: 1.5em;  letter-spacing: .5rem;padding: 20px 0px 30px 0px;}
.gengduo{color: #ED2C25;font-size: 20px;display: flex;  justify-content: center;  align-items: center;margin-top: 25px;border-radius: 5px;position: inherit;}
.gengduo a{color: #000000;font-size: 18px;display: flex;  justify-content: center;  align-items: center;padding-top: 25px;}

.xysph2{width: 100%;  float: left;  height: 55px;  letter-spacing: 2px; text-align: left; font-size: 45px; line-height: 110%;  font-weight: 600;  color: #FFF;  display: block;  position: relative;margin-bottom: 63px;}
.xysph2 a{color: #fff; }
  
.Choices{ background:url(../../static/image/Choices.jpg) no-repeat center; background-size:cover;}
.Choices_text{margin:0 auto;}
.Choices_head{width:100%; float:left; height:55px; letter-spacing:2px; font-weight:bold; text-align:left; font-size: 45px;line-height: 110%;
font-weight: 600; color:#FFF; display:block; position:relative;}

.Choices_content{ }
.Choicesnext{ float:left; margin-left:1605px; }
.Choices_banner{ width:1640px; height:400px; float:left; overflow: hidden;}
.Choices_banner ul{ width: 12000px;  overflow: hidden;}
.Choices_banner ul li{ width:1184px; height:399px; float:left;}
.Choices_left{ width:594px; height:399px; float:left;}
.Choices_right{ width:590px; height:399px; float:left; background-color: #e7e8fc;}
.Choices_right h1{ width:590px; height:30px; line-height:30px; float:left; text-align:left; font-size:28px; margin-top:70px; color:#000;}
.Choices_right h2{ width:590px; height:30px; line-height:30px; float:left; text-align:left; font-size:28px; margin-top:10px; color:#000;padding-left: 70px;}
.Choices_right p{ width:450px; height:70px; float:left; margin-left:70px; text-align:left; font-size:18px; color:#000; margin-top:20px;}
.Choicesbut{ width:150px; height:48px; float:left; border:1px solid #bfbfbf; background-color:rgba(255,255,255,0.7); text-align:center; line-height:48px; color:#606060; font-size:18px; margin-left:195px; margin-top:57px;}
.Choicestel{ width:1184px; height:38px; text-align:center; line-height:38px; font-size:26px; float:left; font-family:"Rubik", serif; overflow:hidden; color:#FFF; margin-top:57px;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
text-transform: uppercase;
letter-spacing: .5rem;
}
.Choicestel ul{ width:12000px; overflow:hidden;}
.Choicestel ul li{ width:1640px;  float:left;}

/* txgz列表样式 */
.txgz ul li {
    position: relative;
    padding: 15px 0 15px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    border-bottom: 1px dashed #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.txgz ul li:hover {
    color: #0066cc;
    padding-left: 30px;
    background-color: rgba(0, 102, 204, 0.03);
}
.txgz ul li span {
    color: #043d90;
    margin-right: 8px;
    font-size: 18px;
}
@media (max-width: 768px) {
    .txgz ul li {
        font-size: 14px;
        padding: 12px 0 12px 20px;
    }
    .txgz ul li span {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .txgz ul li {
        font-size: 12px;
        padding: 10px 0 10px 15px;
    }
    .txgz ul li span {
        font-size: 14px;
    }
}


.witr_back_title {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: -40px;
    z-index: -1;
    text-transform: uppercase;
}
.witr_back_title h4{
    -webkit-text-stroke: 1px #E8E8E8;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-size: 120px;
    opacity: 1;
    margin: 0;
    text-transform: uppercase;
}
.witr_back_title.center{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}




/*banner*/
.none{ display:none;}
.banner{ min-width:980px;height:572px; position:relative; margin:0 auto; overflow:hidden; z-index:1;}
.banner_show{ width:100%; text-align:center; height:572px; overflow:hidden; position:relative;}
.bannger_inbox{ position:absolute; left:50%; top:0;}


.banner_pre_next{position:relative;z-index:105;top:520px;width:980px;left:50%; height:37px;margin-left:-500px;*left:240px;}
.banner_pre_next a{ width:37px; height:37px; background:url(../../static/image/btn.png) no-repeat; text-indent:-999em;}
.banner_pre_next .banner_btn_left{position:absolute;left:-37px; background-position:0px 0px;}
.banner_pre_next .banner_btn_right{position:absolute;right:-37px; background-position:-37px 0px;}



.yq_banner_list{ width:200px; height:25px;position:absolute; top:485px; text-align:right; z-index:100; left:120px; padding-right:12px;}
.yq_banner_list a{ display:inline-block; width:19px; height:19px;background:url(../../static/image/abg.png) no-repeat right; margin-right:10px;}
.yq_banner_list a.hover{background:url(../../static/image/abg.png) no-repeat left; }


.banner_mag{width:345px;height:520px;position:absolute; overflow:hidden;left:50%;top:0px;margin-left:-500px;text-align:left;z-index:99;font-family:"Rubik", serif;}
.banner_magbox{height:520px;background:url(../../static/image/ico3.png) repeat;text-align:left;padding:80px 30px 35px;}
.banner_magbox .focus-img{ text-align:right; margin-bottom:40px;}
.banner_magbox h4{font-size:18px; font-weight:normal;color:#fff; margin-bottom:10px; }
.banner_magbox h4 a{color:#fff; }
.banner_magbox p{font-size:14px;color:#fff;font-weight:normal;line-height:22px;}



.focus-news{  height:100px; color:#fff; padding:30px 0px 10px 0px; background:#30a7e0; position:absolute; bottom:0px; width:980px;left:50%;margin-left:-500px; z-index:9999;font-family:"Rubik", serif;}
.index-news-title{ float:left; width:130px; margin-right:60px; position:relative; padding-left:70px;}
.index-news-title h2{ font-size:20px; height:30px; font-weight:normal;}
.index-tabs{ position:absolute; right:0px; width:34px; bottom:10px;}
.index-tabs li{ width:17px; height:17px; float:left; cursor:pointer; background:url(../../static/image/dot.gif)  no-repeat;}
.index-tabs li.prev{ background-position:0px 0px;}
.index-tabs li.next{ background-position:-19px 0px;}
.index-news-show{ float:left; width:460px;}
.index-news-show ul{}
.index-news-show ul li{ float:left; width:230px;}
.index-news-show ul li h2{ font-size:14px;}
.index-news-show ul li h2 a{ color:#fff;}
.index-news-show ul li p{ font-size:14px;}
.index-news-show ul.hide{ display:none;}
.index-news-tel{ font-weight:bold; float:right; padding-left:30px; background:url(../../static/image/tel.gif) left no-repeat; font-size:20px; width:180px;}

@charset "utf-8";
* {
	margin:0;
	padding:0;
}
ul, li {
	list-style:none;
}
img {
	border:none;
}
.slider-container {
	margin: 0 auto;
	width:960px;
	overflow:hidden;
	position:relative;
	height:390px;
	overflow:hidden;
	z-index:9;
	min-width:960px
}
.slider-wrap {
	width:5100px;
	height:467px;
	font-size:0;
	position:absolute;
	left:49%;
	top:0;
	margin-left:-1275px;
	overflow:hidden
}
.slider {
	width:100%;
	height:100%;
	float:left
}
.slider-container ul {
}
#_slide li {
	width:870px;
	height:467px;
	float:left;
	position:relative;
	text-align: center;
}
.slider-container .pic {
	width:830px;
	height:390px;
	display:block;
	margin:0 20px;
	position: relative;
}
.slider-container .pic img {
	width:830px;
	height:467px;
	display:block;
	border:0 none;
}
.slider-container dl {
	width:830px;
	height:467px;
	overflow: hidden;
	margin:0 auto;
}
.slider-container dl .pic {
	margin:0;
}
.slider-container #ad1, .slider-container #ad1 .pic {
	width:359px;
	height:350px
}
.slider-container #ad2, .slider-container #ad2 .pic, .slider-container #ad3, .slider-container #ad3 .pic, .slider-container #ad4, .slider-container #ad4 .pic {
	width:156px;
	height:350px
}
.slider-container dd {
	float:left;
	display:inline;
	overflow: hidden;
}
.slider-container #ad2, .slider-container #ad3, .slider-container #ad4 {
	margin-left:1px;
}
.slider-container #ad1 .pic img {
	width:359px;
	height:467px;
	display:block;
	border:0 none;
}
.slider-container #ad2 .pic img, .slider-container #ad3 .pic img, .slider-container #ad4 .pic img {
	width:156px;
	height:467px;
	display:block;
	border:0 none;
}
.slider-container .slide_thumb {
	display:none;
}
.slide_Bg {
	width:830px;
	height:467px;
	position:absolute;
	left:20px;
	top:0;
	background:#fff;
	filter:alpha(opacity=30);
	opacity:0.5;
}
.cur .slide_Bg {
	display:none
}
#slide_list {
	position:absolute;
	left:0
}
#topPic {
	display:none
}
.slider-container li img {
	position:relative
}
.slider-container li p {
	width:100%;
	height:50px;
	line-height: 50px;
	font-family: "寰蒋闆呴粦", "榛戜綋";
	font-size: 21px;
	color: #fff;
	position:absolute;
	bottom:0;
	left:0;
	z-index:100;
	display:none;
	background:rgba(0, 0, 0, 0.6);
filter: progid:DXImageTransform.Microsoft.gradient( GradientType = 0, startColorstr = "#60000000", endColorstr = "#60000000") 6
}
.slider-container li dd p {
	font-size:16px;
}
.cur .st_ty {
	display:block;
}
#focus_dot {
	width: 120px;
	height: 13px;
	position: absolute;
	top: 365px;
	left: 50%;
	margin-left: -60px;
}
#focus_dot li {
	width: 13px;
	height: 13px;
	float: left;
	text-indent: -999em;
	overflow: hidden;
	cursor: pointer;
	display: inline;
	margin-right: 10px;
	background: url() -23px -129px no-repeat;
}
#focus_dot li.current {
	background-position: 0 -129px;
}
.slider-container .pic:hover, .twC3 a:hover, .gqsjMod .bd a:hover {
	text-decoration:none;
}
.st_ty {
	cursor:pointer;
}
.slide_Bg {
	width:830px;
	height:467px;
	position:absolute;
	left:20px;
	top:0;
	background:#fff;
	filter:alpha(opacity=70);
	opacity: 0.7;
}
#focusMain li .text {
	display: block;
	width:100%;
	height:80px;
	position:absolute;
	bottom:20px;
	background:rgba(255, 255, 255, 0.8);
filter: progid:DXImageTransform.Microsoft.gradient( GradientType = 0, startColorstr = "#ccffffff", endColorstr = "#ccffffff");
}
.gqsjMod .bd a:hover p {
	background:rgba(3, 107, 170, 0.6);
filter: progid:DXImageTransform.Microsoft.gradient( GradientType = 0, startColorstr = "#99036baa", endColorstr = "#99036baa")
}
.twC3 .pic {
	text-align:center;
}
#cardBody1 .tabBody {
	overflow:hidden;
	zoom:1;
+padding-bottom:20px;
}
.mrjxMod .ft a p {
	text-align:center;
}
.slider-wrap {
	width:5100px;
	height:467px;
	font-size:0;
	position:absolute;
	left:50%;
	margin-left: -1305px;
	top:0;
	verflow:hidden
}
.hzlxMod .hd h2 {
	background-position:left -6px;
}
.slider-btn {
	position:absolute;
	top:148px;
	width:54px;
	height:54px;
	background:url(../../static/image/arrow-btn.png);
	cursor:pointer;
}
.slider-btn-l {
	left:0;
}
.slider-btn-r {
	right:0;
}
.slider-btn-l {
	left:50%;
	margin-left:-509px;
	background-position:0px 0px;
}
.slider-btn-l:hover {
	background-position:0px -54px;
}
.slider-btn-r {
	right:50%;
	margin-right:-509px;
	background-position:-54px 0px;
}
.slider-btn-r:hover {
	background-position:-54px -54px;
}
/* /////////////////// */

.slideshow {
  margin: 30px auto;
  position: relative;
  z-index: 99;
}
.slideshow * {
  outline: none;
}
.slideshow .slider {}
.slideshow .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.slideshow .item {
  height: 100%;
  position: relative;
  z-index: 1;
}
.slideshow .item img {
  width: 100%;
  height: 482px;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.slideshow .item.slick-active img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.slideshow .slick-dots {
  bottom: 0px;
}
.slideshow .slick-dots li {
  width: auto;
  margin: 0 10px;
}
.slideshow .slick-dots li button {
  width: 30px;
  height: 5px;
  padding: 0;
  border: none;
  background-color: #999;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-indent: -9999px;
}
.slideshow .slick-dots li button::before {
  display: none;
}
.slideshow .slick-dots li.slick-active button {
  background-color: #ED2C25;
  width: 40px;
}


html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}


@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot?rretjt');
	src:url('../fonts/icomoon.eot?#iefixrretjt') format('embedded-opentype'),
		url('../fonts/icomoon.woff?rretjt') format('woff'),
		url('../fonts/icomoon.ttf?rretjt') format('truetype'),
		url('../fonts/icomoon.svg?rretjt#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body, html { font-size: 100%; 	padding: 0; margin: 0;font-family: "Rubik", serif;}

/* Reset */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

body{
	background: #494A5F;
	color: #D5D6E2;
	font-weight: 500;
	font-size: 1.05em;
	font-family: "Rubik", serif;
}
a{ color: rgba(255, 255, 255, 0.6);outline: none;text-decoration: none;-webkit-transition: 0.2s;transition: 0.2s;}
a:hover,a:focus{color:#74777b;text-decoration: none;}
.htmleaf-container{
	margin: 0 auto;
}

.bgcolor-1 { background: #f0efee; }
.bgcolor-2 { background: #f9f9f9; }
.bgcolor-3 { background: #e8e8e8; }/*light grey*/
.bgcolor-4 { background: #2f3238; color: #fff; }/*Dark grey*/
.bgcolor-5 { background: #df6659; color: #521e18; }/*pink1*/
.bgcolor-6 { background: #2fa8ec; }/*sky blue*/
.bgcolor-7 { background: #d0d6d6; }/*White tea*/
.bgcolor-8 { background: #3d4444; color: #fff; }/*Dark grey2*/
.bgcolor-9 { background: #ef3f52; color: #fff;}/*pink2*/
.bgcolor-10{ background: #64448f; color: #fff;}/*Violet*/
.bgcolor-11{ background: #3755ad; color: #fff;}/*dark blue*/
.bgcolor-12{ background: #3498DB; color: #fff;}/*light blue*/
.bgcolor-20{ background: #494A5F;color: #D5D6E2;}
/* Header */
.htmleaf-header{
	padding: 1em 190px 1em;
	letter-spacing: -1px;
	text-align: center;
	background: #66677c;
}
.htmleaf-header h1 {
	color: #D5D6E2;
	font-weight: 600;
	font-size: 2em;
	line-height: 1;
	margin-bottom: 0;
	font-family: "Rubik", serif;
}
.htmleaf-header h1 span {
	font-family: "Rubik", serif;
	display: block;
	font-size: 60%;
	font-weight: 400;
	padding: 0.8em 0 0.5em 0;
	color: #c3c8cd;
}
/*nav*/
.htmleaf-demo a{color: #fff;text-decoration: none;}
.htmleaf-demo{width: 100%;padding-bottom: 1.2em;}
.htmleaf-demo a{display: inline-block;margin: 0.5em;padding: 0.6em 1em;border: 3px solid #fff;font-weight: 700;}
.htmleaf-demo a:hover{opacity: 0.6;}
.htmleaf-demo a.current{background:#1d7db1;color: #fff; }
/* Top Navigation Style */
.htmleaf-links {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: 1.5em;
	text-align: center;
}

.htmleaf-links::after {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 100%;
	background: #dbdbdb;
	content: '';
	-webkit-transform: rotate3d(0,0,1,22.5deg);
	transform: rotate3d(0,0,1,22.5deg);
}

.htmleaf-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0em 0;
	width: 1.5em;
	text-decoration: none;
}

.htmleaf-icon span {
	display: none;
}

.htmleaf-icon:before {
	margin: 0 5px;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'icomoon';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}
/* footer */
.htmleaf-footer{width: 100%;padding-top: 10px;}
.htmleaf-small{font-size: 0.8em;}
.center{text-align: center;}
/****/
.related {
	color: #fff;
	background: #494A5F;
	text-align: center;
	font-size: 1.25em;
	padding: 0.5em 0;
	overflow: hidden;
}

.related > a {
	vertical-align: top;
	width: calc(100% - 20px);
	max-width: 340px;
	display: inline-block;
	text-align: center;
	margin: 20px 10px;
	padding: 25px;
	font-family: "Rubik", serif;
}
.related a {
	display: inline-block;
	text-align: left;
	margin: 20px auto;
	padding: 10px 20px;
	opacity: 0.8;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-backface-visibility: hidden;
}

.related a:hover,
.related a:active {
	opacity: 1;
}

.related a img {
	max-width: 100%;
	opacity: 0.8;
	border-radius: 4px;
}
.related a:hover img,
.related a:active img {
	opacity: 1;
}
.related h3{font-family: "Rubik", serif;font-size: 1.2em}
.related a h3 {
	font-size: 0.85em;
	font-weight: 300;
	margin-top: 0.15em;
	color: #fff;
}
/* icomoon */
.icon-htmleaf-home-outline:before {
	content: "\e5000";
}

.icon-htmleaf-arrow-forward-outline:before {
	content: "\e5001";
}

@media screen and (max-width: 1024px) {
	.htmleaf-header {
		padding: 2em 10% 2em;
	}
	.htmleaf-header h1 {
        font-size:1.4em;
    }
    .htmleaf-links{font-size: 1.4em}
}

@media screen and (max-width: 960px) {
	.htmleaf-header {
		padding: 2em 10% 2em;
	}
	.htmleaf-header h1 {
        font-size:1.2em;
    }
    .htmleaf-links{font-size: 1.2em}
    .related h3{font-size: 1em;}
	.related a h3 {
		font-size: 0.8em;
	}
}

@media screen and (max-width: 766px) {
	.htmleaf-header h1 {
        font-size:1.3em;
    }
    .htmleaf-links{font-size: 1.3em}
}

@media screen and (max-width: 640px) {
	.htmleaf-header {
		padding: 2em 10% 2em;
	}
	.htmleaf-header h1 {
        font-size:1em;
    }
    .htmleaf-links{font-size: 1em}
    .related h3{font-size: 0.8em;}
	.related a h3 {
		font-size: 0.6em;
	}
}
/* //////////////// */


@import url("css2-Kanititalwght010002000300040005000600070008000900110012001300140015001600170018001900_swap.css");
@import url("css2-DMSansitalopszwght09..4010009..4020009..4030009..4040009..4050009..4060009..4070009..4080009..4090009..40100019..4010019..4020019..4030019..4040019..4050019..4060019..4070019..4080019..4090019..401000_swap.css");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #CA1F27;
  --theme2: #F7C600;
  --theme3: #1f425d;
  --header: #2a2833;
  --base: #00813D;
  --text: #767676;
  --text2: #bfbfbf;
  --border: #D9D9D9;
  --border2: #373737;
  --button: #1C2539;
  --button2: #030734;
  --ratting: #FF9F0D;
  --bg: #f5f5f8;
  --bg2: #DF0A0A0D;
  --color-gradient-1: linear-gradient(309deg, rgba(202,31,39,1) 17%, rgba(247,207,0,1) 70%);
  ---color-gradient-2: linear-gradient(309deg, rgba(247,207,0,1) 14%, rgba(202,31,39,1) 72%);
  ---box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
}

.theme-btn {
  background-color: #ED2C25;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 50px;
  border-radius: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--theme);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--theme);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
.theme-btn.hover-white:hover::before, .theme-btn.hover-white:hover::after {
  background-color: var(--white);
}
.theme-btn.header-color {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color::before, .theme-btn.header-color::after {
  background-color: var(--theme);
}
.theme-btn.header-color-2 {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color-2::before, .theme-btn.header-color-2::after {
  background-color: var(--white);
}
.theme-btn.header-color-2:hover {
  color: var(--header);
}
.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
  background-image: initial;
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
.theme-btn.bg-white:hover::before, .theme-btn.bg-white:hover::after {
  background-color: var(--header);
}
.theme-btn.bg-second {
  background-color: var(--theme2);
  color: var(--black);
  background-image: initial;
}
.theme-btn.bg-second:hover {
  color: var(--white);
}
.theme-btn.bg-second:hover::before, .theme-btn.bg-second:hover::after {
  background-color: var(--theme);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 14px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}

.link-btn {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--header);
  font-weight: 500;
  display: inline-block;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.link-btn i {
  margin-left: 10px;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.link-btn:hover {
  color: var(--theme);
  background-size: 100% 1px;
}
.link-btn:hover i {
  color: var(--theme);
  opacity: 1;
}

body {
  font-family: "Rubik", serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
}

h2 {
  font-size: 45px;
  /*! line-height: 110%; */
  font-weight: 600;
}
@media (max-width: 991px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  flex: 0 0 auto;
  font-size: 22px;
  color: #000;
  font-family: "Rubik", serif;
  font-weight: 500;
  /*line-height: 1;*/
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Kanit", sans-serif, "DM Sans", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--theme2);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Rubik", serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::-moz-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-moz-placeholder {
    font-size: 18px;
  }
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title span {
  color: #ED2C25;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: Uppercase;
}
.section-title h2 {
  text-transform: capitalize;
  flex: 0 0 auto;
  font-size: 45px;
  color: #000;
  font-family: "Rubik", serif;
  font-weight: 500;
  line-height: 1;
	padding-bottom: 20px;
}
.section-title.style-2 h2 {
  text-transform: capitalize;
}
.section-title.style-2 h2 span {
  margin-bottom: 0;
  color: var(--header);
  position: relative;
}
.section-title.style-2 h2 span::before {
  position: absolute;
  bottom: 0;
  right: -25px;
  content: "";
  background-image: url(../image/line-shape.png);
}
.section-title h2 .notice-title-red {
  color: #C6040D;
  text-transform: uppercase;
}
.section-title h2 .notice-title-black {
  color: #000;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .section-title h2 .notice-title-red,
  .section-title h2 .notice-title-black {
    font-size: 28px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }
  50% {
    transform: translatey(12px);
  }
  100% {
    transform: translatey(-8px);
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.header-top {
  background-color: var(--theme);
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-top .container-fluid {
    padding: 0 15px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 85px;
}
.header-top-wrapper ul li {
  color: var(--white);
}
.header-top-wrapper ul li i {
  color: var(--white);
}
.header-top-wrapper ul li a {
  color: var(--white);
}
.header-top-wrapper .social-icon span {
  color: var(--white);
}
.header-top-wrapper .social-icon i {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.header-top-wrapper .social-icon i:hover {
  color: var(--theme);
}

.top-bar-header {
  background: rgba(var(--theme), 0.2);
  padding: 9px 0px;
}
@media (max-width: 767px) {
  .top-bar-header {
    padding: 12px 0px;
  }
  .top-bar-header .d-flex.justify-content-end {
    justify-content: center !important;
  }
}
.top-bar-header .top-welcome-text {
  text-transform: capitalize;
}
.top-bar-header .top-welcome-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-bar-header .top-welcome-text p {
    font-size: 14px;
  }
}
.top-bar-header .social-links {
  margin-left: 30px;
  margin-right: 10px;
}
.top-bar-header .social-links a {
  display: inline-block;
  margin: 0px 6px;
  color: var(--theme);
}
.top-bar-header .social-links a:hover {
  color: var(--theme2);
}
.top-bar-header .search-box {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  border: 1px solid #f9f9f9;
  box-sizing: border-box;
}
.top-bar-header .search-box form {
  position: relative;
}
.top-bar-header .search-box form input {
  height: 36px;
  width: 100%;
  padding: 0px 15px;
  font-size: 14px;
  color: var(--theme);
}
.top-bar-header .search-box form button {
  background: transparent;
  position: absolute;
  right: 10px;
  color: var(--theme);
  border: 0px;
  top: 0;
  line-height: 36px;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.top-bar-header .search-box form button:hover {
  color: var(--theme2);
}

.header-tops-section {
  background-color: var(--theme3);
  padding: 10px 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .header-tops-section {
    display: none;
  }
}
.header-tops-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1;
  left: 81%;
}
@media (max-width: 1899px) {
  .header-tops-section::before {
    display: none;
  }
}
.header-tops-section .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-tops-section .container-fluid {
    padding: 0 50px;
  }
}

.header-tops-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tops-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-tops-wrapper .contact-list li {
  font-size: 15px;
  color: var(--white);
}
.header-tops-wrapper .contact-list li a {
  color: var(--white);
}
.header-tops-wrapper .contact-list li i {
  color: var(--white);
  margin-right: 10px;
}
.header-tops-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-tops-wrapper .top-right .social-icon {
  gap: 15px;
}
.header-tops-wrapper .top-right .social-icon span {
  color: var(--white);
  font-weight: 500;
}
.header-tops-wrapper .top-right .social-icon a {
  color: var(--white);
}
.header-tops-wrapper .top-right .flag-wrap {
  position: relative;
  width: 160px;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select {
  padding: 0 0 0 60px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select::after {
  right: 23px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  width: 10px;
  height: 10px;
  top: 15px;
  border-bottom: 2px solid transparent;
  border-color: var(--theme);
  border-right: 2px solid theme-color;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}
.header-tops-wrapper .top-right .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-tops-wrapper .top-right .flag-wrap .flag {
    display: none;
  }
}
.header-tops-wrapper .top-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-main {
    padding: 15px 0px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  color: var(--header);
  padding: 35px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-family: "Rubik", serif;
}
.header-main .main-menu ul li a i {
  font-size: 17px;
  font-weight: 600;
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: #fff !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 220px;
  background: #ffffff !important;
  border-radius: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
              0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                      0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                   0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0) scale(0.95);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin-top: 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  padding: 12px 28px;
  width: 100%;
  display: block;
  font-family: "Rubik", serif;
  transition: all 0.25s ease;
  border: none;
  line-height: 1.5;
}
.header-main .main-menu ul li .submenu li a:hover {
  background: linear-gradient(135deg, #ED2C25 0%, #f65012 100%);
  color: #ffffff !important;
  padding-left: 35px;
  transform: translateX(3px);
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
  border-radius: 0;
}
.header-main .main-menu ul li .submenu li:first-child a {
  border-radius: 0;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: calc(100% + 8px);
  top: -8px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-10px) scale(0.95);
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: linear-gradient(135deg, #ED2C25 0%, #f65012 100%);
  color: #ffffff !important;
  padding-left: 35px;
  transform: translateX(0px);
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: #ffffff;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  transform: translateX(0px) scale(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px) scale(1);
}

.header-1 {
  position: absolute;
  z-index: 99;
  overflow-x: clip;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: rgba(255, 255, 255, 0.2) 0px solid;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgb(4 61 144 / 100%);
}

.header-1.header-inner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
}

@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: none;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li {
    margin-inline-end: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: #fff;
  font-family: "Rubik", serif;
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
  font-family: "Rubik", serif;
}
.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: #fff;
}
.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--white);
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
    display: none;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white);
}

/* 移动端二级菜单优化 */
@media (max-width: 991px) {
  .header-main .main-menu ul li .submenu {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: rgba(237, 44, 37, 0.05) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .header-main .main-menu ul li:hover > .submenu,
  .header-main .main-menu ul li.active > .submenu {
    display: block;
    max-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .header-main .main-menu ul li .submenu li a {
    font-size: 14px;
    padding: 12px 20px 12px 35px;
    color: #555555 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(237, 44, 37, 0.1);
  }

  .header-main .main-menu ul li .submenu li a:hover,
  .header-main .main-menu ul li .submenu li a:active {
    background: linear-gradient(135deg, #ED2C25 0%, #f65012 100%) !important;
    color: #ffffff !important;
    padding-left: 40px !important;
    transform: none !important;
  }

  .header-main .main-menu ul li .submenu li:first-child a {
    border-radius: 0;
  }

  .header-main .main-menu ul li .submenu li:last-child a {
    border-radius: 0;
    border-bottom: none;
  }
}

.header-2 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-2 .container-fluid {
    padding: 0 15px;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 140px;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left ul li {
    margin-inline-end: 25px;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1600px) {
  .header-2 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.header-3 {
  position: relative;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  z-index: 999;
}
.header-3::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 125px;
  content: "";
  background-color: var(--theme);
  z-index: -1;
}
@media (max-width: 1899px) {
  .header-3::before {
    display: none !important;
  }
}
.header-3 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .header-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .header-3 .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .header-3 .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-3 .header-main .main-menu ul li .has-homemenu {
  left: -400px;
}
@media (max-width: 1600px) {
  .header-3 .header-main .main-menu ul li .has-homemenu {
    left: -300px;
  }
}
.header-3 .header-main .header-right {
  gap: 50px;
}
@media (max-width: 991px) {
  .header-3 .header-main .header-right {
    gap: 25px;
  }
}
.header-3 .header-main .header-right .search-icon {
  color: var(--header);
}
@media (max-width: 1199px) {
  .header-3 .header-main .header-right .search-icon {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-3 .header-main .header-right .search-icon {
    display: block;
  }
}
.header-3 .header-main .header-right .header-button {
  margin-right: 50px;
}
@media (max-width: 1600px) {
  .header-3 .header-main .header-right .header-button {
    display: none;
  }
}
.header-3 .header-main .header-right .header__hamburger {
  margin-right: -70px;
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger {
    margin-right: 0;
  }
}
.header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
    color: var(--theme);
  }
}

.sidebar__toggle {
  cursor: pointer;
}

/* 禁用sticky效果
.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: #043d90; 
  box-shadow: var(---box-shadow);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 {
  border-bottom: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main {
  padding: 0px 0px;
}
*/
/* @media (max-width: 991px) {
  .sticky.header-1 .mega-menu-wrapper .header-main {
    padding: 12px 0px !important;
  }
  .shouji_logo{width: 100%;}
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: flex;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo {
  display: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: #fff;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: #fff;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}
*/

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: #ED2C25;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
  background: red;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  background-position: bottom !important;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(7, 1, 30);
  opacity: 0.6;
}
.breadcrumb-wrapper .layer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .layer-shape {
    display: none;
  }
}
.breadcrumb-wrapper .layer-shape img {
  width: 100%;
  height: 100%;
}
.breadcrumb-wrapper .breadcrumb-shape {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-shape {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 70px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--theme);
  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 {
  font-size: 18px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.error-items .error-image {
  margin-bottom: 50px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  position: relative;
}
.hero-1 .array-button {
  position: absolute;
  top: 50%;
  right: 55px;
  display: grid;
  z-index: 9;
  gap: 20px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .hero-1 .array-button {
    top: 70%;
  }
}
@media (max-width: 767px) {
  .hero-1 .array-button {
    display: none;
  }
}
.hero-1 .swiper-slide-active .hero-image {
  transform: none;
}
.hero-1 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  transform: none;
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.hero-1 .shape-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
/* 绠ご */
.NFTLeo_fn_comments{}
.NFTLeo_fn_comments .comment-title{
	margin-bottom: 55px;
}
.NFTLeo_fn_comments .comment-title .fn_title{
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--hc);
}
.NFTLeo_fn_comments .list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.NFTLeo_fn_comments .comment{
	margin-bottom: 30px;
}
.NFTLeo_fn_comments .comment:last-child{
	margin-bottom: 0;
}
.NFTLeo_fn_comments .comment-body{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.NFTLeo_fn_comments .comment-avatar{
	width: 80px;
	min-width: 80px;
	margin-right: 30px;
}
.NFTLeo_fn_comments .comment-avatar img{
	border-radius: 1px;
}
.NFTLeo_fn_comments .comment-data{
	margin-bottom: 19px;
	margin-top: 5px;
}
.NFTLeo_fn_comments .comment-data .author{
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 8px;
}
.NFTLeo_fn_comments .comment-data .date{
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-family: var(--hff);
	color: #999;
	text-transform: uppercase;
}
.NFTLeo_fn_comments .comment-text p{
	margin: 0;
	padding: 0;
	margin-bottom: 36px;
}
.NFTLeo_fn_comments .comment-text p:last-child{
	margin-bottom: 0;
}
.NFTLeo_fn_comments .comment-text .desc{
	margin-bottom: 22px;
}
.NFTLeo_fn_comments .fn_reply{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.NFTLeo_fn_comments .fn_reply .fn__svg{
	width: 14px;
	height: 14px;
	display: block;
	margin-right: 5px;
}
.NFTLeo_fn_comments .fn_reply a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	background-color: #002450;
	line-height: 26px;
	padding: 0 10px;
	border-radius: 3px;
	text-decoration: none;
	margin: 0 5px 5px 0;
	font-size: 14px;
	font-family: var(--hff);
	color: #aaa;
}
.NFTLeo_fn_comments .comment-text-wrap{
	padding-bottom: 35px;
	border-bottom: 1px solid #292929;
}
.NFTLeo_fn_comments .comment-respond{
	padding-top: 96px;
}
.NFTLeo_fn_comments .respond-title{
	margin-bottom: 38px;
}
.NFTLeo_fn_comments .respond-title .fn_title{
	font-size: 22px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hc);
}
.NFTLeo_fn_comments .respond-log{
	margin-bottom: 17px;
}
.NFTLeo_fn_comments .respond-log p{
    margin: 0;
    padding: 0;
	color: #ccc;
}
.NFTLeo_fn_comments .respond-log p a{
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid transparent;
}
.NFTLeo_fn_comments .respond-log p a:hover{
	border-bottom-color: inherit;
}
.NFTLeo_fn_comments .input-items{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -15px;
}
.NFTLeo_fn_comments .input-item{
	width: 100%;
	padding-left: 15px;
	margin-bottom: 15px;
}
.NFTLeo_fn_comments .input-item.half-item{
	width: 50%;
}
.NFTLeo_fn_comments .comment-form textarea,
.NFTLeo_fn_comments .comment-form input[type="text"]{
	width: 100%;
	min-width: 100%;
	display: block;
}
.NFTLeo_fn_comments .comment-respond .NFTLeo_fn_button{
	margin-top: 20px;
}

.NFTLeo_fn_main,
.NFTLeo_fn_main *{
	box-sizing: border-box;
}
.NFTLeo_fn_main{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}
.fn__svg{
	fill: currentcolor;
	width: 18px;
	height: 18px;
	opacity: 0;
}
.replaced-svg{
	opacity: 1;
}

.NFTLeo_fn_hero.half{
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.NFTLeo_fn_hero.half .hero_content{
	width: 50%;
	background-color: #000c19;
}
.NFTLeo_fn_hero.half .bg_overlay{
	left: 50%;
}

.NFTLeo_fn_hero .hero_content{
	position: relative;
	z-index: 15;
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
	padding: 150px 0;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.NFTLeo_fn_hero .content{
	text-align: center;
}

.NFTLeo_fn_hero .fn_title{
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
	font-size: 120px;
	text-transform: capitalize;
	letter-spacing: 15px; 
	line-height: 1;
	margin-bottom: 10px;
	transform: translateZ(0);
	overflow: hidden;
	position: relative;
	left: 11px;
}
.NFTLeo_fn_hero .fn_desc{
	padding: 0;
	font-size: 24px;
	line-height: 1.3333;
	max-width: 500px;
	margin: 0 auto;
}
.NFTLeo_fn_down{
	position: absolute;
	bottom: 24px;
	z-index: 15;
	text-decoration: none;
	color: #eee;
	font-size: 14px;
	text-transform: uppercase;
	font-family: var(--hff);
	letter-spacing: 1px;
	padding-top: 60px;
}
.NFTLeo_fn_down:hover{
	color: var(--mc);
}
.NFTLeo_fn_down:hover .icon{
	color: var(--mc);
}
.NFTLeo_fn_down:hover .icon:after{
	background-color: var(--mc);
}
.NFTLeo_fn_down .icon{
	position: absolute;
	display: block;
	top: -5px;
	left: 50%;
	width: 18px;
	/* height: 40px; */
	color: #fff;
	margin-left: -9px;
	-webkit-animation: bottomArrow 1.5s infinite;
    animation: bottomArrow 1.5s infinite;
	transition: all .3s ease;
}
.NFTLeo_fn_down .icon:after{
	content: '';
	position: absolute;
	width: 2px;
	/* height: 40px; */
	background-color: #fff;
	left: 50%;
	margin-left: -1px;
	transition: all .3s ease;
}
.NFTLeo_fn_down .fn__svg{
	position: absolute;
	display: block;
	bottom: -4px;
	transform: rotate(90deg);
	left: 50%;
	margin-left: -9px;
	z-index: 3;
}
@keyframes bottomArrow {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translate(0px, 20px);
		opacity: 0;
	}
}
@keyframes topArrow {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translate(0px, -20px);
		opacity: 0;
	}
}

/* 绠ご */
@media (max-width: 1399px) {
  .hero-1 .shape-image {
    display: none;
  }
}
.hero-1 .hero-content {
  position: relative;
  padding-top: 480px;
  padding-bottom: 467px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding-top: 280px;
    padding-bottom: 295px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    padding-top: 200px;
    padding-bottom: 205px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content {
    padding-top: 170px;
    padding-bottom: 185px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content {
    padding-top: 145px;
    padding-bottom: 165px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }
}
.hero-1 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.hero-1 .hero-content .hero-button .video-play-btn .play-video {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: var(--theme2);
  line-height: 60px;
  text-align: center;
  display: inline-block;
  margin: 0px auto;
  font-size: 18px;
  border: 1px solid var(--white);
}
.hero-1 .hero-content .hero-button .video-play-btn span {
  color: var(--white);
}

.hero-2 {
  position: relative;
}
.hero-2 .array-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: grid;
  left: 50px;
  gap: 15px;
}
.hero-2 .array-button .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.hero-2 .array-button .array-prev:hover {
  background-color: var(--white);
  color: var(--theme);
}
.hero-2 .array-button .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: transparent;
  color: var(--white);
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.4s ease-in-out;
}
.hero-2 .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}
@media (max-width: 1600px) {
  .hero-2 .array-button {
    left: initial;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .array-button {
    display: none;
  }
}
.hero-2 .bottom-shape {
  position: absolute;
  bottom: -180px;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 1600px) {
  .hero-2 .bottom-shape {
    bottom: -50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .bottom-shape {
    display: none;
  }
}
.hero-2 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.hero-2 .swiper-slide-active .slider-image {
  transform: scale(1.12);
}
.hero-2 .slider-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s;
}
.hero-2 .slider-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.75;
}
.hero-2 .slider-image .mask-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .hero-2 .slider-image .mask-shape {
    display: none;
  }
}
.hero-2 .slider-image .border-shape {
  position: absolute;
  top: 12%;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-2 .slider-image .border-shape {
    display: none;
  }
}
.hero-2 .slider-image .circle-shape {
  position: absolute;
  right: 10%;
  top: 10%;
}
.hero-2 .hero-content {
  position: relative;
  z-index: 9;
  padding: 165px 0;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content {
    padding: 140px 0;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 80px 0;
  }
}
.hero-2 .hero-content h5 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
  display: inline-block;
  font-weight: 500;
}
.hero-2 .hero-content h5::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--white);
}
.hero-2 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 34px;
  }
}
.hero-2 .hero-content p {
  color: var(--white);
}
.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-2 .hero-content .hero-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
  }
}

.hero-3 {
  position: relative;
  padding-top: 340px;
  padding-bottom: 215px;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding-top: 280px;
    padding-bottom: 180px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding-top: 250px;
    padding-bottom: 190px;
  }
}
@media (max-width: 575px) {
  .hero-3 {
    padding-top: 180px;
    padding-bottom: 120px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
}
.hero-3 .hero-content {
  position: relative;
  z-index: 9999;
}
.hero-3 .hero-content h5 {
  font-size: 18px;
  color: var(--white);
  font-weight: normal;
  margin-bottom: 10px;
  padding: 8px 25px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-3 .hero-content h5::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  opacity: 0.2;
  z-index: -1;
  filter: blur(1px);
}
.hero-3 .hero-content h1 {
  font-size: 110px;
  color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 66px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.hero-3 .hero-content p {
  color: var(--white);
}
.hero-3 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.hero-3 .hero-content .hero-button .video-play-btn .play-video {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: var(--theme);
  line-height: 60px;
  text-align: center;
  display: inline-block;
  margin: 0px auto;
  font-size: 18px;
  border: 1px solid var(--white);
}
.hero-3 .hero-content .hero-button .video-play-btn span {
  color: var(--white);
}
@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

.hero-section-3 {
  position: relative;
  overflow: hidden;
}
.hero-section-3 .array-button {
  position: initial;
}
@media (max-width: 1199px) {
  .hero-section-3 .array-button {
    display: none;
  }
}
.hero-section-3 .array-button .array-prev {

  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 9;
  transform: translate(-50%, -50%);
}
.hero-section-3 .array-button .array-next {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 9;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .hero-section-3 .array-button .array-next {
    right: -22%;
  }
}
@media (max-width: 1199px) {
  .hero-section-3 .line-area {
    display: none;
  }
}
.hero-section-3 .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 108px;
  left: 26%;
  background-color: #2f3245;
  z-index: 3;
}
.hero-section-3 .line-area span:nth-child(2) {
  left: 50%;
}
.hero-section-3 .line-area span:nth-child(3) {
  left: 80%;
}

.hero-4 {
  position: relative;
}
.hero-4 .array-button {
  position: absolute;
  top: 50%;
  display: grid;
  z-index: 9;
  gap: 20px;
  right: 15%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .hero-4 .array-button {
    display: none;
  }
}
.hero-4 .swiper-slide-active .hero-image {
  transform: scale(1.12);
}
.hero-4 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 2;
  background-size: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s;
}
.hero-4 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(7, 1, 30);
  opacity: 0.8;
  z-index: -1;
}
.hero-4 .hero-content {
  position: relative;
  z-index: 9;
  padding: 200px 0;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 180px 0;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 150px 0;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 130px 0;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content {
    padding: 100px 0;
  }
}
.hero-4 .hero-content .video-play-btn .play-video {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
}
.hero-4 .hero-content .video-play-btn span {
  color: var(--white);
}
.hero-4 .hero-content h1 {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 86px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 76px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-4 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 9;
  position: relative;
}
.hero-4 .hero-content .hero-button .contact-icon i {
  color: var(--theme);
  font-size: 18px;
  margin-right: 10px;
}
.hero-4 .hero-content .hero-button .contact-icon a {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.hero-4 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  bottom: 0;
}
.hero-4 .shape-image img {
  height: 100%;
}
.hero-4 .shape-image-2 {
  position: absolute;
  top: -20%;
  right: 0;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .shape-image-2 {
    display: none;
  }
}
.hero-4 .box-shape {
  position: absolute;
  right: 0;
  bottom: -5px;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .box-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo img {
    max-width: 90%;
  }
}

@media (max-width: 991px) {
  .growth-section {
    padding-top: 60px;
  }
}

.growth-wrapper .growth-content .circle-progress-bar-wrapper {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .growth-wrapper .growth-content .circle-progress-bar-wrapper {
    margin-top: 20px;
  }
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .content h5 {
  display: block;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 30px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: var(--bg) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: var(--bg) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}
.growth-wrapper .growth-image {
  width: 1027px;
  height: 586px;
  margin-left: 4%;
  position: relative;
}
@media (max-width: 1199px) {
  .growth-wrapper .growth-image {
    margin-left: 10%;
  }
}
@media (max-width: 991px) {
  .growth-wrapper .growth-image {
    margin-left: 0;
    max-width: 1027px;
    width: initial;
  }
}
@media (max-width: 575px) {
  .growth-wrapper .growth-image {
    height: 450px;
  }
}
.growth-wrapper .growth-image .shape-image {
  position: absolute;
  bottom: 0;
  left: -40px;
}

.video-section {
  position: relative;
}
.video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(13, 6, 44);
  opacity: 0.8;
}

.website-checking {
  position: relative;
  background-attachment: fixed;
}
.website-checking::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
}

.website-checking-wrapper {
  position: relative;
  z-index: 9;
}
.website-checking-wrapper .checking-area {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .website-checking-wrapper .checking-area {
    flex-wrap: wrap;
  }
}
.website-checking-wrapper .checking-area .check-items {
  justify-content: center;
}
.website-checking-wrapper .checking-area .check-items .check-input:not(:last-child) {
  border-right: 1px solid var(--border);
}
.website-checking-wrapper .checking-area .check-items .check-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 18px 40px;
  width: 415px;
  color: var(--text);
}
@media (max-width: 1199px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    width: initial;
    max-width: 415px;
  }
}
@media (max-width: 575px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    padding: 16px 20px;
  }
}
@media screen and (max-width: 430px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    width: 170px;
  }
}
.website-checking-wrapper h6 {
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-weight: normal;
  margin-top: 50px;
}
.website-checking-wrapper h6 a {
  color: var(--header);
}
.website-checking-wrapper .counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -18px;
}
@media (max-width: 1199px) {
  .website-checking-wrapper .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.website-checking-wrapper .counter-wrapper .counter-items h2 {
  font-size: 60px;
  color: var(--white);
}
@media (max-width: 575px) {
  .website-checking-wrapper .counter-wrapper .counter-items h2 {
    font-size: 48px;
  }
}
.website-checking-wrapper .counter-wrapper .counter-items p {
  font-size: 18px;
  color: var(--white);
}
.website-checking-wrapper .icon-area {
  padding-top: 120px;
  margin-bottom: -200px;
}
@media (max-width: 1199px) {
  .website-checking-wrapper .icon-area {
    margin-bottom: -230px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .website-checking-wrapper .icon-area {
    margin-bottom: -160px;
    padding-top: 80px;
  }
}
.website-checking-wrapper .icon-area .icon-items {
  padding: 30px 40px;
  background-color: var(--white);
  display: flex;
  gap: 30px;
  box-shadow: var(---box-shadow);
}
@media (max-width: 575px) {
  .website-checking-wrapper .icon-area .icon-items {
    gap: 15px;
  }
}
.website-checking-wrapper .icon-area .icon-items .icon {
  font-size: 42px;
  color: var(--theme);
}
.website-checking-wrapper .icon-area .icon-items .content h5 {
  margin-bottom: 10px;
}
.website-checking-wrapper .icon-area .icon-items.style-2 {
  background-color: var(--header);
}
.website-checking-wrapper .icon-area .icon-items.style-2 .content h5 {
  color: var(--white);
}
.website-checking-wrapper .icon-area .icon-items.style-2 .content p {
  color: var(--border);
}

.choose-us-section {
  position: relative;
  background-image: url(../../static/image/news-bj.jpg);
}
.choose-us-section .shape-image {
  position: absolute;
  right: 0;
  top: 10%;
}
@media (max-width: 1199px) {
  .choose-us-section .shape-image {
    display: none;
  }
}
@media (max-width: 1199px) {
  .choose-us-section .line-area {
    display: none;
  }
}
.choose-us-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.choose-us-section .line-area span:nth-child(2) {
  left: 50%;
}
.choose-us-section .line-area span:nth-child(3) {
  left: 80%;
}
.choose-us-section .left-shape {
  position: absolute;
  top: 25%;
  left: 3%;
}

@media (max-width: 991px) {
  .choose-wrapper {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .choose-wrapper {
    margin-bottom: -80px;
  }
}
.choose-wrapper .choose-content ul {
	margin-top: 30px;
	line-height: 40px;
	font-weight: 500;
	color: #183760;
	padding-left: 5px;
}
.choose-wrapper .choose-content ul li {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  font-family: "Rubik", serif;
}
.choose-wrapper .choose-content ul li:not(:last-child) {
  margin-bottom: 10px;
}
.choose-wrapper .choose-content ul li i {
  color: #ED2C25;
  margin-right: 5px;
  font-size: 15px;
}
.choose-wrapper .choose-content ul li span {color: #043d90;font-size: 20px; padding-right: 15px;}
.choose-wrapper .choose-content .icon-area {
  margin-top: 30px;
}

.choose-wrapper .choose-content ul li a {
	text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  flex: 0 0 auto;
  font-size: 22px;
  color: #000;
  font-family: "Rubik", serif;
  font-weight: 500;
  line-height: 1;
}
.choose-wrapper .choose-content ul li a::hover {
	text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  flex: 0 0 auto;
  font-size: 22px;
  color: #333;
  font-family: "Rubik", serif;
  font-weight: 500;
  line-height: 1;
}

.choose-wrapper .choose-content .icon-area .icon-items {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-content .icon-area .icon-items {
    gap: 15px;
  }
}
.choose-wrapper .choose-content .icon-area .icon-items:not(:last-child) {
  margin-bottom: 30px;
}
.choose-wrapper .choose-content .icon-area .icon-items .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 42px;
  color: var(--white);
  background-color: var(--header);
  text-align: center;
  padding: 25px;
}
.choose-wrapper .choose-content .icon-area .icon-items .content {
  border-left: 2px solid var(--header);
  padding-left: 30px;
}
.choose-wrapper .choose-content .icon-area .icon-items .content h5 {
  margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
	color: #000;
	line-height: 30px;
	height: 63px;
	overflow: hidden;
}
.choose-wrapper .choose-content .icon-area .icon-items.style-2 .icon {
  background-color: var(--theme);
}
.choose-wrapper .choose-content .icon-area .icon-items.style-2 .content {
  border-left: 2px solid var(--border);
}
.choose-wrapper .choose-image-items {
  position: relative;
}
.choose-wrapper .choose-image-items .choose-image {
  height: 390px;
  max-width: 370px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-image-items .choose-image {
    max-width: 490px;
  }
}
.choose-wrapper .choose-image-items .choose-image-2 {
  max-width: 370px;
  position: absolute;
  bottom: -44%;
  right: 0;
}
@media (max-width: 991px) {
  .choose-wrapper .choose-image-items .choose-image-2 {
    bottom: -21%;
  }
}
.choose-wrapper .choose-image-items .choose-image-2 img {
  width: 100%;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-image-items .choose-image-2 {
    width: 210px;
    height: 210px;
    bottom: 0;
  }
}
.choose-wrapper .choose-image-items .circle-shape {
  position: absolute;
  left: 5%;
  bottom: -40%;
  z-index: -1;
}
.choose-wrapper .choose-image-items .circle-shape .text-circle {
  animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
  .choose-wrapper .choose-image-items .circle-shape {
    display: none;
  }
}
.choose-wrapper.style-2 .choose-image-items {
  position: relative;
}
.choose-wrapper.style-2 .choose-image-items .choose-image {
  height: 480px;
  max-width: 370px;
  z-index: initial;
  position: relative;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {
    height: 470px;
  }
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {
    max-width: 540px;
    height: 430px;
  }
}
.choose-wrapper.style-2 .choose-image-items .choose-image .box-shape {
  position: absolute;
  right: -33%;
  top: 24%;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image .box-shape {
    display: none;
  }
}
.choose-wrapper.style-2 .choose-image-items .choose-image-2 {
  max-width: 300px;
  bottom: -41%;
  right: 10%;
}
@media (max-width: 991px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image-2 {
    bottom: 10%;
    right: 10%;
  }
}
@media (max-width: 767px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image-2 {
    max-width: 200px;
    bottom: -5%;
  }
}
.choose-wrapper.style-2 .choose-image-items .icon-box {
  width: 170px;
  height: 170px;
  line-height: 180px;
  border-radius: 50%;
  text-align: center;
  color: var(--theme);
  font-size: 28px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  position: absolute;
  bottom: -25%;
  left: 40%;
  transform: translateX(-50%);
}
.choose-wrapper.style-2 .choose-image-items .icon-box .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.choose-wrapper.style-2 .choose-image-items .icon-box .text-circle {
  animation: cir36 10s linear infinite;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 30px;
  align-items: initial;
  transition: all 0.4s ease-in-out;
  border-bottom: 3px solid var(--white);
}
@media (max-width: 585px) {
  .choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items {
    padding: 20px 15px;
  }
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:not(:last-child) {
  margin-bottom: 20px;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .icon {
  width: initial;
  height: initial;
  border-radius: initial;
  font-size: 66px;
  color: var(--theme);
  background-color: initial;
  text-align: initial;
  padding: 0;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .icon {
    font-size: 48px;
  }
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .content {
  padding: 0;
  border: none;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:hover {
  border-bottom: 3px solid var(--theme);
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:hover .icon {
  transform: scaleX(-1);
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items.active {
  border-bottom: 3px solid var(--theme);
}
.choose-wrapper.style-2 .choose-content .about-author {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-content .about-author {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-content .about-author {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.choose-wrapper.style-2 .choose-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 20px;
}

.transforming-wrapper {
  margin-bottom: -100px;
  position: relative;
  z-index: 9;
}
.transforming-wrapper .transforming-area {
  background-color: rgb(25, 24, 32);
  padding: 60px 40px;
  border: 20px solid var(--white);
}
@media (max-width: 991px) {
  .transforming-wrapper .transforming-area {
    border: none;
  }
}
@media (max-width: 575px) {
  .transforming-wrapper .transforming-area br {
    display: initial;
  }
}
.transforming-wrapper .transforming-area .transforming-items {
  display: flex;
  align-items: center;
  gap: 25px;
}
.transforming-wrapper .transforming-area .transforming-items:not(:last-child) {
  margin-bottom: 40px;
}
.transforming-wrapper .transforming-area .transforming-items .icon {
  width: 50px;
  height: 50px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background-image: var(--color-gradient-1);
  font-size: 18px;
}
.transforming-wrapper .transforming-area .transforming-items .content h5 {
  color: var(--white);
}
.transforming-wrapper .transforming-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .transforming-wrapper .transforming-content {
    margin-left: 10px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .transforming-wrapper .transforming-content {
    margin-left: 0;
    margin-bottom: 170px;
  }
}

.transforming-ideas {
  position: relative;
}
@media (max-width: 1199px) {
  .transforming-ideas .line-area {
    display: none;
  }
}
.transforming-ideas .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.transforming-ideas .line-area span:nth-child(2) {
  left: 50%;
}
.transforming-ideas .line-area span:nth-child(3) {
  left: 80%;
}

.counter-section {
  position: relative;
}
.counter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 50%;
}

.counter-wrapper-area .counter-items {
  text-align: center;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 45px 30px;
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--color-gradient-1);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.counter-wrapper-area .counter-items::after {
  position: absolute;
  top: -50%;
  right: 0;
  content: "";
  width: 95px;
  height: 92px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../image/shape-3.png);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.counter-wrapper-area .counter-items h2 {
  font-size: 45px;
  margin-bottom: 5px;
  color: var(--theme);
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items p {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.counter-wrapper-area .counter-items:hover::after {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.counter-wrapper-area .counter-items:hover h2, .counter-wrapper-area .counter-items:hover p {
  color: var(--white);
}
.counter-wrapper-area .counter-items.active::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.counter-wrapper-area .counter-items.active::after {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.counter-wrapper-area .counter-items.active h2, .counter-wrapper-area .counter-items.active p {
  color: var(--white);
}

.feature-wrapper .feature-content .feature-button {
  margin-top: 40px;
}
.feature-wrapper .feature-image img {
  width: 100%;
  height: 100%;
}

.clear-post-wrapper .post-content {
  padding: 50px;
  background-color: var(--bg);
  position: relative;
  z-index: 9;
}
.clear-post-wrapper .post-content::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../image/post-shape.png);
  z-index: -1;
}
@media (max-width: 575px) {
  .clear-post-wrapper .post-content {
    padding: 40px 30px;
  }
}
.clear-post-wrapper .post-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .clear-post-wrapper .post-content h3 {
    font-size: 28px;
  }
}
.clear-post-wrapper .post-content p {
  margin-bottom: 30px;
}
.clear-post-wrapper .post-image {
  height: 560px;
  width: 400px;
  margin-left: -55%;
  margin-top: -58%;
}
@media (max-width: 1199px) {
  .clear-post-wrapper .post-image {
    width: initial;
    height: 455px;
    max-width: 470px;
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .clear-post-wrapper .post-image {
    max-width: 700px;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .clear-post-wrapper .post-image {
    height: 450px;
    max-width: 540px;
  }
}
.clear-post-wrapper .progress-content {
  position: relative;
  z-index: 9;
}
.clear-post-wrapper .progress-content h2 {
  margin-bottom: 20px;
}
.clear-post-wrapper .progress-content .progress-wrap {
  margin-top: 30px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--text);
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .progress {
  background: #ebebeb;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px var(--white);
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.single-request-element {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .single-request-element {
    text-align: center;
    margin-top: 30px;
  }
}
.single-request-element .icon {
  font-size: 40px;
}
.single-request-element h6 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  text-transform: capitalize;
  color: var(--white);
}

.about-wrapper .about-image {
  position: relative;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image .video-box {
  position: absolute;
  bottom: -65px;
  right: 153px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .video-box {
    width: 480px;
    right: -100px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image .video-box {
    bottom: 0;
    right: 0;
    width: initial;
  }
}
.about-wrapper .about-image .video-box .video-btn {
  background-color: var(--white);
  color: var(--header);
  font-size: 25px;
  height: 70px;
  width: 70px;
  line-height: 75px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-wrapper .about-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content br {
    display: none;
  }
}
.about-wrapper .about-content .about-list {
  /* margin-left: 200px; */
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-list {
    /* margin-left: 100px; */
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-list {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-list li {
  font-size: 18px;
  color: var(--header);
  background-color: var(--bg);
  width: 100%;
  padding: 15px 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-list li {
    width: 100%;
  }
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 42px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    gap: 30px;
    margin-top: 80px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-author {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-author {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .about-wrapper br {
    display: none;
  }
}

.about-wrapper-2 {
  position: relative;
}
.about-wrapper-2 .arrow-shape {
  position: absolute;
  top: -2px;
  left: -10px;
}
@media (max-width: 1600px) {
  .about-wrapper-2 .arrow-shape {
    display: none;
  }
}
.about-wrapper-2 .about-image-area .about-image {
  height: 631px;
  max-width: 458px;
  border-right: 10px solid var(--theme);
  position: relative;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-area .about-image {
    height: 420px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-area .about-image {
    height: 320px;
  }
}
.about-wrapper-2 .about-image-area .about-image .about-image-2 {
  max-width: 370px;
  height: 498px;
  right: -40%;
  top: 70px;
  position: absolute;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    right: -20%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    right: -40%;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    height: 320px;
    right: -15%;
  }
  .about-wrapper-2 .about-image-area .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    height: 210px;
    width: 210px;
    right: 0;
    top: initial;
    bottom: 0;
  }
}
.about-wrapper-2 .about-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content .about-icon-items {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  padding: 25px 35px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
.about-wrapper-2 .about-content .about-icon-items .icon {
  font-size: 42px;
  color: var(--theme);
}
.about-wrapper-2 .about-content .about-icon-items .content h5 {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-wrapper-2 .about-content .about-list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-2 .about-content .about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list li i {
  color: var(--theme);
  margin-right: 5px;
}

.about-wrapper-3 .about-image {
  position: relative;
  width: 400px;
  height: 560px;
  margin-left: 130px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image {
    margin-bottom: 0;
    margin-left: 240px;
    width: 400px;
    height: 560px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image {
    margin-left: 130px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image {
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
    margin: 0 auto;
    width: initial;
    max-width: 400px;
    height: 350px;
  }
}
.about-wrapper-3 .about-image .about-image-2 {
  width: 390px;
  height: 360px;
  position: absolute;
  bottom: -20px;
  left: -57%;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    left: -35%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 330px;
    height: 280px;
    left: -10%;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 390px;
    height: 360px;
    left: -57%;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image .about-image-2 {
    bottom: 30px;
    left: -30%;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 210px;
    height: 210px;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content {
    text-align: center;
    margin: 0 auto;
  }
}
.about-wrapper-3 .about-content h5 {
  color: var(--theme);
}
.about-wrapper-3 .about-content p {
  margin-top: 30px;
}
.about-wrapper-3 .about-content .author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content .author-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.about-section {
  position: relative;
}
.about-section .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}
.about-section .shape-image-2 {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .line-area {
    display: none;
  }
}
.about-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.about-section .line-area span:nth-child(2) {
  left: 50%;
}
.about-section .line-area span:nth-child(3) {
  left: 80%;
}

.service-section {
  position: relative;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 40%;
  z-index: -1;
}

.servie-card-image-items {
  padding: 70px 45px;
  background-color: var(--theme);
  position: relative;
  height: 100%;
}
@media (max-width: 575px) {
  .servie-card-image-items {
    padding: 50px 30px;
  }
}
.servie-card-image-items .content p {
  color: var(--white);
  font-weight: 500;
}
.servie-card-image-items .content h3 {
  font-size: 26px;
  color: var(--white);
  margin-top: 20px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .servie-card-image-items .content h3 {
    margin-top: 15px;
  }
}

.service-card-items {
  padding: 50px 20px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  height: 100%;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .service-card-items {
    padding: 40px 20px;
  }
}
.service-card-items .icon {
  width: 120px;
  height: 120px;
  line-height: 130px;
  border-radius: 50%;
  background-color: var(--bg);
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .service-card-items .icon {
    width: 90px;
    height: 90px;
    line-height: 100px;
  }
}
.service-card-items .icon::before {
  background-color: var(--theme);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.service-card-items .icon i {
  font-size: 60px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .service-card-items .icon i {
    font-size: 48px;
  }
}
.service-card-items .content {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-card-items .content {
    margin-top: 20px;
  }
}
.service-card-items .content h5 a:hover {
  color: var(--theme);
}
.service-card-items:hover .icon {
  transform: scaleX(-1);
}
.service-card-items:hover .icon::before {
  visibility: visible;
  opacity: 1;
}
.service-card-items:hover .icon i {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.service-card-items.active .icon::before {
  visibility: visible;
  opacity: 1;
}
.service-card-items.active .icon i {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.service-card-items.style-2 {
  position: relative;
  overflow: hidden;
}
.service-card-items.style-2 .icon, .service-card-items.style-2 .content {
  position: relative;
  z-index: 9;
}
.service-card-items.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../image/034.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-card-items.style-2::after {
  position: absolute;
  top: 10%;
  left: 17%;
  background-image: url(../image/shape-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 94px;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-card-items.style-2::after {
    left: 12%;
  }
}
@media (max-width: 1199px) {
  .service-card-items.style-2::after {
    left: 17%;
  }
}
@media (max-width: 767px) {
  .service-card-items.style-2::after {
    display: none;
  }
}
.service-card-items.style-2:hover .icon::before {
  background-color: var(--white);
  background-image: initial;
}
.service-card-items.style-2:hover .icon i {
  color: var(--theme);
}
.service-card-items.style-2:hover::before {
  opacity: 1;
  visibility: visible;
}
.service-card-items.style-2:hover::after {
  opacity: 1;
  visibility: visible;
  top: 37%;
}
.service-card-items.style-2:hover .content h5 a {
  color: var(--white);
}
.service-card-items.style-2.active .icon::before {
  background-color: var(--white);
  background-image: initial;
}
.service-card-items.style-2.active .icon i {
  color: var(--theme);
}
.service-card-items.style-2.active::before {
  opacity: 1;
  visibility: visible;
}
.service-card-items.style-2.active::after {
  opacity: 1;
  visibility: visible;
  top: 37%;
}
.service-card-items.style-2.active .content h5 a {
  color: var(--white);
}

.service-provide {
  position: relative;
}
@media (max-width: 1600px) {
  .service-provide {
    overflow: hidden;
  }
}
.service-provide .shape-image {
  position: absolute;
  right: 0;
  top: -70%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .service-provide .shape-image {
    display: none;
  }
}

.service-provide-items {
  position: relative;
  padding: 50px 50px;
  box-shadow: var(---box-shadow);
  margin-top: 60px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.service-provide-items .icon {
  width: 120px;
  height: 120px;
  line-height: 130px;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center;
  margin: 0 auto;
  font-size: 60px;
  color: var(--white);
  margin-top: -100px;
  transition: all 0.4s ease-in-out;
  transition: transform 500ms ease;
}
@media (max-width: 575px) {
  .service-provide-items .icon {
    width: 90px;
    height: 90px;
    line-height: 100px;
    font-size: 42px;
  }
}
.service-provide-items .content {
  margin-top: 25px;
}
@media (max-width: 575px) {
  .service-provide-items .content {
    margin-top: 20px;
  }
}
.service-provide-items .content h5 {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-provide-items .content h5 {
    margin-bottom: 10px;
  }
}
.service-provide-items .content h5 a:hover {
  color: var(--theme);
}
.service-provide-items .arrow-icon {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-provide-items .arrow-icon {
    margin-top: 20px;
  }
}
.service-provide-items .arrow-icon a i {
  font-size: 28px;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.service-provide-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-provide-items::after {
  position: absolute;
  top: 0px;
  right: -120px;
  width: 100%;
  height: 100%;
  background-image: url(../image/shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.service-provide-items:hover {
  background-color: initial;
}
.service-provide-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-provide-items:hover::after {
  right: -80px;
  background-color: initial;
}
.service-provide-items:hover .icon {
  color: var(--theme);
  background-color: var(--white);
  background-image: var(--white);
  transform: scaleX(-1);
}
.service-provide-items:hover .content h5 a {
  color: var(--white);
}
.service-provide-items:hover .content p {
  color: var(--white);
}
.service-provide-items:hover .content .arrow-icon a i {
  color: var(--white);
}
.service-provide-items.active {
  background-color: initial;
}
.service-provide-items.active::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-provide-items.active .icon {
  color: var(--theme);
  background-color: var(--white);
  background-image: var(--white);
}
.service-provide-items.active .content h5 a {
  color: var(--white);
}
.service-provide-items.active .content p {
  color: var(--white);
}
.service-provide-items.active .content .arrow-icon a i {
  color: var(--white);
}

.service-productive-wrapper {
  position: relative;
}
.service-productive-wrapper .service-productive-image {
  width: 500px;
  height: 751px;
  position: absolute;
  top: -248px;
  left: 0;
}
@media (max-width: 1600px) {
  .service-productive-wrapper .service-productive-image {
    position: initial;
    top: initial;
  }
}
@media (max-width: 991px) {
  .service-productive-wrapper .service-productive-image {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .service-productive-wrapper .service-productive-image {
    height: 520px;
  }
}
@media (max-width: 575px) {
  .service-productive-wrapper .service-productive-image {
    height: 400px;
  }
}
.service-productive-wrapper .icon-items-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 767px) {
  .service-productive-wrapper .icon-items-area {
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .service-productive-wrapper .icon-items-area {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-productive-wrapper .icon-items-area .icon-item {
  gap: 25px;
}
.service-productive-wrapper .icon-items-area .icon-item .icon {
  font-size: 42px;
  color: var(--theme);
  padding: 15px 20px;
  background-color: var(--bg);
  transition: all 0.4s ease-in-out;
}
.service-productive-wrapper .icon-items-area .icon-item:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}
.service-productive-wrapper .icon-items-area .icon-item.active .icon {
  background-color: var(--theme);
  color: var(--white);
}
.service-productive-wrapper h6 {
  margin-top: 40px;
  font-size: 20px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .service-productive-wrapper h6 {
    margin-top: 20px;
  }
}
.service-productive-wrapper .author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .service-productive-wrapper .author-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-productive-wrapper.style-2 {
  position: relative;
  padding-top: 80px;
}
.service-productive-wrapper.style-2 .circle-shape {
  top: 25%;
}
.service-productive-wrapper.style-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -28%;
  width: 32%;
  height: 80%;
}
.service-productive-wrapper.style-2 .productive-image-2 {
  margin-right: 60px;
  position: relative;
  z-index: 9;
}
.service-productive-wrapper.style-2 .productive-image-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .service-productive-wrapper.style-2 .productive-image-2 {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .service-productive-wrapper.style-2 .productive-image-2 {
    margin-right: 0;
  }
}

.service-productive {
  position: relative;
}
.service-productive .circle-shape {
  position: absolute;
  top: 10%;
  right: 5%;
}
.service-productive .circle-shape .text-circle {
  animation: cir36 10s linear infinite;
}
@media (max-width: 1600px) {
  .service-productive .circle-shape {
    right: 0;
    top: 4%;
  }
}
@media (max-width: 1199px) {
  .service-productive .circle-shape {
    display: none;
  }
}

.service-details-wrapper .service-details-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content h2 {
    font-size: 32px;
  }
}
.service-details-wrapper .service-details-content .details-image {
  height: 400px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .details-image {
    margin-bottom: 20px;
  }
}
.service-details-wrapper .service-details-content .details-title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .details-title {
    font-size: 28px;
  }
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li {
  color: var(--header);
  font-weight: 500;
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li i {
  color: var(--theme);
  font-size: 18px;
}

.project-section {
  position: relative;
}
.project-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 0;
  z-index: -1;
  height: 30%;
}
.project-section .shape-left {
  position: absolute;
  left: 0;
  top: -19%;
}
@media (max-width: 1199px) {
  .project-section .shape-left {
    display: none;
  }
}
.project-section .right-shape {
  position: absolute;
  top: -19.4%;
  right: 0;
  z-index: -1;
  overflow: hidden;
  animation: top-image-bounce 3s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .project-section .right-shape {
    display: none;
  }
}

.project-items {
  margin-top: 30px;
}
.project-items .project-image {
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  display: block;
}
@media (max-width: 575px) {
  .project-items .project-image {
    height: 450px;
  }
}
.project-items .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-items .project-image::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 0%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.9s;
}
.project-items .project-image .project-content-area {
  position: absolute;
  bottom: 0;
  background-color: var(--theme);
  padding: 30px 25px;
  left: 40px;
  right: 40px;
  bottom: -320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.9s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .project-items .project-image .project-content-area {
    left: 20px;
    right: 20px;
  }
}
.project-items .project-image .project-content-area.style-2 {
  left: 135px;
  right: 135px;
  padding: 30px 40px;
}
@media (max-width: 575px) {
  .project-items .project-image .project-content-area.style-2 {
    padding: 30px 25px;
    left: 20px;
    right: 20px;
  }
}
.project-items .project-image .project-content-area .content p {
  color: var(--white);
}
.project-items .project-image .project-content-area .content h4 a {
  color: var(--white);
}
.project-items .project-image .project-content-area .icon {
  width: 55px;
  height: 55px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.project-items:hover .project-image::before {
  height: 100%;
}
.project-items:hover .project-image .project-content-area {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .project-items:hover .project-image .project-content-area {
    bottom: 20px;
  }
}

.project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image::after {
  opacity: 0.702;
  visibility: visible;
  transform: scale(1);
}
.project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image .project-content, .project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image .icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.project-wrapper .swiper-slide.swiper-slide-active .project-items-2.style-2 .project-content {
  bottom: 10px;
}

.project-items-2 {
  overflow: hidden;
}
.project-items-2 .project-image {
  position: relative;
}
.project-items-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-items-2 .project-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgb(0, 5, 28);
}
@media (max-width: 767px) {
  .project-items-2 .project-image {
    height: 380px;
  }
  .project-items-2 .project-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .project-items-2 .project-image {
    height: 300px;
  }
}
.project-items-2 .project-image .icon {
  width: 55px;
  height: 55px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 22px;
  position: absolute;
  right: 40px;
  text-align: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  bottom: -100px;
  transition: all 0.4s ease-in-out;
}
.project-items-2 .project-image .project-content {
  position: absolute;
  left: 40px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  bottom: -100px;
  transition: all 0.4s ease-in-out;
}
.project-items-2 .project-image .project-content p {
  color: var(--white);
}
.project-items-2 .project-image .project-content h4 a {
  color: var(--white);
}
.project-items-2:hover .project-image::after {
  opacity: 0.702;
  visibility: visible;
  transform: scale(1);
}
.project-items-2:hover .project-image .project-content, .project-items-2:hover .project-image .icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.project-items-2.style-2 {
  margin-top: 30px;
}
.project-items-2.style-2 .project-content {
  padding: 30px;
  width: 96%;
  background-color: var(--theme);
  left: 10px;
  -webkit-clip-path: polygon(70% 0, 100% 100%, 99% 100%, 0 96%, 0 0);
          clip-path: polygon(70% 0, 100% 100%, 99% 100%, 0 96%, 0 0);
}
.project-items-2.style-2 .icon {
  background-color: var(--white);
  background-image: none;
  z-index: 999;
}
.project-items-2.style-2 .icon i {
  color: var(--theme);
}
.project-items-2.style-2:hover .project-content {
  bottom: 10px;
}

.project-successful-items {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.project-successful-items::before {
  background-color: var(--theme);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.project-successful-items .icon {
  font-size: 28px;
  color: var(--theme);
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.project-successful-items .content {
  margin-top: 15px;
  position: relative;
  z-index: 9;
}
.project-successful-items .counter-text {
  position: absolute;
  bottom: -20%;
  left: 40%;
}
@media (max-width: 575px) {
  .project-successful-items .counter-text {
    bottom: -15%;
  }
}
.project-successful-items .counter-text h2 {
  font-size: 100px;
  color: var(--header);
  opacity: 0.5;
  font-family: "Rubik", serif;
}
@media (max-width: 575px) {
  .project-successful-items .counter-text h2 {
    font-size: 80px;
  }
}
.project-successful-items:hover::before {
  visibility: visible;
  opacity: 1;
}
.project-successful-items:hover .icon {
  color: var(--white);
}
.project-successful-items:hover .content h5 {
  color: var(--white);
}
.project-successful-items:hover .counter-text h2 {
  color: var(--white);
}
.project-successful-items.active::before {
  visibility: visible;
  opacity: 1;
}
.project-successful-items.active .icon {
  color: var(--white);
}
.project-successful-items.active .content h5 {
  color: var(--white);
}
.project-successful-items.active .counter-text h2 {
  color: var(--white);
}

.project-section-3 {
  position: relative;
}
.project-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
.project-section-3 .shape-image {
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 9;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .project-section-3 .shape-image {
    display: none;
  }
}
.project-section-3 .shape-image-2 {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .project-section-3 .shape-image-2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .project-section-3 .line-area {
    display: none;
  }
}
.project-section-3 .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.project-section-3 .line-area span:nth-child(2) {
  left: 50%;
}
.project-section-3 .line-area span:nth-child(3) {
  left: 80%;
}

.project-section-4 {
  position: relative;
}
.project-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 60%;
}
.project-section-4 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .project-section-4 .shape-image {
    display: none;
  }
}

.project-wrapper-2 {
  padding: 0 170px;
}
@media (max-width: 1600px) {
  .project-wrapper-2 {
    padding: 0;
  }
}
.project-wrapper-2 .project-items-3 {
  margin-top: 30px;
  overflow: hidden;
}
.project-wrapper-2 .project-items-3 .project-image {
  height: 472px;
  position: relative;
  z-index: 9;
}
.project-wrapper-2 .project-items-3 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1, 0);
  transition: transform 800ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
@media (max-width: 575px) {
  .project-wrapper-2 .project-items-3 .project-image {
    height: 350px;
  }
}
.project-wrapper-2 .project-items-3 .project-image .project-content {
  position: absolute;
  bottom: -60px;
  left: 45px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-wrapper-2 .project-items-3 .project-image .project-content::before {
  position: absolute;
  bottom: -50px;
  left: -50px;
  content: "";
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../image/shape-4.png);
  width: 370px;
  height: 281px;
  z-index: -1;
}
.project-wrapper-2 .project-items-3 .project-image .project-content .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--header);
  display: inline-block;
  color: var(--white);
  margin-bottom: 20px;
}
.project-wrapper-2 .project-items-3 .project-image .project-content p {
  color: var(--white);
  margin-bottom: 5px;
}
.project-wrapper-2 .project-items-3 .project-image .project-content h4 a {
  color: var(--white);
}
.project-wrapper-2 .project-items-3:hover .project-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.project-wrapper-2 .project-items-3:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 45px;
}

.project-wrapper .project-details-image {
  height: 540px;
}
.project-wrapper .catagory-wrapper {
  display: flex;
  align-items: center;
  gap: 170px;
  justify-content: center;
  margin-top: 30px;
}
.project-wrapper .catagory-wrapper .catagory-content p {
  text-transform: uppercase;
}
.project-wrapper .catagory-wrapper .catagory-content h5 {
  font-size: 18px;
  margin-top: 10px;
}
.project-wrapper .catagory-wrapper .social-icon {
  gap: 15px;
}
.project-wrapper .catagory-wrapper .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.project-wrapper .catagory-wrapper .social-icon a.color-1 {
  background-color: rgb(70, 97, 197);
}
.project-wrapper .catagory-wrapper .social-icon a.color-2 {
  background-color: rgb(29, 161, 242);
}
.project-wrapper .catagory-wrapper .social-icon a.color-3 {
  background-color: rgb(255, 46, 46);
}
.project-wrapper .catagory-wrapper .social-icon a.color-4 {
  background-color: rgb(0, 115, 176);
}
.project-wrapper .project-details-content {
  margin-top: 50px;
  border-bottom: 1px solid var(--border);
}
.project-wrapper .project-details-content h2 {
  font-size: 48px;
}
.project-wrapper .project-details-content .tag-share-wrap {
  margin-top: 40px;
  padding-bottom: 30px;
}
.project-wrapper .prev-next-btns {
  margin-top: 30px;
}
.project-wrapper .prev-next-btns .prev-button {
  display: flex;
  align-items: center;
  gap: 25px;
}
.project-wrapper .prev-next-btns .prev-button .icon {
  color: var(--theme);
  font-size: 18px;
}
.project-wrapper .prev-next-btns .prev-button .content h5 {
  font-size: 18px;
}
.project-wrapper .prev-next-btns .next-button {
  display: flex;
  align-items: center;
  gap: 25px;
}
.project-wrapper .prev-next-btns .next-button .icon {
  color: var(--theme);
  font-size: 18px;
}
.project-wrapper .prev-next-btns .next-button .content {
  text-align: right;
}
.project-wrapper .prev-next-btns .next-button .content h5 {
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-100 {
  margin-left: 100px;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot {
  margin-bottom: -7px;
}
.swiper-dot .swiper-pagination-bullet {
  border: 2px solid var(--header);
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 0px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  border: 2px solid var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  border: none;
  width: 20px;
  height: 20px;
  background-color: var(--header);
  border-radius: 50%;
  opacity: 1;
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: none;
}

.array-button {
  position: relative;
  z-index: 99;
}
.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme2);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  background-position: center top;
}

.nice-select {
  color: var(--text);
  background-color: var(--bg);
  font-size: 16px;
  width: unset;
  outline: none;
  padding: 18px 20px;
  border: none;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .nice-select {
    padding: 15px 20px;
  }
}
.nice-select span {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 0 !important;
}
.nice-select:hover::after {
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
}

.nice-select option {
  color: var(--text);
}

.nice-select .current {
  margin-right: 12px;
}

.nice-select:after {
  right: 23px;
  border-bottom: 1px solid var(--header);
  border-right: 1px solid var(--header);
  width: 10px;
  height: 10px;
}

.nice-select.open .list {
  background: var(--bg);
  margin-top: 16px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.nice-select .option.selected.focus {
  background: var(--bg);
  outline: none;
  color: var(--theme);
  text-transform: capitalize;
  font-size: 16px;
}

.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.head-color {
  color: var(--header);
}

.footer-bg::before {
  /* background-color: rgb(0, 5, 28); */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: var(---color-gradient-2);
	opacity: 0.8;
	z-index: -1;
}

.border-none {
  border-top: none !important;
}

.overlay-color {
  position: relative;
}
.overlay-color::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}

.single-team-items {
  margin-top: 30px;
  overflow: hidden;
}
.single-team-items .team-image {
  position: relative;
}
.single-team-items .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .single-team-items .team-image {
    height: 300px;
  }
}
.single-team-items .team-image::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  content: "";
}
.single-team-items .team-image .team-content {
  position: absolute;
  bottom: -100px;
  left: 40px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
}
.single-team-items .team-image .team-content h4 a {
  color: var(--white);
}
.single-team-items .team-image .team-content h4 a:hover {
  color: var(--theme);
}
.single-team-items .team-image .team-content p {
  color: var(--white);
}
.single-team-items .team-image .team-content .social-icon {
  gap: 15px;
  margin-top: 20px;
}
.single-team-items .team-image .team-content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--header);
}
.single-team-items .team-image .team-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.single-team-items:hover .team-image::before {
  visibility: visible;
  opacity: 1;
}
.single-team-items:hover .team-content {
  bottom: 40px;
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-image::before {
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-content {
  bottom: 40px;
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-content .social-icon a.active {
  background-color: var(--theme);
  color: var(--white);
}

.text-area {
  padding: 15px 30px;
  background-color: var(--bg);
  max-width: 520px;
  margin: 0 auto;
}
.text-area a {
  font-weight: 500;
  color: var(--theme);
  text-decoration: underline;
}

.team-card-items {
  margin-top: 30px;
  overflow: hidden;
}
.team-card-items .team-image {
  position: relative;
  height: 540px;
}
@media (max-width: 575px) {
  .team-card-items .team-image {
    height: 400px;
  }
}
.team-card-items .team-image::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  content: "";
}
.team-card-items .team-image .team-content {
  padding: 30px 20px;
  background-color: var(--white);
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 81%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-items .team-image .team-content h4 {
  margin-bottom: 5px;
}
.team-card-items .team-image .team-content h4 a:hover {
  color: var(--theme);
}
.team-card-items:hover .team-image::before {
  visibility: visible;
  opacity: 1;
}
.team-card-items:hover .team-content {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}
.team-card-items.active .team-image::before {
  visibility: visible;
  opacity: 1;
}
.team-card-items.active .team-content {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}
.team-card-items.style-2 .team-image .team-content {
  display: none;
}
.team-card-items.style-2 .team-image .team-content-2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 9;
}
.team-card-items.style-2 .team-image .team-content-2 h4 a {
  color: var(--white);
}
.team-card-items.style-2 .team-image .team-content-2 h4 a:hover {
  color: var(--theme);
}
.team-card-items.style-2 .team-image .team-content-2 p {
  color: var(--white);
}
.team-card-items.style-2 .team-image .social-profile {
  position: absolute;
  right: 40px;
  bottom: 40px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}
.team-card-items.style-2 .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-items.style-2 .team-image .social-profile ul li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
}
.team-card-items.style-2 .team-image .social-profile ul li a:hover {
  color: var(--theme);
}
.team-card-items.style-2 .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background: var(--theme);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.team-card-items.style-2 .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items.style-2 .team-image .social-profile.active a {
  opacity: 1;
  visibility: visible;
}
.team-card-items.style-2.active .team-image .social-profile ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-image-area {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area {
    padding-top: 0;
  }
}
.team-details-wrapper .team-details-image-area::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 85%;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area::before {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .text {
  font-size: 120px;
  text-transform: uppercase;
  color: var(--theme);
  position: relative;
  z-index: 1;
  transform: rotate(-90deg);
  position: absolute;
  top: 25%;
  left: -8px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-image-area .text {
    left: -70px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .text {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .details-iamge {
  height: 502px;
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content {
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content h2 {
  font-size: 40px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content h2 {
    font-size: 32px;
  }
}
.team-details-wrapper .team-details-image-area .right-content p {
  color: var(--theme);
}
.team-details-wrapper .team-details-image-area .right-content .list {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .list {
    margin-top: 20px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .list h5 {
  font-size: 18px;
  font-weight: 500;
}
.team-details-wrapper .team-details-image-area .right-content .list h5 a, .team-details-wrapper .team-details-image-area .right-content .list h5 span {
  color: var(--text);
  font-weight: normal;
}
.team-details-wrapper .team-details-image-area .right-content .social-icon {
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .social-icon {
    margin-top: 30px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-1 {
  background-color: rgb(70, 97, 197);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-2 {
  background-color: rgb(29, 161, 242);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-3 {
  background-color: rgb(255, 46, 46);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-4 {
  background-color: rgb(0, 115, 176);
}
.team-details-wrapper .team-details-content {
  margin-top: -7px;
  margin-bottom: -5px;
}
.team-details-wrapper .team-details-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-content h2 {
    font-size: 28px;
  }
}
.team-details-wrapper .team-details-content .details-information-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .point {
  font-size: 14px;
  color: var(--text);
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items .content-box-area .content h3 {
  margin-bottom: 10px;
}

.single-shop-items {
  overflow: hidden;
  margin-top: 30px;
}
.single-shop-items .shop-image {
  position: relative;
}
.single-shop-items .shop-image img {
  width: 100%;
  height: 100%;
}
.single-shop-items .shop-image .shop-button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.single-shop-items .shop-content {
  padding: 20px 30px;
}
.single-shop-items .shop-content h4 a:hover {
  color: var(--theme);
}
.single-shop-items .shop-content .price {
  margin-top: 15px;
}
.single-shop-items .shop-content .price p {
  color: var(--theme2);
}
.single-shop-items .shop-content .price .star {
  color: var(--theme);
}
.single-shop-items:hover .shop-image .shop-button {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.single-shop-items.active .shop-image .shop-button {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.woocommerce-notices-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .woocommerce-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.woocommerce-notices-wrapper .product-showing {
  font-size: 16px;
}
.woocommerce-notices-wrapper .woocommerce-right {
  gap: 30px;
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt {
  width: 210px;
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt .nice-select {
  padding: 18px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--border);
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt.style-2 {
  width: 260px;
}

.main-cart-wrapper {
  border-radius: 5px;
}
.main-cart-wrapper .cart-wrapper {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 40px 40px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
  width: 100%;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
  border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
  padding-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg);
  width: 100px;
  border-radius: 5px;
  padding: 2px 20px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity span {
  display: block;
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a {
  display: block;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a i {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-remove a i {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.main-cart-wrapper .cart-wrapper-footer form {
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-cart-wrapper .cart-wrapper-footer form input {
  padding: 5px 5px;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--text);
}
.main-cart-wrapper .cart-wrapper-footer form button {
  outline: none;
  border: none;
}
.main-cart-wrapper .cart-pragh-box {
  margin-top: 24px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.main-cart-wrapper .cart-graph {
  border: 1px solid var(--border);
  padding: 30px 30px;
  border-radius: 5px;
}
.main-cart-wrapper .cart-graph h4 {
  text-align: center;
  color: var(--header);
  margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul {
  margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul li {
  display: flex;
}
.main-cart-wrapper .cart-graph ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-graph ul li span {
  width: 50%;
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  padding: 16px 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-wrapper {
    overflow-x: scroll;
  }
  .cart-wrapper .cart-items-wrapper {
    width: 700px;
  }
  .cart-wrapper .cart-wrapper-footer {
    width: 700px;
  }
}
.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::-moz-placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--theme);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}
.shop-details-wrapper .shop-details-image img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .shop-details-image .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: #e9e9ea;
  color: var(--header);
  display: inline-block;
  position: absolute;
  top: 40px;
  right: 40px;
}
.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.shop-details-wrapper .product-details-content .star a {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
}
.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}
.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  line-height: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 16px 45px;
}
.shop-details-wrapper .product-details-content .details-info {
  position: relative;
}
.shop-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}
.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab {
    padding-top: 50px;
  }
}
.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme);
}
.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}
@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}
.shop-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .shop-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.shop-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: var(--theme);
}
.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme);
}
.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.shop-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: var(--bg);
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.faq-section {
  position: relative;
}
@media (max-width: 1199px) {
  .faq-section .line-area {
    display: none;
  }
}
.faq-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.faq-section .line-area span:nth-child(2) {
  left: 50%;
}
.faq-section .line-area span:nth-child(3) {
  left: 80%;
}

.faq-wrapper .faq-image {
  height: 710px;
  width: 893px;
  margin-left: -50%;
  position: relative;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image {
    margin-left: -70%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    width: initial;
    max-width: 890px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image {
    height: 400px;
  }
}
.faq-wrapper .faq-image .counter-area {
  position: absolute;
  bottom: 10%;
  right: -4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image .counter-area {
    right: 0;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items {
  padding: 40px 90px 40px 40px;
  background-color: var(--header);
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image .counter-area .counter-items {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items {
    padding: 25px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items h2 {
    font-size: 42px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items p {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items p {
    font-size: 16px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items.style-2 {
  background-color: var(--theme);
}
.faq-wrapper .faq-image-items {
  position: relative;
}
.faq-wrapper .faq-image-items .faq-image-1 {
  max-width: 350px;
  height: 380px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items .faq-image-1 {
    max-width: 320px;
    height: 350px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image-items .faq-image-1 {
    max-width: 460px;
    height: 400px;
  }
}
.faq-wrapper .faq-image-items .faq-image-2 {
  max-width: 350px;
  position: absolute;
  top: 28%;
  right: 18%;
  z-index: -1;
}
.faq-wrapper .faq-image-items .faq-image-2 img {
  width: 100%;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    right: 10%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 320px;
    right: 4%;
  }
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 275px;
    right: 0;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    width: 210px;
    height: 210px;
    right: 0;
    top: initial;
    bottom: 0;
    z-index: 99;
  }
}
.faq-wrapper .faq-image-items::before {
  position: absolute;
  top: 15px;
  right: 28%;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--theme);
  animation: top-image-bounce 3s infinite ease-in-out;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image-items::before {
    right: 20%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items::before {
    display: none;
  }
}
.faq-wrapper .faq-image-items::after {
  position: absolute;
  bottom: -23%;
  left: 8%;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--theme2);
  animation: top-image-bounce-2 3s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items::after {
    display: none;
  }
}

.faq-content .accordion-item {
  border: 0;
  margin-top: 20px;
  border-radius: 10px;
  background-color: var(--white);
}
@media (max-width: 575px) {
  .faq-content .accordion-item {
    margin-top: 10px;
  }
}
.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 10px 0;
}
.faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--theme);
  text-align: center;
  font-size: 14px;
  color: var(--white);
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  background-color: var(--header);
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 100px;
  padding-left: 0;
  padding-top: 5px;
  color: var(--text);
}
@media (max-width: 1199px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 0;
  }
}
.faq-content.style-2 .accordion-item {
  margin-top: 10px;
}
.faq-content.style-3 {
  margin-top: 50px;
}
.faq-content.style-3 .collapse {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 20px;
}
.faq-content.style-3 .accordion-item {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 18px 30px;
  border-radius: 0;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button {
  padding: 10px 45px;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-color: var(--theme);
}

.faq-wrapper-2 .faq-items {
  padding: 80px 100px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .faq-wrapper-2 .faq-items {
    padding: 80px 30px;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
  }
}
.faq-wrapper-2 .faq-items .faq-image {
  margin-bottom: -80px;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.faq-wrapper-2 .faq-sidebar .search-widget form {
  width: 100%;
  position: relative;
}
.faq-wrapper-2 .faq-sidebar .search-widget form input {
  background-color: transparent;
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border: 1px solid var(--border);
}
.faq-wrapper-2 .faq-sidebar .search-widget form button {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 18px;
  height: 100%;
  color: var(--header);
}
.faq-wrapper-2 .faq-sidebar .side-post {
  height: 218px;
  margin-top: 40px;
  position: relative;
}
.faq-wrapper-2 .faq-sidebar .side-post::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(42, 40, 51);
  opacity: 0.451;
}
.faq-wrapper-2 .faq-sidebar .side-post h3 {
  position: relative;
  z-index: 9;
  color: var(--white);
  padding: 40px;
  font-size: 30px;
}

.main-sidebar .service-sidebar-widget {
  margin-bottom: 35px;
  padding: 40px;
  background-color: var(--bg);
}
.main-sidebar .service-sidebar-widget .wid-title {
  margin-bottom: 30px;
}
.main-sidebar .service-sidebar-widget .service-category a {
  position: relative;
  display: inline-block;
  padding: 18px 20px;
  background-color: var(--white);
  width: 100%;
  font-weight: 600;
  z-index: 9;
}
.main-sidebar .service-sidebar-widget .service-category a:not(:last-child) {
  margin-bottom: 10px;
}
.main-sidebar .service-sidebar-widget .service-category a i {
  font-size: 18px;
  color: var(--header);
  position: absolute;
  top: 25px;
  right: 20px;
}
.main-sidebar .service-sidebar-widget .service-category a::before {
  background-color: var(--theme);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.main-sidebar .service-sidebar-widget .service-category a:hover {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a:hover i {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-sidebar .service-sidebar-widget .service-category a.active {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a.active i {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a.active::before {
  visibility: visible;
  opacity: 1;
}
.main-sidebar .service-sidebar-widget .service-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-sidebar .service-sidebar-widget .service-info .icon {
  font-size: 42px;
  color: var(--theme);
}
.main-sidebar .service-sidebar-widget .service-info .content h5 {
  font-size: 18px;
  margin-top: 5px;
  font-weight: 500;
}
.main-sidebar .service-post {
  padding: 90px 40px;
  position: relative;
}
.main-sidebar .service-post .content {
  text-align: center;
  z-index: 9;
  position: relative;
}
.main-sidebar .service-post .content h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 30px;
}

.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image {
  position: relative;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background-color: var(--theme3);
  text-align: center;
}
@media (max-width: 991px) {
  .product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 15px;
  }
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon i {
  color: var(--header);
  font-size: 24px;
}
.product-details-wrapper .product-image-items .nav {
  border: unset;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.product-details-wrapper .product-image-items .nav .nav-link {
  padding: 0;
  border: unset;
  background: none;
}
.product-details-wrapper .product-image-items .nav .nav-link .image-tab img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.product-details-wrapper .product-details-content .star a {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}
.product-details-wrapper .product-details-content .star span {
  background-color: var(--theme3);
  font-weight: 600;
  color: var(--header);
  padding: 5px 6px;
  border-radius: 3px;
  margin-right: 10px;
}
.product-details-wrapper .product-details-content .price-list {
  gap: 20px;
}
.product-details-wrapper .product-details-content .price-list span {
  font-weight: 600;
  font-size: 28px;
  color: var(--header);
}
.product-details-wrapper .product-details-content .price-list del {
  font-size: 20px;
  color: var(--theme2);
  font-weight: 500;
}
.product-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
  color: var(--theme2);
}
.product-details-wrapper .product-details-content .cart-wrp {
  margin-top: 30px;
  margin-bottom: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity h5 {
  font-weight: 700;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity {
  width: 190px;
  border: 1px solid var(--header);
  border-radius: 6px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity input {
  width: 60px;
  height: 55px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border2);
  color: var(--header);
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .minus {
  color: var(--header);
  font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .plus {
  color: var(--header);
  font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .qty {
  color: var(--header);
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button {
  justify-content: space-between;
  gap: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .theme-btn {
  width: 88%;
  border-radius: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 36px;
  background-color: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon i {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover {
  background-color: var(--theme);
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover i {
  color: var(--white);
}
.product-details-wrapper .product-details-content .shop-text {
  font-weight: 500;
  margin-bottom: 20px;
}
.product-details-wrapper .product-details-content .shop-text span {
  font-weight: 600;
}
.product-details-wrapper .product-details-content .details-info {
  position: relative;
}
.product-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.product-details-wrapper .product-details-content .details-info span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  margin-left: 100px;
  text-transform: uppercase;
}
.product-details-wrapper .single-tab {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab {
    padding-top: 50px;
  }
}
.product-details-wrapper .single-tab .nav {
  border-bottom: 1px solid var(--border2);
  padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link {
  text-align: center;
  padding: 20px 50px;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--header);
}
.product-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
  background-color: var(--theme3);
  text-align: center;
  padding: 20px 50px;
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--header);
}
.product-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.product-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 20px;
  gap: 200px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li:not(:last-child) {
  margin-bottom: 15px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li i {
  color: var(--theme);
  margin-right: 10px;
  font-weight: 600;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.product-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.product-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 16px;
  margin-left: 30px;
}
.product-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #ff9200;
}
.product-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.product-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200;
}
.product-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.product-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.cta-section {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.cta-wrapper .cta-left {
  padding: 40px 50px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
@media (max-width: 991px) {
  .cta-wrapper .cta-left {
    padding: 30px 25px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left {
    text-align: center;
    padding: 30px 30px;
  }
}
.cta-wrapper .cta-left h2 {
  font-size: 90px;
  color: var(--theme);
}
@media (max-width: 991px) {
  .cta-wrapper .cta-left h2 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left h2 {
    font-size: 48px;
  }
}
.cta-wrapper .cta-left p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left p {
    font-size: 16px;
  }
}
.cta-wrapper .cta-right {
  box-shadow: var(---box-shadow);
  background-color: var(--white);
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cta-wrapper .cta-right {
    padding: 45px 30px;
    height: initial;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right {
    flex-direction: column;
    gap: 30px;
    padding: 50px 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-wrapper .cta-right .shape-image {
  background-image: url(../image/shape1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cta-wrapper .cta-right .shape-image {
    left: -150px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper .cta-right .shape-image {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .shape-image {
    background-size: cover;
    left: 0;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .cta-content h3, .cta-wrapper .cta-right .cta-content span {
    color: var(--white);
  }
}
.cta-wrapper .cta-right .cta-content span {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .cta-content span span {
    color: var(--white);
  }
}
.cta-wrapper .cta-right .cta-content h3 {
  font-size: 26px;
  color: var(--white);
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area {
    text-align: center;
  }
}
.cta-wrapper .cta-right .call-area p {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: right;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area p {
    text-align: center;
    color: var(--white);
  }
}
.cta-wrapper .cta-right .call-area a {
  font-size: 26px;
  color: var(--header);
  font-weight: 700;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area a {
    color: var(--white);
  }
}

.cta-section-2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
  
}
.cta-section-2 .shape-image {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .cta-section-2 .shape-image {
    display: none;
  }
}
.cta-section-2.style-2 {
  background-attachment: fixed;
}
.cta-section-2.style-2::before {
  opacity: 0.8;
}
.cta-section-2.style-2 .video-icon {
  margin-top: 50px;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
  display: inline-block;
  font-size: 22px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .cta-section-2.style-2 .video-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-top: 30px;
  }
}

.cta-wrapper-2 {
  position: relative;
}
.cta-wrapper-2 .cta-content {
  margin: 0 auto;
  text-align: center;
}
.cta-wrapper-2 .cta-content h2 {
  color: var(--white);
  font-size: 60px;
}
@media (max-width: 1199px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 34px;
  }
}

.cta-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .cta-wrapper-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }
}

.video-section {
  position: relative;
  padding: 230px 0;
}
.video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 5, 28);
  opacity: 0.8;
}
@media (max-width: 575px) {
  .video-section {
    padding: 130px 0;
  }
}
@media (max-width: 991px) {
  .video-section {
    padding: 200px 0;
  }
}

.video-box {
  display: block;
}
.video-box .video-btn {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 150px;
  font-size: 24px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1490196078);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .video-box .video-btn {
    width: 100px;
    height: 100px;
    line-height: 110px;
  }
}
.video-box .ripple::before, .video-box .ripple::after {
  width: 140px;
  height: 140px;
}
@media (max-width: 575px) {
  .video-box .ripple::before, .video-box .ripple::after {
    width: 100px;
    height: 100px;
  }
}

.cta-wrapper-4 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .cta-wrapper-4 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-wrapper-4 .cta-content h2 {
  font-size: 60px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 1199px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 32px;
  }
}

.cta-image img {
  border-radius: 50px;
}

.cta-section-3 {
  position: relative;
  z-index: 1;
}
.cta-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
}

.marque-section {
  position: relative;
}
@media (max-width: 1199px) {
  .marque-section .line-area {
    display: none;
  }
}
.marque-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.marque-section .line-area span:nth-child(2) {
  left: 50%;
}
.marque-section .line-area span:nth-child(3) {
  left: 80%;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 45px;
  margin-top: -2px;
}
@media (max-width: 575px) {
  .marquee-wrapper {
    margin-top: -25px;
  }
}
.marquee-wrapper.style-2 {
  line-height: 40px;
}
@media (max-width: 575px) {
  .marquee-wrapper.style-2 {
    line-height: 75px;
  }
}
.marquee-wrapper.style-2 .text-slider {
  font-size: 24px;
  color: var(--header);
  margin-right: 40px;
}

.text-slider {
  font-size: 120px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
  color: #e1e1de;
}
@media (max-width: 575px) {
  .text-slider {
    font-size: 50px;
    height: 70px;
    line-height: 65px;
  }
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.testimonial-section {
  position: relative;
}
.testimonial-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.testimonial-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.testimonial-card-items {
  background-color: var(--white);
  padding: 40px;
  position: relative;
  margin-top: 30px;
  display: inline-block;
}
	
.testimonial-card-items {
  -webkit-box-shadow:0 0 15px rgba(0,0,0,.1);
  -moz-box-shadow:0 0 15px rgba(0,0,0,.1);
  box-shadow:0 0 15px rgba(0,0,0,.1);
  transition:.5s ease-in-out;
  -webkit-transition:.5s ease-in-out;
  border-radius:4px;
}
.testimonial-card-items:hover {
  -webkit-box-shadow:0 0 15px rgba(0,0,0,.4);
  -moz-box-shadow:0 0 15px rgba(0,0,0,.4);
  box-shadow:0 0 15px rgba(0,0,0,.4);
}

.testimonial-card-items::before {
  position: absolute;
  bottom: 30px;
  right: 30px;
  content: "";
  background-image: url(../image/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 150px;
  height: 200px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.2;
}
.testimonial-card-items .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonial-card-items .icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 48px;
  transition: all 0.4s ease-in-out;
  color: #000;
}
.testimonial-card-items .testimonial-content {
  /*! margin-top: 20px; */
  position: relative;
  z-index: 9;
}
.testimonial-card-items .testimonial-content p {
  height: 150px;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  transition: color 0.3s ease;
}
.testimonial-card-items .testimonial-content a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}
.testimonial-card-items .testimonial-content a h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.testimonial-card-items .testimonial-content span {
  display: inline-block;
  font-size: 20px;
  color: #ED2C25;
  background: rgba(237, 44, 37, 0.1);
  padding: 15px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid rgba(237, 44, 37, 0.3);
  margin-left: 0;
}
.testimonial-card-items:hover .testimonial-content p {
  color: #ED2C25;
}
.testimonial-card-items:hover .testimonial-content span {
  background: rgba(237, 44, 37, 0.2);
  border-color: #ED2C25;
}
.testimonial-card-items:hover .testimonial-content a h4 {
  color: #ED2C25;
}
.testimonial-card-items:hover .testimonial-content a {
  color: #ED2C25;
}
.testimonial-card-items:hover::before {
  filter: initial;
  opacity: 1;
}
.testimonial-card-items:hover .icon {
  color: #ED2C25;
}
.testimonial-card-items.active::before {
  filter: initial;
  opacity: 1;
}
.testimonial-card-items.active .icon {
  color: var(--theme);
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .shape-left {
    display: none;
  }
}
.testimonial-section-2 .right-shape {
  position: absolute;
  top: -37%;
  right: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .right-shape {
    display: none;
  }
}

.testimonial-wrapper {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .testimonial-wrapper {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper .testimonial-items {
  max-width: 580px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper .testimonial-items .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .client-image {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.testimonial-wrapper .testimonial-items .testiminial-content p {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .testiminial-content p {
    margin-bottom: 20px;
  }
}
.testimonial-wrapper .array-button {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575px) {
  .testimonial-wrapper .array-button {
    justify-content: center;
  }
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .shape-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.testimonial-right {
  width: 860px;
}
@media (max-width: 1600px) {
  .testimonial-right {
    width: initial;
    max-width: 860px;
  }
}
.testimonial-right .testimonial-card-items-2 .testimonial-content {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 40px;
  position: relative;
  border-bottom: 4px solid var(--theme);
}
.testimonial-right .testimonial-card-items-2 .testimonial-content::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-image: url(../image/shape-21.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 73px;
  height: 101px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.2;
}
.testimonial-right .testimonial-card-items-2 .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-right .testimonial-card-items-2 .client-info .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonial-right .testimonial-card-items-2 .client-info .client-content h4 {
  margin-bottom: 5px;
}
.testimonial-right .testimonial-card-items-2:hover .testimonial-content::before {
  filter: initial;
  opacity: 1;
}
.testimonial-right .testimonial-card-items-2.active .testimonial-content::before {
  filter: initial;
  opacity: 1;
}

.brand-wrapper .brand-image {
  margin: 0 auto;
  text-align: center;
  padding: 30px 10px;
  background-color: var(--bg);
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.brand-wrapper .brand-image:hover {
  filter: initial;
}
.brand-wrapper.style-2 .brand-image {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
.brand-wrapper.style-3 {
  margin-bottom: 55px;
}
@media (max-width: 1399px) {
  .brand-wrapper.style-3 {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-3 {
    margin-bottom: 0;
  }
}
.brand-wrapper.style-3 .brand-image {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
}

.brand-section-2 {
  position: relative;
}
.brand-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 20%;
}

.brand-section-3 {
  background-color: #1c1b23;
  position: relative;
}
.brand-section-3 .layer-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-section {
  position: relative;
}
.pricing-section .shape-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.pricing-section .shape-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .pricing-section .shape-image {
    display: none;
  }
}

.single-pricing-items {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 15px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.single-pricing-items .pricing-header {
  padding: 45px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-header {
    padding: 40px;
  }
}
.single-pricing-items .pricing-header h2 {
  margin-bottom: 10px;
}
.single-pricing-items .pricing-header h2 sub {
  font-size: 18px;
  margin-left: -10px;
}
.single-pricing-items .pricing-header span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
.single-pricing-items .pricing-header .icon-area {
  position: relative;
  margin-top: 40px;
}
.single-pricing-items .pricing-header .icon-area img {
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-header .icon-area {
    margin-top: 20px;
  }
}
.single-pricing-items .pricing-header .icon-area .content {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  text-align: center;
  padding: 5px 15px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.single-pricing-items ul {
  padding: 40px 45px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items ul {
    padding: 40px 40px 30px;
  }
}
.single-pricing-items ul li {
  position: relative;
}
.single-pricing-items ul li:not(:last-child) {
  margin-bottom: 10px;
}
.single-pricing-items ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.single-pricing-items ul .last-list {
  opacity: 0;
}
@media (max-width: 1399px) {
  .single-pricing-items ul .last-list {
    opacity: 1;
  }
}
.single-pricing-items .pricing-button {
  padding: 0 45px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-button {
    padding: 0 40px 40px;
  }
}
.single-pricing-items.active {
  border: 1px solid var(--theme);
}
.single-pricing-items .shape-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.single-pricing-items .shape-image img {
  width: 100%;
  height: 100%;
}
.single-pricing-items:hover {
  transform: translateY(-15px);
}
.single-pricing-items:hover .pricing-header .icon-area img {
  transform: scaleX(-1);
}

.news-section {
  position: relative;
}
.news-section .swiper-slide.swiper-slide-active .single-news-items .news-image .icon {
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.news-section .swiper-slide.swiper-slide-active .single-news-items .news-image::after {
  opacity: 0.6;
  visibility: visible;
  transform: scale(1);
}
@media (max-width: 1199px) {
  .news-section .line-area {
    display: none;
  }
}
.news-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.news-section .line-area span:nth-child(2) {
  left: 50%;
}
.news-section .line-area span:nth-child(3) {
  left: 80%;
}
.news-section.style-2 {
  position: relative;
}
.news-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
.news-section.style-2 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}

.single-news-items {
	margin-top: 30px;
	overflow: hidden;
}
.single-news-items .news-image {
  height: 208px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.single-news-items .news-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  z-index: 9;
  transition: all 300ms ease;
  transition-delay: 0s;
  transition-delay: 0s;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
}
.single-news-items .news-image .icon i {
  color: var(--white);
}
.single-news-items .news-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgb(0, 5, 28);
}

.services-two__top-left {
    position: relative;
    display: block;
}

.services-two__top-right {
    position: relative;
    display: block;
    float: right;
	padding-top: 15px;
}

.single-news-items .news-content {
  /* padding-top: 25px; */
	background-color: #fff;
	box-shadow: var(---box-shadow);
	padding: 30px;
	align-items: initial;
	transition: all 0.4s ease-in-out;
	border-bottom: 3px solid var(--white);
}
.single-news-items .news-content h5{
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
	color: #000;
	line-height: 30px;
	height: 115px;
	overflow: hidden;
}
.single-news-items .news-content .post-meta {color: #ED2C25;padding-bottom: 10px;border-bottom: 1px #ccc solid;margin-bottom: 15px;padding-bottom: 16px;}
.single-news-items .news-content .post-meta span {padding-right: 25px;}
.single-news-items .news-content .post-meta i{padding-right: 10px;}

.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items {color: #ED2C25;border-bottom: 1px #ccc solid;padding-bottom: 17px;}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items span {padding-right: 25px;}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items i{padding-right: 10px;}

@media (max-width: 575px) {
  .single-news-items .news-content {
    padding-top: 15px;
  }
}
.single-news-items .news-content h3 {
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  height: 55px;
}
@media (max-width: 991px) {
  .single-news-items .news-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .single-news-items .news-content h3 {
    font-size: 20px;
  }
}
.single-news-items .news-content h3 a:hover {
  color: var(--theme);
}
.single-news-items:hover .news-image .icon {
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.single-news-items:hover .news-image::after {
  opacity: 0.6;
  visibility: visible;
  transform: scale(1);
}

.single-news-items-2 {
  margin-top: 30px;
}
.single-news-items-2 .news-image {
  height: 225px;
  position: relative;
}
@media (max-width: 575px) {
  .single-news-items-2 .news-image {
    height: 400px;
  }
}

.single-news-items-2 .news-image:hover {
  -webkit-box-shadow:0 0 15px rgba(0,0,0,.4);
  -moz-box-shadow:0 0 15px rgba(0,0,0,.4);
  box-shadow:0 0 15px rgba(0,0,0,.4)
}
	
.single-news-items-2 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-box-shadow:0 0 15px rgba(0,0,0,.1);
  -moz-box-shadow:0 0 15px rgba(0,0,0,.1);
  box-shadow:0 0 15px rgba(0,0,0,.1);
  transition:.5s ease-in-out;
  z-index: 1;
}
.single-news-items-2:hover .news-image::before {
  background-color: #ED2C25 !important;
  box-shadow: none !important;
  border-radius: 4px;
}
.single-news-items-2:hover .news-image .news-content h4 a {
  color: #fff !important;
}
.single-news-items-2:hover .news-image .news-content .post-list li {
  color: #fff !important;
}
.single-news-items-2:hover .news-image .news-content .post-list li span {
  color: #fff !important;
}
.single-news-items-2:hover .news-image .news-content .post-list li i {
  color: #fff !important;
}
.single-news-items-2:hover .news-image .news-content .post-list li a i {
  color: #fff !important;
}
.single-news-items-2:hover .news-image::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #ED2C25 !important;
  box-shadow: 0 4px 15px rgba(237, 44, 37, 0.3) !important;
  border-radius: 4px;
  z-index: 1;
}
.single-news-items-2 .news-image .post-date {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: var(--white);
  padding: 10px 24px;
}
.single-news-items-2 .news-image .post-date span {
  color: var(--header);
  font-weight: 600;
  font-size: 18px;
}
.single-news-items-2 .news-image .news-content {
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.single-news-items-2 .news-image .news-content .icon {
  margin-bottom: 20px;
}
.single-news-items-2 .news-image .news-content .icon span {
  color: var(--white);
}
.single-news-items-2 .news-image .news-content .icon i {
  color: var(--white);
  margin-right: 5px;
}
.single-news-items-2 .news-image .news-content h4 a {
   	margin-bottom: 5px;
   	font-size: 20px;
   	font-weight: 500;
   	color: #000;
   	line-height: 30px;
   	overflow: hidden;
   	display: -webkit-box;
   	/*! -webkit-line-clamp: 3; */
   	/*! -webkit-box-orient: vertical; */
   	/*! padding-bottom: 20px; */
   	/*! border-bottom: 1px solid #ccc; */
   	/*! height: 60px; */
   	/*! max-height: 60px; */
   	/*! margin-top: 15px; */
}
.single-news-items-2 .news-image .news-content h4 a:hover {
	color: #043d90;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	overflow: hidden;
   	display: -webkit-box;
   	-webkit-line-clamp: 2;
   	-webkit-box-orient: vertical;
}
.single-news-items-2 .news-image .news-content .post-list {
  background-color: rgba(255, 255, 255, 0.0784313725);
  /*! padding: 18px 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .single-news-items-2 .news-image .news-content .post-list {
    padding: 14px 20px;
  }
}
.single-news-items-2 .news-image .news-content .post-list li {
  color: #ED2C25;
}
.single-news-items-2 .news-image .news-content .post-list li span {
  margin-left: 5px;
}
.single-news-items-2 .news-image .news-content .post-list li a i {
  color: #ED2C25;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}
.single-news-items-2:hover .news-image .news-content .post-list {
  /*background-color: var(--theme);*/
}
.single-news-items-2.active .news-image .news-content .post-list {
  /*! background-color: rgba(98, 19, 255, 0.8); */
  /*! color: #333; */
}

.single-news-items-2.active .news-image .news-content .post-list span {padding-right: 25px;}
.single-news-items-2.active .news-image .news-content .post-list i{padding-right: 10px;}

.single-news-items-3 {
  margin-top: 30px;
}
.single-news-items-3 .news-image {
  height: 240px;
  position: relative;
}
.single-news-items-3 .news-image .post-date {
  position: absolute;
  left: 60px;
  bottom: 50px;
  color: var(--white);
  z-index: 1;
}
.single-news-items-3 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(3, 5, 26);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  opacity: 0.6;
}
.single-news-items-3 .news-content {
  padding: 30px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  margin-left: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 575px) {
  .single-news-items-3 .news-content {
    margin-left: 0;
  }
}
.single-news-items-3 .news-content span {
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.single-news-items-3 .news-content h3 {
  font-size: 26px;
}
.single-news-items-3 .news-content .news-btn {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.single-news-items-3 .news-content .news-btn a {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.single-news-items-3 .news-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: -1;
}
.single-news-items-3 .news-content::after {
  position: absolute;
  bottom: 0;
  right: -70px;
  content: "";
  width: 140px;
  height: 125px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../image/shape3.png);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.single-news-items-3:hover .news-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.single-news-items-3:hover .news-content::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.single-news-items-3:hover .news-content::after {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.single-news-items-3:hover .news-content span {
  color: var(--white);
}
.single-news-items-3:hover .news-content h3 a {
  color: var(--white);
}
.single-news-items-3:hover .news-content .news-btn a {
  color: var(--white);
}
.single-news-items-3.active .news-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.single-news-items-3.active .news-content::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.single-news-items-3.active .news-content::after {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.single-news-items-3.active .news-content span {
  color: var(--white);
}
.single-news-items-3.active .news-content h3 a {
  color: var(--white);
}
.single-news-items-3.active .news-content .news-btn a {
  color: var(--white);
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
  font-weight: 600;
}
.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Rubik", serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../image/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Rubik", serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}
.search_widget form input {
  background-color: var(--bg);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}
.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme);
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a {
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
  color: var(--theme);
}
.widget_categories ul li a i {
  margin-right: 10px;
}
.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 11px 26px;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  background: var(--bg);
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: var(--theme);
}

.tag-share-wrap {
  padding-bottom: 50px;
}
.tag-share-wrap h4 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}
.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
  font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #727475;
  border: 1px solid #ebebeb;
  background: transparent;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}
.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme);
  font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}
@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}
.comment-form label {
  margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
  background-color: var(--bg);
}
@media (max-width: 585px) {
  .comment-form input, .comment-form textarea {
    padding: 15px;
  }
}
.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .theme-btn {
  display: inline-block;
  line-height: 1;
  padding: 20px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}
@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
.comment-form .theme-btn i {
  margin-right: 10px;
}

.comment ul {
  list-style-type: disc;
}
.comment ul ol {
  margin-bottom: 0;
}
.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}
.comment ol ul {
  margin-bottom: 0;
}
.comment ol ol {
  margin-bottom: 0;
}
.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme);
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme);
}
.site_info_widget .social-link {
  margin-top: 35px;
}
.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contact-section {
  position: relative;
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  z-index: -1;
  height: 70.1%;
}
.contact-section .contact-image {
  position: absolute;
  bottom: 30%;
  right: -2%;
}
@media (max-width: 1399px) {
  .contact-section .contact-image {
    display: none;
  }
}
.contact-section .contact-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .contact-section .contact-shape {
    display: none;
  }
}

.contact-wrapper .contact-left-image {
  width: 915px;
  height: 600px;
  left: -50%;
  position: relative;
}
@media (max-width: 1399px) {
  .contact-wrapper .contact-left-image {
    width: 890px;
    left: -60%;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-left-image {
    max-width: 915px;
    left: 0;
    width: initial;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image {
    height: 500px;
  }
}
.contact-wrapper .contact-left-image .counter-area {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-wrapper .contact-left-image .counter-area .counter-items {
  padding: 40px 90px 40px 40px;
  background-color: var(--header);
}
@media (max-width: 767px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items {
    padding: 25px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items h2 {
    font-size: 42px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items p {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items p {
    font-size: 16px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items.style-2 {
  background-color: var(--theme);
}

.contact-area {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .contact-area {
    margin-left: 0;
  }
}
.contact-area .contact-box {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 80px;
}
@media (max-width: 767px) {
  .contact-area .contact-box {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .contact-area .contact-box {
    padding: 40px;
  }
}
.contact-area .contact-box .contact-title {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .contact-area .contact-box .contact-title {
    margin-bottom: 20px;
  }
}
.contact-area .contact-box .contact-title span {
  color: var(--theme);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.contact-area .contact-box .contact-title h3 {
  font-size: 30px;
}
.contact-area .contact-box .form-clt input, .contact-area .contact-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 30px;
  color: var(--header);
  background-color: var(--bg);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .contact-area .contact-box .form-clt input, .contact-area .contact-box .form-clt textarea {
    padding: 14px 30px;
  }
}
.contact-area .contact-box .form-clt textarea {
  padding: 18px 30px 110px;
}
@media (max-width: 575px) {
  .contact-area .contact-box .form-clt textarea {
    padding: 14px 30px 70px;
  }
}

.contact-form-items {
  background-color: var(--bg);
  padding: 70px;
}
@media (max-width: 767px) {
  .contact-form-items {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .contact-form-items {
    padding: 50px 30px;
  }
}
.contact-form-items .title {
  margin-bottom: 40px;
}
.contact-form-items .title h2 {
  font-size: 36px;
  margin-bottom: 5px;
}
.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
  padding: 18px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 575px) {
  .contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
    padding: 12px 20px;
  }
}
.contact-form-items .form-clt textarea {
  padding: 18px 30px 110px;
}
@media (max-width: 575px) {
  .contact-form-items .form-clt textarea {
    padding: 12px 20px 90px;
  }
}
.contact-form-items .form-clt::-moz-placeholder {
  color: var(--text);
}
.contact-form-items .form-clt::placeholder {
  color: var(--text);
}

.request-a-quote-section {
  position: relative;
  z-index: 2;
}
.request-a-quote-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
  z-index: -1;
}

.request-quote-form-wrapper {
  padding: 40px 50px;
  background-color: #fff;
  box-shadow: 0px 15px 40px 0px rgba(109, 109, 109, 0.06);
}
@media (max-width: 767px) {
  .request-quote-form-wrapper {
    padding: 40px 30px;
  }
}
.request-quote-form-wrapper h4,
.request-quote-form-wrapper h3 {
  margin-bottom: 25px;
  text-transform: capitalize;
}
.request-quote-form-wrapper .request-quote-form input,
.request-quote-form-wrapper .request-quote-form select {
  width: 100%;
  font-size: 15px;
  border: 1px solid #e2e2e2;
  padding: 14px 20px;
  border-radius: 0;
}
.request-quote-form-wrapper .request-quote-form label {
  font-size: 15px;
  text-transform: capitalize;
}
.request-quote-form-wrapper .request-quote-form input[type=checkbox],
.request-quote-form-wrapper .request-quote-form input[type=radio] {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
  border-color: var(--theme);
}
.request-quote-form-wrapper .request-quote-form input[type=submit],
.request-quote-form-wrapper .request-quote-form .submit-btn {
  border: 0px;
  margin-top: 30px;
  margin-bottom: 10px;
  height: 60px;
  font-size: 16px;
  background-color: var(--theme);
}
@media (max-width: 767px) {
  .request-quote-form-wrapper .request-quote-form input[type=submit],
  .request-quote-form-wrapper .request-quote-form .submit-btn {
    height: 50px;
    font-size: 14px;
  }
}
.request-quote-form-wrapper .request-quote-form input[type=submit]:hover,
.request-quote-form-wrapper .request-quote-form .submit-btn:hover {
  background: var(--header);
}
.request-quote-form-wrapper .request-quote-form .nice-select {
  background-color: transparent;
  width: 100%;
  font-size: 15px;
  border: 1px solid #e2e2e2;
  padding: 14px 20px;
  border-radius: 0;
}

.single-contact-card {
  background-color: #f8f8f8;
  padding: 40px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 585px) {
  .single-contact-card {
    padding: 30px;
  }
}
.single-contact-card:hover {
  background-color: var(--theme);
}
.single-contact-card:hover .icon {
  color: #fff !important;
  background-color: var(--theme2) !important;
}
.single-contact-card:hover .bottom-part .icon {
  color: var(--theme) !important;
  background-color: #fff !important;
}
.single-contact-card:hover p,
.single-contact-card:hover span, .single-contact-card:hover h4 {
  color: #fff;
}
.single-contact-card .top-part {
  overflow: hidden;
}
.single-contact-card .top-part .icon {
  width: 70px;
  height: 70px;
  font-size: 20px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  float: left;
  color: var(--theme);
  overflow: hidden;
  margin-right: 20px;
}
.single-contact-card .top-part .title {
  overflow: hidden;
}
.single-contact-card .bottom-part {
  margin-top: 25px;
  overflow: hidden;
}
.single-contact-card .bottom-part .icon {
  width: 50px;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  float: right;
  overflow: hidden;
  margin-left: 20px;
}
.single-contact-card .bottom-part .info {
  display: inline-block;
  overflow: hidden;
}

.single-branch-card {
  padding: 40px;
  padding-top: 0;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1019607843);
  position: relative;
  margin-top: 90px;
}
.single-branch-card .country-flag {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -60px;
}
.single-branch-card .content h4 {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 5px;
  margin-bottom: 20px;
  font-size: 25px;
}
.single-branch-card .content h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 14px;
  background-color: rgba(198, 245, 255, 0.8509803922);
  left: 0;
  bottom: 2px;
  z-index: -1;
}
.single-branch-card .content p {
  margin-bottom: 10px;
}
.single-branch-card .content p a {
  font-size: inherit;
  color: var(--theme);
}
.single-branch-card .content .branch-links {
  margin-top: 15px;
}
.single-branch-card .content .branch-links a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}
.single-branch-card .content .branch-links a:hover {
  padding-left: 5px;
  color: var(--theme3);
}
.single-branch-card .content .branch-links a i {
  margin-left: 5px;
}

.our-branch-wrapper {
  position: relative;
  z-index: 1;
}
.our-branch-wrapper .office-google-map-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: -1;
}
.our-branch-wrapper .office-google-map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.footer-section {
  position: relative;
}
.footer-section.style-2 {
  position: relative;
}
.footer-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 5, 28);
  opacity: 0.9;
}

.footer-widgets-wrapper {
  padding: 60px 0 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 60px 0 90px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 70px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  /*! margin-top: 30px; */
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
  padding-top: 10px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  /*! text-transform: capitalize; */
  /*! color: var(--white); */
}
	
.footer-widgets-wrapper .single-footer-widget .widget-head h3 .read {
  -webkit-transition:.3s ease-in-out;
  font-weight:700;
  position:relative;
  font-size:18px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 .read::before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:1px;
  background:#fff;
  -webkit-transition:.3s ease-out;
  transition:.3s ease-out;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 .read:hover::before {
  width:0%
}

	
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .footer-content h6 {
  margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content h6 a {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 15px;
  gap: 25px;
  position: relative;
  z-index: 9;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  /*! width: 40px; */
  /*! height: 40px; */
  /*! line-height: 40px; */
  /*! text-align: center; */
  /*! font-size: 16px; */
  /*! display: block; */
  /*! background: rgba(92, 92, 91, 0.1); */
  /*! color: var(--text2); */
  /*! border-radius: 50%; */
  /*! transition: all 0.4s ease-in-out; */
  /*! text-align: center; */
  /*! border: 1px dashed #ccc; */
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-bottom: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: transparent;
  color: var(--text2);
  position: relative;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-button {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-area li {
  font-weight: 500;
  color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  position: relative;color: #fff;font-size: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  /*! background-color: var(--theme); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  padding-left: 20px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover::before {
  opacity: 1;
  visibility: visible;
}

/* 首页自定义样式 - 迁移自index.html */

/* Banner高度调整为满屏并适配移动端 */
.hero-section.hero-1 {
    height: 100vh;
    overflow: hidden;
}
.hero-section.hero-1 .hero-slider {
    height: 100vh;
}
.hero-section.hero-1 .hero-image {
    height: 100vh;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}
.hero-section.hero-1 .hero-content {
    padding-top: 30vh;
}
.hero-section.hero-1 .hero_content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* 移动端Banner适配 - 保持满屏 */
@media (max-width: 767px) {
    .hero-section.hero-1 {
        width: 100% !important;
        height: 45vh !important;
        min-height: 280px !important;
        max-height: 400px !important;
    }
    .hero-section.hero-1 .hero-slider {
        width: 100% !important;
        height: 45vh !important;
        min-height: 280px !important;
        max-height: 400px !important;
    }
    .hero-section.hero-1 .hero-image {
        width: 100% !important;
        height: 45vh !important;
        min-height: 280px !important;
        max-height: 400px !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        left: 0 !important;
        right: 0 !important;
    }
    .hero-section.hero-1 .hero-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .hero-section.hero-1 .hero_content {
        bottom: 20px !important;
    }
    .hero-section.hero-1 .hero_content a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: all 0.3s ease;
    }
    .hero-section.hero-1 .hero_content a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(3px);
    }
    .hero-section.hero-1 .hero_content .icon i {
        font-size: 16px !important;
        color: #fff !important;
    }
    .hero-1 .array-button {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .hero-section.hero-1 {
        width: 100% !important;
        height: 40vh !important;
        min-height: 250px !important;
        max-height: 350px !important;
    }
    .hero-section.hero-1 .hero-slider {
        width: 100% !important;
        height: 40vh !important;
        min-height: 250px !important;
        max-height: 350px !important;
    }
    .hero-section.hero-1 .hero-image {
        width: 100% !important;
        height: 40vh !important;
        min-height: 250px !important;
        max-height: 350px !important;
    }
    .hero-section.hero-1 .hero_content {
        bottom: 15px !important;
    }
    .hero-section.hero-1 .hero_content a {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
    .hero-section.hero-1 .hero_content .icon i {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .hero-section.hero-1 {
        width: 100% !important;
        height: 35vh !important;
        min-height: 220px !important;
        max-height: 300px !important;
    }
    .hero-section.hero-1 .hero-slider {
        width: 100% !important;
        height: 35vh !important;
        min-height: 220px !important;
        max-height: 300px !important;
    }
    .hero-section.hero-1 .hero-image {
        width: 100% !important;
        height: 35vh !important;
        min-height: 220px !important;
        max-height: 300px !important;
    }
    .hero-section.hero-1 .hero_content {
        bottom: 12px !important;
    }
}

/* 通知公告两列布局样式 */
.notice-list-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.notice-list-title {
    font-size: 25px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ED2C25;
}
.notice-list {
    list-style: none;
    padding: 15px 0px;
    margin: 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.notice-list:hover {

}
.notice-list::before {
    position: absolute;
    bottom: 30px;
    right: 30px;
    content: "";
    background-image: url(../image/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    width: 150px;
    height: 200px;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
    opacity: 0.2;
    z-index: 0;
}
.notice-list:hover::before {
    filter: initial;
    opacity: 0.4;
}
.notice-list > * {
    position: relative;
    z-index: 9;
}

.notice-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
    line-height: 26px;
    position: relative;
    padding-left: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.notice-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: #ED2C25;
    border-radius: 2px;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.notice-list li:hover {
    padding-left: 15px;
    background-color: rgba(237, 44, 37, 0.03);
    border-radius: 4px;
}
.notice-list li:hover::before {
    height: 70%;
}
.notice-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.notice-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}
.notice-item:hover {
    color: #ED2C25;
}
.notice-date {
    background: #ED2C25;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    margin-right: 25px;
    min-width: 45px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.notice-list li:hover .notice-date {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(237, 44, 37, 0.35);
}
	.notice-title:hover {
   color: #ED2C25 !important;
}
.notice-title {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    color: #000;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 13px 0;
    /*! display: flex; */
    align-items: center;
    flex: 1 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #000 !important;
}
.notice-arrow {
    color: #999;
    font-size: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}
.notice-item:hover .notice-arrow {
    color: #ED2C25;
    transform: translateX(5px);
    opacity: 1;
}

.files-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.files-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ED2C25;
}

/* 标题与更多链接布局 */
.title-with-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ED2C25;
    right: 0px;
    position: relative;
}

.title-with-more .notice-list-title,
.title-with-more .files-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.more-link {
    display: inline-flex;
    align-items: center;
    color: #ED2C25;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0px 6px 12px;
    /*! border: 1px solid #ED2C25; */
    border-radius: 4px;
}

.more-link:hover {
    background-color: #ED2C25;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(237, 44, 37, 0.3);
}

.footer-bottom {
  padding: 35px 0;
  border-top: rgba(255, 255, 255, 0.5) 1px solid;
  position: relative;
  z-index: 9;
}
.footer-bottom .footer-bottom-wrapper {
  /* display: flex; */
  font: 500;
  font-size: 17px;
  color: #fff;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.footer-bottom .footer-bottom-wrapper p a {
  /*! color: #fff; */
  /*! float: right; */
  /*! color: #fff; */
  /*! font-size: 20px; */
}
.footer-bottom .footer-bottom-wrapper p a:hover {
  color: #ED2C25;
}

/* ============================================
   新六个模块 - 团学动态 (精致端庄版)
   ============================================ */
#our-photos {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

#our-photos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

/* 导航容器 - 居中对齐 + 左右红线装饰 */
#our-photos .d-flex {
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 180px;
}

/* 左右红线装饰 - 在按钮区域两侧 */
#our-photos .d-flex::before,
#our-photos .d-flex::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 2px;
  background-color: #ED2C25;
}

#our-photos .d-flex::before {
  left: calc(2% - 40px);
}

#our-photos .d-flex::after {
  right: calc(2% - 40px);
  /*! left: ; */
}

/* 导航项容器 */
#our-photos .nav-item {
  margin: 10px !important;

}

/* 按钮基础样式 - 精致端庄 */
#our-photos .nav-link {
  font-size: 25px;
  font-weight: 500;
  color: #495057;
  background-color: #ffffff;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Hover效果 - 上浮+阴影加深 */
#our-photos .nav-link:hover {
  color: #ED2C25;
  border-color: #ED2C25;
  background-color: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 44, 37, 0.15);
}

/* Active激活状态 - 主色调填充 */
#our-photos .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ED2C25 0%, #c91f1a 100%);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(237, 44, 37, 0.35);
  transform: translateY(-1px);
}

#our-photos .nav-link.active:hover {
  background: linear-gradient(135deg, #ff3329 0%, #ED2C25 100%);
  box-shadow: 0 6px 24px rgba(237, 44, 37, 0.45);
}

/* 内容区域优化 */
#our-photos .tab-content {
  margin-top: 40px;
}

#our-photos .tab-pane {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 图片网格样式 */
#our-photos .row [class*="col-"] {
  /*! margin-bottom: 24px; */
}

#our-photos img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#our-photos img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ============================================
   左侧特色文章卡片样式
   ============================================ */
.featured-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

/* 外层容器卡片（#our-photos内） */
#our-photos .featured-card {
  padding: 24px;
}

#our-photos .featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(237, 44, 37, 0.15);
}

/* ============================================
   左侧卡片（LIST-KAD-LEFT）- 优化图片比例
   ============================================ */
.LIST-KAD-LEFT {
  /*! background: #ffffff; */
  /*! border-radius: 12px; */
  /*! overflow: hidden; */
  /*! box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
  /*! transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  /*! height: 100%; */
}

.LIST-KAD-LEFT:hover {
  /*transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(237, 44, 37, 0.18);*/
}

.featured-card:hover {
  /*transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(237, 44, 37, 0.15);*/
}

.featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* 图片区域 - 增加高度让比例更协调（240px → 340px） */
.featured-image {
  position: relative;
  overflow: hidden;
  height: 340px;  /* 增加高度，让图片更大气 */
  background: #f8f9fa;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 保持图片比例填充 */
  transition: transform 0.6s ease;
}

.LIST-KAD-LEFT:hover .featured-image img {
  transform: scale(1.06);  /* 悬停时轻微放大 */
}

/* 图片右上角时间标签 */
.featured-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(237, 44, 37, 0.9);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(237, 44, 37, 0.3);
}

/* 卡片内容区 */
.featured-content {
  padding: 24px;
  background: #ffffff;
}

.featured-title {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.featured-card:hover .featured-title {
  color: #ED2C25;
}

.featured-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   右侧列表容器（LIST-KAD-RIGHT）
   ============================================ */
.LIST-KAD-RIGHT {
  /*! background: #ffffff; */
  /*! border-radius: 12px; */
  /*! padding: 20px 24px; */
  /*! box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
  /*! height: 100%; */
}

/* ============================================
   右侧新闻列表（news-title-d）- 团学动态风格
   时间右对齐，无红色背景
   ============================================ */
#our-photos .news-title-d {
  list-style: none;
  padding: 0;
  margin: 0;
}

#our-photos .news-title-d li {
  font-size: 15px !important;  /* 调整为适中字号 */
  line-height: 42px !important;  /* 增加行高，更舒适 */
  margin-bottom: 8px !important;
  font-weight: 500 !important;
  color: #333333 !important;
  border-bottom: 1px solid #f1f3f5 !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  padding: 2px 0 !important;
}

/* 图标样式 - 红色勾选图标 */
#our-photos .news-title-d li > span:first-child {
  color: #ED2C25 !important;
  flex-shrink: 0 !important;
  margin-right: 15px !important;
  font-size: 15px !important;
  padding: 8px 0px;
}

/* 标题文字 */
#our-photos .news-title-d li .title {
  flex: 1 !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #000 !important;
  font-size: 20px !important;
  transition: color 0.3s ease !important;
}

/* 时间样式 - 右对齐，灰色无红色背景 */
#our-photos .news-title-d li .date {
  color: #666 !important;  /* 灰色，不是红色 */
  font-size: 18px !important;
  margin-left: 20px !important;
  flex-shrink: 0 !important;
  min-width: 50px !important;
  text-align: right !important;
  background: transparent !important;  /* 无背景 */
  padding: 0 !important;
  border-radius: 0 !important;
  transition: color 0.3s ease !important;
}

/* Hover效果 */
#our-photos .news-title-d li:hover {
  /*background-color: #fff8f8 !important;  
  margin: 0 -12px !important;
  padding: 4px 12px !important;
  border-left: 3px solid #ED2C25 !important; 
  border-radius: 4px !important;*/
}

#our-photos .news-title-d li:hover .title {
  color: #ED2C25 !important;  /* 标题变红 */
}

#our-photos .news-title-d li:hover .date {
  color: #ED2C25 !important;  /* 时间变红 */
}

/* ============================================
   右侧新闻列表卡片样式（使用featured-card包裹）
   ============================================ */
.news-list-card {
  padding: 24px 28px;
}

.news-list-card:hover {
  transform: translateY(-6px);
}

/* ============================================
   右侧新闻列表样式（时间右对齐，无红色背景）
   ============================================ */
.notice-list-right {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.notice-list-right li {
  margin-bottom: 0;
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

.notice-list-right li:last-child {
  border-bottom: none;
}

.notice-list-right li:hover {
  background-color: #fff8f8;
  margin: 0 -12px;
  padding: 0 12px;
  border-left: 3px solid #ED2C25;
  border-radius: 4px;
}

.notice-list-right .notice-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  transition: all 0.3s ease;
}

.notice-list-right .notice-title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: #495057;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.notice-list-right li:hover .notice-title {
  color: #ED2C25;
}

/* 时间样式 - 右对齐，无红色背景 */
.notice-list-right .notice-date {
  font-size: 14px;
  color: #868e96;
  font-weight: 500;
  white-space: nowrap;
  order: 2;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.notice-list-right li:hover .notice-date {
  color: #ED2C25;
}

/* 箭头图标 */
.notice-list-right .notice-arrow {
  color: #ced4da;
  font-size: 14px;
  transition: all 0.3s ease;
  order: 3;
  opacity: 0;
  transform: translateX(-10px);
}

.notice-list-right li:hover .notice-arrow {
  color: #ED2C25;
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   全面响应式适配 - 手机/Pad/PC
   断点: 1399px / 1199px / 991px / 767px / 575px / 480px
   ============================================ */

/* ---------- 超大屏微调 (≤1399px) ---------- */
@media (max-width: 1399px) {
  #our-photos .d-flex {
    padding: 0 120px;
  }
  #our-photos .d-flex::before,
  #our-photos .d-flex::after {
    width: 180px;
  }
}

/* ---------- 大屏适配 (≤1199px) ---------- */
@media (max-width: 1199px) {
  #our-photos .d-flex {
    padding: 0 80px;
  }
  #our-photos .d-flex::before,
  #our-photos .d-flex::after {
    width: 120px;
  }
  #our-photos .nav-link {
    font-size: 20px;
    padding: 10px 22px;
  }
}

/* ---------- Pad端适配 (≤991px) ---------- */
@media (max-width: 991px) {
  .header-1 .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section.hero-1 {
    height: 450px;
  }
  .hero-section.hero-1 .hero-slider {
    height: 450px;
  }
  .hero-section.hero-1 .hero-image {
    height: 450px;
  }
  .hero-section.hero-1 .hero-content {
    padding-top: 140px;
  }
  .hero-section.hero-1 .hero_content {
    bottom: 30px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .xyxw {
    padding: 50px 0;
  }

  .slideshow .item img {
    height: 350px;
  }

  .choose-content .icon-area .news-title-d li {
    font-size: 16px !important;
    line-height: 34px !important;
    margin-bottom: 10px !important;
  }
  .choose-content .icon-area .news-title-d li .date {
    font-size: 15px !important;
  }
  .choose-content .news-title {
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }

  .notice-list-wrapper {
    padding: 25px;
  }
  .notice-title {
    font-size: 16px !important;
    padding: 10px 0 !important;
  }
  .notice-date {
    font-size: 15px;
    padding: 8px;
    margin-right: 18px;
  }

  .Choices_head {
    font-size: 34px !important;
  }
  .Choicesnext {
    margin-left: 0 !important;
    float: none !important;
    text-align: center !important;
  }
  .Choices_left img {
    height: auto !important;
  }
  .Choices_right h2 {
    font-size: 22px !important;
  }
  .Choices_right p {
    font-size: 15px !important;
  }
  .Choicestel {
    width: 100% !important;
  }

  #our-photos {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #our-photos .d-flex {
    padding: 0 40px;
    gap: 16px;
  }
  #our-photos .d-flex::before,
  #our-photos .d-flex::after {
    width: 80px;
  }
  #our-photos .nav-link {
    font-size: 17px;
    padding: 10px 20px;
  }
  #our-photos .tab-content {
    margin-top: 30px;
  }

  .featured-image {
    height: 280px;
  }
  .featured-content {
    padding: 20px;
  }
  .featured-title {
    font-size: 16px;
  }
  .featured-desc {
    font-size: 13px;
  }

  #our-photos .news-title-d li .title {
    font-size: 17px !important;
  }
  #our-photos .news-title-d li .date {
    font-size: 15px !important;
  }

  .footer-widgets-wrapper {
    padding: 40px 0 50px;
  }
  .footer-content p {
    font-size: 16px !important;
  }
  .text-align-right,
  .text-align-right a {
    font-size: 16px !important;
  }
  .footer-bottom .footer-bottom-wrapper p {
    font-size: 15px;
  }

  .more-content::before,
  .more-content::after {
    width: 120px;
  }
  .more-content::before {
    right: calc(50% + 50px);
  }
  .more-content::after {
    left: calc(50% + 50px);
  }
}

/* ---------- 手机端适配 (≤767px) ---------- */
@media (max-width: 767px) {
  .hero-section.hero-1 {
    height: 350px;
  }
  .hero-section.hero-1 .hero-slider {
    height: 350px;
  }
  .hero-section.hero-1 .hero-image {
    height: 350px;
  }
  .hero-section.hero-1 .hero-content {
    padding-top: 80px;
  }
  .hero-section.hero-1 .hero_content {
    bottom: 20px;
  }
  .hero-1 .array-button {
    display: none;
  }

  .section-padding {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .xyxw {
    padding: 35px 0;
  }

  .section-title h2 {
    font-size: 22px !important;
  }
  .witr_back_title h4 {
    font-size: 50px !important;
  }

  .slideshow {
    margin: 15px auto;
  }
  .slideshow .item img {
    height: 220px;
  }
  .slideshow .slick-dots {
    bottom: 0px;
  }

  .choose-content .icon-area .news-title-d li {
    font-size: 14px !important;
    line-height: 30px !important;
    margin-bottom: 8px !important;
    padding-bottom: 6px !important;
  }
  .choose-content .icon-area .news-title-d li .date {
    font-size: 13px !important;
    min-width: 38px !important;
    margin-left: 12px !important;
  }
  .choose-content .news-title {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    line-height: 28px !important;
  }
  .choose-content .icon-area > div:first-child p {
    font-size: 14px !important;
    line-height: 22px !important;
    height: auto !important;
  }

  .notice-list-wrapper {
    padding: 18px;
    margin-bottom: 20px;
  }
  .title-with-more .notice-list-title {
    font-size: 18px;
  }
  .more-link {
    font-size: 12px;
    padding: 4px 8px;
  }
  .notice-list {
    padding: 10px 0;
  }
  .notice-item {
    flex-wrap: nowrap;
  }
  .notice-date {
    font-size: 13px;
    padding: 6px 8px;
    margin-right: 12px;
    min-width: 40px;
  }
  .notice-title {
    font-size: 14px !important;
    padding: 8px 0 !important;
    line-height: 22px !important;
  }
  .notice-arrow {
    font-size: 10px;
  }

  .Choices_head {
    font-size: 26px !important;
  }
  .Choicesnext {
    display: none !important;
  }
  .Choices_banner {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
  .Choices_banner ul {
    width: 100% !important;
    overflow: visible !important;
    margin-left: 0 !important;
  }
  .Choices_banner ul li {
    width: 100% !important;
    height: auto !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 20px;
  }
  .Choices_left {
    width: 100% !important;
    height: auto !important;
    float: none !important;
  }
  .Choices_left img {
    width: 100% !important;
    height: auto !important;
  }
  .Choices_right {
    width: 100% !important;
    height: auto !important;
    float: none !important;
    padding: 20px !important;
  }
  .Choices_right h1 {
    width: 100% !important;
    margin-top: 10px !important;
  }
  .Choices_right h2 {
    font-size: 18px !important;
    width: 100% !important;
    padding-left: 0 !important;
    margin-top: 5px !important;
  }
  .Choices_right p {
    font-size: 14px !important;
    line-height: 22px !important;
    width: 100% !important;
    margin-left: 0 !important;
    height: auto !important;
  }
  .Choicesbut {
    margin-left: 0 !important;
    margin-top: 15px !important;
  }
  .Choicestel {
    display: none !important;
  }

  #our-photos {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #our-photos .d-flex {
    gap: 10px;
    padding: 0 15px;
    flex-wrap: wrap;
  }
  #our-photos .d-flex::before,
  #our-photos .d-flex::after {
    display: none;
  }
  #our-photos .nav-item {
    margin: 5px !important;
  }
  #our-photos .nav-link {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
  }
  #our-photos .tab-content {
    margin-top: 20px;
  }

  .featured-card {
    margin-bottom: 0;
  }
  #our-photos .featured-card {
    padding: 16px;
  }
  .featured-image {
    height: 220px;
  }
  .featured-date {
    font-size: 11px;
    padding: 5px 8px;
    top: 10px;
    right: 10px;
  }
  .featured-content {
    padding: 16px;
  }
  .featured-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .featured-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .LIST-KAD-LEFT {
    margin-bottom: 16px;
  }

  #our-photos .news-title-d li {
    font-size: 13px !important;
    line-height: 30px !important;
    margin-bottom: 5px !important;
    padding: 2px 0 !important;
  }
  #our-photos .news-title-d li > span:first-child {
    margin-right: 10px !important;
    font-size: 13px !important;
  }
  #our-photos .news-title-d li .title {
    font-size: 14px !important;
  }
  #our-photos .news-title-d li .date {
    font-size: 12px !important;
    min-width: 36px !important;
    margin-left: 10px !important;
  }

  .footer-widgets-wrapper {
    padding: 30px 0 40px;
  }
  .footer-widgets-wrapper .single-footer-widget {
    margin-bottom: 25px;
  }
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 15px;
    padding-top: 0;
  }
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 .read {
    font-size: 16px !important;
  }
  .footer-content p {
    font-size: 14px !important;
  }
  .text-align-right,
  .text-align-right a {
    font-size: 14px !important;
  }
  .footer-bottom {
    padding: 20px 0;
  }
  .footer-bottom .footer-bottom-wrapper p {
    font-size: 13px;
  }

  .more-content {
    font-size: 14px;
    padding: 6px;
    margin: 10px 0;
  }
  .more-content::before,
  .more-content::after {
    width: 80px;
  }
  .more-content::before {
    right: calc(50% + 40px);
  }
  .more-content::after {
    left: calc(50% + 40px);
  }

  .gengduo a {
    font-size: 14px;
  }
}

/* ---------- 小屏手机适配 (≤575px) ---------- */
@media (max-width: 575px) {
  .hero-section.hero-1 {
    height: 280px;
  }
  .hero-section.hero-1 .hero-slider {
    height: 280px;
  }
  .hero-section.hero-1 .hero-image {
    height: 280px;
  }
  .hero-section.hero-1 .hero-content {
    padding-top: 60px;
  }
  .hero-section.hero-1 .hero_content {
    bottom: 15px;
  }

  .section-padding {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .xyxw {
    padding: 25px 0;
  }

  .section-title h2 {
    font-size: 18px !important;
  }
  .witr_back_title h4 {
    font-size: 36px !important;
  }

  .slideshow .item img {
    height: 180px;
  }

  .choose-content .icon-area .news-title-d li {
    font-size: 13px !important;
    line-height: 26px !important;
    margin-bottom: 6px !important;
    padding-bottom: 4px !important;
  }
  .choose-content .icon-area .news-title-d li .date {
    font-size: 12px !important;
    min-width: 32px !important;
    margin-left: 8px !important;
  }
  .choose-content .news-title {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .notice-list-wrapper {
    padding: 14px;
  }
  .title-with-more .notice-list-title {
    font-size: 16px;
  }
  .notice-date {
    font-size: 12px;
    padding: 5px 6px;
    margin-right: 10px;
    min-width: 36px;
  }
  .notice-title {
    font-size: 13px !important;
    padding: 6px 0 !important;
    line-height: 20px !important;
  }

  #our-photos .nav-link {
    font-size: 13px;
    padding: 7px 14px;
  }
  #our-photos .featured-card {
    padding: 12px;
  }
  .featured-image {
    height: 180px;
  }
  .featured-content {
    padding: 14px;
  }
  .featured-title {
    font-size: 14px;
  }
  .featured-desc {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }

  #our-photos .news-title-d li .title {
    font-size: 13px !important;
  }
  #our-photos .news-title-d li .date {
    font-size: 11px !important;
    min-width: 30px !important;
  }

  .Choices_head {
    font-size: 22px !important;
  }
  .Choices_right h2 {
    font-size: 16px !important;
  }
  .Choices_right p {
    font-size: 13px !important;
  }

  .footer-bottom .footer-bottom-wrapper p {
    font-size: 12px;
  }

  .more-content::before,
  .more-content::after {
    width: 50px;
  }
  .more-content::before {
    right: calc(50% + 35px);
  }
  .more-content::after {
    left: calc(50% + 35px);
  }
}

/* ---------- 极小屏手机适配 (≤480px) ---------- */
@media (max-width: 480px) {
  .hero-section.hero-1 {
    height: 220px;
  }
  .hero-section.hero-1 .hero-slider {
    height: 220px;
  }
  .hero-section.hero-1 .hero-image {
    height: 220px;
  }
  .hero-section.hero-1 .hero-content {
    padding-top: 40px;
  }

  .section-title h2 {
    font-size: 16px !important;
  }
  .witr_back_title h4 {
    font-size: 28px !important;
  }

  .slideshow .item img {
    height: 150px;
  }

  .choose-content .icon-area .news-title-d li {
    font-size: 12px !important;
    line-height: 24px !important;
  }
  .choose-content .icon-area .news-title-d li .title {
    font-size: 12px !important;
  }
  .choose-content .news-title {
    font-size: 14px !important;
  }

  .notice-list-wrapper {
    padding: 12px;
  }
  .title-with-more .notice-list-title {
    font-size: 15px;
  }
  .notice-title {
    font-size: 12px !important;
    padding: 5px 0 !important;
  }
  .notice-date {
    font-size: 11px;
    padding: 4px 5px;
    margin-right: 8px;
    min-width: 32px;
  }

  #our-photos .nav-link {
    font-size: 12px;
    padding: 6px 12px;
  }
  #our-photos .nav-item {
    margin: 3px !important;
  }
  #our-photos .featured-card {
    padding: 10px;
  }
  .featured-image {
    height: 150px;
  }
  .featured-content {
    padding: 12px;
  }
  .featured-title {
    font-size: 13px;
  }
  .featured-desc {
    font-size: 11px;
  }

  #our-photos .news-title-d li .title {
    font-size: 12px !important;
  }
  #our-photos .news-title-d li .date {
    font-size: 11px !important;
  }

  .Choices_head {
    font-size: 20px !important;
  }
  .Choices_right {
    padding: 15px !important;
  }
  .Choices_right h2 {
    font-size: 15px !important;
  }
  .Choices_right p {
    font-size: 12px !important;
    line-height: 20px !important;
  }
  .Choicesbut {
    height: 38px !important;
    line-height: 38px !important;
    font-size: 14px !important;
  }

  .footer-content p {
    font-size: 12px !important;
  }
  .footer-bottom .footer-bottom-wrapper p {
    font-size: 11px;
  }

  .more-content {
    font-size: 12px;
  }
  .more-content::before,
  .more-content::after {
    width: 30px;
  }
  .more-content::before {
    right: calc(50% + 30px);
  }
  .more-content::after {
    left: calc(50% + 30px);
  }
}

/* ========== 响应式适配补充规则 ========== */

/* ---------- 任务11: 全局横向溢出消除 ---------- */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  section.fix,
  .container,
  .container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .Choices,
  .Choices_text,
  .Choices_content {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ---------- 任务1: offcanvas侧边菜单补充 ---------- */
@media (max-width: 767px) {
  .offcanvas__info {
    width: 80vw;
  }
  .offcanvas__wrapper {
    padding: 20px;
  }
  .offcanvas__wrapper .offcanvas__content .offcanvas__close button {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .offcanvas__top .offcanvas__logo img.shouji_logo {
    max-height: 40px;
  }
}

/* ---------- 任务2: Header头部补充 ---------- */
@media (max-width: 767px) {
  .header-main .logo img,
  .header-main .header-logo img,
  .header-main .header-logo-2 img {
    max-height: 32px !important;
  }
  .header-main .logo a {
    display: flex;
    align-items: center;
  }
  .header-1 {
    min-height: auto;
  }
  /* 汉堡菜单优化 */
  .header__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .sidebar__toggle i {
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
  }
  .sidebar__toggle:hover i {
    color: #ED2C25;
    transform: scale(1.1);
  }
}
@media (max-width: 575px) {
  .header-main .logo img,
  .header-main .header-logo img,
  .header-main .header-logo-2 img {
    max-height: 28px !important;
  }
  .sidebar__toggle i {
    font-size: 18px;
  }
}

/* ---------- 任务3: 搜索框覆盖层补充 ---------- */
@media (max-width: 767px) {
  .search-wrap .search-inner {
    padding: 20px;
  }
  .search-wrap .main-search-input {
    font-size: 16px;
  }
  .search-wrap .search-field-holder {
    width: 90%;
    max-width: 400px;
  }
}

/* ---------- 任务7: 基层风采767px补充(flex column) ---------- */
@media (max-width: 767px) {
  .Choices_head span {
    font-size: 12px;
    margin-left: 15px;
  }
  .Choicesbut {
    width: auto !important;
    font-size: 14px !important;
  }
  .Choices_right h1 {
    font-size: 14px !important;
  }
}

/* ---------- 任务8: 六大模块Tab区 - 横向滚动替代换行 ---------- */
@media (max-width: 767px) {
  .tab-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 10px;
  }
  .tab-scroll-wrapper ul.nav {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
  .tab-scroll-wrapper .nav-item {
    flex-shrink: 0;
  }
  .tab-scroll-wrapper .nav-link {
    white-space: nowrap;
  }
}

/* ---------- 任务9: Footer底部补充 ---------- */
@media (max-width: 767px) {
  .footer-content .social-icon img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain;
  }
  .list-area li a {
    font-size: 14px;
  }
}

/* ---------- 任务10: 全局字体层级统一 - 修正最低字号不低于12px ---------- */
@media (max-width: 480px) {
  .choose-content .icon-area .news-title-d li .date {
    font-size: 12px !important;
  }
  .choose-content .news-title {
    font-size: 15px !important;
  }
  .notice-date {
    font-size: 12px;
  }
  #our-photos .news-title-d li .date {
    font-size: 12px !important;
  }
  .featured-desc {
    font-size: 12px;
  }
  .featured-date {
    font-size: 12px;
  }
  .footer-bottom .footer-bottom-wrapper p {
    font-size: 12px;
  }
  .footer-content p {
    font-size: 12px !important;
  }
  .list-area li a {
    font-size: 13px;
  }
  .Choices_right p {
    font-size: 13px !important;
  }
}

/* ---------- 任务10: 字体层级统一修正 ---------- */
@media (max-width: 767px) {
  .Choices_head {
    font-size: 22px !important;
  }
  .choose-content .news-title {
    font-size: 16px !important;
  }
  .notice-title {
    font-size: 14px !important;
  }
  .featured-title {
    font-size: 15px;
  }
  .Choices_right h2 {
    font-size: 16px !important;
  }
  .title-with-more .notice-list-title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .Choices_head {
    font-size: 18px !important;
  }
  .choose-content .news-title {
    font-size: 15px !important;
  }
  .notice-title {
    font-size: 13px !important;
  }
  .featured-title {
    font-size: 14px;
  }
  .Choices_right h2 {
    font-size: 15px !important;
  }
}
@media (max-width: 480px) {
  .Choices_head {
    font-size: 18px !important;
  }
  .section-title h2 {
    font-size: 18px !important;
  }
  .choose-content .news-title {
    font-size: 15px !important;
  }
  .notice-title {
    font-size: 13px !important;
  }
  .featured-title {
    font-size: 14px;
  }
  .Choices_right h2 {
    font-size: 15px !important;
  }
  .title-with-more .notice-list-title {
    font-size: 15px;
  }
}

/* ==================== 青春风采模块样式 ==================== */

/* testimonials-one 基础样式 */
.testimonials-one {
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonials-one__box img {
  text-align: center; 
   background: #fff; 
  border-radius: 8px; 
  box-shadow: 0 2px 15px rgba(0,0,0,0.1); 
  height: 318px; 
  overflow: hidden; 
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}

.testimonials-one__box p {
  background-color: #eff2f6;
  transition: all 500ms ease;
  margin-bottom: 0;
  position: relative;
  padding: 50px 61px;
  padding-bottom: 65px;
  border-radius: 4px;
}

.testimonials-one__box p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 4px);
  background-color: #fff;
  opacity: 0;
  transition: all 500ms ease;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.testimonials-one__box p span {
  position: relative;
}

.testimonials-one__box-info {
  /*! position: relative; */
  /*! top: -35px; */
}

.testimonials-one__box-info > img {
  border-radius: 50%;
}

.testimonials-one__box-info h3 {
  margin: 0;
  font-size: 20px;
  color: #000;
  line-height: 1;
}

.testimonials-one__box-info span {
  font-size: 20px;
  font-weight: 500;
  line-height: 48px;
  height: 35px;
  display: inline-block;
  overflow: hidden;
  padding: 0px 15px;
}

.testimonials-one__box:hover p {
  background-color: #ED2C25;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.testimonials-one__box:hover p::before {
  opacity: 1;
}

.testimonials-one__swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  text-align: center !important;
  margin-top: 50px;
  margin-bottom: 30px;
  width: 100% !important;
  display: block !important;
  z-index: 10 !important;
  height: auto !important;
  max-height: 50px !important;
  overflow: hidden !important;
}

.testimonials-one__swiper-pagination .swiper-pagination-bullet {
  width: 50px !important;
  height: 8px !important;
  background-color: #0c2139 !important;
  border-radius: 10px;
  transition: transform 500ms ease, background-color 500ms ease !important;
  transform: scale(1) !important;
  transform-origin: center center !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  display: inline-block !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
}

.testimonials-one__swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #ED2C25 !important;
}

.testimonials-one__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ED2C25 !important;
  /*! transform: scale(1.5) !important; */
  transform-origin: center center !important;
}

/* tp100 自适应顶部内边距 */
.tp100 {
  padding-top: 100px;
}

/* 青春风采响应式适配 - 平板端 */
@media (max-width: 1199px) {
  .testimonials-one__box p {
    padding: 30px 35px;
    padding-bottom: 65px;
  }
}

@media (max-width: 991px) {
  .testimonials-one__swiper-pagination {
    text-align: center !important;
    margin-top: 15px !important;
    margin-bottom: 20px !important;
  }
  
  .tp100 {
    padding-top: 80px;
  }
  
  .testimonials-one {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* 青春风采响应式适配 - 移动端 */
@media (max-width: 767px) {
  .tp100 {
    padding-top: 50px;
  }
  
  .testimonials-one {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .testimonials-one__box p {
    padding: 25px 30px;
    padding-bottom: 55px;
    font-size: 15px;
  }
  
  .testimonials-one__box-info {
    top: -30px;
  }
  
  .testimonials-one__box-info h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  .testimonials-one__box-info span {
    font-size: 13px;
  }
  
  .testimonials-one__swiper-pagination {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
  }
  
  .testimonials-one__swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 5px !important;
  }
}

/* 青春风采响应式适配 - 小屏手机 */
@media (max-width: 575px) {
  .tp100 {
    padding-top: 40px;
  }
  
  .testimonials-one {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .testimonials-one__box p {
    padding: 20px 25px;
    padding-bottom: 50px;
    font-size: 14px;
  }
  
  .testimonials-one__box-info {
    top: -25px;
  }
  
  .testimonials-one__box-info > img {
    width: 60px;
    height: 60px;
  }
  
  .testimonials-one__box-info h3 {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
  }
  
  .testimonials-one__box-info span {
    font-size: 12px;
  }
  
  .testimonials-one__swiper-pagination {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
  }
  
  .testimonials-one__swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
  }
}

#campus-section {
	padding: 80px 0;
	position: relative;
	background: rgba(245, 240, 235, 0.7) url(../../static/image/6kapian-bj.jpg) no-repeat right bottom;
	background-size: auto;
	z-index: 1;
}

#campus-section .s7 {
  padding-top: 0;
}

#campus-section .w14 {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

#campus-section .tit {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

#campus-section .tit-name a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

#campus-section .tit-name a p {
  text-align: center;
  -webkit-text-stroke: rgba(100, 67, 42, 0.1) 1px;
  text-transform: uppercase;
  font-family: "SourceHanSerifCN-Regular", "Georgia", serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 66px;
  color: #c7bdb3;
  opacity: 0.3;
  margin: 0;
}

#campus-section .tit-name a div {
  display: flex;
  align-items: center;
  font-size: 52px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
}

#campus-section .tit-name a div b {
  display: block;
  font-family: "SourceHanSerifCN-Bold", "Georgia", serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 66px;
  letter-spacing: 2px;
  color: #64432a;
}

#campus-section .tit-name a div span {
  display: block;
  width: 5px;
  height: 5px;
  background: #64432a;
  border-radius: 50%;
  margin: 0 15px;
}

#campus-section .s7-c {}

#campus-section .s7-c > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 -5px;
  list-style: none;
  padding: 0;
}

#campus-section .s7-c > ul li {
  width: 25%;
  margin-top: 10px;
  order: 3;
  position: relative;
  list-style: none;
}

#campus-section .s7-c > ul li dl {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../image/py-bg.png) no-repeat center center;
  background-size: cover;
  z-index: 9;
  padding: 15px 0;
  transition: all 0.5s;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

#campus-section .s7-c > ul li dl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../image/s7-itembg.png) no-repeat center center;
  background-size: 201px auto;
  opacity: 0.4;
  z-index: -1;
}

#campus-section .s7-c > ul li dl dd {
  flex: 1;
  width: 100%;
  margin: 0;
}

#campus-section .s7-c > ul li dl dd a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  padding-left: 35px;
  text-decoration: none;
}

#campus-section .s7-c > ul li dl dd a h3 {
  font-size: 23px;
  line-height: 30px;
  color: #fff;
  margin: 0;
  font-weight: normal;
}

#campus-section .s7-c > ul li dl dd a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(211, 184, 137, 0) 0%, #d3b889 100%);
  transition: all 0.5s;
  width: 0px;
  opacity: 0.6;
}

#campus-section .s7-c > ul li dl dd a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 27px;
  height: 20px;
  background: url(../image/icon-right-w2.png) no-repeat center center;
  background-size: 100% 100%;
}

#campus-section .s7-c > ul li:nth-child(2) {
  order: 1;
}

#campus-section .s7-c > ul .s7-slick {
  width: 50%;
  order: 2;
}

#campus-section .s7-c > ul .s7-slick .slickbox {
  position: relative;
}

#campus-section .s7-c > ul .s7-slick .slickbox > div {
  outline: none;
}

#campus-section .s7-c > ul .s7-slick a {
  display: block;
  margin: 0 5px;
  position: relative;
}

#campus-section .s7-c > ul .s7-slick a .pic {
  padding-top: 53.8%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

#campus-section .s7-c > ul .s7-slick a .pic div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;border-radius: 4px;
}

#campus-section .s7-c > ul .s7-slick a .pic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 215px;
  max-height: 50%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #1056b5 100%);
  border-radius: 4px;
}

#campus-section .s7-c > ul .s7-slick a h3 {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 17px;
  font-size: 18px;
  font-weight: normal;
  line-height: 30px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  z-index: 2;
}

#campus-section .s7-c > ul .s7-slick a h3 i {
  font-style: normal;
}

#campus-section .s7-c > ul .s7-slick .slick-dots {
  position: absolute;
  width: auto;
  left: 100%;
  top: 0;
  margin-left: 24px;
  bottom: auto;
  height: 100%;
  max-height: 530px;
  overflow: hidden;
  list-style: none !important;
}

#campus-section .s7-c > ul .s7-slick .slick-dots li {
  display: block !important;
  width: 15px;
  height: 15px;
  border: 1px solid #e9d6c2;
  transition: all 0.5s;
  margin: 10px auto;
  border-radius: 50%;
}

#campus-section .s7-c > ul .s7-slick .slick-dots li button {
  display: none;
}

#campus-section .s7-c > ul .s7-slick .slick-dots li + li {
  margin-top: 15px;
}

#campus-section .s7-c > ul .s7-slick .slick-dots li.slick-active {
  background: #e9d6c2;
}

#campus-section .s7-item {
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto !important;
}

#campus-section .s7-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

#campus-section .s7-item .icon {
  height: 86px;
  width: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none !important;
}

#campus-section .s7-item .icon i {
  font-size: 50px;
  color: #fff;
  transition: all 0.4s ease;
}

#campus-section .s7-item:hover .icon i {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

#campus-section .s7-item .icon svg {
  display: block;
  width: auto !important;
  height: 100% !important;
  max-height: 100% !important;
  max-width: 86px !important;
}

#campus-section .s7-item .icon svg .stroke-line {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#campus-section .s7-item:hover .icon svg {
  transform: scale(1.15);
}

#campus-section .s7-item .icon svg,
#campus-section .s7-item .icon svg * {
  transition: all 0.4s ease;
}

#campus-section .s7-c > ul li:nth-child(2) .s7-item {
  background-color: #c8944a;
}

#campus-section .s7-c > ul li:nth-child(3) .s7-item {
  background-color: #5a9ab5;
}

#campus-section .s7-c > ul li:nth-child(4) .s7-item {
  background-color: #7aaa50;
}

#campus-section .s7-c > ul li:nth-child(5) .s7-item {
  background-color: #1056b5;
}

#campus-section .s7-c > ul li:nth-child(6) .s7-item {
  background-color: #b8a040;
}

#campus-section .s7-c > ul li:nth-child(7) .s7-item {
  background-color: #48b098;
}

#campus-section .s7-c > ul li:nth-child(2) .s7-item:hover {
  background-color: #a87830;
}

#campus-section .s7-c > ul li:nth-child(3) .s7-item:hover {
  background-color: #4080a0;
}

#campus-section .s7-c > ul li:nth-child(4) .s7-item:hover {
  background-color: #5a8a30;
}

#campus-section .s7-c > ul li:nth-child(5) .s7-item:hover {
  background-color: #a85080;
}

#campus-section .s7-c > ul li:nth-child(6) .s7-item:hover {
  background-color: #988030;
}

#campus-section .s7-c > ul li:nth-child(7) .s7-item:hover {
  background-color: #309078;
}

#campus-section .s7-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../image/s7-itembg.png) no-repeat center center;
  background-size: 201px auto;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none !important;
}

#campus-section .s7-item .icon {
  height: 86px;
  pointer-events: none !important;
}

#campus-section .s7-item p {
  text-align: center;
  font-family: "SourceHanSerifCN-Bold", "Georgia", serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 38px;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  margin: 15px 0 0 0;
  pointer-events: none !important;
}

/* 青马工程卡片背景色 */
#campus-section .s7-c > ul li:nth-child(2) .s7-item {
  background-color: #b52a2a;
}
#campus-section .s7-c > ul li:nth-child(2) .s7-item:hover {
  background-color: #8B1A1A;
}

/* ====== 图标遮罩展开动画（6个卡片通用） ====== */

/* 包裹层：允许绝对定位子元素叠加 + 遮罩动画 */
#campus-section .img-icon-wrapper {
  position: relative !important;
  overflow: visible;
}

/* 遮罩展开动画：圆形从中心展开 */
#campus-section .mask-reveal {
  clip-path: circle(0% at 50% 50%);
  animation: maskReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 6个卡片依次延迟展开 */
#campus-section .s7-c > ul li:nth-child(2) .mask-reveal { animation-delay: 0s; }
#campus-section .s7-c > ul li:nth-child(3) .mask-reveal { animation-delay: 0.15s; }
#campus-section .s7-c > ul li:nth-child(4) .mask-reveal { animation-delay: 0.3s; }
#campus-section .s7-c > ul li:nth-child(5) .mask-reveal { animation-delay: 0.45s; }
#campus-section .s7-c > ul li:nth-child(6) .mask-reveal { animation-delay: 0.6s; }
#campus-section .s7-c > ul li:nth-child(7) .mask-reveal { animation-delay: 0.75s; }

@keyframes maskReveal {
  0% {
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    clip-path: circle(75% at 50% 50%);
  }
}

/* 悬浮时遮罩完全展开，图标放大 */
#campus-section .s7-item:hover .mask-reveal {
  clip-path: circle(75% at 50% 50%);
}

/* 底层PNG/JPG图片 — 放大补偿PNG留白，与SVG视觉宽度一致 */
#campus-section .img-icon-base {
  display: block;
  height: 120%;
  width: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 上层SVG线条覆盖 */
#campus-section .img-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.35));
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 悬浮态：图片和SVG同步放大 */
#campus-section .s7-item:hover .img-icon-base {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.25)) brightness(1.1);
}
#campus-section .s7-item:hover .img-icon-overlay {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

#campus-section .s7-c > ul li:hover dl {
  opacity: 1;
}

#campus-section .s7-c > ul li dl dd a:hover::before {
  left: 0;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  #campus-section .s7 .tit .tit-name a p {
    position: absolute;
    left: 0;
    top: 100%;
  }
}

@media screen and (max-width: 1024px) {
  #campus-section .s7-c > ul li dl dd a {
    padding-left: 10px;
    padding-right: 10px;
  }
  #campus-section .s7-c > ul li dl dd a h3 {
    font-size: 16px;
  }
  #campus-section .s7-c > ul li dl dd a::after {
    width: 18px;
    height: 14px;
    right: 10px;
  }
  #campus-section .s7-c > ul li:nth-child(2) dl {
    opacity: 1;
  }
  #campus-section .s7-c > ul li:nth-child(2) > a {
    opacity: 0;
  }
  #campus-section .s7-item {
    height: 160px;
  }
  #campus-section .s7-item p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
  }
  #campus-section .s7-item .icon {
    height: 40px;
  }
  #campus-section .s7-c > ul .s7-slick a h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  #campus-section {
    padding-top: 40px;
  }
  #campus-section .w14 {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  #campus-section .tit-name a p {
    font-size: 24px;
    line-height: 40px;
  }
  #campus-section .tit-name a div {
    font-size: 32px;
    line-height: 36px;
  }
  #campus-section .s7-c > ul .s7-slick .slick-dots {
    left: auto;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
  #campus-section .s7-c > ul .s7-slick {
    width: 100%;
    order: 0;
  }
  #campus-section .s7-c > ul li {
    width: 33.33%;
  }
  #campus-section .s7-item {
    height: 140px;
  }
  #campus-section .s7-item p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
  }
  #campus-section .s7-item .icon {
    height: 36px;
  }
  #campus-section .s7-c > ul .s7-slick a h3 {
    font-size: 14px;
  }
}