/* templates / index open failed!*/


.header-default {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: transparent;
}
.header-default .top-links {
  color: white;
}
.header-default .top-links a {
  color: white;
}
.header-default .header-top {
  background-color: var(--dark-color);
}
.header-default .header-top .start {
  font-size: 15px;
  color: #b1bbbb;
}
.header-default .header-top .start:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #cd0001;
  margin-right: 5px;
  vertical-align: middle;
}
.header-default .header-top.dark {
  color: #fff;
}
.header-default .header-top.dark > a:hover {
  color: var(--dark-color);
}
.header-default .header-top.dark .dropdown-menu > a:hover {
  color: var(--primary-color);
}
.header-default .header-menu {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.header-default .header-menu.search-open .nav-primary, .header-default .header-menu.search-open .logo {
  opacity: 0;
}
.header-default .header-menu .header-icon {
  margin: 0 8px;
}
.header-default .header-menu .header-icon > a, .header-default .header-menu .header-icon > button {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 18px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}
.header-default .header-menu .header-icon {
  color: white;
}
.header-default .header-menu .header-icon .top-links {
  color: white;
}
.header-default .header-menu .header-icon .btn-action {
  display: flex;
}
.header-default .header-menu .navbar-root > li > a {
  display: flex;
  align-items: center;
}
.header-default .contact-inline li {
  color: #b1bbbb;
}
.header-default .contact-inline li .icon {
  color: white;
}
.header-default .contact-inline li:before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: rgba(222, 222, 222, 0.2);
  position: absolute;
  top: 25%;
  right: -18px;
}
.header-default .btn-action {
  padding: 10px 25px;
}
.header-default .sticky-header {
  display: none;
  background-color: white;
}
.header-default .sticky-header a {
  color: black;
}
.header-default .sticky-header .btn {
  color: white;
}
.header-default .sticky-header .mobile-menu-trigger {
  color: black;
}
.header-default .sticky-header :before {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header-default {
    /* 在宽度小于等于1080px时隐藏按钮 */
  }
  .header-default .header-top {
    display: none;
  }
  .header-default .header-menu .header-icons .btn {
    display: none !important;
  }
}
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .header-top .end ul li {
    margin-right: 18px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    position: relative;
  }
}
@media (max-width: 570px) {
  .header-default .header-menu {
    margin-top: 0;
  }
  .header-default .header-menu .logo {
    max-width: 200px;
  }
}


/* snippets / contact-inline open failed!*/

.navbar-root {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-root > li a {
  display: block;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  transition: all 0.2s ease-in-out;
}
.navbar-root > li > a {
  padding: calc(calc(75px - 22px) * 0.5) 15px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 17px;
  color: white;
}
.navbar-root > li .dropdown-menu {
  border-radius: var(--border-radius);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
  min-width: 240px;
  transition: all 0.3s;
  padding: 0;
  border: 0;
}
.navbar-root > li .dropdown-menu li {
  position: relative;
  padding: 13px 20px;
  transition: all 0.3s;
}
.navbar-root > li .dropdown-menu li:hover:before {
  opacity: 1;
  color: var(--primary-color);
}
.navbar-root > li .dropdown-menu li:hover > a {
  color: black;
}
.navbar-root > li .dropdown-menu a {
  position: relative;
}
.navbar-root > li .dropdown-menu a .icon {
  font-size: 22px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.navbar-root > li .dropdown-menu .dropdown-menu {
  right: 100%;
  top: 0;
}
.navbar-root > li .dropdown-menu li {
  border-bottom: 1px solid var(--border-color);
}
.navbar-root > li .dropdown-menu li:hover {
  background-color: var(--primary-color);
}
.navbar-root > li .dropdown-menu li:hover a {
  color: white;
}
.navbar-root li:hover > .dropdown-menu {
  display: block;
}
.navbar-root li:hover > a {
  color: var(--primary-color);
}
.navbar-root .mega-menu > .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
}
.navbar-root .mega-menu > .dropdown-menu > li {
  width: 25%;
  flex: 0 0 auto;
  padding: 15px;
}
.navbar-root .mega-menu > .dropdown-menu > li:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.navbar-root .mega-menu > .dropdown-menu > li > .dropdown-menu {
  display: block;
  position: static;
  border: 0;
}
.navbar-root .mega-menu > .dropdown-menu > li > a {
  color: var(--title-color);
  font-size: 17px;
  font-weight: 500;
}
.navbar-root .mega-menu > .dropdown-menu > li > a .icon {
  display: none;
}
.navbar-root .mega-menu > .dropdown-menu > li:hover > a {
  background-color: red;
  color: var(--primary-color);
}
.navbar-root .mega-menu > .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  right: auto;
}
.navbar-root .mega-menu > .dropdown-menu .dropdown-menu li {
  position: relative;
}
.navbar-root .mega-menu:hover > .dropdown-menu {
  display: flex !important;
}
@media screen and (min-width: 1200px) {
  .navbar-root > li {
    position: relative;
  }
  .navbar-root > li > a:before {
    position: absolute;
    content: "";
    top: -1px;
    right: 3px;
    left: 0;
    height: 3px;
    background: var(--primary-color) none repeat scroll 0 0;
    transform-origin: 0 0 0;
    transform: scaleX(0) translateZ(0px);
    transition: all 0.5s cubic-bezier(0.125, 0.75, 0.415, 1) 0s;
    z-index: 1;
  }
  .navbar-root > li:hover :before {
    transform: scaleX(1) translateZ(0px);
  }
}
.sticky-header-shrink .navbar-root > li > a {
  padding: calc(calc(80px - 22px) * 0.5) 15px;
}
.dark .navbar-root > li .dropdown-menu li:hover > a {
  background-color: rgba(255, 255, 255, 0.1);
}
[dir=rtl] .navbar-root > li .dropdown-menu li:hover > a {
  padding-right: 25px;
  padding-left: 15px;
}
[dir=rtl] .navbar-root > li .dropdown-menu a {
  position: relative;
}
[dir=rtl] .navbar-root > li .dropdown-menu a .icon {
  right: auto;
  left: 0;
}
[dir=rtl] .navbar-root > li .dropdown-menu .dropdown-menu {
  right: auto;
  left: 100%;
}
[dir=rtl] .navbar-root .mega-menu > .dropdown-menu > li:hover > a {
  padding-right: 15px;
}
[dir=rtl] .navbar-root .mega-menu > .dropdown-menu .dropdown-menu {
  right: 100%;
  left: auto;
}


