/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
.section {
  position: relative;
  padding-top: 70px;
  padding-bottom: 50px;
}

.section .container {
  position: relative;
  z-index: 2;
}

.section.colored {
  background: #f2f2fe;
}

.hr {
  bottom: 0px;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  border-bottom: 1px solid #eee;
}

.left-heading.light .section-title {
  color: #ffffff;
}

.left-heading .section-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
  color: #1e1e1e;
  letter-spacing: 0.25px;
  position: relative;
}

.center-heading {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.center-heading .section-title {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.center-heading .sub-title {
  text-transform: capitalize;
  color: #CC2D32;
  font-size: 72px;
  line-height: 72px;
  color: #f5f5f5;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

@media (max-width: 991px) {
  .center-heading .sub-title {
    font-size: 50px;
  }
}

.center-heading .section-title {
  font-weight: 500;
  font-size: 28px;
  font-weight: bold;
  color: #1e1e1e;
  letter-spacing: 1.75px;
  line-height: 38px;
}

.center-heading.colored .section-title {
  color: #ffffff;
}

.center-text {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #777;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.center-text.colored {
  color: #fff;
}

.center-text p {
  font-size: 15px;
  color: #777;
  margin-bottom: 30px;
}

.left-text {
  font-weight: 400;
  font-size: 16px;
  color: #777;
  line-height: 28px;
  letter-spacing: 1px;
  margin-top: 40px;
}

.left-text.light {
  color: #fff;
}

.left-text p.dark {
  color: #666;
}

@media (max-width: 991px) {

  html,
  body {
    overflow-x: hidden;
  }

  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .mobile-bottom-fix {
    margin-bottom: 30px;
  }

  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

a.more-button,
button.more-button {
  font-size: 13px;
  border-radius: 20px;
  padding: 12px 20px;
  background-color: #CC2D32;
  border: none;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.25px;
  transition: background-color 0.3s ease;
  outline: none;
}

a.more-button:hover,
button.more-button:hover {
  background-color: #8B090F;
}

/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
@keyframes slideImgScale {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

@keyframes slideTextFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.banner {
  width: 100%;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  box-sizing: content-box;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
  font-size: 30px;
}

.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.4);
}

.banner .swiper-button-prev {
  left: 0;
}

.banner .swiper-button-next {
  right: 0;
}

.banner .swiper-wrapper {
  position: relative;
  height: 100vh;
}

.banner .swiper-wrapper .swiper-slide {
  overflow: hidden;
}

.banner .swiper-wrapper .swiper-slide:after {
  position: absolute;
  z-index: 1;
  left: -30px;
  right: -30px;
  top: -30px;
  bottom: -30px;
  display: block;
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.banner .swiper-wrapper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

.banner .swiper-wrapper .swiper-slide.swiper-slide-active img {
  animation: slideImgScale 20s;
  animation-fill-mode: forwards;
}

.banner .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper-wrapper .swiper-slide .text {
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  text-align: center;
  width: 100%;
  z-index: 2;
}

.banner .swiper-wrapper .swiper-slide .text h3 {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 20px;
}

.banner .swiper-wrapper .swiper-slide .text h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: 1.4px;
  color: #fff;
}

.banner .swiper-wrapper .swiper-slide .text h1 strong {
  color: #F7B32D;
  padding-left: 10px;
}

.banner .swiper-wrapper .swiper-slide .text p {
  margin-top: 30px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  line-height: 28px;
  letter-spacing: 0.25px;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 991px) {
  .banner {
    margin-bottom: 30px;
  }

  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
  }

  .banner .swiper-wrapper .swiper-slide .text {
    top: 60% !important;
    transform: perspective(1px) translateY(-60%) !important;
    text-align: center;
  }

  .banner .swiper-wrapper .swiper-slide .text h3 {
    font-size: 16px;
  }

  .banner .swiper-wrapper .swiper-slide .text h1 {
    text-align: center;
    color: #fff;
    line-height: 44px;
    font-size: 26px;
  }

  .banner .swiper-wrapper .swiper-slide .text p {
    margin: 20px 0 30px 0;
  }
}

/* 
---------------------------------------------
features
--------------------------------------------- 
*/
.features-big-item {
  padding-top: 50px;
}

.features-big-item+.features-big-item {
  border-top: 1px solid #eee;
}

.features-big-item .title-bg {
  font-size: 72px;
  font-weight: bold;
  color: #f5f5f5;
  position: absolute;
  z-index: 0;
  left: 0;
  top: -20px;
}

.features-big-item .section-title {
  position: relative;
  z-index: 1;
}

.features-big-item img {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 991px) {
  .features-big-item .title-bg {
    font-size: 50px;
  }
}

.features-small-item {
  cursor: pointer;
  display: block;
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease 0s;
  position: relative;
  margin-bottom: 30px;
}

.features-small-item:hover .icon {
  background-color: #8B090F;
}

.features-small-item .icon {
  transition: all 0.3s ease 0s;
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
  background: #CC2D32;
  border-radius: 50%;
}

.features-small-item .icon img {
  width: 50px;
  height: 50px;
}

.features-small-item .features-title {
  font-weight: 500;
  font-size: 22px;
  color: #1e1e1e;
  letter-spacing: 0.7px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-weight: bold;
}

.features-small-item p {
  font-weight: 400;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.5px;
  line-height: 25px;
  position: relative;
  z-index: 2;
}

.features-small-item a {
  float: right;
  position: relative;
  z-index: 2;
}

.home-feature {
  padding-bottom: 0px;
  padding-top: 30px;
  margin-top: -220px;
  z-index: 9;
}

@media (max-width: 991px) {
  .home-feature {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
  }
}

.counter {
  overflow: hidden;
  position: relative;
}

.counter::before, .counter::after {
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.counter::before {
  background-image: url(../image/fun-facts-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  filter: blur(5px);
}

.counter::after {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.counter .content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.counter .content .count-item {
  height: 300px;
  position: relative;
  float: left;
  width: 100%;
  padding: 0 20px;
}

.counter .content .count-item.decoration-bottom {
  position: relative;
}

.counter .content .count-item.decoration-bottom:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 32px;
  top: 160px;
  left: 70%;
  background: url(../image/circle-dec.png) center center no-repeat;
  transition: all 0.3s ease 0s;
}

.counter .content .count-item.decoration-top {
  position: relative;
}

.counter .content .count-item.decoration-top:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 32px;
  top: 140px;
  left: 70%;
  background: url(../image/circle-dec.png) center center no-repeat;
  transition: all 0.3s ease 0s;
}

.counter .content .count-item:hover strong {
  margin-top: 110px;
}

.counter .content .count-item strong {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 30px !important;
  letter-spacing: 0.25px;
  margin-bottom: 10px;
  color: #F7B32D;
  margin-top: 120px;
  transition: all 0.3s ease 0s;
}

.counter .content .count-item span {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.25px;
}

@media (min-width: 1600px) {
  .counter .content .count-item strong {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .parallax {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .parallax .content {
    position: relative !important;
    top: 0% !important;
    transform: perspective(1px) translateY(0%) !important;
  }

  .counter {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .counter .content {
    position: relative !important;
    top: 0% !important;
    transform: perspective(1px) translateY(0%) !important;
  }

  .counter .content .count-item {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .counter .content .count-item:hover strong {
    margin-top: 0px;
  }

  .counter .content .count-item:before {
    display: none;
  }

  .counter .content .count-item:after {
    display: none;
  }

  .counter .content .count-item strong {
    margin-top: 0px;
  }
}

/* 
---------------------------------------------
business
--------------------------------------------- 
*/
#business {
  overflow: hidden;
}

#business:before, #business:after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  top: -20%;
  left: -20%;
}

#business::before {
  background-image: url(../image/team_bg.jpg);
}

#business::after {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

#business .business-content {
  position: relative;
  z-index: 3;
}

#business .section-title {
  color: #fff;
}

#business .sub-title {
  opacity: 0.05;
}

#business .center-text p {
  color: #fff;
}

