﻿.main-header .header-lower {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .outer-box .left-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-header .outer-container:before {
  position: absolute;
  content: '';
  background: linear-gradient(-84.25deg, #f14525 0%, #ff7b5c 100%);
  width: 565px;
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
}

.main-header .outer-container:after {
  position: absolute;
  content: '';
  background: linear-gradient(-84.25deg, #f14525 0%, #ff7b5c 100%);
  width: 577px;
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 50px 0px 0px 50px;
  opacity: 0.4;
  z-index: -1;
}

.main-header .menu-right-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 0px;
}

.main-header .menu-right-content .theme-btn .text {
  background: var(--secondary-color);
  color: #fff;
}

.main-header .menu-right-content .theme-btn .text:before {
  background: #fff;
}

.main-header .menu-right-content .theme-btn:hover .text {
  color: var(--title-color);
}

.main-header .menu-right-content .support-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 30px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
}

.main-header .menu-right-content .support-box a span {
  transition: all 500ms ease;
}

.main-header .menu-right-content .support-box a:hover span {
  color: #f14525;
}

/** main-menu **/

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  border-radius: 30px;
  padding: 6px 21px;
  font-family: var(--title-font);
  color: var(--title-color);
  z-index: 1;
  border: 1px solid transparent;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {
  border: 1px solid var(--secondary-color);
}

.main-menu .navigation>li.dropdown>a:before {
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  top: 8px;
  right: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 500ms ease;
}

.main-menu .navigation>li.dropdown.current>a:before,
.main-menu .navigation>li.dropdown:hover>a:before {
  opacity: 0;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 250px;
  margin-top: 15px;
  padding: 15px 25px;
  z-index: 100;
  display: none;
  background: #fff;
  opacity: 0;
  border-bottom: solid;
  border-width: 3px;
  visibility: hidden;
  border-color: #f14525;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
}

.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>.megamenu li>a {
  position: relative;
  display: block;
  padding: 5px 0px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--text-font);
  color: var(--title-color);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu li>a {
  padding-left: 0px;
}

.main-menu .navigation>li>.megamenu h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>.megamenu li>a:hover {
  letter-spacing: 1px;
  color: #f14525;
}

.main-menu .navigation>li>ul>li:last-child>a,
.main-menu .navigation>li>.megamenu li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 0px;
  top: 10px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-left: 25px;
  margin-top: 15px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  width: 230px;
  z-index: 100;
  padding: 15px 25px;
  display: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul:before {
  position: absolute;
  content: '';
  background: transparent;
  width: 25px;
  height: 100%;
  left: -25px;
  top: 0px;
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 0px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--text-font);
  color: var(--title-color);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  letter-spacing: 1px;
  color: #f14525;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}

.mobile-menu .nav-logo img {
  max-width: 250px;
  /* 160px */
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation>li.dropdown>.megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
  padding-bottom: 100px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--dark-blue);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 0px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}


.header-style-two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.header-style-two .header-lower {
  box-shadow: none;
}

.header-style-two .menu-right-content .theme-btn .text {
  background: var(--theme-color);
  color: var(--title-color);
}

.header-style-two .outer-container:before,
.header-style-two .outer-container:after {
  background: #fff;
}


/** header-style-three **/

.header-style-three .menu-right-content .theme-btn .text,
.header-style-four .menu-right-content .theme-btn .text {
  background: var(--theme-color);
  color: var(--title-color);
}

.header-style-three .outer-container:before,
.header-style-three .outer-container:after,
.header-style-four .outer-container:before,
.header-style-four .outer-container:after {
  display: none;
}

.header-style-three .header-lower,
.header-style-four .header-lower {
  box-shadow: none;
}


.header-style-four {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.main-header .menu-right-content .search-toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .menu-right-content .search-toggler:hover {
  color: #f14525;
}


/** header-style-five **/

.header-style-five {
  position: relative;
}

.header-top {
  position: relative;
  display: block;
  padding: 11px 0px;
}

.header-top .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-inner .info-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top .top-inner .info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.header-top .top-inner .info-list li a {
  color: var(--title-color);
}

.header-top .top-inner .info-list li a:hover {
  color: #f14525;
}

.header-top .right-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-top .right-column .login-box a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--title-color);
}

.header-top .right-column .login-box a:hover {
  color: #f14525;
}

.header-top .right-column .login-box:before {
  position: absolute;
  content: '';
  background: var(--secondary-color);
  opacity: 0.15;
  width: 1px;
  height: 50px;
  top: -11px;
  right: -30px;
}

.header-top .right-column .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top .right-column .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  color: var(--title-color);
}

.header-top .right-column .social-links li a:hover {
  color: #f14525;
}

.header-style-five .menu-right-content .support-box a i {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.header-style-five .menu-right-content {
  gap: 60px;
}

.header-style-five .menu-right-content .search-toggler:before {
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 50px;
  top: -11px;
  right: -30px;
}

.header-style-five .header-lower {
  position: relative;
  box-shadow: none;
}

.header-style-five .menu-right-content {
  padding-top: 33px;
  padding-bottom: 32px;
}

.header-style-five .header-lower:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 680px;
  height: 120px;
  left: 50%;
  margin-left: -410px;
  top: 0px;
  border-radius: 0px 0px 30px 30px;
}

.header-style-five .outer-container:before,
.header-style-five .outer-container:after {
  display: none;
}


/** rtl-css **/

.rtl .header-top .right-column .login-box:before,
.rtl .header-style-five .menu-right-content .search-toggler:before {
  right: inherit;
  left: -30px;
}


/** responsive-css **/


@media only screen and (max-width: 1599px) {

  .main-header .outer-container:before,
  .main-header .outer-container:after {
    display: none;
  }

  .main-header .menu-right-content .theme-btn .text:before {
    background: var(--theme-color);
  }

  .main-header .menu-right-content .theme-btn:hover .text {
    color: #fff;
  }

}

@media only screen and (max-width: 1499px) {
  .main-header .outer-container {
    padding-left: 25px;
    padding-right: 25px;
  }

}

@media only screen and (max-width: 1399px) {

  .main-header .menu-right-content .support-box,
  .header-style-five .header-lower:before {
    display: none;
  }

}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .header-top .top-inner {
    display: block;
  }

  .header-top .top-inner .info-list,
  .header-top .right-column {
    justify-content: center;
  }

  .header-top .right-column .login-box:before {
    display: none;
  }

}

@media only screen and (max-width: 767px) {
  .header-top .top-inner .info-list {
    display: block;
    text-align: center;
  }

  .header-top .top-inner .info-list li {
    justify-content: center;
  }

}

@media only screen and (max-width: 599px) {
  .main-header .outer-box .left-column {
    gap: 20px;
  }
}

@media only screen and (max-width: 499px) {
  .main-header .outer-container {
    padding: 15px;
  }

  .main-header .menu-right-content {
    display: none;
  }

  .main-header .outer-box {
    display: block;
  }

  .main-header .outer-box .left-column {
    justify-content: space-between;
  }

  .header-style-four .outer-box,
  .header-style-five .outer-box {
    display: flex;
  }

  .header-top .outer-container {
    padding-top: 0px;
    padding-bottom: 0px;
  }


}



























/** banner-section **/

.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-carousel .slide-item {
  position: relative;
  padding: 144px 0px 213px 0px;
}

.banner-carousel .content-box {
  position: relative;
  display: block;
  max-width: 700px;
  z-index: 5;
}

.banner-carousel .slide-item .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}

