
/* @import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&amp;family=Yantramanav:wght@300;400;500;700;900&amp;display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&family=Yantramanav:wght@300;400;500;700;900&display=swap");



:root {
  --main-color: #04215c;
  --heading-color: #080C24;
  --paragraph-color: #000;
  --body-font: "Public Sans", sans-serif;
  --heading-font: "Yantramanav", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font) !important;
  line-height: var(--line-height30) !important;
  font-size: var(--body-font-size) !important;
}


h1 {
  font-size: 84px;
  line-height: 90px;
}

h2 {
  font-size: 40px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 36px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 30px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
    font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color);
}


.read-more-text {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.read-more-text svg,
.read-more-text i {
  font-size: 14px;
}
.read-more-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  background: #FB493D;
  height: 1px;
  width: 0%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.read-more-text:hover {
  color: #FB493D;
}
.read-more-text:hover:after {
  width: 100%;
}

.add-to-cart-btn {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.add-to-cart-btn:hover, .add-to-cart-btn.active, .add-to-cart-btn:focus {
  color: #FB493D;
}
.add-to-cart-btn span {
  margin-right: 20px;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
.back-to-top {
  position: fixed;
  left: 35px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--main-color);
  background-position: center;
  background-size: cover;
  text-align: center;
  line-height: 40px;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  display: none;
  -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
          animation: backto-top-bounce 4s infinite ease-in-out;
}

@-webkit-keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}
@keyframes backto-top-bounce {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(8px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-5px);
  }
}
/*-----------------------------------------
    ## Owl carousel nav Css
-------------------------------------------*/
.owl-carousel .owl-nav button {
  height: 60px;
  width: 60px;
  line-height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  -webkit-box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
          box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.owl-carousel .owl-nav button img {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.owl-carousel .owl-nav button:hover {
  background: var(--main-color);
}
.owl-carousel .owl-nav button:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  -webkit-transform: translate(-100%, -240%);
          transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background-color: #030724;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color);
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/********* slider-control *********/
.slider-control-square .owl-nav button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0 8px;
  border-radius: 0;
  border: 1px solid var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--main-color);
  background: transparent;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}
.slider-control-square .owl-nav button:hover {
  background: var(--main-color);
  color: #fff;
}
.slider-control-square .owl-nav .owl-prev {
  margin-left: 0;
}
.slider-control-square .owl-nav .owl-next {
  margin-left: 0;
}


.bg-relative {
  position: relative;
}

.bg-cover {
  background-size: cover !important;
}

.bg-overlay {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  z-index: 0;
}
.bg-overlay:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(8, 12, 36, 0.9);
  z-index: -1;
}
.bg-overlay .container {
  position: relative;
  z-index: 2;
}
.bg-overlay .bg-z-index {
  position: relative;
  z-index: 2;
}

.bg-overlay-2 {
  position: relative;
  background-size: cover !important;
}
.bg-overlay-2:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(3, 0, 12, 0.5);
}
.bg-overlay-2 .container {
  position: relative;
  z-index: 2;
}
.bg-overlay-2 .bg-z-index {
  position: relative;
  z-index: 2;
}

.pd-top-45 {
  padding-top: 45px;
}

.pd-top-60 {
  padding-top: 60px;
}

.pd-top-75 {
  padding-top: 75px;
}