.business-item {
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 25px;
  cursor: pointer;
  min-height: 200px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease 0s;
}

.business-item:hover {
  transform: translateY(-10px);
}

.business-item .more-button {
  display: none;
}

.business-item .business-content {
  text-align: left;
  overflow: hidden;
}

.business-item .business-content .cover-wrapper {
  margin: 20px 30px 0 30px;
  border-radius: 10px;
  border: 1px solid #f5f5f5;
  overflow: hidden;
}

.business-item .business-content .cover-wrapper img {
  display: block;
  width: 100%;
}

.business-item .business-content .item-title {
  display: block;
  font-weight: 400;
  font-size: 20px;
  color: #1e1e1e;
  letter-spacing: 0.25px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  min-height: auto;
}

.business-item .business-content p {
  margin-top: 25px;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 15px;
  color: #777;
  letter-spacing: 0.6px;
  line-height: 26px;
  min-height: 60px;
}

/* 
---------------------------------------------
news
--------------------------------------------- 
*/
.news {
  padding-top: 50px;
}

.news:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  background-image: url(../image/news_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 2;
}

.news-item {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 30px;
  margin-top: 20px;
  padding: 30px 0px 40px 0px;
}

.news-item .cover-wrapper {
  width: 80%;
  height: 150px;
  margin: 20px auto;
  border-radius: 5px;
  overflow: hidden;
  background: #f8f8f8;
  border: 1px solid #eee;
  overflow: hidden;
}