.language-link > li {
  position: relative;
}
.language-link > li .nav-link {
  text-transform: uppercase;
  display: block;
  padding: 12px;
  line-height: 21px;
  font-weight: 500;
  font-size: 14px;
}
.language-link > li > .nav-link {
  display: flex;
  align-items: center;
}
.language-link > li > .nav-link .icon {
  font-size: 16px;
}
.language-link > li .dropdown-menu {
  right: 0;
  border-top: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  --bs-dropdown-bg: none;
  --bs-dropdown-border-color: none;
}
.language-link > li .dropdown-menu li:not(:first-child) {
  border-top: 1px solid var(--border-color);
}
.language-link > li .dropdown-menu li:hover {
  background-color: #3e64ab;
}
.language-link > li:hover .dropdown-menu {
  display: block;
}
.dark .language-link > li .dropdown-menu {
  background-color: var(--dark-color);
  color: #fff;
}
.dark .language-link > li .dropdown-menu li:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dark .language-link > li .dropdown-menu li:hover {
  background-color: #3e64ab;
}
.dark .language-link li:hover {
  color: #3e64ab;
}


.search-form {
  opacity: 0;
  z-index: -2;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}
.search-form input {
  box-shadow: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  font-size: 1.175rem;
  padding: 10px 80px 10px 15px;
  height: 100%;
  background-color: transparent;
  color: var(--title-color);
  font-weight: 500;
  margin-top: 0;
}
.search-icon a {
  z-index: 11;
}
.search-icon a .icon {
  position: absolute;
  top: 0;
  left: 3px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.search-icon a .icon.close {
  opacity: 0;
}
.search-open .search-form {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}
.search-open .search-icon a .icon.search {
  opacity: 0;
}
.search-open .search-icon a .icon.close {
  opacity: 1;
  z-index: 11;
  font-size: 24px;
}
[dir=rtl] .search-icon a .icon {
  left: auto;
  right: 3px;
}


.mobile-menu .mobile-menu-trigger {
  border: 0;
  background-color: transparent;
  z-index: 11;
}
.mobile-menu .mobile-menu-trigger .icon {
  position: absolute;
  top: 0;
  left: 3px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mobile-menu .mobile-menu-trigger .icon.close {
  opacity: 0;
}
.mobile-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: padding 0.4s ease, margin 0.4s ease, opacity 0.2s 0.2s ease;
  z-index: 1000;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: var(--border-radius);
}
.mobile-dropdown-menu .menu-root {
  width: 100%;
}
.mobile-dropdown-menu .menu-root li {
  position: relative;
}
.mobile-dropdown-menu .menu-root li:not(:first-child) {
  border-top: 1px solid var(--border-color);
}
.mobile-dropdown-menu .menu-root li.active > a {
  color: var(--primary-color);
}
.mobile-dropdown-menu .menu-root > li a {
  display: block;
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--title-color);
  letter-spacing: 0;
}
.mobile-dropdown-menu .menu-root > li > a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
}
.mobile-dropdown-menu .menu-root .toggler {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 1;
}
.mobile-dropdown-menu .menu-root .treemenu {
  border-top: 1px solid var(--border-color);
  padding-left: 15px;
}
.mobile-menu-open .mobile-menu-trigger .icon.close {
  opacity: 1;
  z-index: 11;
}
.mobile-menu-open .mobile-menu-trigger .icon.open {
  opacity: 0;
}
.mobile-menu-open .mobile-dropdown-menu {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
[dir=rtl] .mobile-menu .mobile-menu-trigger .icon {
  left: auto;
  right: 3px;
}
[dir=rtl] .mobile-dropdown-menu .menu-root .toggler {
  right: auto;
  left: 15px;
}
[dir=rtl] .mobile-dropdown-menu .menu-root .treemenu {
  padding-left: 0;
  padding-right: 15px;
}


/* snippets / tree-menu open failed!*/

/* snippets / tree-menu open failed!*/

.banner-default {
  --swiper-navigation-size: 20px;
  --swiper-pagination-fraction-color: #fff;
  --swiper-navigation-sides-offset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  position: relative;
}
.banner-default .media-wrap a {
  z-index: 999;
  position: relative;
}
.banner-default .media-wrap .media {
  width: 100%;
}
.banner-default .banner-content {
  color: #333;
  z-index: 1;
  padding: 30px 0;
}
.banner-default .banner-content.dark {
  color: #fff;
}
.banner-default .banner-content .sub-title {
  color: white;
  font-size: 1rem;
}
.banner-default .banner-content .title {
  color: white;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.banner-default .banner-content .text {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.banner-default .banner-content .btn-action {
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-color: var(--primary-color);
  padding: 12px 34px;
}
.banner-default .banner-content .btn-action:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}
.banner-default .banner-content .btnTwo {
  background-color: white;
  color: black;
}
.banner-default .banner-content .btnTwo:hover {
  background-color: var(--primary-color);
  color: white;
}
.banner-default .swiper-button {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 0;
}
.banner-default .swiper-button:after {
  font-size: 20px;
}
.banner-default .swiper-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .banner-default .banner-content {
    padding: 60px 0;
  }
  .banner-default .banner-content .sub-title {
    font-size: 1.125rem;
  }
  .banner-default .banner-content .title {
    font-size: 3rem;
  }
  .banner-default .banner-content .text {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1220px) {
  .banner-default .swiper .swiper-slide img {
    height: auto;
  }
}
@media (min-width: 992px) {
  .banner-default .banner-content {
    padding: 90px 0;
  }
  .banner-default .banner-content .title {
    font-size: 70px;
  }
  .banner-default .banner-content .text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .banner-default .media-wrap {
    height: 450px;
    text-align: center;
  }
  .banner-default .media-wrap .media {
    width: auto;
    height: 100%;
  }
}


/* snippets / ytplayer open failed!*/

.block-features > .container {
  position: relative;
  top: -130px;
  z-index: 5;
}
.block-features > .container .cards {
  box-shadow: 0 2px 76px 0 rgba(0, 0, 0, 0.15);
}
.block-features > .container .cards .col-lg-3 {
  border-right: 1px solid #dedede;
}
.block-features > .container .card {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .block-features .col-lg-3 {
    margin-bottom: 50px;
  }
}


.feature-card-one {
  border-right: 1px solid #dedede;
  background: #fff;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  transition: all 0.3s;
}
.feature-card-one .card-body {
  padding: 40px 40px;
  text-align: center;
}
.feature-card-one .card-body .icon {
  font-size: 50px;
  color: var(--primary-color);
}
.feature-card-one .card-body .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin: 20px 0;
}
.feature-card-one .card-body .text {
  font-size: 16px;
}
.feature-card-one .card-body .text p {
  margin-bottom: 5px;
}
.feature-card-one .card-body .item-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 200ms linear 0s;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
}
.feature-card-one .card-body .item-overlay .item-button {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  transition: all 250ms linear 0s;
}
.feature-card-one .card-body .item-overlay .item-button .btn {
  border: 0;
  background-color: #1a191d;
  padding: 12px 35px;
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.feature-card-one:hover {
  background-color: var(--primary-color);
}
.feature-card-one:hover .title {
  color: white;
}
.feature-card-one:hover .icon {
  color: white;
}
.feature-card-one:hover .text {
  color: white;
}
.feature-card-one:hover .item-overlay {
  opacity: 1;
  visibility: visible;
  top: -24px;
  bottom: -24px;
  z-index: -1;
}


.block-card-features .section-title .sub-title {
  font-weight: 600;
}
.block-card-features .section-title .title {
  font-size: 40px;
}
.block-card-features p {
  width: 90%;
  color: #666;
}
.block-card-features .block-image {
  animation-name: bounceInRight;
  animation-duration: 1.25s;
}
.block-card-features .block-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.block-card-features .block-image img:hover {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform var(--e-transform-transition-duration, 0.4s);
}
.block-card-features .block-image:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  transition: all 0.5s ease-out 0.08s;
  width: 120%;
  background-color: rgba(255, 255, 255, 0);
}
.block-card-features .video {
  padding: 30px 30px 30px 30px;
  background-color: #3e64ab;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #FFFFFF;
  right: 0;
  bottom: -60px;
}
.block-card-features .video .iconBox {
  width: 54px;
  height: 54px;
  background-color: white;
  border-radius: 50%;
  color: #3e64ab;
}
.block-card-features .video .iconBox:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.block-card-features .video .iconBox:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}
.block-card-features .video .iconBox .icon {
  font-size: 25px;
}
.block-card-features .feature-item .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: relative;
}
.block-card-features .feature-item .icon-box .icon {
  color: #fff;
  font-size: 20px;
}
.block-card-features .feature-item .text {
  font-size: 20px;
}
@media (max-width: 767px) {
  .block-card-features .section-title .title {
    font-size: 30px;
  }
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.block-gallery-filter {
  background-color: #1a191d;
}
.block-gallery-filter .text {
  width: 50%;
  color: #ededed;
}
.block-gallery-filter .section-title .title {
  color: white;
}
.block-gallery-filter .nav-filter {
  --bs-nav-link-padding-x: 2rem;
  --bs-nav-link-padding-y: 1rem;
  --bs-nav-link-color: var(--title-color);
  --bs-nav-link-hover-color: var(--primary-color);
}
.block-gallery-filter .nav-filter .nav-item {
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  border-right: 1px solid #3d3c3f;
}
.block-gallery-filter .nav-filter .nav-item .icon {
  font-size: 25px;
}
.block-gallery-filter .nav-filter .nav-item:hover {
  background-color: var(--primary-color);
}
.block-gallery-filter .nav-filter .nav-item button {
  color: #fff !important;
}
.block-gallery-filter .nav-filter .nav-link {
  background-color: transparent;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}
.block-gallery-filter .nav-filter .nav-link.active {
  background-color: var(--primary-color);
}
.block-gallery-filter .nav-filter .nav-link.active:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.block-gallery-filter .nav-filter .nav-link:hover {
  color: #ccc;
}
.block-gallery-filter .btn-action {
  padding: 10px 45px;
  font-size: 13px;
  font-weight: 600;
}
.block-gallery-filter.dark {
  color: white;
}
.block-gallery-filter.dark button {
  color: white;
}
@media screen and (min-width: 993px) {
  .block-gallery-filter .serve-card-media-one {
    margin-left: 100px;
  }
}
@media (max-width: 992px) {
  .block-gallery-filter .section-title .text {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .block-gallery-filter .nav-item {
    width: 50%;
  }
  .block-gallery-filter .nav-item button {
    width: 100%;
  }
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.serve-card-media-one {
  position: relative;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.serve-card-media-one .card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.serve-card-media-one .card-image:before {
  background-color: var(--dark-color);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}
.serve-card-media-one .card-image .action {
  position: absolute;
  bottom: -125px;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 90px;
  height: 90px;
  background-color: var(--primary-color);
  text-align: center;
  padding-top: 10px;
}
.serve-card-media-one .card-image .action:hover {
  background-color: var(--dark-color);
}
.serve-card-media-one:hover .card-image .action {
  bottom: -30px;
}
.serve-card-media-one:hover .card-body {
  opacity: 1;
}
.serve-card-media-one:hover .action-buttons {
  transform: translateX(0);
  opacity: 1;
}
.serve-card-media-one .card-body {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 25, 29, 0.7);
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  align-items: flex-start;
  transition: all 300ms linear 0s;
  padding: 0 15px;
  padding-bottom: 40px;
}
.serve-card-media-one .card-body .content {
  padding: 0 5px;
  width: 100%;
  transition: all 300ms linear 0s;
}
.serve-card-media-one .card-body .content .title {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}
.serve-card-media-one .card-body .content .title:hover {
  color: var(--primary-color);
}
.serve-card-media-one .card-body .content .text {
  font-size: 15px;
  color: white;
}
.serve-card-media-one .card-body .action-buttons {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 350ms linear 0s;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus span {
  display: inline-flex;
  position: relative;
  left: 1px;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus .x-line:before {
  width: 7px;
  height: 2px;
  content: "";
  display: inline-block;
  background-color: #1a191d;
  transition: all 300ms ease-in-out 0s;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus .x-line:after {
  width: 7px;
  height: 2px;
  content: "";
  display: inline-block;
  background-color: #1a191d;
  transition: all 300ms ease-in-out 0s;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus .y-line {
  flex-direction: column;
  position: relative;
  left: -7px;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus .y-line:after {
  width: 2px;
  height: 7px;
  content: "";
  display: inline-block;
  background-color: #1a191d;
  transition: all 300ms ease-in-out 0s;
}
.serve-card-media-one .card-body .action-buttons .bt-more-plus .y-line:before {
  width: 2px;
  height: 7px;
  content: "";
  display: inline-block;
  background-color: #1a191d;
  transition: all 300ms ease-in-out 0s;
}
.serve-card-media-one.dark {
  color: #fff;
}
.serve-card-media-one.dark .card-body .sub-title {
  color: #ffffff80;
}
.serve-card-media-one.dark .card-body .text {
  color: var(--light-color);
}


.block-tabs-cards .section-title .text {
  width: 45%;
  color: #666666;
}
.block-tabs-cards .section-title .heading-underline {
  display: inline-flex;
  align-items: center;
}
.block-tabs-cards .section-title .heading-underline span {
  height: 2px;
  background-color: #a3a3a5;
  width: 336px;
  position: relative;
}
.block-tabs-cards .section-title .heading-underline span:before {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  position: absolute;
  top: -1px;
  background-color: var(--primary-color);
  left: 0;
}
.block-tabs-cards .nav-tabs {
  border-bottom: 0;
  border-top: 1px solid #dedede;
}
.block-tabs-cards .nav-tabs li {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
}
.block-tabs-cards .nav-tabs li button {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  padding: 0 0 20px 0;
  width: 100%;
  color: black;
}
.block-tabs-cards .nav-tabs li button:before {
  position: absolute;
  content: "";
  top: -18px;
  right: 2px;
  left: 0;
  height: 4px;
  background-color: #cd0001;
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
  z-index: 1;
  transform: scaleX(0);
}
.block-tabs-cards .nav-tabs li button .text {
  font-size: 16px;
  font-weight: 600;
}
.block-tabs-cards .nav-tabs li button:hover {
  color: var(--primary-color);
}
.block-tabs-cards .nav-tabs li button .icon {
  display: block;
  font-size: 50px;
}
.block-tabs-cards .nav-tabs li button.active:before {
  opacity: 1;
  transform: scaleX(0.5);
}
.block-tabs-cards .nav-tabs li button.active .icon {
  color: var(--primary-color);
}
.block-tabs-cards .tab-body .title {
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
}
.block-tabs-cards .tab-body .text h3 {
  font-size: 17px;
  font-weight: 600;
}
.block-tabs-cards .tab-body .text p {
  color: #666666;
}
.block-tabs-cards .tab-body .btn-more {
  display: inline-block;
  background-color: var(--primary-color);
  color: black;
  padding: 0.5rem 1.5rem;
  border: 0;
}
.block-tabs-cards .tab-body .btn-more:hover {
  background-color: var(--dark-color);
}
@media (max-width: 992px) {
  .block-tabs-cards .section-title .text {
    width: 100%;
  }
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.block-counter {
  background-color: #1a191d;
}
.block-counter .block-counter-card {
  padding: 15px;
  text-align: center;
  justify-content: center;
}
.block-counter .block-counter-card .box {
  background-color: #39383B;
  padding: 21px 15px 24px;
  position: relative;
}
.block-counter .block-counter-card .box:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 3px solid #3e64ab;
  border-left: 3px solid #3e64ab;
}
.block-counter .block-counter-card .box:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 3px solid #3e64ab;
  border-bottom: 3px solid #3e64ab;
}
.block-counter .block-counter-card .box h4 {
  font-size: 3rem;
  color: white;
  font-weight: 600;
}
.block-counter .block-counter-card .box h3 {
  font-weight: 600;
  color: white;
}


.block-testimonials .swiper .swiper-slide .card .t-icon {
  background-color: #3e64ab;
}
.block-testimonials .swiper-button {
  opacity: 0;
  visibility: hidden;
}
.block-testimonials .section-title .text {
  width: 65%;
  color: #1a191d;
  margin-bottom: 13px;
}
.block-testimonials .section-title .heading-underline {
  display: inline-flex;
  align-items: center;
}
.block-testimonials .section-title .heading-underline span {
  height: 2px;
  background-color: #a3a3a5;
  width: 336px;
  position: relative;
}
.block-testimonials .section-title .heading-underline span:before {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  position: absolute;
  top: -1px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
}
.block-testimonials .name .title {
  font-weight: 600;
}
.block-testimonials .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  padding: 5px;
  border: 1px solid var(--primary-color);
}
.block-testimonials:hover .swiper-button {
  opacity: 1;
  visibility: visible;
}
.block-testimonials .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0;
  opacity: 1;
  background: 0;
  outline: none;
  -webkit-transition: all 0.3s linear;
  display: inline-block;
  border: 0;
  border-radius: 0;
}
.block-testimonials .swiper-pagination .swiper-pagination-bullet:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #323232;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear;
}
.block-testimonials .swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid black;
}
.block-testimonials .swiper-pagination .swiper-pagination-bullet-active:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #323232;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear;
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.testimonial-card-one {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow: hidden;
  position: relative;
  margin: 15px;
}
.testimonial-card-one .card-body {
  padding: 40px 30px;
}
.testimonial-card-one .card-body .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 5px;
  border: 1px solid #c8c8c8;
}
.testimonial-card-one .card-body .avatar img {
  width: 60px;
  height: auto;
  border-radius: 50%;
}
.testimonial-card-one .card-body .title {
  font-size: 15px;
}
.testimonial-card-one .card-body .sub-title {
  color: var(--primary-color);
  font-size: 15px;
}
.testimonial-card-one .card-body .content {
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: relative;
  padding: 43px 30px 30px;
}
.testimonial-card-one .card-body .content .text {
  font-size: 15px;
}
.testimonial-card-one .card-body .content .t-icon {
  position: absolute;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #cd0001;
  right: 22px;
  top: 0;
  transform: translateY(-50%);
}
.testimonial-card-one .card-body .content .action-buttons {
  right: 22px;
  bottom: 8px;
}
.testimonial-card-one .card-body .content:after {
  content: "";
  display: block;
  width: 22px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  bottom: -12px;
  left: 60px;
  z-index: 1;
  clip-path: polygon(0 3px, 11px 100%, 22px 3px);
}


.banner-card {
  color: white;
}
.banner-card .section-title .title {
  color: white;
}
.banner-card .section-title .sub-title {
  color: white;
  font-weight: 600;
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.block-promo-1 {
  margin-bottom: 50px;
}
.block-promo-1 .section-title .sub-title {
  font-size: 15px;
  color: white;
}
.block-promo-1 .section-title .title {
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.block-promo-1 .section-title .text {
  font-size: 15px;
  color: white;
}
.block-promo-1 .btn-action {
  background-color: white;
  color: black;
  padding: 10px 25px;
}
.block-promo-1 .btn-action:hover {
  background-color: var(--dark-color);
  color: white;
}
.block-promo-1.dark {
  color: #fff;
}
.block-promo-1.dark .text {
  color: var(--light-color);
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.block-cards-swiper .article-card-home {
  height: auto;
}
.block-cards-swiper .section-title .text {
  width: 50%;
  color: #666666;
}
.block-cards-swiper .two-next {
  right: 150px;
}
.block-cards-swiper .two-prev {
  left: 150px;
}
.block-cards-swiper .section-title .heading-underline {
  display: inline-flex;
  align-items: center;
}
.block-cards-swiper .section-title .heading-underline span {
  height: 2px;
  background-color: #a3a3a5;
  width: 336px;
  position: relative;
}
.block-cards-swiper .section-title .heading-underline span:before {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  position: absolute;
  top: -1px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .block-cards-swiper .section-title .text {
    width: 100%;
  }
  .block-cards-swiper .swiper-button {
    display: none;
  }
}
@media (max-width: 410px) {
  .block-cards-swiper .two-next {
    right: 0;
  }
  .block-cards-swiper .two-prev {
    left: 0;
  }
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.article-card-2 {
  position: relative;
}
.article-card-2 .card-image {
  overflow: hidden;
  transition: all 0.3s;
}
.article-card-2 .card-image img {
  transition: all 0.3s;
}
.article-card-2 .card-image:hover img {
  transform: scale(1.1);
}
.article-card-2 .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--title-color);
  letter-spacing: 0;
  text-decoration: none;
  height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-card-2 .title:hover {
  color: var(--primary-color);
}
.article-card-2 .meta {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.article-card-2 .meta li {
  margin: 0 1rem 0.75rem 0;
  color: white;
}
.article-card-2 .meta li .icon {
  position: relative;
  font-size: 1rem;
  padding-left: 1px;
  margin-right: 0.25rem;
  color: white;
}
.article-card-2 .meta a:not(:hover) {
  color: #6c757d;
}
.article-card-2 .card-body {
  padding: 20px 15px 25px 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, #1a191d 90%);
}
.article-card-2 .card-body .card-box {
  padding: 55px 25px 0;
  transition: all 300ms linear 0s;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1a191d;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
}
.article-card-2 .card-body .card-box .title {
  color: white;
  font-size: 16px !important;
}
.article-card-2 .card-body .card-box ul li {
  font-size: 16px !important;
}
.article-card-2 .card-body .card-middle {
  position: absolute;
  bottom: 42px;
  left: 25px;
  right: 25px;
  transition: all 0.1s;
}
.article-card-2 .card-body .card-middle .title {
  color: white;
}
.article-card-2 .card-body .card-end {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  transition: all 300ms linear 0s;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  line-height: 50px;
}
.article-card-2 .card-body .card-end .icon {
  color: white;
  font-size: 24px;
}
.article-card-2 .card-body:hover {
  background-color: #1a191d;
  font-size: 16px !important;
}
.article-card-2 .card-body:hover .card-box {
  opacity: 1;
  visibility: visible;
}
.article-card-2 .card-body:hover .card-box .title {
  color: white;
}
.article-card-2 .card-body:hover .card-middle {
  opacity: 0;
}
.article-card-2 .card-body:hover .card-end {
  opacity: 1;
}
.article-card-2 .desc {
  position: relative;
  padding-top: 20px;
  font-size: 15px;
  line-height: 1.65;
  height: 4.95em;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #c3c3c3;
}
.article-card-2 .desc:before {
  content: "";
  position: absolute;
  display: block;
  width: 52px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.article-card-2 .link {
  display: inline-block;
  border-bottom: 1px solid var(--primary-color);
  padding: 0 2px;
  font-style: italic;
  text-decoration: none;
}
.article-card-2 .link:hover {
  color: var(--primary-color);
}


.block-logos .swiper .swiper-slide {
  padding: 30px 15px;
  position: relative;
}
.block-logos .swiper .swiper-slide .image {
  border: 1px solid #dedede;
  padding: 30px 50px;
  position: relative;
  transition: all 300ms linear 0s;
  margin: 30px 0;
}
.block-logos .swiper .swiper-slide .image .img-fluid {
  display: inline-block;
  max-height: 55px;
  width: auto !important;
  opacity: 0.7;
  transition: all 300ms linear 0s;
}
.block-logos .swiper .swiper-slide .image:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  top: -1px;
  left: -1px;
  border-top: 3px solid #3e64ab;
  border-left: 3px solid #3e64ab;
  transition: all 350ms ease 0s;
  opacity: 0;
}
.block-logos .swiper .swiper-slide .image:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: transparent;
  position: absolute;
  bottom: -1px;
  right: -1px;
  border-bottom: 3px solid #3e64ab;
  border-right: 3px solid #3e64ab;
  transition: all 350ms ease 0s;
  opacity: 0;
}
.block-logos .swiper .swiper-slide:hover .image {
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.2);
  border-color: transparent;
}
.block-logos .swiper .swiper-slide:hover :before {
  opacity: 1;
}
.block-logos .swiper .swiper-slide:hover :after {
  opacity: 1;
}


.section-title {
  margin-bottom: 30px;
}
.section-title .sub-title {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--primary-color);
}
.section-title .title {
  font-size: 40px;
  line-height: 1.3;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0;
  color: var(--title-color);
}
.section-title .text {
  font-size: 16px;
  margin-bottom: 15px;
}
.section-title.text-center .text {
  margin: 0.5rem auto 0;
}
.dark .section-title .title {
  color: #fff;
}
.dark .section-title p {
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1500px) {
  .section-title .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 22px;
  }
}


.footer {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
  color: var(--title-color);
}
.footer > .container-fluid {
  padding: 0;
}
.footer .widget-title {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.6;
  color: white;
}
.footer .social-list-default {
  gap: 0;
  justify-content: start;
}
.footer .social-list-default li {
  border: 1px solid white;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.footer .social-list-default li:hover {
  background-color: var(--primary-color);
}
.footer .social-list-default li:hover a {
  color: white;
}
.footer .copyrights .row .col-12 {
  display: flex;
  justify-content: space-between;
}
.footer .container .row .col-lg-3 h4 {
  font-size: 20px;
  border: 0;
}
.footer .container .row .col-lg-3 .text {
  font-size: 16px;
}
.footer .container .row .col-lg-3 a {
  font-size: 16px;
}
.footer .container .row .two li {
  padding-top: 0;
}
.footer .container .row .two li a {
  border-bottom: 1px solid transparent;
}
.footer .container .row .two li:hover a {
  border-bottom: 1px solid var(--primary-color);
  transition: all 200ms linear 0s;
}
.footer .container .row .two li:hover:before {
  background-color: white;
}
.footer .container .row .two li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  margin-right: 3px;
  vertical-align: middle;
  transition: all 200ms linear 0s;
}
.footer .copyrights {
  padding: 0;
  background-color: #111013;
}
.footer .copyrights .row .col-12 {
  font-size: 16px;
  color: white;
}
.footer .copyright-links a {
  color: var(--light-color);
}
@media (max-width: 780px) {
  .footer .copyrights .row .col-12 {
    display: block;
    font-size: 12px;
    color: white;
  }
}
@media (max-width: 992px) {
  .footer {
    background-image: none;
  }
}
.dark.footer {
  color: var(--light-color);
}
.dark.footer .widget-title {
  border-bottom: 1px solid var(--bs-gray-500);
}
.dark.footer .copyrights {
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.dark.footer .copyright-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}
.dark.footer .copyright-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
  .dark.footer {
    background-image: none;
  }
}


.social-list-1 .social-icon {
  margin: 0 5px 5px 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 38px !important;
  color: #555;
  text-shadow: none;
  border: 1px solid #aaa;
  border-radius: 3px;
  overflow: hidden;
}
.social-list-1 .social-icon.si-small {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 30px !important;
}
.social-list-1 .social-icon.si-small:hover .icon:first-child {
  margin-top: -30px;
}
.social-list-1 .social-icon .icon {
  display: block;
  position: relative;
  font-size: 30px;
  padding: 5px;
}
.social-list-1 .social-icon .icon:last-child {
  color: #fff !important;
}
.social-list-1 .social-icon:hover {
  color: #555;
  border-color: transparent;
}
.social-list-1 .social-icon:hover .icon:first-child {
  margin-top: -38px;
}
.social-list-1 .d-flex > .social-icon {
  float: none;
  margin-bottom: 0;
}
.social-list-1 .si-borderless {
  border-color: transparent !important;
}
.social-list-1 .si-facebook:hover {
  background-color: #3b5998 !important;
}
.social-list-1 .si-youtube:hover {
  background-color: #dd4b39 !important;
}
.social-list-1 .si-linkedin:hover {
  background-color: #0e76a8 !important;
}
.social-list-1 .si-twitter:hover {
  background-color: #00acee !important;
}
.social-list-1 .si-pinterest:hover {
  background-color: #c8232c !important;
}
.dark .social-icon {
  color: #EEE;
  border-color: #AAA;
}
@media (max-width: 570px) {
  .social-list a .icon svg {
    font-size: 16px;
  }
}


.social-list-default {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.social-list-default a {
  display: inline-block;
}
.social-list-default a .icon {
  font-size: 16px;
}
.social-list-default a:hover {
  color: var(--primary-color);
}
.dark .social-list-default {
  color: #fff;
}


.footer-widget-links-icon .list-link {
  list-style: none;
}
.footer-widget-links-icon .list-link li {
  color: var(--font-title);
  gap: 0.75rem;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 1rem;
}
.footer-widget-links-icon .list-link li:hover a {
  color: var(--primary-color);
}
.footer-widget-links-icon .list-link li .icon {
  font-size: 20px;
  color: #ededed;
}
.dark .footer-widget-links .list-link li {
  color: #fff;
}
[dir=rtl] .footer-widget-links .list-link li .icon {
  transform: rotate(180deg);
}


.footer-widget-links .list-link {
  list-style: none;
}
.footer-widget-links .list-link li {
  color: var(--title-color);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 1rem;
}
.footer-widget-links .list-link li:hover a {
  color: var(--primary-color);
}
.footer-widget-links .list-link li .icon {
  font-size: 20px;
  color: #767577;
}
.dark .footer-widget-links .list-link li {
  color: #fff;
}
[dir=rtl] .footer-widget-links .list-link li .icon {
  transform: rotate(180deg);
}


.footer-widget-subscribe .form-subscribe {
  position: relative;
}
.footer-widget-subscribe .form-subscribe input {
  height: 48px;
  width: 100%;
  line-height: 43px;
  border-radius: 0;
  padding-left: 10px;
  margin-bottom: 20px;
  border: var(--border);
}
.footer-widget-subscribe .form-subscribe input, .footer-widget-subscribe .form-subscribe button {
  border-color: var(--text-muted-color);
}
.footer-widget-subscribe .form-subscribe button {
  padding: 11px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0 !important;
  position: absolute;
  margin-right: 0px;
  margin-top: 0px;
  top: 0;
  right: 0;
}
.footer-widget-subscribe .form-subscribe button .icon {
  font-size: 25px;
}
.dark .footer-widget-subscribe .form-subscribe input {
  background-color: white;
  color: #6a6671;
  font-size: 13px;
}