.banner-carousel .active .slide-item .bg-layer {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.banner-carousel .content-box .upper-text {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 17px;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .upper-text {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-box h2 {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 23px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box p {
  max-width: 520px;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-box .btn-box {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-section .owl-nav {
  position: absolute;
  top: 50%;
  right: 70px;
  margin-top: -55px;
}

.banner-section .owl-nav button {
  display: block;
  border-color: transparent;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.banner-section .owl-nav button.owl-prev {
  margin-bottom: 10px;
  margin-right: 0px;
}

.banner-section .pattern-layer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 99px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}


/** banner-style-two **/

.banner-style-two {
  position: relative;
  padding: 242px 0px 210px 0px;
}

.banner-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-two .content-box {
  position: relative;
  display: block;
}

.banner-style-two .content-box h2 {
  display: block;
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 76px;
}

.banner-style-two .content-box .text-box {
  position: relative;
  padding-left: 180px;
}

.banner-style-two .content-box .text-box:before {
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 130px;
  height: 2px;
  left: 0px;
  top: 14px;
}

.banner-style-two .content-box .text-box p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  max-width: 390px;
  margin-bottom: 33px;
}

.banner-style-two .image-box {
  position: relative;
  display: block;
}

.banner-style-two .image-box .single-item {
  position: relative;
  display: block;
}

.banner-style-two .image-box .single-item .image {
  position: relative;
  display: block;
}

.banner-style-two .image-box .single-item .image img {
  width: 100%;
}

.banner-style-two .image-box .single-item .text {
  position: absolute;
  right: -165px;
  bottom: -50px;
  width: 275px;
  border-radius: 30px;
  padding: 23px 30px;
}

.banner-style-two .image-box .single-item .text h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
}

.banner-style-two .image-box .single-item .rating-box {
  position: absolute;
  left: -185px;
  top: 35px;
  width: 220px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 14px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 11px 20px;
  z-index: 1;
}

.banner-style-two .image-box .single-item .rating-box:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border-radius: 18px;
  z-index: -1;
}

.banner-style-two .image-box .single-item .rating-box:after {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 14px;
  z-index: -1;
}

.banner-style-two .image-box .single-item .rating-box .shape {
  position: absolute;
  width: 54px;
  height: 47px;
  right: 65px;
  top: 73px;
  background-repeat: no-repeat;
}

.banner-style-two .image-box .single-item .rating-box h6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.banner-style-two .image-box .single-item .rating-box h6 i {
  color: #FFB31F;
  font-size: 16px;
}

.banner-style-two .image-box .image-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -135px;
  margin-top: -100px;
  width: 270px;
  height: 270px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
}


/** banner-style-three **/

.banner-style-three {
  padding: 0px 70px 20px 70px;
}

.banner-style-three .content-column {
  position: relative;
  float: left;
  width: calc(50% - 10px);
  border-radius: 30px;
}

.banner-style-three .content-box {
  position: relative;
  padding: 172px 90px 180px 140px;
}

.banner-style-three .content-box .inner-box {
  position: relative;
  max-width: 650px;
}

.banner-style-three .content-box h2 {
  font-size: 70px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 26px;
}

.banner-style-three .content-box p {
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.60);
  font-weight: 500;
  max-width: 400px;
  margin-bottom: 35px;
}

.banner-style-three .bg-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(50% - 10px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
}

.banner-style-three .clients-box {
  position: absolute;
  left: 50%;
  margin-left: -190px;
  width: 380px;
  background: #fff;
  bottom: 0px;
  border-radius: 30px 30px 0px 0px;
  padding: 50px 20px 34px 20px;
  text-align: center;
}

.banner-style-three .clients-box .shape {
  position: absolute;
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}

.banner-style-three .clients-box .clients-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.banner-style-three .clients-box .clients-list li {
  position: relative;
  display: inline-block;
  margin: 0px -7.5px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.banner-style-three .clients-box .clients-list li:last-child {
  position: relative;
  display: inline-block;
  line-height: 50px;
  background: var(--secondary-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.banner-style-three .clients-box .clients-list li:first-child,
.banner-style-three .clients-box .clients-list li:last-child {
  top: 20px;
}

.banner-style-three .clients-box .clients-list li:nth-child(2),
.banner-style-three .clients-box .clients-list li:nth-child(4) {
  top: 8px;
}

.banner-style-three .clients-box h2 {
  display: block;
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
  margin-bottom: 4px;
}

.banner-style-three .clients-box h5 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}


/** banner-style-four **/

.banner-style-four {
  position: relative;
  padding: 190px 0px 130px 0px;
}

.banner-style-four .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-four .content-box {
  position: relative;
  display: block;
  margin-right: -40px;
}

.banner-style-four .content-box h2 {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 56px;
}

.banner-style-four .content-box p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  max-width: 400px;
  margin-bottom: 53px;
}

.banner-style-four .image-box {
  position: relative;
  display: block;
  margin-left: 48px;
}

.banner-style-four .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  transform: skewX(-10deg);
}

.banner-style-four .image-box .image img {
  width: 100%;
  border-radius: 30px;
}

.banner-style-four .image-box .rating-box {
  position: absolute;
  left: 0px;
  top: 90px;
  width: 220px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 14px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 11px 20px;
  z-index: 1;
}

.banner-style-four .image-box .rating-box:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border-radius: 18px;
  z-index: -1;
}

.banner-style-four .image-box .rating-box:after {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 14px;
  z-index: -1;
}

.banner-style-four .image-box .rating-box h6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.banner-style-four .image-box .rating-box h6 i {
  color: #FFB31F;
  font-size: 16px;
}

.banner-style-four .clients-box {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 270px;
  background: #fff;
  bottom: 0px;
  border-radius: 30px;
  padding: 50px 20px 53px 20px;
  text-align: center;
}

.banner-style-four .clients-box .shape {
  position: absolute;
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}

.banner-style-four .clients-box .clients-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.banner-style-four .clients-box .clients-list li {
  position: relative;
  display: inline-block;
  margin: 0px -7.5px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.banner-style-four .clients-box .clients-list li:last-child {
  position: relative;
  display: inline-block;
  line-height: 50px;
  background: var(--secondary-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.banner-style-four .clients-box .clients-list li:first-child,
.banner-style-four .clients-box .clients-list li:last-child {
  top: 8px;
}

.banner-style-four .clients-box h2 {
  display: block;
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
  margin-bottom: 4px;
}

.banner-style-four .clients-box h5 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.banner-style-four .image-box .image-shape {
  position: absolute;
  left: -80px;
  bottom: 135px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
}


/** banner-style-five **/

.banner-style-five {
  position: relative;
}

.banner-style-five h2 {
  display: block;
  font-size: 90px;
  line-height: 90px;
  color: #fff;
}

.banner-style-five .text-box {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
}

.banner-style-five .left-column .text-box:before {
  position: absolute;
  content: '';
  background-image: url(../../images/shape/shape-10.png);
  width: 38px;
  height: 60px;
  top: 65px;
  right: -30px;
  background-repeat: no-repeat;
}

.banner-style-five .video-btn a {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 130px;
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.banner-style-five .video-btn a:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.12);
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
}

.banner-style-five .clients-box {
  position: relative;
  display: inline-block;
  width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 80px;
  z-index: 1;
  margin-bottom: 55px;
  padding: 45px 45px 37px 45px;
}

.banner-style-five .clients-box:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.06);
  border-radius: 70px;
  left: 15px;
  top: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  z-index: -1;
}