.pd-top-90 {
  padding-top: 90px;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-top-105 {
  padding-top: 105px;
}

.pd-top-110 {
  padding-top: 110px;
}

.pd-top-115 {
  padding-top: 75px;
}

.pd-top-120 {
  padding-top: 120px;
}

.pd-top-240 {
  padding-top: 240px;
}

.mg-top-120 {
  margin-top: 120px;
}

.pd-bottom-45 {
  padding-bottom: 45px;
}

.pd-bottom-70 {
  padding-bottom: 70px;
}

.pd-bottom-80 {
  padding-bottom: 80px;
}

.pd-bottom-90 {
  padding-bottom: 90px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}

.pd-bottom-110 {
  padding-bottom: 110px;
}

.pd-bottom-115 {
  padding-bottom: 115px;
}

.pd-bottom-120 {
  padding-bottom: 120px;
}

.pd-bottom-240 {
  padding-bottom: 240px;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-120 {
  margin-bottom: 120px;
}

.mrt-120 {
  margin-top: -120px;
}

.after-none:after {
  display: none !important;
}

/************ animate style ************/
.top_image_bounce {
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
          animation: top-image-bounce 3s infinite ease-in-out;
}

.left_image_bounce {
  -webkit-animation: left-image-bounce 3s infinite ease-in-out;
          animation: left-image-bounce 3s infinite ease-in-out;
}

.right_image_bounce {
  -webkit-animation: right-image-bounce 3s infinite ease-in-out;
          animation: right-image-bounce 3s infinite ease-in-out;
}

.spin_image {
  -webkit-animation: spin 3s infinite ease-in-out;
          animation: spin 3s infinite ease-in-out;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@-webkit-keyframes ripple-white3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}
@keyframes ripple-white3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-top {
  background: #0a2053;
  position: relative;
  /* margin-bottom: 68px; */
     padding: 10px 0;
}
.navbar-top:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 66.8%;
  background: url(../img/shape/topbar-bg.png);
  background-position: 0 0px;
  background-size: 165% 100%;
  height: 100%;
  z-index: -1;
}
.navbar-top .nav-phone-wrap {
  background: url(../img/shape/nav-contact-bg.png);
  background-position: -38px 0px;
  background-size: 112% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 90px;
  color: #fff;
  padding: 12.5px 135px 9.5px 115px;
  left: -70px;
  font-family: var(--heading-font);
  font-size: 14px;
}
.navbar-top .nav-phone-wrap i, .navbar-top .nav-phone-wrap svg {
  margin-right: 5px;
}
.navbar-top .logo {
  position: absolute;
  left: -70px;
  top: 0;
  width: 530px;
}
.navbar-top .logo .main-logo {
  display: inline-block;
}
.navbar-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* .navbar-top ul.topbar-left {
  margin-left: 369px;
} */
/* .navbar-top ul.topbar-left li + li {
  margin-left: 11px;
} */
.navbar-top ul.topbar-left li i, .navbar-top ul.topbar-left li svg {
  margin-right: 7px;
  color: #fff;
}
.navbar-top ul.topbar-right li + li {
  margin-left: 17px;
}
.navbar-top ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.navbar-top ul li a {
  color: #fff;
}
.navbar-top ul li a:hover {
  color: var(--main-color);
}

/* .navbar-area {
  z-index: 99;
  position: absolute;
  width: 100%;
} */
.navbar-area .nav-container {
  background-color: transparent;
  padding:0px 0px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.navbar-area .nav-container .btn-transparent {
  font-size: 13px;
  font-weight: 700;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: left;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-weight: 500;
  line-height: 50px;
  text-transform: capitalize;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 19px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #000;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 20px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 9;
  padding-right: 14px;
}
/* .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: -1px;
  top: 26px;
  height: 2px;
  width: 10px;
  background: var(--heading-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  height: 10px;
  width: 2px;
  background: var(--heading-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-top: 1px;
  z-index: -1;
} */
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
  /* opacity: 0; */
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:after {
  background: var(--main-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 210px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 1px solid #f5f5f5;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 15px 20px;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #050a30;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
  background: #0a2053;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a:before {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 20px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
  margin-right: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav > li {
  margin-right: 15px;
}

.navbar-area-1 {
  padding: 0;
  top: 60px;
}
.navbar-area-1 .nav-container {
  padding: 7px 0px 27px;
}
.navbar-area-1 .nav-container .navbar-collapse .navbar-nav {
  padding-left: 368px;
}
.navbar-area-1:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/shape/nav-bar.png);
  height: 100%;
  width: 74.5%;
  z-index: -1;
  background-size: 142% 80%;
  background-position: 4px 0px;
  background-repeat: no-repeat;
}
.navbar-area-1 .logo {
  display: none;
}
.navbar-area-1 .logo a {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.navbar-area-1 .logo a img {
  height: auto;
}

.navbar-area-2 {
  padding: 0;
  margin-top: 20px;
}
.navbar-area-2:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/shape/nav-bar-2.png);
  height: 100%;
  width: 70%;
  z-index: -1;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}
.navbar-area-2 .logo {
  position: absolute;
  left: -70px;
  top: -40px;
}
.navbar-area-2 .logo .logo-2 {
  display: none;
}
.navbar-area-2 .nav-container {
  padding: 29px 0px 20px;
}
.navbar-area-2.sticky-active .nav-container .logo {
  position: initial;
}
.navbar-area-2.sticky-active .nav-container .logo .logo-1 {
  display: none;
}
.navbar-area-2.sticky-active .nav-container .logo .logo-2 {
  display: block;
}

.sticky-active {
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 10px 20px 0 rgba(46, 56, 220, 0.05);
  box-shadow: 0 10px 20px 0 rgba(46, 56, 220, 0.05);
  background: #fff;
  margin: 0;
}
/* .sticky-active .nav-container {
  padding: 12px 12px;
} */
.sticky-active .nav-container .logo {
  display: block;
  width: 150px;
}
.sticky-active .nav-container .navbar-collapse .navbar-nav {
  padding-left: 0;
  text-align: end;
}
.sticky-active.navbar-area-2:after {
  display: none;
}

.navbar-nav {
  opacity: 0;
  margin-right: -30px;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu-open {
  opacity: 1;
  margin-right: 0;
  visibility: visible;
}

.bar1 {
  width: 32px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 10px;
  right: -5px;
}

.bar2 {
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 17px;
  right: -5px;
}

.bar3 {
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 24px;
  right: -5px;
}

.responsive-mobile-menu button:focus {
  outline: none;
  border: none;
}

/**************** nav-right-part *************/
.nav-right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-right-part .btn {
  color: #fff;
  padding: 0 27px;
      height: 60px;
    line-height: 58px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 18px;
    font-family: var(--heading-font);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 500;
        border-radius: 50px !important;
    z-index: 0;
     color: #fff !important ;
    background: #062155 !important;
       height: 50px !important;
    line-height: 50px ! IMPORTANT;
}
.nav-right-part a {
  margin-left: 30px;
  color: var(--heading-color);
  display: inline-block;
}
.nav-right-part .cart-btn {
  position: relative;
}
.nav-right-part .cart-btn span {
  position: absolute;
  right: -10px;
  top: -5px;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #FB493D;
  text-align: center;
  font-size: 13px;
  line-height: 22px;
}
.nav-right-part .menu-bar {
  background: #fff;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 42px;
}

.nav-right-part-mobile {
  display: none;
}

/**************** sidebar-menu *************/
.sidebar-menu {
  width: 0;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-menu .sidebar-inner {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 50px 40px;
}
.sidebar-menu .sidebar-inner .thumb {
  margin-bottom: 15px;
}
.sidebar-menu .sidebar-inner p {
  margin-bottom: 28px;
}
.sidebar-menu .sidebar-inner .sidebar-address {
  margin-bottom: 35px;
}
.sidebar-menu .sidebar-inner .sidebar-address ul {
  margin: 0;
  padding: 0;
}
.sidebar-menu .sidebar-inner .sidebar-address ul li {
  list-style: none;
  margin-bottom: 4px;
}
.sidebar-menu .sidebar-inner .sidebar-address ul li:last-child {
  margin-bottom: 0;
}
.sidebar-menu .sidebar-inner .sidebar-address ul li i {
  margin-right: 6px;
  width: 25px;
}
.sidebar-menu .sidebar-inner .sidebar-subscribe {
  position: relative;
  margin-bottom: 40px;
}
.sidebar-menu .sidebar-inner .sidebar-subscribe input {
  width: 100%;
  border: 1px solid #d6dadf;
  height: 42px;
  padding: 0 45px 0 12px;
}
.sidebar-menu .sidebar-inner .sidebar-subscribe button {
  position: absolute;
  right: 0;
  top: 0;
  height: 42px;
  width: 42px;
  background: #97b3d0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0;
  color: var(--heading-color);
  cursor: pointer;
}
.sidebar-menu .sidebar-inner .sidebar-subscribe button:hover {
  background: var(--main-color);
  color: #fff;
}
.sidebar-menu .sidebar-inner .social-media li a {
  background: #ced4da;
}
.sidebar-menu .sidebar-inner .social-media li a:hover {
  background: var(--main-color);
  color: #fff;
}

.sidebar-menu .sidebar-menu-close {
  background-color: #043381;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  z-index: 999;
}

.sidebar-menu.active {
  width: 360px;
  opacity: 1;
  visibility: visible;
}

.sidebar-menu.active .sidebar-inner {
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease-out 0.8s;
  transition: all 0.7s ease-out 0.8s;
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    padding: 15px;
  }

  .nav-right-part {
    margin-right: 50px;
  }

  .nav-right-part .btn .right {
    padding-left: 5px;
    font-size: 13px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav > li {
    margin-right: 0;
    padding-right: 0;
  }

  .navbar-area .nav-container {
    position: relative;
    z-index: 0;        padding: 0;
  }
  .navbar-area .nav-container .navbar-toggler {
    padding: 0px;
  }
  .navbar-area .nav-container .navbar-collapse {
    margin-top: 13px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 26px;
    right: 3px !important;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    height: auto;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    background-color: transparent;
    border-radius: 10px;
    padding: 0px;
    border-bottom: none;
    display: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f107";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
}
.sopen {
  display: block;
}

.toggle-btn {
  left: auto;
  right: -10px;
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  border: 0;
  background: transparent;
}
.toggle-btn .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #fff;
  left: 7px;
}
.toggle-btn .icon-left:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-left:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-left:hover {
  cursor: pointer;
}
.toggle-btn .icon-right {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #fff;
  left: 18px;
}
.toggle-btn .icon-right:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-right:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-right:hover {
  cursor: pointer;
}
.toggle-btn.open .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-left:before {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
          transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}
.toggle-btn.open .icon-left:after {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
          transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}
.toggle-btn.open .icon-right {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-right:before {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
          transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}
.toggle-btn.open .icon-right:after {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
          transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}
.toggle-btn:hover {
  cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 16px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 5px;
  }

  .navbar-nav li {
    padding-right: 12px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }

  .navbar-area .nav-container .navbar-collapse.sopen {
    display: block;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .margin-xlt-80 {
    margin-top: 0px;
  }

  .contact-widget .contact_info_list li.single-info-item .details {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-area .logo {
    padding-top: 0px !important;
  }

  .widget ul {
    text-align: left;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 0px;
    width: 100%;padding: 0 28px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    right: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    margin-bottom: 20px;
  }

  .navbar-area {
    padding-bottom: 0px;
  }

  .bar1, .bar2, .bar3 {
    background: #fff;
  }

  .party-box-wrapper {
    padding: 50px 0px;
  }

  .party-box-wrapper .party-box-content h4 {
    font-size: 30px;
    line-height: 45px;
  }

  .footer-area .copyright-area-inner {
    padding: 20px;
  }

  .navbar-expand-lg .navbar-collapse {
    margin-top: 0px;
  }

  .contact-widget .contact_info_list li.single-info-item .details {
    padding-left: 25px;
  }

  .footer-area .footer-top .widget.widget_nav_menu ul li a {
    font-size: 14px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding: 0 0 0 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    padding: 12px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child a {
    padding-bottom: 3px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover i {
    opacity: 0;
    margin-right: -18px;
  }

  .nav-right-part-mobile {
    display: block;
  }

  .nav-right-part-desktop {
    display: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    background: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: #333333;
  }
}
/* Tablet Layout wide: 767px. */
@media only screen and (max-width: 767px) {
  .logo-wrapper.mobile-logo {
    display: block;
    width: 100%;
  }

  .responsive-mobile-menu {
    display: block;
    width: 100%;
    position: relative;
  }

  .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    left: calc(100% - 130px);
    top: 10px;
  }

  .table-responsive {
    display: block !important;
  }

  .btn-custom-default, .btn-custom-white {
    font-size: 14PX;
    line-height: 33px;
    padding: 6px 20px;
  }

  .navbar-area .logo {
    padding-top: 0px !important;
  }
}
/* medium tablet layout 599px */
@media only screen and (max-width: 575px) {
  .navbar-area .logo {
    padding-top: 10px;
  }

  
}
@media only screen and (max-width: 375px) {
  .btn-custom-default, .btn-custom-white {
    padding: 5px 18px;
  }

 
}
@media only screen and (max-width: 320px) {
 

  .responsive-mobile-menu .navbar-toggler {
    left: calc(100% - 95px);
  }
}


/*----------------------------------------------
    ## Banner
----------------------------------------------*/
.banner-inner {
  position: relative;
  z-index: 2;
}
.banner-inner .title {
  font-weight: 900;
}
.banner-inner .content {
  margin-top: 11px;
  margin-bottom: 0;
}
.banner-inner .btn-wrap {
  margin-top: 35px;
}
.banner-inner.style-white .title {
 
  color: #fff;
    font-size: 60px;
    line-height: 70px;
}
.banner-inner.style-white .content {
  color: #fff;font-family: var(--body-font);
    line-height: var(--line-height30);
    font-size: var(--body-font-size);
}
.banner-area-1 .item{
    min-height: 550px; /* increase height */
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center;
}
@media (max-width: 767px){
    .banner-area-1 .item{
        min-height: 450px;
    }
}
.banner-area-1 .item {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  /* height: 70vh; */
}
.banner-area-1 .item:after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(14.27%, #080C24), color-stop(29.06%, rgba(8, 12, 36, 0.96789)), color-stop(41.25%, rgba(8, 12, 36, 0.905506)), color-stop(51.56%, rgba(8, 12, 36, 0.832149)), color-stop(57.4%, rgba(8, 12, 36, 0.711263)), color-stop(82.4%, rgba(8, 12, 36, 0)));
  background:linear-gradient(90deg, #080c2461 14.27%, rgb(8 12 36 / 53%) 29.06%, rgb(8 12 36 / 49%) 41.25%, rgb(8 12 36 / 32%) 51.56%, rgb(8 12 36 / 37%) 57.4%, rgba(8, 12, 36, 0) 82.4%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-area-1 {
  overflow: hidden;
}
.banner-area-1 .banner-inner {
  padding: 100px 0 ;
  position: relative;
}
.banner-area-1 .banner-inner:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -40%);
          transform: translate(-100%, -40%);
  background: rgba(255, 255, 255, 0.07);
  height: 432px;
  width: 432px;
  border-radius: 50%;
  z-index: 1;
}
.banner-area-1 .banner-inner:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -40%);
          transform: translate(-100%, -40%);
  background: rgba(255, 255, 255, 0.07);
  height: 432px;
  width: 432px;
  border-radius: 50%;
  margin-top: 30px;
  z-index: 2;
}
.banner-area-1 .banner-inner .btn-wrap .btn-base {
  margin-right: 28px;
}
.banner-area-1 .banner-slider .owl-nav {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 9;
}
.banner-area-1 .banner-slider .owl-nav button {
  display: block;
}
.banner-area-1 .banner-slider .owl-nav button.owl-prev {
  margin-bottom: 10px;
}


.banner-area-1 .btn-base {
      color: #fff !important;
    background: var(--main-color) !important;
    line-height: 60px;    border-radius: 50px !important;
}

.banner-area-1 .btn {
    height: 60px;
    line-height: 58px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 18px;
    font-family: var(--heading-font);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 500;
    border-radius: 0px;
    z-index: 0;    border-radius: 50px !important;    height:50px !important;
    line-height: 50px ! IMPORTANT;
}
.banner-area-1 .btn-white {
    color: var(--heading-color) !important;
    background: #fff !important;
    line-height: 60px;
}
.banner-area-1 .banner-slider .owl-nav button{
    height: 60px;
    width: 60px;
    line-height: 58px;
    border-radius: 50%;
    background: #fff !important;
    border: 0;
    -webkit-box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
/* .feature-area {
  background: #FFFFFF; 
   -webkit-box-shadow: 0px 4px 50px rgba(0, 35, 90, 0.1);
          box-shadow: 0px 4px 50px rgba(0, 35, 90, 0.1); 
  border-radius: 20px;
  padding: 40px;
  position: relative;
  top: -60px;
  z-index: 2; 
} */

.feature-wrap {
         padding: 50px 20px;
    border-radius: 50px;
    background: #c1c1c124;
}
.feature-wrap.bg-pink {
  background: rgba(250, 67, 24, 0.1);
}
.feature-wrap.bg-ash {
  background: rgba(8, 12, 36, 0.1);
}
.feature-wrap.bg-sky {
  background: rgba(0, 133, 239, 0.1);
}
.feature-wrap .icon {
background: #ffffff;
    height: 80px;
    width: 80px;
    line-height: 80px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 10px;
    position: relative;
    margin: 5px 0 22px 5px;
}
.feature-wrap .icon:after {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  background: var(--heading-color);
  height: 60px;
  border-radius: 50%;
  width: 60px;
  z-index: -1;
}
.feature-wrap .icon img {
  margin: auto;
  width: auto !important;
}
.feature-wrap p {
  margin-top: 12px;
  margin-bottom: 0;
  color: #fff;
}

.feature-slider .owl-nav {
  position: absolute;
  right: 0;
  top: -128px;
}
.feature-slider .owl-nav .owl-prev {
  margin-right: 10px;
}
.section-title {
  margin-bottom: 10px;
  position: relative;
}
.section-title .subtitle {
     font-weight: 600;
    font-size: 14px;
    color: var(--main-color);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(15.22%, rgba(250, 67, 24, 0)), color-stop(33.76%, rgba(250, 67, 24, 0.0833333)), color-stop(58.49%, rgba(250, 67, 24, 0.23)), color-stop(79.25%, rgba(250, 67, 24, 0.39383)), to(#FA4318));
    /* background: linear-gradient(180deg, rgba(250, 67, 24, 0) 15.22%, rgba(250, 67, 24, 0.0833333) 33.76%, rgba(250, 67, 24, 0.23) 58.49%, rgba(250, 67, 24, 0.39383) 79.25%, #FA4318 100%); */
    background:linear-gradient(180deg, rgb(10 32 83) 15.22%, rgb(10 32 83) 33.76%, rgb(10 32 83) 58.49%, rgb(10 32 83) 79.25%, #040a16 100%) ;
    /* height: 34px; */
    line-height: 34px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    z-index: 0;
    padding: 0px 19px;
    margin-bottom: 19px;
}
.section-title .subtitle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 32px;
  width: -webkit-fill-available;
  background: #fff;
  border-radius: 0 0 20px 20px;
  z-index: -1;
  margin: 0 2px 2px;
}
.section-title .subtitle.style-2 {
  background: url(../img/wcu/bg-subtitle.png);
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
.section-title .subtitle.style-2:after {
  display: none;
}
.section-title .title {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 40px;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.section-title .content {
  margin-top: 17px;
  margin-bottom: 0;
}
.section-title .content.left-line {
  border-left: 1px solid #0a2053;
  padding-left: 50px;
}
.section-title .small-title {
  margin-top: 18px;
  line-height: 36px;
}
.section-title .btn {
  margin-top: 30px;
}
.about-thumb-wrap {
  position: relative;
}
.about-thumb-wrap .img-1 {
  position: absolute;
  left: -39px;
  bottom: -53px;
  z-index: -1;
}
.about-thumb-wrap .img-3 {
  margin-left: -215px;
  margin-bottom: -63px;
  vertical-align: bottom;
}
.about-thumb-wrap .exprience-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  right: -20px;
  top: 17px;
}
.about-thumb-wrap .exprience-wrap img {
  margin-bottom: -15px;
}
.about-thumb-wrap .exprience-wrap .details {
  background: url(../img/shape-2.png);
  background-size: cover;
  padding: 45px 30px;
  background-position: center;
}
.about-thumb-wrap .exprience-wrap .details h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 0;
  line-height: 83px;
}
.about-thumb-wrap .exprience-wrap .details p {
  font-weight: 600;
  color: var(--heading-color);
  line-height: 19px;
}

.about-inner-wrap {
  margin-left: 28px;
}
.about-inner-wrap .section-title .content {
    margin-top: 10px;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background: #ececec;
}
.about-inner-wrap .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #D9D9D9;
  margin-top: 25px;
  padding-top: 30px;
}
.about-inner-wrap .btn-wrap .btn {
    margin-top: 0;
    color: #fff;
    background: var(--main-color);
       height: 50px !important;
    line-height: 50px !important;
    line-height: 58px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 18px;
    font-family: var(--heading-font);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 500;
    border-radius: 0px;
    z-index: 0;    border-radius: 50px !important;
}
.about-inner-wrap .btn-wrap .author-wrap {
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-inner-wrap .btn-wrap .author-wrap img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.about-inner-wrap .btn-wrap .author-wrap p {
  margin-bottom: 0;
  border-top: 1px solid #E4E4E4;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #4D5765;
}
.about-inner-wrap .btn-wrap .video-wrap {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--heading-color);
  margin-left: 100px;
}
.list-inner-wrap {
  margin: 0;
  padding: 0;
}
.list-inner-wrap li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: start;
  color: var(--heading-color);
  font-weight: 500;
    font-size: 17px;
}
.list-inner-wrap li + li {
  margin-top: 14px;
}
.list-inner-wrap li img, .list-inner-wrap li i, .list-inner-wrap li svg {
  margin-right: 8px;
  width: 20px;
      margin-top: 4px;
}
.service-area .section-title .subtitle.style-2 {
    background-size: 95% 100%;
}
.section-title .subtitle.style-2 {
    background: url(../img/bg-subtitle.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}.service-area .section-title .subtitle.style-2 {
  background-size: 95% 100%;
}
.service-area.style-2 .single-service-wrap {
  margin-top: 0;
  -webkit-transform: none;
          transform: none;
  margin-bottom: 40px;
}
.service-area.style-2 .single-service-wrap .details {
  padding: 40px 29px 30px;
}

.single-service-wrap {
  -webkit-transform: translate(0px, 50%);
          transform: translate(0px, 50%);
  margin-top: -210px;
  z-index: 1;
  position: relative;
  
}
.single-service-wrap:hover .thumb:before, .single-service-wrap:hover .thumb:after {
  border-color: transparent transparent transparent var(--main-color);
}
.single-service-wrap:hover .details {
  background: var(--main-color);
}
.single-service-wrap:hover .details p,
.single-service-wrap:hover .details h5 {
  color: #fff;
}
.single-service-wrap:hover .details p {
  border-bottom-color: #fff;
}
.single-service-wrap:hover .details .btn-wrap .read-more-text {
  color: #fff;
}
.single-service-wrap:hover .details .btn-wrap .read-more-text span {
  background: #fff;
  color: var(--main-color);
}
.single-service-wrap .thumb {
  margin: 0 30px;
  position: relative;
  z-index: 0;
}
.single-service-wrap .thumb:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 40px 0 0 39px;
  border-color: transparent transparent transparent #fff;
  bottom: 68px;
  left: -30px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-service-wrap .thumb:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 40px 0 0 39px;
  border-color: transparent transparent transparent #fff;
  bottom: 68px;
  right: -30px;
  -webkit-transform: translate(0px, -175%);
  transform: rotate(270deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
}
.single-service-wrap .thumb img {
  width: 100%;
}
.single-service-wrap .thumb .icon {
  height: 70px;
  width: 70px;
  background: var(--main-color);
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  position: relative;
  right: 20px;
  margin-left: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-bottom: -70px;
}
.single-service-wrap .thumb .icon img {
  width: auto;
}
.single-service-wrap .details {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 32px 29px 30px;
}
.single-service-wrap .details h5 {
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  line-height: 31px;
}
.single-service-wrap .details p {
  line-height: 26px;
  border-bottom: 1px solid rgba(8, 12, 36, 0.15);
  padding-bottom: 17px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
}
.single-service-wrap .details .btn-wrap .read-more-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--heading-color);
}
.single-service-wrap .details .btn-wrap .read-more-text:after {
  display: none;
}
.single-service-wrap .details .btn-wrap .read-more-text span {
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
  background: var(--main-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}
.single-service-wrap .thumb {
  margin: 0 30px;
  position: relative;
  z-index: 0;
}
.single-service-wrap .thumb:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 40px 0 0 39px;
  border-color: transparent transparent transparent #fff;
  bottom: 0;
  left: -30px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-service-wrap .thumb:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 40px 0 0 39px;
  border-color: transparent transparent transparent #fff;
  bottom: 0;
  right: -30px;
  -webkit-transform: translate(0px, -175%);
  transform: rotate(270deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
}
.single-service-wrap .thumb img {
  width: 100%;
}
.single-service-wrap .thumb .icon {
  height: 70px;
  width: 70px;
  background: var(--main-color);
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  position: relative;
  right: 20px;
  margin-left: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-bottom: -70px;
}
.single-service-wrap .thumb .icon img {
  width: auto;
}
.single-service-wrap .details {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
          box-shadow: 0px 6px 30px rgba(0, 35, 90, 0.08);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 32px 29px 30px;
}
.single-service-wrap .details h5 {
      margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    line-height: 31px;
    font-size: 25px;
    font-weight: 700;
    color: #001c51;
}
.single-service-wrap .details p {
  line-height: 26px;
  border-bottom: 1px solid rgba(8, 12, 36, 0.15);
  padding-bottom: 17px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
  display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 120px;
}
.single-service-wrap .details .btn-wrap .read-more-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--heading-color);
}
.single-service-wrap .details .btn-wrap .read-more-text:after {
  display: none;
}
.single-service-wrap .details .btn-wrap .read-more-text span {
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
  background: var(--main-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}

.service-details-wrap .thumb .icon {
  height: 70px;
  width: 70px;
  background: var(--main-color);
  border-radius: 50%;
  text-align: center;
  line-height: 68px;
  position: relative;
  right: 50px;
  margin-left: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-bottom: -70px;
}
.service-details-wrap .thumb .icon img {
  width: auto;
}
.service-details-wrap h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  margin-top: 28px;
  margin-bottom: 9px;
}
.service-details-wrap p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 18px;
}
.service-details-wrap p.last-para {
  margin-bottom: -8px;
}
.service-details-wrap .subtitle {
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 16px;
  margin-bottom: 21px;
  line-height: 39px;
}
.service-details-wrap .list-inner-wrap li {
  position: relative;
  padding-left: 29px;
  line-height: 26px;
}
.service-details-wrap .list-inner-wrap li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: #fff;
  border: 4px solid var(--main-color);
  height: 14px;
  width: 14px;
}
.service-details-wrap .video-thumb-wrap .video-play-btn {
  -webkit-animation: none;
          animation: none;
}
.service-details-wrap .video-thumb-wrap .video-play-btn:after {
  height: 100px;
  width: 100px;
  background: var(--main-color);
  opacity: 0.3;
  border: 0;
  left: -20px;
  top: -20px;
}