.news-item .cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.news-item .cover-wrapper img:hover {
  transform: scale(1.5);
}

.news-item .news-header {
  position: relative;
}

.news-item .news-header .news-title {
  color: #333;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.news-item video {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-item .text {
  width: 80%;
  margin: 0 auto;
  color: #999;
  font-size: 15px;
  line-height: 28px;
}

.news-item .news-footer {
  text-align: center;
  margin-top: 30px;
}

.contact-us strong {
  font-size: 18px;
}

.contact-us p {
  margin-bottom: 10px;
}

.contact-us-btn {
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 999;
  width: 50px;
  height: 50px;
  font-size: 12px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}

.contact-us-btn img {
  display: block;
  margin-top: 5px;
  width: 20px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1490px;
  }

  .news-item .cover-wrapper,
  .news-item img {
    height: 400px;
  }
}

/* 
---------------------------------------------
case
--------------------------------------------- 
*/
.case-swiper {
  width: 100%;
  padding-top: 50px;
  margin-top: -30px;
  user-select: none;
}

.case-swiper img {
  user-select: none;
}

.case-swiper .swiper-pagination {
  top: 10px;
  bottom: auto;
}

.case-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #CC2D32;
}

.case-mobile {
  margin-left: 0;
  margin-right: 0;
}

.case .section-title {
  color: #333;
}

.case .center-text p {
  color: #666;
}

.case-post-thumb {
  text-align: center;
  margin-bottom: 30px;
}

.case-post-thumb.big .img {
  height: 400px;
}

.case-post-thumb .img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.case-post-thumb .img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-post-thumb .case-content {
  margin-top: -30px;
  padding-top: 50px;
}

.case-swiper .swiper-slide:hover h3 {
  transform: translateY(-5px);
}

.case-post-thumb h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px !important;
  transition: all 0.3s ease 0s;
}

.case-post-thumb .text {
  font-weight: 400;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.26px;
  line-height: 26px;
  margin-bottom: 15px;
}

.case-post-thumb .post-footer span {
  float: left;
  height: 30px;
  line-height: 30px;
  font-weight: 300;
  font-size: 14px;
  color: #999;
  padding-left: 30px;
}

.case-post-thumb .more-button {
  margin-top: 10px;
  display: inline-block;
  display: none;
}

.case-list .case-post-thumb {
  text-align: left;
}




.floating-contact-panel {
  background: #fff;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  right: 10px;
  bottom: 10%;
  transform: translateY(-50%);
  width: 60px;
  z-index: 200;
  box-shadow: 0 0 0 1px #e6eaf0, 0 4px 10px rgba(12, 31, 80, .08);
}

.floating-contact-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  gap: 5px;
  color: #333;
  cursor: pointer;
  border-radius: 8px;
}

.floating-contact-item i {
  font-size: 24px;
  color: #999;
}

.floating-contact-item:hover {
  background-color: #268bfb;
  color: #fff;
}

.floating-contact-item:hover i {
  color: #fff;
}

.popover-wrapper {
  padding: 10px;
  position: absolute;
  top: 50%;
  right: calc(100%);
  max-width: 70vw;
  min-width: 200px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-contact-item:hover .popover-wrapper {
  color: #fff;
  opacity: 1;
  pointer-events: all;
  visibility: inherit;
}

.popover-content {
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 0 1px #e6eaf0, 0 4px 10px rgba(12, 31, 80, .15);
}
.contact-popover-list{
  font-size: 14px;
}
.contact-popover-list.type2 {
  font-size: 13px;
}

.contact-popover-list.type2 div+div {
  margin-top: 4px;
}

.contact-popover-list .type {
  color: #999;
}

.contact-popover-list .item+.item {
  margin-top: 10px;
}

.contact-popover-list .item strong {
  font-weight: normal;
}

@media (max-width: 1400px) {
  .case-swiper {
    display: none;
  }
}

@media (min-width: 1400px) {
  .case-mobile {
    display: none;
  }
}

@media (min-width: 1600px) {
  .case-post-thumb .img {
    height: 250px;
  }

  .case-post-thumb .img img {
    height: 250px;
  }
}