.banner-style-five .clients-box .clients-list {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.banner-style-five .clients-box .clients-list li {
  position: relative;
  display: inline-block;
  margin-right: -15px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.banner-style-five .clients-box .clients-list li:last-child {
  position: relative;
  display: inline-block;
  line-height: 50px;
  background: var(--secondary-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.banner-style-five .clients-box h6 {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}

.banner-style-five .theme-btn .text {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.banner-style-five .theme-btn i {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: transparent;
}

.banner-style-five .image-layer {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}


/** rtl-css **/

.rtl .banner-carousel .content-box {
  direction: rtl;
}

.rtl .banner-style-two .image-box .single-item .rating-box {
  left: 0px;
}

.rtl .banner-style-two .content-box .text-box {
  padding-left: 0px;
  padding-right: 180px;
}

.rtl .banner-style-two .content-box .text-box:before {
  left: inherit;
  right: 0px;
}

.rtl .banner-style-three .content-column {
  float: right;
}

.rtl .banner-style-three .bg-layer {
  right: inherit;
  left: 0px;
}

.rtl .banner-style-four .image-box {
  margin-left: 0px;
  margin-right: 48px;
}

.rtl .banner-style-five {
  direction: ltr;
  text-align: right;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .banner-style-three {
    padding-left: 0px;
    padding-right: 0px;
  }

  .banner-style-three .content-box {
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-style-four .content-box {
    margin-right: 0px;
  }

  .banner-style-five .image-layer {
    display: none;
  }

  .banner-style-five .text-box {
    padding: 0px;
    margin: 0px;
    margin-bottom: 40px;
  }

  .banner-style-five .text-box:before {
    display: none;
  }

  .banner-style-five h2 {
    margin-bottom: 60px;
  }

  .banner-style-five .video-btn {
    left: 0px;
    text-align: left;
  }

  .banner-style-five .right-content {
    padding-left: 0px;
  }

  .banner-style-five .clients-box {
    margin: 0px;
    margin-bottom: 50px;
  }

  .banner-style-five .btn-box {
    padding: 0px;
    margin: 0px;
  }

  .banner-style-five h2 {
    font-size: 80px;
    line-height: 80px;
  }

  .rtl .banner-style-five .video-btn {
    text-align: right;
  }
}

@media only screen and (max-width: 991px) {
  .banner-style-two .content-box {
    margin-bottom: 30px;
  }

  .banner-style-two .image-box .single-item .text {
    right: 0px;
  }

  .banner-style-three .content-column {
    width: 100%;
    float: none;
  }

  .banner-style-three .bg-layer {
    display: none;
  }

  .banner-style-three .clients-box {
    position: relative;
    left: 0px;
    margin-left: 0px;
    width: 100%;
  }

  .banner-style-four .content-box {
    margin-bottom: 40px;
  }

  .banner-style-four .image-box .image {
    transform: skewX(0deg);
  }

  .banner-style-four .image-box {
    margin-left: 0px;
  }

  .rtl .banner-style-four .image-box {
    margin-right: 0px;
  }

  .banner-style-five .right-content {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-section .owl-nav {
    display: none;
  }

  .banner-carousel .content-box h2,
  .banner-style-two .content-box h2,
  .banner-style-three .content-box h2,
  .banner-style-four .content-box h2,
  .banner-style-five h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .banner-section .pattern-layer {
    display: none;
  }

  .banner-carousel .slide-item,
  .banner-style-five {
    padding: 92px 0px 100px 0px;
  }

  .banner-style-two .image-box .single-item {
    padding: 0px;
    margin: 0px;
    margin-bottom: 40px;
  }

  .banner-style-two .image-box .single-item .rating-box {
    left: 0px;
  }

  .banner-style-two {
    padding: 172px 0px 60px 0px;
  }

  .banner-style-three .content-box {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .banner-style-four {
    padding: 140px 0px 100px 0px;
  }

}

@media only screen and (max-width: 599px) {
  .banner-style-two .content-box .text-box {
    padding-left: 0px;
  }

  .rtl .banner-style-two .content-box .text-box {
    padding-right: 0px;
  }

  .banner-style-two .content-box .text-box:before {
    display: none;
  }
}

@media only screen and (max-width: 499px) {
  .banner-style-three .content-box {
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-style-four .clients-box {
    position: relative;
    width: 100%;
    margin-top: 30px;
  }
}












































/** feature-section **/

.feature-section {
  position: relative;
}

.feature-block-one {
  position: relative;
  padding-right: 5px;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.feature-block-one:before {
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px 40px 34px 40px;
}

.feature-block-one .inner-box {
  position: relative;
  display: block;
  padding: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
}

.feature-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.feature-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.feature-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding: 22px 0px;
}

.feature-block-one .inner-box h3 {
  display: block;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 13px;
}

.feature-block-one .inner-box h3 a {
  display: inline-block;
  color: var(--title-color);
}

.feature-block-one .inner-box h3 a:hover {
  color: #EF721F;
}

.feature-section.style-two .feature-block-one .inner-box .image-box {
  border-radius: 20px;
}

.feature-section.style-two .feature-block-one .inner-box h3 {
  margin-bottom: 24px;
}

.feature-section.style-two .feature-block-one .inner-box {
  padding-top: 34px;
}

.feature-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: -100px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .feature-section {
    padding-top: 65px;
  }

}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}












































/** about-section **/

.about-section {
  position: relative;
}

.content_block_one .content-box {
  position: relative;
  display: block;
}

.content_block_one .content-box .text-box {
  margin-bottom: 32px;
}

.content_block_one .content-box .inner-box {
  position: relative;
  display: block;
  border-radius: 30px;
  padding: 32px 40px 27px 40px;
}

.content_block_one .content-box .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 17px;
}

.content_block_one .content-box .inner-box .list-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content_block_one .content-box .inner-box .list-inner:before {
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 54px;
  top: 4px;
  left: 50%;
}

.image_block_one .image-box {
  position: relative;
  display: block;
  padding-bottom: 135px;
}

.image_block_one .image-box .image {
  position: relative;
  border-radius: 20px;
}

.image_block_one .image-box .image img {
  width: 100%;
  border-radius: 20px;
}

.image_block_one .image-box .image-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}

.image_block_one .image-box .image-2:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  left: 20px;
  bottom: 20px;
  z-index: -1;
}

.image_block_one .image-box .experience-box {
  position: absolute;
  right: 40px;
  bottom: 100px;
  width: 360px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 15px 15px;
}

.image_block_one .image-box .experience-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.image_block_one .image-box .experience-box h3 span {
  font-size: 30px;
  margin-right: 10px;
  font-weight: 700;
}

.image_block_one .image-box .experience-box:before,
.image_block_one .image-box .experience-box:after {
  border-radius: 20px;
}

.image_block_one .image-box .experience-box:before {
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border-radius: 24px;
}

.image_block_one .image-box .image-shape .shape-1 {
  position: absolute;
  left: 76px;
  top: -65px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
}

.image_block_one .image-box .image-shape .shape-2 {
  position: absolute;
  left: 115px;
  top: 11px;
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-section .pattern-layer {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  z-index: -1;
}


/** about-style-two **/

.about-style-two {
  position: relative;
}

.image_block_two .image-box {
  position: relative;
  display: block;
  margin-right: 46px;
}

.image_block_two .image-box img {
  width: 100%;
}

.image_block_two .image-box .experience-box {
  position: absolute;
  right: -12px;
  bottom: 110px;
  width: 360px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 15px 15px;
}

.image_block_two .image-box .experience-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.image_block_two .image-box .experience-box h3 span {
  font-size: 30px;
  margin-right: 10px;
  font-weight: 700;
}

.image_block_two .image-box .experience-box:before,
.image_block_two .image-box .experience-box:after {
  border-radius: 20px;
}

.image_block_two .image-box .experience-box:before {
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border-radius: 24px;
}

.image_block_two .image-box .image-shape .shape-1 {
  position: absolute;
  left: 0px;
  top: 130px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
  z-index: -1;
}

.image_block_two .image-box .image-shape .shape-2 {
  position: absolute;
  left: 93px;
  top: 128px;
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  z-index: 1;
}

.content_block_three .content-box {
  position: relative;
  display: block;
}

.content_block_three .content-box .inner-box {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.content_block_three .content-box .inner-box .image-box {
  position: relative;
  display: block;
  border-radius: 100px;
}

.content_block_three .content-box .inner-box .image-box img {
  width: 100%;
  border-radius: 100px;
}

.content_block_three .content-box .inner-box h2 {
  display: block;
  font-size: 70px;
  line-height: 60px;
  font-weight: 500;
  margin-bottom: 10px;
}

.content_block_three .content-box .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}


/** about-style-three **/

.about-style-three {
  position: relative;
}

.about-style-three .image-box {
  position: relative;
  display: block;
  padding-bottom: 28px;
}

.about-style-three .image-box .image {
  position: relative;
  display: block;
}

.about-style-three .image-box .image img {
  width: 100%;
}

.about-style-three .image-box .experience-box {
  position: absolute;
  left: 28px;
  bottom: 0px;
  width: 345px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 15px 15px;
}

.about-style-three .image-box .experience-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.about-style-three .image-box .experience-box h3 span {
  font-size: 30px;
  margin-right: 10px;
  font-weight: 700;
}

.about-style-three .image-box .experience-box:before,
.about-style-three .image-box .experience-box:after {
  border-radius: 20px;
}

.about-style-three .image-box .experience-box:before {
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border-radius: 24px;
}

.about-style-three .image-box .image-shape .shape-1 {
  position: absolute;
  left: -103px;
  bottom: 70px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-style-three .image-box .image-shape .shape-2 {
  position: absolute;
  left: -55px;
  bottom: 194px;
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-style-three .content-box {
  position: relative;
  display: block;
  margin-top: 275px;
}

.about-style-three .content-box p {
  margin-bottom: 27px;
}

.about-style-three .content-box h3 {
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 17px;
}


/** about-style-four **/

.about-style-four {
  position: relative;
}

.about-style-four .content-box {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.about-style-four .content-box h2 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 50px;
}

.about-style-four .content-box p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 55px;
}

.about-style-four .image-box {
  position: relative;
  display: block;
}

.about-style-four .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.about-style-four .image-box .image img {
  width: 100%;
  border-radius: 30px;
}

.about-style-four .image-box .image-shape {
  position: absolute;
  left: 50%;
  top: -128px;
  margin-left: -245px;
  width: 490px;
  height: 490px;
  background-repeat: no-repeat;
  z-index: -1;
}


/** about-style-five **/

.about-style-five {
  position: relative;
}

.about-style-five .sec-title {
  max-width: 740px;
}



/** rtl-css **/

.rtl .image_block_one .image-box .experience-box h3 span {
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .content_block_one .content-box {
  margin-right: 0px;
  margin-left: 100px;
}

.rtl .about-style-three .content-box {
  margin-left: 0px;
  margin-right: 40px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .about-style-four .content-box h2 br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .content_block_one .content-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .rtl .content_block_one .content-box {
    margin-left: 0px;
  }

  .image_block_one .image-box .image-shape {
    display: none;
  }

  .content_block_three .content-box {
    margin-left: 0px;
    margin-top: 30px;
  }

  .about-style-three .content-box {
    margin-left: 0px;
    margin-top: 30px;
  }

  .rtl .about-style-three .content-box {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .about-style-two {
    padding: 40px 0px 65px 0px;
  }

  .image_block_two .image-box {
    margin-right: 0px;
  }

  .about-style-three {
    padding: 65px 0px;
  }

  .about-style-three .sec-title {
    margin-bottom: 30px;
  }

  .about-style-four {
    padding: 65px 0px;
  }

  .about-style-four .content-box h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .about-style-five {
    padding: 65px 0px 70px 0px;
  }

}

@media only screen and (max-width: 599px) {
  .content_block_one .content-box .inner-box .list-inner:before {
    display: none;
  }

  .about-style-four .content-box {
    margin-bottom: 40px;
  }

  .about-style-four .image-box .image-shape {
    display: none;
  }
}

@media only screen and (max-width: 499px) {
  .content_block_one .content-box .inner-box .list-inner {
    display: block;
  }

  .image_block_one .image-box {
    padding: 0px;
  }

  .image_block_one .image-box .image-2 {
    position: relative;
    margin-top: 30px;
  }

  .image_block_one .image-box .experience-box {
    position: relative;
    right: 0px;
    bottom: 0px;
    width: 100%;
    margin-top: 30px;
  }

  .image_block_two .image-box .experience-box {
    position: relative;
    right: 0px;
    bottom: 0px;
    width: 100%;
    margin-top: 20px;
  }

  .image_block_two .image-box .image-shape {
    display: none;
  }
}











































:root {
  --theme-color: linear-gradient(84.25deg, #f14525 0%, #ff7b5c 100%);
  --secondary-color: #386574;
  --text-color: #2c4f5d;
  --title-color: #2c4f5d;
  --dark-blue: #213e49;
  /* 深色版本的藍灰色，用於深色背景 */
  --light-blue: #edf2f4;
  /* 淺色版本的藍灰色，用於淺色背景 */
  --text-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft JhengHei", "微軟正黑體", sans-serif;
  --title-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft JhengHei", "微軟正黑體", sans-serif;
}

/** service-section **/

.service-section {
  position: relative;
}

.service-block-one .inner-box {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 30px;
  background: var(--dark-blue);
  /*#1A1A1A*/
  padding: 40px 40px 34px 40px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
}

.service-block-one .inner-box .count-text {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 31px;
  z-index: 1;
}

.service-block-one .inner-box .count-text:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0, 0);
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .count-text:before {
  transform: scale(1, 1);
}

.service-block-one .inner-box .count-text span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-family: var(--title-font);
  font-weight: 500;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .count-text span {
  background: var(--title-color);
}

.service-block-one .inner-box h3 {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 15px;
}

.service-block-one .inner-box h3 a {
  display: inline-block;
  color: #fff;
}

.service-block-one .inner-box h3 a:hover {
  color: #EF721F;
}

.service-block-one .inner-box p {
  color: #fff;
  opacity: 0.5;
  margin-bottom: 24px;
}

.service-block-one .inner-box .link-box a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  background: #8C8C8C;
}

.service-block-one .inner-box .link-box a:hover {
  background: var(--theme-color);
}

.service-block-one {
  position: relative;
  margin-bottom: 30px;
}

.service-block-one:before {
  position: absolute;
  content: '';
  background: #333333;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px 40px 34px 40px;
}


/** service-style-two **/

.service-style-two {
  position: relative;
}

.service-block-two {
  border-radius: 30px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.service-block-two .inner-box {
  position: relative;
  display: block;
  padding: 40px;
  transition: all 500ms ease;
}

.service-block-two:hover .inner-box {
  padding-bottom: 80px;
}

.service-block-two:hover {
  margin-bottom: -40px;
  border-color: #EF721F;
}

.service-block-two:hover:before {
  background: #EF721F;
}

.service-block-two .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 60px;
  color: #000000;
  margin-bottom: 34px;
  transition: all 500ms ease;
}

.service-block-two:hover .inner-box .icon-box {
  color: #EF721F;
  border-color: #EF721F;
}

.service-block-two .inner-box h3 {
  display: block;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 18px;
}

.service-block-two .inner-box h3 a {
  display: inline-block;
  color: var(--title-color);
}

.service-block-two .inner-box h3 a:hover,
.service-block-two .inner-box .link a:hover {
  color: #EF721F;
}

.service-block-two .inner-box .link {
  position: absolute;
  left: 40px;
  bottom: 32px;
}

.service-block-two .inner-box .link a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  color: var(--title-color);
  opacity: 0;
}

.service-block-two:hover .inner-box .link a {
  opacity: 1;
}

.service-style-two .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.service-style-two .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
}

.service-style-two .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.service-style-two .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 60px;
}

.service-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: -200px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}

.service-block-two .inner-box .image-box {
  position: relative;
  display: block;
  padding-bottom: 30px;
  margin-bottom: 19px;
}

.service-block-two .inner-box .image-box .image {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.service-block-two .inner-box .image-box .image img {
  width: 100%;
  border-radius: 20px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .image img {
  transform: scale(1.05);
}

.service-block-two .inner-box .image-box .icon-box {
  position: absolute;
  right: 30px;
  bottom: 5px;
  border-radius: 50%;
  margin: 0px;
  background: #fff;
  z-index: 1;
}

.service-block-two .inner-box .image-box .icon-box:after {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 50%;
  z-index: -1;
}

.service-block-two .inner-box .image-box .icon-box:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 0px;
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box .icon-box:before {
  background: #EF721F;
}

.service-block-two .inner-box .link-box a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--title-color);
  margin-top: 20px;
}

.service-block-two .inner-box .link-box a:hover {
  color: #EF721F;
}

.service-style-two.alternat-2 .service-block-two,
.service-style-three .service-block-two {
  margin-bottom: 30px !important;
}

.service-style-two.alternat-2 .inner-box,
.service-style-three .inner-box {
  padding-bottom: 40px !important;
}

.service-style-two.alternat-2 .owl-dots {
  margin-top: 20px;
}


/** service-style-three **/

.service-style-three {
  position: relative;
  overflow: hidden;
}

.service-style-three .content-box {
  position: relative;
  display: block;
  max-width: 540px;
}

.service-style-three .pattern-layer {
  position: absolute;
  top: -200px;
  right: -400px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
}

.service-style-three .shape {
  position: absolute;
  left: 50%;
  bottom: -245px;
  margin-left: -245px;
  width: 490px;
  height: 490px;
  background-repeat: no-repeat;
}

.service-block-two:hover {
  z-index: 2;
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .service-style-three .content-box {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {

  .service-section,
  .service-style-two.pt_140.pb_120 {
    padding: 65px 0px 40px 0px;
  }

  .service-style-two {
    padding-bottom: 40px;
  }

  .service-style-two .owl-dots {
    display: none;
  }

  .service-style-three {
    padding-bottom: 40px;
  }

  .service-style-two.pt_140 {
    padding-top: 65px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {

  .service-block-one .inner-box,
  .service-block-two .inner-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/** process-section **/

.process-section {
  position: relative;
}

.content_block_two .content-box {
  position: relative;
  display: block;
}

.content_block_two .content-box .accordion .image-box {
  position: relative;
  border-radius: 20px;
  display: none;
  padding-bottom: 22px;
  transform: all 500ms ease;
}

.content_block_two .content-box .accordion .image-box img {
  width: 100%;
  border-radius: 20px;
}

.content_block_two .content-box .accordion.block.active-block .image-box {
  display: block;
}

.content_block_two .content-box .accordion .acc-btn {
  position: relative;
  cursor: pointer;
}

.content_block_two .content-box .accordion .acc-btn .title-box {
  position: relative;
  display: block;
  padding: 0px 30px 2px 33px;
}

.content_block_two .content-box .accordion {
  padding: 20px 30px;
  margin-bottom: 25px;
  border-radius: 30px;
}

.content_block_two .content-box .accordion.active-block {
  padding-top: 30px;
}

.content_block_two .content-box .accordion:last-child {
  margin-bottom: 0px;
}

.content_block_two .content-box .accordion .acc-btn .title-box .count-text {
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 26px;
  line-height: 30px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
}

.content_block_two .content-box .accordion .acc-btn .title-box h3 {
  display: block;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 7px;
}

.process-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}


/** rtl-css **/

.rtl .content_block_two .content-box .accordion .acc-btn .title-box .count-text {
  left: inherit;
  right: 0px;
}

.rtl .process-section .sec-title {
  margin-right: 0px;
  margin-left: 70px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .process-section .sec-title {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .rtl .process-section .sec-title {
    margin-left: 0px;
  }

  .content_block_two .content-box {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .process-section {
    padding: 65px 0px 60px 0px;
  }

}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}












































/** funfact-section **/

.funfact-section {
  position: relative;
  overflow: hidden;
}

.funfact-section .pattern-layer {
  position: absolute;
  left: 50%;
  bottom: -100px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
  margin-left: -100px;
}

.funfact-section .inner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funfact-block-one .inner-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.funfact-block-one .inner-box .count-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
}

.funfact-block-one .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.funfact-block-one .inner-box .count-outer .symble {
  position: relative;
  display: inline-block;
  top: -10px;
}


/** funfact-style-two **/

.funfact-style-two {
  position: relative;
}

.funfact-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 130px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.funfact-style-two .title-box h2 {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 40px;
}

.funfact-block-two {
  border-radius: 30px;
  margin-bottom: 30px;
}

.funfact-block-two .inner-box {
  position: relative;
  display: block;
  padding: 34px 20px 35px 20px;
}

.funfact-block-two .inner-box .count-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
}

.funfact-block-two .inner-box .count-outer .symble {
  position: relative;
  display: inline-block;
  top: -10px;
}

.funfact-block-two .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.funfact-style-two .pattern-layer-2 {
  position: absolute;
  left: 0px;
  top: -400px;
  right: 0px;
  bottom: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
}



/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .funfact-style-two {
    padding-top: 65px;
  }

  .funfact-style-two .title-box h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .funfact-style-two .title-box {
    margin-bottom: 40px;
  }

  .funfact-style-two .title-box h2 br {
    display: none;
  }

  .funfact-style-two.pb_120 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 599px) {
  .funfact-section .inner-container {
    display: block;
    text-align: center;
  }
}

@media only screen and (max-width: 499px) {}












































/** video-section **/

.video-section {
  position: relative;
  padding: 182px 0px 190px 0px;
  overflow: hidden;
}

.video-section .bg-layer:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

.video-section .content-box {
  position: relative;
  display: block;
}

.video-section .content-box h2 {
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 57px;
}

.video-section .content-box .video-btn a {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #fff;
}


/** video-style-two **/

.video-style-two {
  position: relative;
}

.video-style-two .inner-container {
  position: relative;
  padding: 265px 0px;
  border-radius: 30px;
  overflow: hidden;
}

.video-style-two .inner-container:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.30;
  z-index: 1;
}

.video-style-two .video-btn a {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: var(--title-color);
  z-index: 2;
}

.video-style-two .video-btn a:before {
  position: absolute;
  content: '';
  border: 1px solid var(--secondary-color);
  width: 100px;
  height: 100px;
  left: 10px;
  top: 10px;
  border-radius: 50%;
}

.video-style-two.radius_0 .inner-container {
  border-radius: 0px;
}



/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .video-style-two {
    padding: 0px;
  }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .video-section .content-box h2 {
    font-size: 40px;
  }

  .video-section {
    padding: 92px 0px 100px 0px;
  }

  .video-style-two .inner-container {
    padding: 150px 0px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}












































/** testimonial-section **/

.testimonial-section {
  position: relative;
}

.testimonial-section .image-box {
  position: relative;
  display: block;
}

.testimonial-section .image-box .image {
  position: relative;
  display: block;
  border-radius: 30px;
}

.testimonial-section .image-box .image img {
  width: 100%;
  border-radius: 30px;
}

.testimonial-section .image-box .icon-box {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 34px 0px 34px 0px;
  padding-left: 15px;
  padding-top: 15px;
}

.testimonial-section .image-box .icon-box .icon {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border: 1px solid #000;
  border-radius: 30px 0px 30px 0px;
  font-size: 60px;
  text-align: center;
  box-shadow: 5px 5px 0px 0px #000;
}

.testimonial-section .content-box {
  position: relative;
  display: block;
}

.testimonial-section .testimonial-content {
  position: relative;
  display: block;
}

.testimonial-section .testimonial-content .rating {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 16px;
  color: #FEAA2F;
  gap: 7px;
  margin-bottom: 32px;
}

.testimonial-section .testimonial-content p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 32px;
}

.testimonial-section .testimonial-content .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-section .testimonial-content .author-box .thumb-box {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .author-box .thumb-box img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .author-box h3 {
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 2px;
}

.testimonial-section .testimonial-content .author-box .designation {
  position: relative;
  display: block;
}

.testimonial-section .owl-nav {
  position: absolute;
  right: 0px;
  bottom: 10px;
}

.testimonial-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 0px;
  top: -200px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}

.testimonial-section .pattern-layer .pattern-2 {
  position: absolute;
  top: -200px;
  right: 60px;
  width: 490px;
  height: 490px;
  background-repeat: no-repeat;
  z-index: -2;
}


/** testimonial-style-two **/

.testimonial-style-two {
  position: relative;
}

.testimonial-block-one {
  position: relative;
  display: block;
  border-radius: 30px;
  margin-bottom: 30px;
  margin-top: 54px;
}

.testimonial-block-one .inner-box {
  position: relative;
  display: block;
  padding: 91px 70px 44px 70px;
  text-align: center;
}

.testimonial-block-one .inner-box .icon-box {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: -54px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 30px;
  font-size: 45px;
  color: var(--title-color);
}

.testimonial-block-one .inner-box .rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 16px;
  color: #FEAA2F;
  margin-bottom: 16px;
}

.testimonial-block-one .inner-box p {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 14px;
}

.testimonial-block-one .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
}

.testimonial-block-one .inner-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
}