.service-area{
      position: relative;
    /* overflow-y: hidden; */
}
.wcu-area {
  padding: 330px 0 127px;
}
.wcu-area .img-1 {
  position: absolute;
  top: 69px;
  left: 37px;
}
.wcu-area .img-2 {
  position: absolute;
  bottom: -28px;
  right: 0;
}

.wcu-area-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 168px;
}

.single-wcu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 22px;
}
.single-wcu-wrap .icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 5px 0 0 5px;
  z-index: 0;
  margin-right: 15px;
}
.single-wcu-wrap img{
      background: #fff;
    border-radius: 50%;
    padding: -2px;
    width: 80px;
    padding: 10px;
}
/* .single-wcu-wrap .icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  height: 50px;
  width: 50px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  z-index: -1;
} */
.single-wcu-wrap .details h6 {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}
.single-wcu-wrap .details p {
  color: #D6D6D6;
  line-height: 26px;
  margin-bottom: 0;
}
.single-wcu-wrap.style-2 .icon {
  height: 50px;
  width: 50px;
  background: var(--main-color);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  z-index: 1;
  padding: 0;
  margin-top: 10px;
}
.single-wcu-wrap.style-2 .icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--main-color);
  z-index: -1;
  border: 0;
  border-radius: 50%;
}
.single-wcu-wrap.style-2 .icon:after {
  background: #fff;
  z-index: -2;
  top: -5px;
  left: -5px;
  border: 0;
}
.section-title.style-white .title {
    color: #fff;
}.section-title.style-white .content {
    color: #D6D6D6;
}.video-thumb-wrap {
  position: relative;
}
.video-thumb-wrap img {
  width: 100%;
      border-radius: 30px;
}
.video-thumb-wrap .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-play-btn {
  border-radius: 50%;
  background: var(--main-color);
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 64px;
  position: relative;
  text-align: center;
  -webkit-animation: ripple-white3 2.5s linear infinite;
          animation: ripple-white3 2.5s linear infinite;
  z-index: 3;
}
.video-play-btn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--main-color);
  top: -10px;
  left: -10px;
}
.video-play-btn svg,
.video-play-btn i {
  color: #fff;
  margin-left: 4px;
  font-size: 20px;
}