.testimonial-style-two .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-style-two .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -25px;
  width: 100%;
}

.testimonial-style-two .owl-nav .owl-prev {
  position: absolute;
  left: -25px;
  top: 0px;
}

.testimonial-style-two .owl-nav .owl-next {
  position: absolute;
  right: -25px;
  top: 0px;
}


/** testimonial-style-three **/

.testimonial-style-three {
  position: relative;
}

.testimonial-style-three .content-box {
  position: relative;
  display: block;
}

.testimonial-style-three .testimonial-content {
  position: relative;
  display: block;
}

.testimonial-style-three .testimonial-content .icon-box {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 45px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 30px 0px 30px 0px;
  box-shadow: 5px 5px 0px 0px #000;
  margin-bottom: 50px;
}

.testimonial-style-three .testimonial-content p {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 37px;
}

.testimonial-style-three .testimonial-content h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
}

.testimonial-style-three .testimonial-content .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
}

.testimonial-style-three .owl-nav {
  position: absolute;
  right: 0px;
  bottom: 8px;
}

.testimonial-style-three .owl-nav button {
  background: transparent;
}

.image_block_three .image-box {
  position: relative;
  display: block;
}

.image_block_three .image-box .image {
  position: relative;
  display: block;
  border-radius: 30px;
  transform: skewX(-10deg);
  overflow: hidden;
}