.fact-area .fact-counter-area {
  -webkit-transform: translate(0px, -120px);
          transform: translate(0px, -120px);
  margin-bottom: -120px;
}

/* .fact-counter-area {
  border-top: 5px solid #fff;
 padding: 39px 45px 11px;
    -webkit-transform: translate(0px, -114px);
    transform: translate(0px, -114px);
    margin-bottom: -114px;
    background: #fff;
    border-radius: 20px;
} */
.fact-counter-area {
      /* border-top: 5px solid #fff; */
    padding: 61px 0;
    /* -webkit-transform: translate(0px, -114px); */
    /* transform: translate(0px, -114px); */
    /* margin-bottom: -114px; */
    /* background: #fff; */
    border-radius: 20px;
}
.single-fact-wrap {
  position: relative;
  margin-bottom: 30px;
  padding-left: 15px;
}
.single-fact-wrap:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    height: 140px;
    width: 1px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #fff;
}
.single-fact-wrap h2 {
  color: #000;
  font-weight: 700;
  font-size: 44px;
  line-height: 57px;
  margin-bottom: 8px;
}
.single-fact-wrap h5 {
  line-height: 31px;
  color: #000;
  margin-bottom: 10px;
}
.single-fact-wrap p {
  line-height: 26px;
  color: #000;
  margin-bottom: 0;
}
.call-to-contact-area {
  /* margin-top: -120px; */
  position: relative;
  padding: 71px;
  z-index: 0;
}
.call-to-contact-area img {
  position: absolute;
  width: 73.5%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.call-to-contact-area .section-title .subtitle {
  background-size: 98% 100%;
}

.cta-inner-wrap {
  /* background: url(../img/contact-bg.png); */
      padding: 38px 50px;
    background: rgba(255, 255, 255, 0.25); /* transparent white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.single-cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 41px;
  margin-left: 14px;
}
.single-cta-wrap .icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background: var(--main-color);
  line-height: 52px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
  z-index: 0;
}
.single-cta-wrap .icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0a2053;
    opacity: 0.3;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.single-cta-wrap .details {
  margin-left: 33px;
}
.single-cta-wrap .details h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  margin-bottom: 5px;
}
.single-cta-wrap .details h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  color: #000;
  margin-bottom: 0;
}

.single-cta-wrap .details h3 a{ 
  color: #000; 
}
svg:not(:root).svg-inline--fa {
    overflow: visible;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}
.btn-base {
    color: rgb(255, 255, 255) !important;
    line-height: 60px !important;
    background: var(--main-color) !important;
}

.btn {
    height: 60px !important;
    line-height: 58px !important;
    position: relative !important;
    font-size: 18px !important;
    font-family: var(--heading-font) !important;
    font-weight: 500 !important;
    z-index: 0 !important;
    padding: 0px 30px !important;
    overflow: hidden ;
    border-width: 0px !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
    transition: 0.5s;
    border-radius: 0px !important;
        border-radius: 50px !important;
}
.portfolio-area {
  background-position: center !important;
  background-size: cover !important;
}
.portfolio-area .section-title {
  margin-bottom: 50px;
}

/* OWL CONTAINER */
.portfolio-slider-container {
    margin: -305px -93px 153px;
    transform: translate(0px, 134px);
    padding-top: 172px;
    position: relative;
}

/* NAV BUTTON */
.portfolio-slider .owl-nav button {
    height: 55px !important;
    width: 55px !important;
    line-height: 54px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0px 8px 20px rgba(7, 36, 95, 0.15);
    transition: all 0.3s ease-in;
    text-align: center;
    position: absolute;
    top: 22px;
}

.portfolio-slider .owl-nav button img {
    transition: all 0.3s ease-in;
}

.portfolio-slider .owl-nav button:hover {
    background: var(--main-color) !important;
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
}

.portfolio-slider .owl-nav button:hover img {
    filter: brightness(99);
}

/* PREV BUTTON */
.portfolio-slider .owl-nav .owl-prev {
    right: 158px;
}

/* NEXT BUTTON */
.portfolio-slider .owl-nav .owl-next {
    right: 93px;
}

/* SLIDES */
.portfolio-slider .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(1);
}

/* ACTIVE CENTER SLIDE */
.portfolio-slider .owl-item.center .single-portfolio-wrap {
    transform: scale(1.7);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

/* SHOW DETAILS ONLY CENTER */
.portfolio-slider .portfolio-details {
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-slider .owl-item.center .portfolio-details {
    opacity: 1;
}

/* SIDE SLIDES */
.portfolio-slider .owl-item:not(.center) {
    z-index: -1;
}
.single-portfolio-wrap {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin: 84px 0;
  position: relative;
}
.single-portfolio-wrap .portfolio-details {
 position: absolute;
    left: 0;
    bottom: 0;
    width: -webkit-fill-available;
    background: #ffffffa6;
    border-radius: 5px;
    margin: 35px;
    padding: 14px 23px 12px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.single-portfolio-wrap .portfolio-details .details p {
  font-weight: 500;
  font-size: 10px;
  line-height: initial;
  color: var(--main-color);
  margin-bottom: 9px;
}
.single-portfolio-wrap .portfolio-details .details h4 {
  font-size: 17px;
  margin-bottom: 0;
}
.single-portfolio-wrap .portfolio-details .icon {
  height: 28px;
  width: 28px;
  background: var(--main-color);
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  margin-left: auto;
  font-size: 12px;
}
/* PORTFOLIO AREA */
.portfolio-area{
    position: relative;
    /* overflow: hidden; */
}

/* NAVIGATION */
.portfolio-nav{
    position: relative;
    height: 60px;
}

/* BUTTON */
.portfolio-nav .button{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    box-shadow: 0px 8px 20px rgba(7,36,95,0.15);
    transition: all 0.3s ease-in;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

/* PREV */
.portfolio-nav .portfolio-prev{
    right: 70px;
}

/* NEXT */
.portfolio-nav .portfolio-next{
    right: 0;
}

/* HOVER */
.portfolio-nav .button:hover{
    background: var(--main-color);
}

.portfolio-nav .button img{
    /* transition: 0.3s; */
        width: 20px;
         filter: brightness(0) saturate(100%) invert(10%) sepia(48%) saturate(2447%) hue-rotate(205deg) brightness(93%) contrast(103%);
}

.portfolio-nav .button:hover img{
    filter: brightness(0) saturate(100%) invert(100%);
}
.partner-area-2 {
  background-size: 100% 100% !important;
  background-position: 0px 0px !important;
  background-repeat: no-repeat !important;
  position: relative;
  top: -109px;
  z-index: 1;
  margin-bottom: -109px;
}

.partner-slider .thumb {
  cursor: pointer;
}
.partner-slider .thumb:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.partner-slider .thumb img {
  /* width: auto !important; */
  margin: auto;
  /* -webkit-filter: grayscale(1);
          filter: grayscale(1); */
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border: 1px solid #ececec;
    padding: 5px;box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        height: 100px;
    object-fit: contain;
}
.partner-slider .owl-nav {
  display: none;
}
.footer-area {
  position: relative;
  background-color: #080C24;
  padding-top: 50px;
}
.footer-area.style-2 .footer-top {
  padding: 0;
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-area .footer-top {
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 37px 0 0px;
  margin-bottom: 70px;
}
.footer-area .footer-top .single-footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 33px;
}
.footer-area .footer-top .single-footer-top:after {
  content: "";
  position: absolute;
  right: 0;
  top: -38px;
  height: 160px;
  width: 61px;
  background: url(../img/rectangle.png);
}
.footer-area .footer-top .single-footer-top .icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 80px;
  width: 80px;
  border-radius: 5px;
  background: var(--main-color);
  line-height: 80px;
  text-align: center;
  position: relative;
  margin: 6px 20px 0 6px;
}
.footer-area .footer-top .single-footer-top .icon:after {
  content: "";
  position: absolute;
  background: #FA4318;
  opacity: 0.3;
  height: 80px;
  width: 80px;
  border-radius: 5px;
  left: -6px;
  top: -6px;
}
.footer-area .footer-top .single-footer-top .details h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-area .footer-top .single-footer-top .details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #D6D6D6;
  margin-bottom: 0;
}
.footer-area .widget {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.footer-area .widget-title {
  padding-bottom: 13px;
  margin-bottom: 26px;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #F8F8F8;
}
.footer-area .widget-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  bottom: 0px;
  left: 0;
  background: linear-gradient(90.09deg, #9E9E9E -7.63%, rgba(250, 67, 24, 0) 99.84%);
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  z-index: -1;
}
.footer-area .widget_about .thumb {
  margin-bottom: 13px;
}
.footer-area .widget_about .details p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-area .widget_nav_menu ul {
  margin: 0;
  padding: 0;
}
.footer-area .widget_nav_menu ul li {
  list-style: none;
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  padding-left: 20px;
}
.footer-area .widget_nav_menu ul li a{
  color: #fff;
}
.footer-area .widget_nav_menu ul li i, .footer-area .widget_nav_menu ul li svg {
  margin-right: 3px;position: absolute;
    left: 0;
    top: 7px;
}
.footer-area .widget_nav_menu ul li + li {
  margin-top: 10px;
}
.footer-area .widget_nav_menu ul li:hover:after {
  background: var(--main-color);
}

.footer-bottom-area {
  background: #161922;
    padding: 12px 0;
}
.footer-bottom-area p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}
.footer-bottom-area p a {
 color: #fff;
}
.footer-bottom-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-bottom-area ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  display: inline-block;
}
.footer-bottom-area ul li a{
   color: #fff;
}
.footer-bottom-area ul li + li {
  border-left: 1px solid #fff;
  padding-left: 9px;
  margin-left: 6px;
}

.footer-top-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-top-subscribe h3 {
  color: #fff;
  margin-bottom: 0;
  padding: 50px 0 47px;
}
.footer-top-subscribe .media-left {
  margin-left: 78px;
  padding-left: 80px;
  padding-right: 58px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top-subscribe .thumb {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.footer-top-subscribe .single-subscribe-inner {
  min-width: 360px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}.social-media {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.social-media li {
  display: inline-block;
  margin: 0 4px;
}
.social-media li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: #fff;
  color: #3F517E;
}
.social-media li a:hover {
  color: #fff;
  background: var(--main-color);
}
.social-media li:first-child {
  margin-left: 0;
}
.social-media li:last-child {
  margin-right: 0;
}
.social-media.style-border li a {
  background: transparent;
  border: 1px solid #FFFFFF;
  color: #fff;
}
.social-media.style-border li a i, .social-media.style-border li a svg {
  margin-right: 0;
}
.social-media.style-border li a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.widget_contact .single-contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
}
.widget_contact .single-contact-inner .icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 30px;
  width: 30px;
  background: var(--main-color);
  border-radius: 50%;
  text-align: center;
  color: #fff;
  line-height: 32px;
  font-size: 14px;
  margin-right: 10px;
  margin-top: 0px;
}
.widget_contact .single-contact-inner p {
  color: #fff;
  line-height: 28px;
  margin-bottom: 0;    font-size: 15px;
}
.widget_contact .single-contact-inner p a{
  color: #fff; 
}
.faq-accordion .single-accordion-inner {
  border: 0;
  margin-bottom: 30px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(8, 12, 36, 0.08);
          box-shadow: 0px 4px 20px rgba(8, 12, 36, 0.08);
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
  background: #FFFFFF;
  border: 0;
  padding: 10px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) {
  background: var(--main-color);
  color: #fff;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed) span {
  color: #fff;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):after {
  background: #fff;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:not(.collapsed):before {
  display: none;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button span {
  color: var(--main-color);
  margin-right: 7px;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:after {
  background: var(--main-color);
  height: 2px;
  width: 12px;
  background: var(--main-color);
  -webkit-transform: none;
          transform: none;
}
.faq-accordion .single-accordion-inner .accordion-header .accordion-button:before {
  content: "";
  background: var(--main-color);
  height: 12px;
  width: 2px;
  position: absolute;
  right: 35px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.faq-accordion .single-accordion-inner .accordion-body {
  padding: 24px 30px;
}
/* Sticky Header */
header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* Sticky class on scroll */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    animation: slideDown 0.5s ease;
}

/* Optional hide topbar on sticky */
header.sticky .navbar-top {
    display: none;
}

/* Navbar spacing */
header.sticky .navbar {
    padding: 10px 0;
}

/* Smooth slide */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* .fact-counter-area{
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f7ff 0%, #eef9ff 100%);
} */

.single-fact-wrap{
    position: relative;
    padding: 45px 30px;
    border-radius: 25px;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.single-fact-wrap::before{
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
     background: linear-gradient(135deg, #0a2053, #0a2053);
    opacity: 0.08;
    transition: 0.4s;
}

.single-fact-wrap:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.single-fact-wrap:hover::before{
    transform: scale(1.3);
}

/* Different Card Colors */
.col-lg-3:nth-child(1) .single-fact-wrap{
    background: linear-gradient(135deg,#ffffff,#eef7ff);
}

.col-lg-3:nth-child(2) .single-fact-wrap{
     background: linear-gradient(135deg,#ffffff,#eef7ff);
}

.col-lg-3:nth-child(3) .single-fact-wrap{
    background: linear-gradient(135deg,#ffffff,#eef7ff);
}

.col-lg-3:nth-child(4) .single-fact-wrap{
    background: linear-gradient(135deg,#ffffff,#eef7ff);
}

/* Icon */
.fact-icon{
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.single-fact-wrap:hover .fact-icon{
    transform: rotateY(180deg);
}

/* Icon Colors */
.col-lg-3:nth-child(1) .fact-icon{
       background: linear-gradient(135deg, #0a2053, #0a2053);
}

.col-lg-3:nth-child(2) .fact-icon{
        background: linear-gradient(135deg, #0a2053, #0a2053);
}

.col-lg-3:nth-child(3) .fact-icon{
       background: linear-gradient(135deg, #0a2053, #0a2053);
}

.col-lg-3:nth-child(4) .fact-icon{
       background: linear-gradient(135deg, #0a2053, #0a2053);
}

.fact-icon svg path,
.fact-icon svg rect,
.fact-icon svg circle{
    /* stroke: #fff !important; */
}

/* Counter */
.single-fact-wrap h2{
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #062155;
}

/* Title */
.single-fact-wrap h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* Paragraph */
.single-fact-wrap p{
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin: 0;
}

/* Mobile */
@media (max-width: 767px){

    .single-fact-wrap{
        padding: 15px 10px;
        height: 90%;
    }

    .single-fact-wrap h2{
        font-size: 40px;margin-bottom: 0;
    }

    .fact-icon{
        width: 75px;
        height: 75px;
    }
}.call-to-contact-area{
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.call-to-contact-area .row{
    align-items: center;
}

/* =========================
   LEFT BACKGROUND IMAGE
========================= */

.call-to-contact-area{
    min-height: 550px;
    /* border-radius: 35px; */
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.15),
        rgba(0,0,0,0.15)),
        url(../img/contact.png);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Optional Floating Shape */
.contact-left::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    top: -80px;
    left: -80px;
    backdrop-filter: blur(10px);
}

/* =========================
   RIGHT CONTENT BOX
========================= */

.contact-right{
    position: relative;
    margin-left: -120px;
    z-index: 5;
}

.cta-inner-wrap{
    position: relative;
    padding: 65px 60px;
    border-radius: 35px;

    /* background: rgba(255,255,255,0.22); */
background: #9e9e9e96;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.2);

    overflow: hidden;
}

/* Glass Highlight */
.cta-inner-wrap::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}




/* =========================
   BUTTON
========================= */

.btn-base{
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 22px 46px;

    border-radius: 60px;

    background: linear-gradient(135deg,#062155,#0a3478);

    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.4s;
}

.btn-base::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.2);
    transition: 0.5s;
}

.btn-base:hover::before{
    left: 100%;
}

.btn-base:hover{
    transform: translateY(-5px);
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px){

    .contact-right{
        margin-left: -60px;
    }

    .title{
        font-size: 46px;
    }

    
}

@media (max-width: 991px){

    .contact-right{
        margin-left: 0;
        margin-top: -100px;
    }

    .contact-left{
        min-height: 500px;
    }
}

@media (max-width: 767px){

    .call-to-contact-area{
              padding: 0;
        padding-bottom: 50px;
    }

    .contact-left{
                min-height: 60px;
        border-radius: 20px;
    }
    .footer-area .widget {
  
    margin-bottom: 20px;
}

    .contact-right{
        margin-top: -40px;
    }

    .cta-inner-wrap{
        padding: 35px 25px;
        border-radius: 22px;
    }

    .title{
        font-size: 32px;
    }

    .btn-base{
        width: 100%;
        font-size: 18px;
    }
}
.pc-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
 .pc-whatsapp a {
    display: inline-flex;
    width: 100%;
    background: #00a315c7;
    align-items: center;
    padding: 8px 4px 8px 11px;
    border-radius: 50px;
    color: #fff;
    gap: 6px;
    backdrop-filter: blur(1px);
     text-decoration: none;
}
.pc-whatsapp a i {
    font-size: 36px;
}
.pc-whatsapp a span {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica';
    letter-spacing: 0.7px;
}
.pc-whatsapp a::before, 
    .pc-whatsapp a::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid #25d366;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }

    .pc-whatsapp a::after {
      animation-delay: 1s;
    }
   






   .pc-phone {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 9;
}
 .pc-phone a {
       display: inline-flex;
    width: 100%;
    background: #fff;
    align-items: center;
    padding: 8px 4px 8px 11px;
    border-radius: 50px;
    color: #000000;
    gap: 6px;
    backdrop-filter: blur(1px);
    text-decoration: none;
}
.pc-phone a i {
    font-size: 26px;
}
.pc-phone a span {
    font-size: 14px;
    font-weight: 400;
    /*font-family: 'Helvetica';*/
    letter-spacing: 0.7px;
}
.pc-phone a::before, 
    .pc-phone a::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid #25d366;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }

    .pc-phone a::after {
      animation-delay: 1s;
    }
    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      70% {
        transform: scale(1.3);
        opacity: 0;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }
    .main-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    background: transparent;
}
.feature-wrap{
    text-align: center;
}

.feature-wrap .icon-box{
      width: 80px;
    height: 80px;
    background: #0a2053;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-wrap h5{
        font-size: 22px;
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1.4;
}
.main-logo{
  width: 97px;
}

.breadcrumb-area {
  padding: 80px 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.breadcrumb-area .breadcrumb-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.breadcrumb-area .page-title {
  font-weight: 900;
  font-size: 64px;
  line-height: 83px;
  margin-bottom: 0px;
  color: #fff;
}
.breadcrumb-area .page-list {
  margin: 0;
  padding: 0;
  color: #fff;
  display: inline-block;
}
.breadcrumb-area .page-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  list-style: none;
  display: inline-block;
  position: relative;
  color: #fff;
}
.breadcrumb-area .page-list li + li {
  padding-left: 23px;
  margin-left: 5px;
}
.breadcrumb-area .page-list li a {
  color: #b2c0e7;
}
.breadcrumb-area .page-list li:after {
  position: absolute;
  left: 0;
  top: 1px;
  content: "\f061";
  color: #b2c0e7;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.breadcrumb-area .page-list li:first-child {
  padding-left: 0;
}
.breadcrumb-area .page-list li:first-child:after {
  display: none;
}
.single-service-wrap-2 {
  position: relative;
  z-index: 0;
  border-radius: 6px;
  padding: 40px 40px;
  background-size: cover !important;
  -webkit-box-shadow: 0px 4px 30px rgba(8, 12, 36, 0.1);
          box-shadow: 0px 4px 30px rgba(8, 12, 36, 0.1);
          height: 100%;
}
.single-service-wrap-21 {  padding: 20px 20px 20px}
.single-service-wrap-21 img{
  width: 100%;
  width: 100%;
    aspect-ratio: 3 / 3;
    object-fit: contain;
}
.single-service-wrap-21 .details h5 {
    font-weight: 900;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 14px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: #09205a !important;
    font-family: 'Public Sans';
}
.themestek-custom-heading3{     font-size: 26px;
    color: #dce5ff;}
.single-service-wrap-21:before{
  display: none;
}
.single-service-wrap-21 .details h5{
  text-align: center;
}  
.single-service-wrap-2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-service-wrap-2:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 4px;
  width: 70%;
  background: var(--main-color);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.single-service-wrap-2 .icon {
  margin-bottom: 36px;
}
.single-service-wrap-2 .icon img {
  width: auto;
}
.single-service-wrap-2 .icon .img-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.single-service-wrap-2 .details h5 {
  font-weight: 900;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 14px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;ease-in;
    color: #000 !important;
}
.single-service-wrap-2 .details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-service-wrap-2 .details .btn-wrap .read-more-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color);
}
.single-service-wrap-2 .details .btn-wrap .read-more-text:after {
  display: none;
}
.single-service-wrap-2 .details .btn-wrap .read-more-text span {
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
  background: var(--main-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #fff;
}
.vm-tab-wrapper {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.vm-tab-btn {
	position: relative;
	border: none;
	outline: none;
	background: #e7e7e7;
	color: #302e2e;
	padding: 18px 35px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.4s ease;
	border: 1px solid rgb(222 216 213);
	z-index: 1;
}
.vm-tab-btn.active {
	background: var(--main-color);
	color: #fff;
}
.vm-tab-btn.active::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -19px;
	width: 22px;
	height: 22px;
	background: var(--main-color);
	rotate: 45deg;
	z-index: -1;
}
.vm-content-wrapper {
	position: relative;
}
.vm-tab-content {
	display: none;
	background: #fff;
	padding: 35px;
	border-left: 6px solid var(--third-color);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 51, 88, 0.12);
	transform: scale(0.92);
	opacity: 0;
}
.vm-tab-content.active {
	display: block;
	animation: zoomFade 0.5s ease forwards;
}
.vm-title {
	font-size: 28px;
	margin-bottom: 15px;
	color: #081b12;
}
.vm-icon {
	width: 100px;
	height: 100px;
	background-color: #f7eeeb;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-bottom: 25px;
	transition: 0.32s ease-in-out all;
}
.vm-tab-content:hover .vm-icon {
	background-color: var(--main-color);
}
.vm-icon img {
	max-width: 55px;
	height: auto;
	transition: 0.32s ease-in-out all;
}
.vm-tab-content:hover .vm-icon img {
	filter: brightness(0) invert(1);
}
.vm-desc {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: var(--secondary-color);
	margin-bottom: 0;
}
@keyframes zoomFade {
	0% {
		opacity: 0;
		transform: scale(0.92);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.contus-card {
	position: relative;
	height: 100%;
	text-align: center;
	padding: 40px 35px 25px;
	background: #f5f6f8;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	/* margin-bottom: 30px; */
	transition: 0.35s ease all;
}
.contus-card:hover {
	border-color: #0e1f51;
}
.contus-card .contus-icon {
	position: relative;
    overflow: hidden;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 30px;
    color: #fff;
    background-color: #0e1f51;
    cursor: pointer;
    transition: 0.5s;
    margin-bottom: 25px;
    z-index: 1;
}
.contus-card .contus-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #0a29a1;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s ease;
	z-index: -1;
}
.contus-card:hover .contus-icon::before {
	transform: scaleY(1);
}
.contus-card:hover .contus-icon {
	color: #fff;
}
.contus-card:hover .contus-icon i {
	animation: bounceIn 0.8s ease;
}
.contus-card .contus-content {
	text-align: center;
}
.contus-card .contus-content .contus-title {
	color: var(--secondary-color);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
}
.contus-card .contus-content .cts-info {
	display: block;
	color: var(--muted-color);
	font-size: 17px;
	font-weight: 400;
	line-height: 29px;
	margin-bottom: 10px;
	transition: 0.3s ease all;
}
.contus-card .contus-content a.cts-info:hover {
	color: #0e1f51;
}
.contus-whole-wrapper {
	background-color: #dbdbdb;
	padding: 20px;
	border-radius: 6px;
}
.contus-form-wrap {
	padding: 50px;
}
.contus-col{ margin-bottom: 20px;}
.contus-widget {
	position: relative;
	height: 100%;
	max-height: 100%;
	border-radius: 8px;
}
.contus-widget img {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.contus-form-container .form-group {
	margin-bottom: 25px;
}
.contus-form-container .form-control,
.contus-form-container .form-select {
	padding: 18px 20px !important;
	background-color: #f5f5f5;
	transition: all 0.3s ease;
	border-radius: 6px !important;
	border-color: transparent !important;
}
.contus-form-container .form-control::placeholder,
.contus-form-container .form-select::placeholder {
	transition: 0.3s ease-in-out !important;
}
.contus-form-container .form-control:focus::placeholder,
.contus-form-container .form-select:focus::placeholder {
	padding-left: 5px !important;
}
.contus-form-container .form-control:focus,
.contus-form-container .form-select:focus {
	box-shadow: none !important;
	border-color: #0e1f51 !important;
}
.hotspot-item {
	position: absolute;
	left: 68%;
	top: 45%;
	width: 25px;
}
.hotspot-item .hots-figure {
	min-width: 250px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 8px;
	transition: all 0.4s ease;
	z-index: 2;
	/* opacity: 0; */
	opacity: 1;
	background: #1f1f1f;
	padding: 30px;
	border-radius: 2px;
	transition: all 500ms ease;
	/* transform: translate3d(-50%,-70px,0); */
	transform: translate3d(-50%, -35px, 0);
	/* visibility: hidden; */
	visibility: visible;
}
/* .hotspot-item:hover .hots-figure {
    opacity: 1;
    transform: translate3d(-50%,-35px,0);
    visibility: visible;
} */
.hotspot-item .hots-figure:hover {
	background: var(--secondary-color);
}
.hotspot-item .hots-figure:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 12px solid #1f1f1f;
	top: 100%;
	right: 0;
	margin: 0 auto;
}
.hotspot-item .hots-figure:hover:after {
	border-top-color: var(--secondary-color);
}
.hotspot-item .hots-figure .pre-title .title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
	color: #0e1f51;
}
.hotspot-item .hots-figure .hotspot-desc p {
	margin: 0;
	font-size: 15px;
	line-height: 25px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0 !important;
}
.hotspot-item .pre-circle-ripple {
	position: relative;
	cursor: pointer;
}
.hotspot-item .pre-circle-ripple:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #ea5501;
	transform-origin: center center;
	z-index: 1;
	opacity: 1;
	pointer-events: none;
	animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
.hotspot-item .pre-circle-ripple:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	height: 14px;
	width: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7607843137);
	z-index: 9;
	border: 3px solid #ea5501;
}
.hotspot-item.hotspot__usa {
	left: 14%;
	top: 31%;
}
.site-btn.style-one {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0e1f51;
    z-index: 1;
}
.site-btn {
    position: relative;
    height: 60px;
    width: fit-content;
    padding: 0 26px;
    
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: 0.3s ease all;
}
.why-people{
padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}
.slice-image{
    /* height:555px; */
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.slice-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top;
    display:block;
}

.slice-image::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,.85) 0px,
            rgba(255,255,255,.85) 4px,
            transparent 4px,
            transparent 90px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,.85) 0px,
            rgba(255,255,255,.85) 4px,
            transparent 4px,
            transparent 90px
        );
}
.box-s{
       box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
    background: #ffffff2e;
    border-radius: 20px;
}
/* .fixed-height{
      height:100%;
      overflow: hidden;
} */
.icon-bg {
       background: #0e1f51;
    padding: 18px 21px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: auto;
    outline: 1px dashed rgb(255 255 255);
    outline-offset: -6px;
}

.h-wwd {
    background: #f7fff9;
}
.hpdr-ic {
    display: flex;
    flex-direction: column !important;
    align-items: flex-end !important;
}
.process-single {
    position: relative;
}
.process-single::before {
    content: url(../../assets/img/arrow-wwd.png);
    position: absolute;
    right: -72px;
    top: 34px;
}
.process-single .icon {
    height: 140px;
    width: 140px;
    display: inline-block;
    position: relative;
    line-height: 132px;
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 14%);
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 70px;
    color: #0e1f51;
}
.process-single .icon::before {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 7px;
    bottom: 7px;
    border-radius: 50%;
    border: 3px solid #0e1f51;
}
.process-single span {
    position: absolute;
    height: 40px;
    width: 40px;
    font-size: 14px;
    background: #0e1f51;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    left: -3px;
    top: -5px;
    font-weight: 600;
}
.process-single h4 {
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 700;
}.process-single .icon img {
    max-width: 70px;
}.h-wwd {
    background: #fff;
    padding: 80px 0;
}
.tbp {
    padding: 80px 0;
}.fti-solution-3-area {
    padding: 85px 0 85px 0;
}.fti-solution-3-wrap {
    display: grid;
    grid-template-columns: 1fr 2.04fr;
    gap: 25px;
}.fti-solution-3-area {
  padding: 85px 0 85px 0;
}
.fti-solution-3-area:is(.pt-100) {
  padding-top: 100px !important;
}
.fti-solution-3-area:is(.active) .main-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.fti-solution-3-area:is(.active) .content .solution-bottom .img-wrap {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
.fti-solution-3-wrap {
  display: grid;
  grid-template-columns: 1fr 2.04fr;
  gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fti-solution-3-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.fti-solution-3-wrap .main-img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 1000ms var(--cube-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fti-solution-3-wrap .main-img {
    display: flex;
    justify-content: center;
  }
}
.fti-solution-3-wrap .content .solution-title-wrap {
  margin: 0 0 40px 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fti-solution-3-wrap .content .solution-title-wrap {
    margin-left: 0;
  }
}
.fti-solution-3-wrap .content .solution-bottom {
  display: grid;
  grid-template-columns: 1fr 1.91fr;
  gap: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fti-solution-3-wrap .content .solution-bottom {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .fti-solution-3-wrap .content .solution-bottom {
    grid-template-columns: 1fr;
  }
}
.fti-solution-3-wrap .content .solution-bottom .img-wrap {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: 1000ms var(--cube-1);
}
.fti-solution-3-wrap .content .solution-bottom .info .disc {
  font-weight: 500;
}
.fti-solution-3-wrap .content .solution-bottom .info .disc .hightlight-text {
  font-weight: 700;
  text-decoration: underline;
  color: #000;
}
.fti-solution-3-wrap .content .solution-bottom .info .signature {
  margin-top: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fti-solution-3-wrap .content .solution-bottom .info .signature {
    margin-top: 30px;
    max-width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fti-solution-3-wrap .content .solution-bottom .info .signature {
    margin-top: 30px;
    max-width: 140px;
  }
}
.fti-solution-3-wrap .content .solution-bottom .info .name {
  margin-top: 15px;
  font-weight: 700;
  color: #000;
}
.fti-solution-3-wrap .content .solution-bottom .info .designation {
  color: #000;
}
.fti-para-3-small {
    
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    color: #000;
    margin-bottom: 5px;
}
.img-cover img {
    height: 100% !important;
}
.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fti-capacity-3-area {
  padding-bottom: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fti-capacity-3-area {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .fti-capacity-3-area {
    padding-bottom: 80px;
  }
}
.fti-capacity-3-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fti-capacity-3-wrap {
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fti-capacity-3-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fti-capacity-3-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 50px 80px !important;
  }
}
@media (max-width: 767px) {
  .fti-capacity-3-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
.fti-capacity-3-item .number {
  font-size: 110px !important;
 
  -webkit-text-stroke: 2px #000;
  color: #000000;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 1.2;
}
.fti-capacity-3-item span {
  font-size: 110px !important;
 
  -webkit-text-stroke: 2px #000;
  color: #000000;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fti-capacity-3-item .number {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fti-capacity-3-item .number {
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fti-capacity-3-item .number {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .fti-capacity-3-item .number {
    font-size: 55px;
  }
}
.fti-capacity-3-item .number .plus {
  color: #ff5317;
  -webkit-text-stroke: 0px #ff5317;
  -webkit-text-fill-color: #ff5317;
}
.fti-capacity-3-item .capacity-divideer {
  background-color: rgb(221, 221, 221);
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
}
.fti-capacity-3-item .capacity-title {
  font-size: 22px;
 
  color: rgb(44, 43, 43);
  font-weight: 700;
  line-height: 1.2;
}

.single-service-wrap-2 .details-1 h5 {
       font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
}

.single-service-wrap-2 .details-1 p

 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 0 !important;
    border-bottom: 0px solid #D6D6D6 !important;
    border-top: 1px solid #D6D6D6;
    margin-bottom: 0 !important;
  
    padding-top: 12px !important;
    margin-top: 13px !important;
    color: #000 !important;
}
.feature-item{
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
}

.feature-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc{
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}
.list-inner-wrap-1{
  list-style-type: none;
}
.list-inner-wrap-1{
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-inner-wrap-1 .feature-item{
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
}

.list-inner-wrap-1 .feature-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url('../img/icon/check.png') no-repeat center center;
    background-size: contain;
}

.list-inner-wrap-1 .feature-title{
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.list-inner-wrap-1 .feature-desc{
    margin: 0;
    line-height: 1.7;
}