.image_block_three .image-box .image img {
  width: 100%;
}

.image_block_three .image-box .clients-box {
  position: absolute;
  left: 0px;
  bottom: 90px;
  border-radius: 30px;
  width: 265px;
  padding: 22px 30px 20px 30px;
}

.image_block_three .image-box .clients-box h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
}

.image_block_three .image-box .clients-box h6 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 17px;
  gap: 10px;
}

.image_block_three .image-box .clients-box h6 i {
  color: #FFB31F;
}

.image_block_three .image-box .clients-box .clients-list {
  position: relative;
  display: flex;
  align-items: center;
}

.image_block_three .image-box .clients-box .clients-list li {
  position: relative;
  display: inline-block;
  margin-right: -15px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.image_block_three .image-box .clients-box .clients-list li:last-child {
  position: relative;
  display: inline-block;
  line-height: 50px;
  background: var(--secondary-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.testimonial-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}


/** testimonial-page-section **/

.testimonial-page-section {
  position: relative;
}



/** rtl-css **/

.rtl .testimonial-section .testimonial-content {
  direction: rtl;
}

.rtl .testimonial-section .owl-nav {
  right: inherit;
  left: 0px;
}

.rtl .testimonial-section .content-box {
  margin-left: 0px;
  margin-right: 40px;
}

.rtl .testimonial-section .image-box {
  margin-right: 0px;
  margin-left: 40px;
}

.rtl .testimonial-style-two .sec-title {
  margin-right: 0px;
  margin-left: 180px;
}

.rtl .testimonial-style-three .testimonial-content {
  direction: rtl;
}

.rtl .testimonial-style-three .owl-nav {
  right: inherit;
  left: 0px;
}

.rtl .testimonial-style-three .content-box {
  margin-right: 0px;
  margin-left: 40px;
}



/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .testimonial-block-one .inner-box {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-style-two .owl-nav {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section .image-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .rtl .testimonial-section .image-box {
    margin-left: 0px;
  }

  .testimonial-section .content-box {
    margin-left: 0px;
  }

  .rtl .testimonial-section .content-box {
    margin-right: 0px;
  }

  .testimonial-style-two .sec-title {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .rtl .testimonial-style-two .sec-title {
    margin-left: 0px;
  }

  .testimonial-style-three .content-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .rtl .testimonial-style-three .content-box {
    margin-left: 0px;
  }

  .image_block_three .image-box .image {
    transform: skewX(0deg);
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0px;
  }

  .testimonial-section .owl-nav {
    display: none;
  }

  .testimonial-style-two,
  .testimonial-page-section {
    padding: 65px 0px 40px 0px;
  }

  .image_block_three .image-box {
    margin-left: 0px;
  }

  .testimonial-style-three {
    padding: 65px 0px 70px 0px;
  }

  .testimonial-style-three .owl-nav {
    display: none;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {
  .testimonial-block-one .inner-box p {
    font-size: 16px;
    line-height: 26px;
  }

  .image_block_three .image-box {
    padding-left: 0px;
  }

  .image_block_three .image-box .clients-box {
    position: relative;
    bottom: 0px;
    width: 100%;
    margin-top: 30px;
  }
}












































/** brand-section **/

.brand-section {
  position: relative;
}

.brand-section .brand-logo {
  position: relative;
  display: block;
}

.brand-section .brand-logo img {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  transition: all 500ms ease;
}

.brand-section .brand-logo img:hover {
  transform: scale(1.03);
}

.brand-section .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.brand-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: -600px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
}



/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .brand-section.pb_150 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}












































/** project-section **/

.project-section {
  position: relative;
  overflow: hidden;
}

.project-section .inner-container {
  position: relative;
  margin: 0px 7.5px;
}

.project-section .project-block {
  padding: 0px 7.5px;
}

.project-block-one .inner-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.project-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.project-block-one .inner-box .image-box img {
  width: 100%;
  border-radius: 20px;
}

.project-block-one .inner-box .image-box:before {
  position: absolute;
  content: '';
  background: linear-gradient(360deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.project-block-one .inner-box .overlay-content .image-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-block-one .inner-box .text-box {
  position: absolute;
  left: 0px;
  bottom: 24px;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 2;
}

.project-block-one .inner-box .text-box h3 {
  display: block;
  font-size: 24px;
  line-height: 28px;
}

.project-block-one .inner-box .text-box h3 a {
  display: inline-block;
  color: #fff;
}

.project-block-one .inner-box .text-box h3 a:hover {
  text-decoration: underline;
}

.project-block-one .inner-box .overlay-content {
  width: calc(200% + 15px);
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  z-index: 5;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .overlay-content {
  transform: scaleX(1);
  opacity: 1;
}

.project-block:last-child .project-block-one .inner-box .overlay-content {
  transform-origin: right center;
}

.project-section .more-text h3 {
  display: block;
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
}

.project-section .more-text h3 a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.project-section .more-text h3 a i {
  font-size: 12px;
}

.project-section .pattern-layer {
  position: absolute;
  left: 50%;
  bottom: -355px;
  width: 490px;
  height: 490px;
  margin-left: -245px;
  background-repeat: no-repeat;
}


/** project-style-two **/

.project-style-two {
  position: relative;
}

.project-style-two .sec-title .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% + 250px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
}

.project-block-two .inner-box {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-block-two .inner-box .image-box {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.project-block-two .inner-box .image-box:before {
  position: absolute;
  content: '';
  background: linear-gradient(360deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.project-block-two .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.project-block-two .inner-box .content-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.project-block-two .inner-box .content-box .link {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.project-block-two .inner-box .content-box .link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  transform: scale(0, 0);
}

.project-block-two .inner-box .content-box .link a:hover {
  background: #fff;
  color: var(--title-color);
}

.project-block-two .inner-box:hover .content-box .link a {
  transform: scale(1, 1);
}

.project-block-two .inner-box .content-box h3 {
  position: absolute;
  left: 0px;
  bottom: 24px;
  padding: 0px 30px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}

.project-block-two .inner-box .content-box h3 a {
  display: inline-block;
  color: #fff;
}

.project-block-two .inner-box .content-box h3 a:hover {
  text-decoration: underline;
}

.project-style-two .project-block {
  padding: 0px 33.5px;
}

.project-style-two .inner-content {
  margin: 0px -18.5px;
}


/** project-style-three **/

.project-style-three {
  position: relative;
}

.project-block-three {
  position: relative;
  border-radius: 30px;
  margin-bottom: 30px;
}

.project-block-three .inner-box {
  position: relative;
  display: block;
  padding: 32px 40px 34px 40px;
}

.project-block-three .inner-box .category-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.project-block-three .inner-box .category-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  padding: 0px 15px;
}

.project-block-three .inner-box .category-list li a:hover {
  color: #fff;
  background: var(--secondary-color);
}

.project-block-three .inner-box .image-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.project-block-three .inner-box .image-box .image {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.project-block-three .inner-box .image-box .image img {
  width: 100%;
  border-radius: 20px;
  transition: all 500ms ease;
}

.project-block-three .inner-box:hover .image-box .image img {
  transform: scale(1.05);
}

.project-block-three .inner-box .image-box .link-box {
  position: absolute;
  right: 30px;
  bottom: -15px;
  z-index: 1;
}

.project-block-three .inner-box .image-box .link-box a {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: 12px;
  color: var(--title-color);
  box-shadow: 0px 5px 0px 0px #000;
}

.project-block-three .inner-box .image-box .link-box a:hover {
  border-color: #EF721F;
  box-shadow: 0px 5px 0px 0px #EF721F;
}

.project-block-three .inner-box h3 {
  display: block;
  font-size: 26px;
  line-height: 30px;
}

.project-block-three .inner-box h3 a {
  display: inline-block;
  color: var(--title-color);
}

.project-block-three .inner-box h3 a:hover {
  color: #EF721F;
}

.project-style-three .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}


/** project-style-four **/

.project-style-four {
  position: relative;
}

.project-block-four {
  position: relative;
  display: block;
  border-radius: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  transition: all 500ms ease;
}

.project-block-four:hover {
  z-index: 2;
}

.project-block-four:before {
  background: #333333;
}

.project-block-four:after {
  background: #1A1A1A;
}

.project-block-four .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  padding-right: 450px;
  transition: all 500ms ease;
}

.project-block-four .inner-box .count-text {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
}

.project-block-four .inner-box h3 {
  display: block;
  font-size: 26px;
  line-height: 30px;
}

.project-block-four .inner-box h3 a {
  display: inline-block;
  color: #fff;
}

.project-block-four .inner-box h3 a:hover {
  color: #EF721F;
}

.project-block-four .inner-box .category-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-block-four .inner-box .category-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 0px 15px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.project-block-four .inner-box .category-list li a:hover,
.project-block-four .inner-box .link a:hover {
  background: #EF721F;
  border-color: #EF721F;
}

.project-block-four .inner-box .link {
  position: absolute;
  top: 55px;
  right: 50px;
}

.project-block-four .inner-box .link a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
}

.project-block-four .inner-box .image-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0, 0);
  right: 145px;
  border: 10px solid #fff;
  border-radius: 24px;
  transition: all 500ms ease;
}

.project-block-four .inner-box .image-box img {
  width: 100%;
  border-radius: 20px;
}

.project-block-four:hover .inner-box .image-box {
  transform: translateY(-50%) scale(1, 1) !important;
}


/** project-style-five **/

.project-style-five {
  position: relative;
}

.project-style-five .project-block-three .inner-box .category {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
  padding: 0px 15px;
  margin-bottom: 14px;
}

.project-style-five .project-block-three .inner-box .image-box {
  margin-bottom: 38px;
}

.project-style-five .project-block-three .inner-box .image-box .link-box a {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.project-style-five .project-block-three .inner-box .image-box .link-box a:hover {
  color: #EF721F;
}

.project-style-five .content-box .pattern-layer {
  position: absolute;
  top: 0px;
  right: -200px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
}

.project-style-two.project-page-two .project-block-two .inner-box {
  margin-bottom: 67px;
}



/** rtl-css **/

.rtl .project-block:last-child .project-block-one .inner-box .overlay-content {
  transform-origin: left center;
  left: 0px;
  right: inherit;
}

.rtl .project-block:first-child .project-block-one .inner-box .overlay-content {
  transform-origin: right center;
  right: 0px;
  left: inherit;
}

.rtl .project-block-four .inner-box {
  padding-left: 450px;
  padding-right: 50px;
}

.rtl .project-block-four .inner-box .link {
  right: inherit;
  left: 50px;
}

.rtl .project-block-four .inner-box .image-box {
  right: inherit;
  left: 145px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .project-style-two .project-block {
    padding: 0px 15px;
  }

  .project-style-two .inner-content {
    margin: 0px;
  }

  .project-style-two .outer-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .project-block-one .inner-box .overlay-content {
    width: 100%;
    height: 100%;
  }

  .project-block-four .inner-box {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-style-five .sec-title {
    margin-right: 0px;
  }

  .project-style-five .content-box {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section {
    padding: 65px 0px;
  }

  .project-style-two .sec-title,
  .project-style-two {
    padding-top: 65px;
  }

  .project-style-three,
  .project-style-five {
    padding: 65px 0px 40px 0px;
  }

  .project-block-four .inner-box {
    display: block;
    text-align: center;
  }

  .project-block-four .inner-box .image-box {
    display: none;
  }

  .project-block-four .inner-box .link {
    position: relative;
    top: 0px;
    right: 0px;
  }

  .project-block-four .inner-box .count-text,
  .project-block-four .inner-box h3 {
    margin-bottom: 15px;
  }

  .project-block-four .inner-box .category-list {
    justify-content: center;
    margin-bottom: 20px;
  }

  .project-style-four {
    padding: 65px 0px 70px 0px;
  }

  .project-style-two.pb_80 {
    padding-bottom: 3px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {
  .project-style-two .outer-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .project-block-three .inner-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** cta-section **/

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .bg-layer:before {
  position: absolute;
  content: '';
  background: #1A1A1A;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
}

.cta-section .content-box {
  position: relative;
  display: block;
}

.cta-section .content-box h2 {
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 52px;
}

.cta-section .outer-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.cta-section .outer-container .shape .shape-1 {
  position: absolute;
  left: -130px;
  bottom: -430px;
  width: 690px;
  height: 690px;
  border-radius: 50%;
  border: 93px solid rgba(255, 255, 255, 0.05);
}

.cta-section .outer-container .shape .shape-2 {
  position: absolute;
  right: -130px;
  top: -430px;
  width: 690px;
  height: 690px;
  border-radius: 50%;
  border: 93px solid rgba(255, 255, 255, 0.05);
}


/** cta-style-two **/

.cta-style-two {
  position: relative;
}

.cta-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-style-two .content-box {
  position: relative;
  display: block;
}

.cta-style-two .content-box h2 {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 34px;
}

.cta-style-two .image-layer {
  position: absolute;
  left: 315px;
  bottom: 0px;
}

.cta-style-two .shape {
  position: absolute;
  left: 214px;
  top: 115px;
  width: 260px;
  height: 260px;
  background-repeat: no-repeat;
}


/** cta-style-three **/

.cta-style-three {
  position: relative;
}

.cta-style-three .content-box {
  position: relative;
  display: block;
}

.cta-style-three .content-box h2 {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 50px;
}



/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1600px) {
  .cta-style-two .image-layer {
    left: 0px;
  }
}

@media only screen and (max-width: 1200px) {
  .cta-section.pl_70.pr_70 {
    padding: 0px !important;
  }

  .cta-style-two .image-layer,
  .cta-style-two .shape {
    display: none;
  }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {

  .cta-section .content-box h2,
  .cta-style-three .content-box h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .cta-style-three .content-box h2 br {
    display: none;
  }

  .cta-section,
  .cta-section .outer-container {
    padding: 65px 0px 70px 0px;
  }

  .cta-section .content-box h2 br {
    display: none;
  }

  .cta-style-two {
    padding: 65px 0px 70px 0px;
  }

  .cta-style-two .content-box h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .cta-style-three {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}












































/** news-section **/

.news-section {
  position: relative;
}

.news-section .sec-title {
  max-width: 320px;
}

.news-section .content-box {
  position: relative;
  display: block;
}

.news-block-one {
  background: #fff;
  border-radius: 30px;
  margin-bottom: 35px;
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  padding: 40px 40px 30px 40px;
}

.news-block-one .inner-box .image-box {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img {
  width: 100%;
}

.news-block-one .inner-box .image-box .overlay-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-one .inner-box:hover .image-box .overlay-image {
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-one .inner-box .image-box .post-date {
  position: absolute;
  left: 0px;
  top: 30px;
  background: var(--theme-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title-color);
  padding: 6px 17px 4px 17px;
  border-radius: 0px 30px 30px 0px;
  z-index: 2;
}

.news-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 23px;
}

.news-block-one .inner-box .lower-content .category {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 9px;
  padding-left: 25px;
}

.news-block-one .inner-box .lower-content .category:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 15px;
  height: 2px;
  left: 0px;
  top: 11px;
}

.news-block-one .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 23px;
}

.news-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content h3 a:hover {
  color: #EF721F;
}

.news-block-one .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content .link a:hover {
  color: #EF721F;
}

.news-section .pattern-layer {
  position: absolute;
  left: 0px;
  top: -200px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}

.news-section .shape {
  position: absolute;
  left: -100px;
  bottom: 30px;
  width: 310px;
  height: 310px;
  background-repeat: no-repeat;
}


/** news-style-two **/

.news-style-two {
  position: relative;
}

.news-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  margin: 0 auto;
}

.news-block-one .inner-box .lower-content .category-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 17px;
}

.news-block-one .inner-box .lower-content .category-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  padding: 0px 15px;
  border-radius: 30px;
}

.news-block-one .inner-box .lower-content .category-list li a:hover {
  color: #fff;
  background: #EF721F;
  border-color: #EF721F;
}

.news-section.home-5 .pattern-layer {
  top: 200px;
}

.news-block-one .inner-box .lower-content h2 {
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 15px;
}

.news-block-one .inner-box .lower-content h2 a {
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content h2 a:hover {
  color: #EF721F;
}


/** sidebar-page-container **/

.sidebar-page-container {
  position: relative;
}



/** rtl-css **/

.rtl .news-section .content-box {
  margin-left: 0px;
  margin-right: 40px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .news-section .sec-title {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .news-section .content-box {
    margin-left: 0px;
  }

  .rtl .news-section .content-box {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {

  .news-section,
  .news-style-two {
    padding: 65px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {
  .news-block-one .inner-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-block-one .inner-box .lower-content h2,
  .news-block-one .inner-box .lower-content h3 {
    font-size: 24px;
    line-height: 30px;
  }
}


















/** main-footer **/

.main-footer {
  position: relative;
}

.footer-top .bg-color {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
}

.footer-top .inner-container {
  position: relative;
  padding: 35px 0px 35px 50px;
  border-radius: 70px 0px 0px 70px;
  z-index: 1;
}

.footer-top .inner-container:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 2500px;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  border-radius: 70px 0px 0px 70px;
}

.footer-top .form-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-top .form-inner h3 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 30px;
}

.footer-top .form-inner .form-group {
  position: relative;
  display: block;
  margin-bottom: 0px;
  padding-right: 60px;
  width: 350px;
}

.footer-top .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  color: var(--title-color);
  padding: 10px 30px;
  text-align: left;
  transition: all 500ms ease;
}

.footer-top .form-inner .form-group button[type="submit"] {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  line-height: 54px;
  background: var(--secondary-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  transition: all 500ms ease;
}

.footer-top .form-inner .form-group input:focus+button,
.footer-top .form-inner .form-group button:hover {
  color: var(--title-color);
  background: #fff;
}

.main-footer-content .about-widget h2 {
  display: block;
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  max-width: 450px;
  /* 350px */
  margin-bottom: 34px;
}

.main-footer-content .widget-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer-content .widget-section:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0px;
  margin-left: -135px;
}

.main-footer-content .widget-title {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.main-footer-content .widget-title h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}

.main-footer-content .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.main-footer-content .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.main-footer-content .links-widget .links-list li a {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.main-footer-content .links-widget .links-list li a:hover {
  color: #F89228;
}

.main-footer-content .contact-widget .info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  /* #8C8C8C */
  margin-bottom: 10px;
}

.main-footer-content .contact-widget .info-list li:last-child {
  margin-bottom: 0px;
}

.main-footer-content .contact-widget .info-list li a {
  display: inline-block;
  color: #fff;
  /* #8C8C8C */
}

.main-footer-content .contact-widget .info-list li a:hover {
  color: #F89228;
}

.main-footer-content .contact-widget .info-list li i {
  font-size: 20px;
}

.main-footer-content .contact-widget .info-list li:nth-child(2) i {
  font-size: 16px;
}

.main-footer .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-footer .social-links li a {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  z-index: 1;
}

.main-footer .social-links li a:hover {
  color: var(--title-color);
}

.main-footer .social-links li a:before {
  position: absolute;
  content: '';
  background: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease;
}

.main-footer .social-links li a:hover:before {
  transform: scale(1, 1);
}

.footer-bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .bottom-inner .copyright p {
  color: #CCCCCC;
  font-weight: 500;
}

.footer-bottom .bottom-inner .copyright p a {
  display: inline-block;
  color: #CCCCCC;
}

.footer-bottom .bottom-inner .copyright p a:hover,
.footer-bottom .bottom-inner .footer-menu li a:hover {
  color: #F89228;
}

.footer-bottom .bottom-inner .footer-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-bottom .bottom-inner .footer-menu li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  /* 20px */
  line-height: 26px;
  color: #CCCCCC;
  font-weight: 500;
}

.footer-bottom {
  position: relative;
  padding: 35px 0px;
}


.dark-footer .pattern-layer {
  position: absolute;
  left: 0px;
  top: 65px;
  width: 100%;
  height: calc(100% - 65px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.dark-footer .footer-top .inner-container {
  border-radius: 30px;
  padding-right: 50px;
}

.dark-footer .footer-top .form-inner {
  margin-left: -30px;
}

.dark-footer .footer-top .inner-container:before {
  background: #000;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 30px 40px 34px 40px;
  z-index: -1;
}

.dark-footer .main-footer-content .widget-section:before {
  background: #000;
}

.dark-footer .main-footer-content .widget-section {
  border-color: #000;
}

.dark-footer .main-footer-content .about-widget h2 {
  color: var(--title-color);
}

.dark-footer .main-footer-content .widget-title h3 {
  color: var(--title-color);
}

.dark-footer .main-footer-content .links-widget .links-list li a,
.dark-footer .main-footer-content .contact-widget .info-list li,
.dark-footer .main-footer-content .contact-widget .info-list li a {
  color: var(--title-color);
}

.dark-footer .main-footer-content .links-widget .links-list li a:hover,
.dark-footer .main-footer-content .contact-widget .info-list li a:hover,
.dark-footer .footer-bottom .bottom-inner .copyright p a:hover,
.dark-footer .footer-bottom .bottom-inner .footer-menu li a:hover {
  color: #F89228;
}

.dark-footer .social-links li a {
  background: transparent;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  line-height: 46px;
}

.dark-footer .social-links li a:hover {
  border-color: transparent;
}

.dark-footer .social-links li a:before {
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}

.dark-footer .footer-bottom .bottom-inner .copyright p,
.dark-footer .footer-bottom .bottom-inner .copyright p a,
.dark-footer .footer-bottom .bottom-inner .footer-menu li a {
  color: var(--title-color);
}

.dark-footer .footer-top .form-inner .form-group input:focus+button,
.dark-footer .footer-top .form-inner .form-group button:hover {
  background: #F89228;
}

.main-footer .outer-container {
  border-radius: 0px 0px 30px 30px;
  overflow: hidden;
}

.main-footer .outer-container .footer-top .bg-color {
  border-radius: 30px 30px 0px 0px;
}

.main-footer.home-5 .dark-footer .footer-top .inner-container,
.main-footer.home-5 .dark-footer .footer-top .inner-container:after {
  background: #1A1A1A;
}

.main-footer.home-5 .dark-footer .footer-top .inner-container {
  border: 1px solid #323232;
}

.main-footer.home-5 .dark-footer .footer-top .inner-container:before {
  background: #323232;
}

.main-footer.home-5 .footer-top .form-inner h3 {
  color: #fff;
}

.main-footer.home-5 .footer-top .form-inner .form-group input[type='email'] {
  color: #8C8C8C;
  border-color: #323232;
}

.main-footer.home-5 .footer-top .form-inner .form-group button[type="submit"] {
  background: var(--theme-color);
  color: var(--title-color);
}


/** rtl-css **/

.rtl .main-footer-content .widget-section:before {
  left: inherit;
  right: 50%;
  margin-left: 0px;
  margin-right: -135px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
  .footer-top .form-inner {
    display: block;
  }

  .footer-top .form-inner h3 {
    margin-bottom: 15px;
  }

  .footer-top .form-inner .form-group {
    width: 100%;
  }

  .main-footer {
    padding: 0px !important;
  }

  .main-footer .outer-container {
    border-radius: 0px;
  }

  .main-footer.home-5 {
    padding-top: 80px !important;
  }
}

@media only screen and (max-width: 991px) {
  .footer-top .footer-logo {
    margin-bottom: 30px;
  }

  .footer-top {
    text-align: center;
  }

  .main-footer-content .widget-section:before {
    display: none;
  }

  .footer-widget {
    margin: 0px 0px 30px 0px;
  }

  .main-footer-content .widget-section {
    padding-bottom: 65px;
  }

  .footer-top .inner-container:before {
    width: 100%;
    border-radius: 70px;
  }

  .footer-top .inner-container {
    padding-right: 50px;
  }

  .footer-bottom .bottom-inner {
    display: block;
    text-align: center;
  }

  .footer-bottom .bottom-inner .footer-menu {
    justify-content: center;
    gap: 15px;
  }

  .dark-footer .footer-top .form-inner {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .main-footer-content .about-widget h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {
  .footer-top .inner-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-bottom .bottom-inner .footer-menu {
    display: block;
  }

  .footer-bottom .bottom-inner .footer-menu li {
    display: inline-block;
    margin: 0px 6px;
  }

  .dark-footer .footer-top .inner-container {
    padding-right: 30px;
  }
}

/* 頁尾說明文字樣式 */
.footer-widget .text p {
  position: relative;
  color: rgba(255, 255, 255, 1);
  /* 提高文字透明度，增加可讀性 */
  font-size: 16px;
  margin-bottom: 20px;
  padding-right: 60px;
  /* 右側留白 */
  font-weight: 400;
  text-align: justify;
  /* 文字左右對齊 */
  letter-spacing: 0.5px;
  /* 加入字距 */
  max-width: 450px;
}

/* 確保段落容器有適當的寬度限制 */
.footer-widget .text {
  position: relative;
  max-width: 90%;
  /* 控制文字區塊寬度 */
}

/* 如果需要在小螢幕上調整 */
@media only screen and (max-width: 767px) {
  .footer-widget .text p {
    font-size: 15px;
    line-height: 1.6;
    padding-right: 0;
  }

  .footer-widget .text {
    max-width: 100%;
  }
}