:root {
  --theme-font: 'Roboto', sans-serif;
  --theme-heading-font: 'Barlow', sans-serif;
  --theme-text: #636363;
  --theme-text-rgb: 99, 99, 99;
  --theme-base: #f85b05;
  --theme-base-rgb: 255, 90, 30;
  --theme-base2: #f85b05;
  --theme-base2-rgb: 255, 96, 22;
  --theme-black: #000000;
  --theme-black-rgb: 0, 0, 0;
  --theme-black2: #333333;
  --theme-black2-rgb: 51, 51, 51;
  --theme-black3: #222222;
  --theme-black3-rgb: 34, 34, 34;
  --theme-black4: #262626;
  --theme-black4-rgb: 14, 14, 14;
  --theme-white: #fff;
  --theme-white-rgb: 255, 255, 255;
  --theme-gray: #f4f4f4;
  --theme-gray-rgb: 244, 244, 244;
  --theme-border-color: #dddddd;
  --theme-border-color-rgb: 221, 221, 221;
  --theme-letter-space: 0.1em;
  --theme-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--theme-base, #f85b05);
  color: var(--theme-white, #fff);
  transition: 500ms;
  padding: 11px 12px 11px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.theme-btn:focus {
  color: var(--theme-white, #fff);
}
.theme-btn__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-white, #fff);
  color: #000000;
  font-size: 14px;
}
.theme-btn__icon-box {
  width: 13px;
  height: 13px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  transition: all 500ms ease;
}
.theme-btn__icon-box i {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.theme-btn__icon-box i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
}
.theme-btn::before {
  content: '';
  background-color: #012449;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-165%, 0) rotate(0deg);
  transform-origin: right bottom;
  transition: all 0.35s;
  z-index: -1;
}
.theme-btn:hover {
  color: var(--theme-white, #fff);
}
.theme-btn:hover::before {
  transform: translate(0%, 0) rotate(0deg);
}
.theme-btn:hover .theme-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}
.theme-btn:hover .theme-btn__icon i:last-child {
  visibility: visible;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    /* padding-bottom: 52px; */
    margin-top: -2px;
  }
}
.sec-title__box {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}
.sec-title__box img {
  width: auto;
}
.sec-title__tagline {
  margin: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--theme-font, 'Roboto', sans-serif);
  color: var(--theme-base, #f85b05);
}
@media (max-width: 575px) {
  .sec-title__tagline {
    font-size: 18px;
  }
}
.sec-title__title {
  margin: 0;
  font-family: var(--theme-heading-font, 'Barlow', sans-serif);
  letter-spacing: 0%;
  font-weight: 700;
  font-size: 35px;
  line-height: 114%;
  color: var(--theme-black3, #222222);
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 30px;
  }
  .about-two__thumb__video {
    width: 100% !important;
  }
  .mobile-nav__wrapper .logo-box a img {
    width: 120px;
  }
  .icon-angle-down {
    fill: #fff;
    display: none;
  }

  .fa-angle-down {
    width: 30px;
    height: 30px;
    background-color: var(--theme-base, #ff5a1e);
    color: var(--theme-white, #fff);
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .sec-title__title br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--theme-font, 'Roboto', sans-serif);
  color: var(--theme-text, #636363);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--theme-base, #f85b05);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-heading-font, 'Barlow', sans-serif);
  color: var(--theme-black, #000000);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  color: var(--theme-text, #636363);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-x-10 {
  --bs-gutter-x: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-x-57 {
  --bs-gutter-x: 57px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--theme-base, #f85b05);
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-black, #000000);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: '\e907';
  color: var(--theme-base, #f85b05);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: 'azino-icon';
}

.preloader {
  position: fixed;
  background-color: #00244a;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--theme-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 30px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: #f85b05;
  color: var(--theme-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  background-color: #fff;
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
  max-width: 1625px;
  margin-left: auto;
  margin-right: 18px;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
.main-header__logo {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: auto;
  padding: 14px 0px 13.55px 21px;
  border-radius: 100px;
  background-color: var(--theme-white, #fff);
}
.main-header__shape::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 375px;
  background-color: var(--theme-base2, #ff6016);
  z-index: -1;
  clip-path: polygon(100% 0%, 70% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}
@media (max-width: 1850px) {
  .main-header__shape::after {
    width: 250px;
  }
}
@media (max-width: 1690px) {
  .main-header__shape::after {
    width: 150px;
    clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  }
}
.main-header__shape::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 57px;
  background-color: var(--theme-base2, #ff6016);
  z-index: -1;
}
.main-header__right {
  text-align: end;
  margin-top: 41px;
}
.main-header__info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-header__info + .main-header__btn {
  margin-left: 50px;
}
.main-header__info-item {
  font-size: 26px;
  color: var(--theme-black, #000000);
  transition: all 500ms ease;
  line-height: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.main-header__info-item:hover {
  color: var(--theme-base2, #ff6016);
}
.main-header__info-number {
  width: 21px;
  height: 21px;
  background-color: var(--theme-base2, #ff6016);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-white, #fff);
  font-size: 10px;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: -11px;
  right: -11px;
}
.main-header__nav {
  margin-left: auto;
  margin-right: auto;
}
.main-header__btn + .main-header__btn-popup {
  margin-left: 50px;
}
.main-header__btn-popup {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-black4, #0e0e0e);
  border: 6px solid var(--theme-white, #fff);
  font-size: 28px;
  color: var(--theme-white, #fff);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main-header__btn-popup:hover {
  background-color: var(--theme-base, #f85b05);
}
.main-header__call + .main-header__location {
  margin-left: 40px;
}
.main-header__location,
.main-header__call {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1740px) and (min-width: 1199px) {
  .main-header__location,
  .main-header__call {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header__location,
  .main-header__call {
    display: none;
  }
  .main-header__right {
    margin-top: 54px;
  }
  .main-header--two .mobile-nav__btn {
    margin-left: auto !important;
  }
  .sticky-header--normal.active .main-header__right {
    margin-top: 37px !important;
  }
}
.main-header__location__icon,
.main-header__call__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-black, #000000);
  font-size: 22px;
  color: var(--theme-white, #fff);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.main-header__location__icon::after,
.main-header__call__icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--theme-base, #f85b05);
  z-index: -1;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.4s ease-in-out;
}
.main-header__location__title,
.main-header__call__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-black3, #222222);
  margin-bottom: 0px;
}
.main-header__location__text,
.main-header__location__call,
.main-header__call__text,
.main-header__call__call {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #333333;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.main-header__location__text:hover,
.main-header__location__call:hover,
.main-header__call__text:hover,
.main-header__call__call:hover {
  color: var(--theme-base2, #ff6016);
}
.main-header__location:hover .main-header__call__icon::after,
.main-header__location:hover .main-header__location__icon::after,
.main-header__call:hover .main-header__call__icon::after,
.main-header__call:hover .main-header__location__icon::after {
  transform: scale(1.1);
  opacity: 1;
  color: var(--theme-white, #fff);
}
.main-header__location:hover .main-header__call__icon i,
.main-header__location:hover .main-header__location__icon i,
.main-header__call:hover .main-header__call__icon i,
.main-header__call:hover .main-header__location__icon i {
  animation: bwTada 0.5s ease-in-out;
}
@media (max-width: 1080px) {
  .main-header__location {
    display: none;
  }
}
@media (max-width: 1420px) and (min-width: 1200px), (max-width: 678px) {
  .main-header--one .main-header__btn {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-header--one .main-header__shape,
  .main-header--one .main-header__btn-popup {
    display: none;
  }
  .main-header--one .main-header__logo {
    padding: 0;
    border-radius: 0;
  }
  .main-header--one .main-header__inner {
    margin-right: 0;
  }
}
.main-header--one .mobile-nav__btn {
  margin-left: 30px;
}
@media (max-width: 400px) {
  .main-header--one .mobile-nav__btn {
    margin-left: 20px;
  }
}
@media (max-width: 400px) {
  .main-header--one .main-header__info-item:last-child {
    display: none;
  }
}
.main-header--two .main-header-inner__logo {
  display: block;
  padding: 10px 0;
  width: 110px;
}
@media (max-width: 1540px) {
  .main-header--two .main-header-inner__logo {
    display: block;
    width: 130px;
	padding:10px 0;
  }
}
/* .main-header--two .mobile-nav__btn {
  margin-left: 30px;
} */
.main-header--two .main-header__inner {
  width: 100%;
  max-width: 100%;
  justify-content: start;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 1080px) {
  .main-header--two .main-header__btn {
    margin-left: 30px;
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}
.main-header--two .main-header__nav {
  margin-left: 50px;
  margin-top: 54px;
}
@media (max-width: 1540px) {
  .main-header--two .main-header__nav {
  }
}
.main-header--two .main-header__center {
  width: 100%;
}

.main-header--two .main-header__center .top-area {
  display: flex;
  margin-bottom: 0;
}
.main-header--two .main-header__center .top-area li {
  display: flex;
  margin-right: 20px;
  margin-top: 20px;
}
.main-header--two .main-header__center .top-area li i {
  padding-top: 10px;
  color: #072147;
  margin-right: 10px;
}
.main-header--two .main-header__center .top-area li p,
.main-header--two .main-header__center .top-area li a {
  color: #fff;
  margin-bottom: 0;
  line-height: 33px;
}
.main-header--two .main-header__center .social-media li {
  display: flex;
  justify-content: end;
}
.main-header--two .main-header__center .social-media li a {
  text-decoration: none;
}
.main-header--two .main-header__center .social-media li a i {
  background: linear-gradient(15deg, #0c58ba, #1877f2);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  margin-top: 10px;
  font-size: 19px;
}

.main-header--two .main-header__center__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}
@media (max-width: 1540px) {
  .main-header--two .main-header__center__bottom {
    margin-left: 20px;
    margin-right: 20px;
    padding: 5px 0;
  }
}
@media (max-width: 1080px) {
  .main-header--two .main-header__center__bottom {
    padding-bottom: 0;
    padding-top: 0;
  }
 .main-header--two .main-header__center .top-area li {
   margin-right: 20px;
    margin-top: 10px;
}
.topbar-two {
padding: 5px 0px 10px;
} 
}
.main-header--two .main-header__logo {
  max-width: 375px;
  display: flex;
  align-items: center;
  background-color: var(--theme-white, #fff);
  justify-content: center;
  width: 100%;
  padding: 35px 20px;
  border: 20px solid var(--theme-base2, #ff6016);
  border-radius: 0;
  position: relative;
  z-index: 1;
  display: none;
}
@media (max-width: 1820px) {
  .main-header--two .main-header__logo {
    max-width: 300px;
  }
}
@media (max-width: 1540px) {
  .main-header--two .main-header__logo {
    display: none;
  }
}
.main-header--two .main-header__logo::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  border: 2px dashed var(--theme-base2, #ff6016);
  z-index: -1;
}
.main-header--two .main-header__location {
  margin-right: 40px;
  padding-right: 30px;
  border-right: 1px solid var(--theme-border-color, #dddddd);
}
/* .main-header--two .main-menu .main-menu__list > li {
  padding-top: 43px;
  padding-bottom: 43px;
} */
.main-header--two .main-header__location {
  padding-top: 25px;
  padding-bottom: 25px;
}
.main-header--three {
  position: absolute;
  z-index: 11;
  background-color: rgba(var(--theme-black-rgb, 0, 0, 0), 0.11);
}
@media (max-width: 1366px) {
  .main-header--three {
    background-color: var(--theme-white, #fff);
  }
}
@media (max-width: 1199px) {
  .main-header--three {
    position: relative;
  }
}
.main-header--three .main-header__inner {
  width: 100%;
  max-width: 100%;
  justify-content: start;
}
.main-header--three .main-header__logo {
  background-color: var(--theme-white, #fff);
  padding: 30px 95px 30px 30px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1560px) {
  .main-header--three .main-header__logo {
    padding-left: 0;
    padding-right: 50px;
  }
}
@media (max-width: 1366px) {
  .main-header--three .main-header__logo {
    padding: 0;
    clip-path: none;
  }
}
.main-header--three::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 347px;
  height: 100%;
  background-color: var(--theme-base2, #ff6016);
  z-index: -1;
}
@media (max-width: 1560px) {
  .main-header--three::after {
    width: 121px;
  }
}
@media (max-width: 1366px) {
  .main-header--three::after {
    display: none;
  }
}
.main-header--three::before {
  content: '';
  background-color: var(--theme-white, #fff);
  width: 9999999px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 98%;
}
.main-header--three .main-header__right {
  padding-right: 54px;
}
@media (max-width: 1560px) {
  .main-header--three .main-header__right {
    padding-right: 0;
  }
}
.main-header--three .main-header__info + .main-header__btn {
  margin-left: 114px;
}
@media (max-width: 1560px) {
  .main-header--three .main-header__info + .main-header__btn {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .main-header--three .main-header__btn {
    display: none;
  }
  .map-area form {
    height: auto !important;
  }
}
.main-header--three .theme-btn {
  background-color: var(--theme-white, #fff);
  color: var(--theme-black4, #0e0e0e);
}
@media (max-width: 1366px) {
  .main-header--three .theme-btn {
    background-color: var(--theme-base, #f85b05);
    color: var(--theme-white, #fff);
  }
}
.main-header--three .theme-btn .theme-btn__icon {
  background-color: var(--theme-black4, #0e0e0e);
  color: var(--theme-white, #fff);
}
.main-header--three .theme-btn::before {
  background-color: var(--theme-black4, #0e0e0e);
}
.main-header--three .theme-btn:hover {
  color: var(--theme-white, #fff);
}
.main-header--three .theme-btn:hover .theme-btn__icon {
  background-color: var(--theme-white, #fff);
  color: var(--theme-base2, #ff6016);
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 28px;
  padding-bottom: 28px;
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.main-header--three .main-menu .main-menu__list > li + li {
  margin-left: 0;
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li + li {
    margin-left: 25px;
  }
}
.main-header--three .main-menu .main-menu__list > li:first-child > a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 29px;
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li:first-child > a {
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
}
.main-header--three .main-menu .main-menu__list > li:first-child > a::after,
.main-header--three .main-menu .main-menu__list > li:first-child > a::before {
  width: calc(100% - 60px);
  left: 30px;
  visibility: hidden;
  opacity: 0;
}
.main-header--three .main-menu .main-menu__list > li:first-child > a::after {
  top: 16px;
}
.main-header--three .main-menu .main-menu__list > li:first-child > a::before {
  bottom: 16px;
}
.main-header--three
  .main-menu
  .main-menu__list
  > li:first-child
  > a:hover::after,
.main-header--three
  .main-menu
  .main-menu__list
  > li:first-child
  > a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-header--three .main-menu .main-menu__list > li > a::after,
.main-header--three .main-menu .main-menu__list > li > a::before {
  width: calc(100% - 40px);
  left: 19px;
  visibility: hidden;
  opacity: 0;
}
.main-header--three .main-menu .main-menu__list > li > a::after {
  top: 16px;
}
.main-header--three .main-menu .main-menu__list > li > a::before {
  bottom: 16px;
}
.main-header--three .main-menu .main-menu__list > li > a:hover::after,
.main-header--three .main-menu .main-menu__list > li > a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-header--three .main-menu .main-menu__list li ul {
  top: 75%;
}
.main-header--three .main-menu .main-menu__list > li:last-child > a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 39px;
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li:last-child > a {
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
}
.main-header--three .main-menu .main-menu__list > li:last-child > a::after,
.main-header--three .main-menu .main-menu__list > li:last-child > a::before {
  width: calc(100% - 60px);
  right: 30px;
  visibility: hidden;
  opacity: 0;
}
.main-header--three .main-menu .main-menu__list > li:last-child > a::after {
  top: 16px;
}
.main-header--three .main-menu .main-menu__list > li:last-child > a::before {
  bottom: 16px;
}
.main-header--three
  .main-menu
  .main-menu__list
  > li:last-child
  > a:hover::after,
.main-header--three
  .main-menu
  .main-menu__list
  > li:last-child
  > a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-header--three .main-menu .main-menu__list > li > a {
  padding: 17.5px 19.5px;
  background-color: rgba(217, 217, 217, 0.1);
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li > a {
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
}
.main-header--three .main-menu .main-menu__list > li > a {
  color: var(--theme-white, #fff);
}
@media (max-width: 1366px) {
  .main-header--three .main-menu .main-menu__list > li > a {
    color: var(--theme-black4, #0e0e0e);
  }
}
.main-header--three .main-header__info-item {
  color: var(--theme-white, #fff);
}
@media (max-width: 1366px) {
  .main-header--three .main-header__info-item {
    color: var(--theme-black4, #0e0e0e);
  }
}
.main-header--three .mobile-nav__btn {
  margin-left: 30px;
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--theme-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--theme-black-rgb, 0, 0, 0), 0.11);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.main-header--two.sticky-header--cloned .main-header__logo,
.main-header--two.sticky-header--cloned .topbar-two {
  display: none;
}
.main-header--two.sticky-header--cloned .main-header-inner__logo {
  display: block;
}
.main-header--two.sticky-header--cloned .main-header__center__bottom {
  margin-left: 30px;
}
@media (max-width: 1740px) and (min-width: 1670px) {
  .main-header--two.sticky-header--cloned .main-header__location,
  .main-header--two.sticky-header--cloned .main-header__call {
    display: flex;
  }
}
@media (max-width: 1669px) {
  .main-header--two.sticky-header--cloned .main-header__nav {
    margin-left: auto;
    margin-right: auto;
  }
}
.topbar-two {
  background-color: #f85b05;
  /*   padding: 5px 0px; */
  position: relative;
  z-index: 1;
}

.main-header--three.sticky-header--cloned .main-header__logo {
  padding: 0;
  clip-path: none;
}
.main-header--three.sticky-header--cloned .main-header__right {
  padding-right: 0;
}
.main-header--three.sticky-header--cloned::after,
.main-header--three.sticky-header--cloned::before {
  display: none;
}
.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li > a {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  + li {
  margin-left: 35px;
}
.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a::after,
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a::before {
  width: calc(100% - 10px);
  left: 0px;
  visibility: visible;
  opacity: 1;
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a::after {
  top: 0px;
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a::before {
  bottom: 0px;
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a:hover::after,
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li
  > a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-header--three.sticky-header--cloned .main-header__info-item,
.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li > a {
  color: var(--theme-black4, #0e0e0e);
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li.current
  > a,
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  > li:hover
  > a {
  color: var(--theme-base, #f85b05);
}
.main-header--three.sticky-header--cloned .theme-btn {
  background-color: var(--theme-base, #f85b05);
  color: var(--theme-white, #fff);
}
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  li
  ul
  li.current
  > a,
.main-header--three.sticky-header--cloned
  .main-menu
  .main-menu__list
  li
  ul
  li:hover
  > a {
  color: var(--theme-white, #fff);
}

.mobile-nav__btn {
  width: 53px;
  display: flex;
  align-items: end;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
  transition: all 0.4s ease-in-out;
}
.mobile-nav__btn span:last-child {
  width: 70%;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: auto;
    position: relative;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 3px;
  background-color: #ea491e;
  transition: all 0.4s ease-in-out;
  border-radius: 80px;
  margin-bottom: 8px;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 0;
  margin-bottom: 7px;
}
.mobile-nav__btn span:nth-child(3) {
  margin-top: 1px;
}
.mobile-nav__btn:hover span {
  background-color: var(--theme-base, #f85b05);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
    justify-content: center;
  }
}
.main-menu .main-menu__list > li {
  /*   padding-top: 48px;
  padding-bottom: 48px; */
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
  display: flex;
  align-items: center;
}
.main-menu .main-menu__list > li.dropdown > a i {
  font-size: 12px;
  margin-left: 5px;
  line-height: 1;
}
.main-menu .main-menu__list > li + li {
  margin-left: 25px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
.main-menu .main-menu__list > li > a {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
  font-family: var(--theme-heading-font, 'Barlow', sans-serif);
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  z-index: 1;
  overflow: hidden;
  padding: 3px 0;
}
.sticky-header--cloned.active .main-menu .main-menu__list > li > a {
  color: #000;
}
.main-menu .main-menu__list > li > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 1px;
  background-color: var(--theme-base2, #ff6016);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}
.main-menu .main-menu__list > li > a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 80%;
  height: 1px;
  background-color: var(--theme-base2, #ff6016);
  transform: translateX(140%);
  transition: transform 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  /* color: var(--theme-base2, #ff6016); */
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after {
  transform: translateX(0%);
}
.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before {
  transform: translateX(0%);
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--theme-white, #fff);
  box-shadow: 0px 10px 60px 0px
    RGBA(var(--theme-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: -15px !important;
  right: -15px !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-20deg);
  transform-origin: 50% 0%;
  pointer-events: none;
}
.main-menu .main-menu__list li.megamenu:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0);
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.main-menu .main-menu__list li ul li:last-child {
  margin-bottom: 0px;
}
.main-menu .main-menu__list li.megamenu ul li {
  margin: 0;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 15px;
  line-height: 26px;
  color: var(--theme-text, #636363);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Font Awesome 5 Free';
  content: '\f054';
  color: var(--theme-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
  display: none;
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: #f85b05;
  color: #ffffff;
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

.main-menu-five .main-menu__list > li.current > a,
.main-menu-five .main-menu__list > li:hover > a {
  color: var(--theme-black, #000000) !important;
  text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
.mobile-nav__container .main-menu__list li a .icon-dropdownsvg {
  display: none !important;
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--theme-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container
  .main-menu__list
  > .megamenu.megamenu-clickable
  > ul.megamenu-clickable--active,
.main-menu
  .main-menu__list
  > .megamenu.megamenu-clickable
  > ul.megamenu-clickable--active,
.stricky-header
  .main-menu__list
  > .megamenu.megamenu-clickable
  > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--theme-black, #000000);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--theme-base2, #ff6016);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  z-index: 9;
}
.funfact-one {
  padding-bottom: 0;
}
.funfact-one__list {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.funfact-one__list li {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .funfact-one__list li {
    flex: 0 0 47%;
    max-width: 50%;
    border-right: 1px solid #dddddd;
  }
  .map-area form {
    height: auto !important;
  }
}
@media (max-width: 425px) {
  .funfact-one__list li {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: 1px solid #dddddd;
  }
}
.funfact-one__list li:hover {
  border-color: var(--theme-white, #fff);
}
.funfact-one__list li:first-child {
  border-left: 1px solid #dddddd;
}
.funfact-one__list li:last-child {
  border-right: 1px solid #dddddd;
}
.funfact-one__list li + li {
  border-left: 1px solid #dddddd;
}
.funfact-one--home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  background-color: #f4f4f4;
  z-index: -1;
  display: none;
}

.funfact-card {
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f85b05;
  border-radius: 0 0 10px 10px;
}
.funfact-card__icon__box {
  width: 88px;
  height: 88px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.funfact-card__icon__box::after,
.funfact-card__icon__box::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.funfact-card__icon__box::after {
  right: -29.5px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.funfact-card__icon__box::before {
  left: -29.5px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.funfact-card__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #012449;
  margin-left: auto;
  margin-right: auto;
  font-size: 50px;
  color: var(--theme-white, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 100%, 25% 100%, 0 70%);
  transition: all 0.4s ease-in-out;
}
.funfact-card__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 55px;
  line-height: 74%;
  color: var(--theme-black3, #222222);
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.funfact-card__text {
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
}
.funfact-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.4s ease-in-out;
}
.funfact-card__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--theme-black4-rgb, 14, 14, 14), 0.85);
  z-index: -1;
}
.funfact-card__shape {
  position: absolute;
  bottom: 0;
  line-height: 0;
  left: 0;
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
  visibility: hidden;
  width: 100%;
  height: 6px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.funfact-card:hover .funfact-card__bg,
.funfact-card:hover .funfact-card__shape {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.funfact-card:hover .funfact-card__icon__box::before,
.funfact-card:hover .funfact-card__icon__box::after {
  background-color: var(--theme-white, #fff);
}
.funfact-card:hover .funfact-card__icon {
  background-color: vvar(--theme-white, #fff);
}
.funfact-card:hover .funfact-card__icon i {
  animation: wobbleTop 1s ease-in-out 1;
}
.funfact-card:hover .funfact-card__text,
.funfact-card:hover .funfact-card__count {
  color: var(--theme-white, #fff);
}
.funfact-card__count {
  color: #fff;
}
.funfact-card__text {
  text-align: center;
}

.funfact-three__item {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  .funfact-three__item {
    flex-direction: row;
    gap: 20px;
  }
  .funfact-one__list__item {
    margin-bottom: 20px;
  }
  #gallery .img-wrapper {
    height: 210px !important;
  }
  .project-sec:before {
    display: none;
  }
}
.funfact-three__item--two {
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .funfact-three__item--two {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .funfact-three__item--two {
    flex-direction: row;
    gap: 20px;
  }
}
.funfact-three__item__box {
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-left: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .funfact-three__item__box {
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .funfact-three__item__box {
    padding-left: 0;
  }
}
.funfact-three__item__count {
  font-weight: 700;
  font-size: 35px;
  line-height: 74%;
  color: var(--theme-black2, #333333);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 0;
}
.funfact-three__item__count span {
  color: inherit;
}
.funfact-three__item__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
  color: var(--theme-black2, #333333);
  margin-bottom: -5px;
}
.funfact-three__item__icon {
  max-width: 70px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f4f4f4;
  font-size: 36px;
  color: var(--theme-base, #f85b05);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .funfact-three__item__icon {
    background-color: var(--theme-black4, #0e0e0e);
    color: var(--theme-white, #fff);
  }
}
.funfact-three__item__shape {
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme-base, #f85b05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 20px;
  transition: all 0.4s ease-in-out;
}
.funfact-three__item__shape::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--theme-black, #000000);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .funfact-three__item__shape {
    display: none;
  }
}
.funfact-three__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 35px;
  width: 1px;
  height: calc(100% - 30px);
  background-color: var(--theme-border-color, #dddddd);
  z-index: -1;
}
@media (max-width: 991px) {
  .funfact-three__item::after {
    display: none;
  }
}
.funfact-three__item:hover .funfact-three__item__icon {
  background-color: var(--theme-base, #f85b05);
  color: var(--theme-white, #fff);
}
.funfact-three__item:hover .funfact-three__item__icon i {
  animation: bwTada 0.5s linear 1;
}
.funfact-three__item:hover .funfact-three__item__shape {
  border-style: dotted;
  border-color: var(--theme-black, #000000);
  border-width: 2px;
}
.funfact-three__item:hover .funfact-three__item__shape::after {
  background-color: var(--theme-base, #f85b05);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 575px) {
  .testimonials-one {
    padding-bottom: 120px;
  }
}

@media (max-width: 991px) {
  .testimonials-one::after {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 575px) {
  .testimonials-one::after {
    display: none;
  }
}
.testimonials-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.testimonials-one .sec-title .sec-title__title {
  color: #000;
}
.testimonials-one__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}
.testimonials-one__thumb img {
  border-right: 10px solid var(--theme-white, #fff);
  object-fit: cover;
}
@media (max-width: 1199px) {
  .testimonials-one__thumb {
    display: none;
  }
}
.testimonials-one__carousel__slick-button {
  border: none;
  outline: none;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--theme-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  color: var(--theme-white, #fff);
  transition: all 500ms ease;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.testimonials-one__carousel__slick-button:hover {
  color: var(--theme-white, #fff);
  background-color: var(--theme-base, #f85b05);
  border-color: var(--theme-base, #f85b05);
}
.testimonials-one__carousel__slick-button--prev {
  right: 91px;
}
@media (max-width: 500px) {
  .testimonials-one__carousel__slick-button--prev {
    right: auto;
    left: 17px;
  }
}
.testimonials-one__carousel__slick-button--next {
  right: 17px;
}
@media (max-width: 500px) {
  .testimonials-one__carousel__slick-button--next {
    right: auto;
    left: 91px;
  }
}
@media (max-width: 500px) {
  .testimonials-one__carousel__slick-button {
    right: auto;
    bottom: -70px;
  }
}
.testimonials-one__carousel-thumb {
  position: absolute;
  top: 50%;
  /* transform: translateY(-39%); */
  left: 230px;
}
@media (max-width: 991px) {
  .testimonials-one__carousel-thumb {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
  }
}
.testimonials-one__carousel-thumb-box {
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media (max-width: 991px) {
  .testimonials-one__carousel-thumb-box {
    display: none;
  }
}
.testimonials-one__carousel-thumb-box .slick-slide {
  margin: 25px 0;
}
.testimonials-one__carousel-thumb-box .slick-list {
  margin: -25px 0;
}
.testimonials-one__carousel-thumb-box
  .slick-current.slick-active
  + .slick-active
  .carousel-thumb__item {
  border-color: #fc8443;
}
.testimonials-one__carousel-thumb-box
  .slick-current.slick-active
  + .slick-active
  .carousel-thumb__item__shape {
  visibility: visible;
  opacity: 1;
}
.testimonials-one .carousel-thumb__item {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 7px solid var(--theme-white, #fff);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.testimonials-one .carousel-thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.testimonials-one .carousel-thumb__item__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--theme-black4-rgb, 14, 14, 14), 0.7);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--theme-white, #fff);
}

.testimonials-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: #f85b05;
  margin-right: 15px;
  border-radius: 10px;
}
.testimonials-card:before {
  position: absolute;
  content: '';
  bottom: 60px;
  left: 185px;
  background: url(../images/quote.png) no-repeat;
  width: 120px;
  height: 100px;
  background-size: contain;
  opacity: 0.1;
}

.testimonials-card ul {
  display: flex;
}
.testimonials-card .testimonial-star i {
  color: #fed000;
  margin-right: 5px;
}
.testimonials-card__top {
  display: flex;
  align-items: center;
  background-color: var(--theme-white, #fff);
  padding: 13px 40px 13px 0;
  position: relative;
  z-index: 1;
  border-radius: 0 1000px 1000px 0px;
  display: inline-block;
  margin-bottom: 35px;
}
@media (max-width: 500px) {
  .testimonials-card__top {
    margin-bottom: 25px;
    padding: 10px 20px 10px 0;
  }
}
.testimonials-card__top .quite {
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-base, #f85b05);
  font-size: 34px;
  color: var(--theme-white, #fff);
  clip-path: polygon(0 0%, 80% 0, 100% 20%, 100% 100%, 0 100%, 0% 50%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 500px) {
  .testimonials-card__top .quite {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.testimonials-card__top .ster {
  padding-left: 100px;
  font-size: 22px;
  color: var(--theme-base, #f85b05);
  line-height: 1;
}
@media (max-width: 500px) {
  .testimonials-card__top .ster {
    font-size: 16px;
    padding-left: 50px;
  }
}
.testimonials-card__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  text-transform: capitalize;
  color: var(--theme-white, #fff);
  margin-bottom: 0;
}
.testimonials-card__text a {
  color: var(--theme-base, #f85b05);
  text-decoration: underline;
}
.testimonials-card__author {
  border-top: 1px solid rgba(217, 217, 217, 0.56);
  padding-top: 30px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonials-card__author__image {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  padding: 3px;
  background-color: transparent;
  border: 1px solid var(--theme-base, #f85b05);
}
.testimonials-card__author__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.testimonials-card__author__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-white, #fff);
  margin-bottom: 5px;
}
.testimonials-card__author__deg {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-white, #fff);
  margin-bottom: -3px;
}

.testimonials-three {
  position: relative;
  z-index: 1;
}
.testimonials-three__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.06;
  z-index: -1;
  animation: bgSlide 10s linear infinite;
}
.testimonials-three__carousel {
  margin-right: -20px;
  margin-left: -30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonials-three__carousel {
    margin-left: 0;
    margin-right: 0;
  }
}
.testimonials-three__carousel__slick-button {
  border: none;
  outline: none;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--theme-black4, #0e0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  color: var(--theme-black4, #0e0e0e);
  transition: all 500ms ease;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.testimonials-three__carousel__slick-button:hover {
  color: var(--theme-white, #fff);
  background-color: var(--theme-base, #f85b05);
  border-color: var(--theme-base, #f85b05);
}
.testimonials-three__carousel__slick-button--prev {
  right: 91px;
}
.testimonials-three__carousel__slick-button--next {
  right: 17px;
}
.testimonials-three__carousel-thumb-box {
  margin-right: 45px;
}
.testimonials-three__thumb__item {
  width: 286px;
  height: 286px;
  border-radius: 50%;
  margin-bottom: 80px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .testimonials-three__thumb__item {
    width: 210px;
    height: 210px;
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .testimonials-three__thumb__item {
    margin-left: auto;
    margin-right: auto;
  }
}
.testimonials-three__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.testimonials-three__thumb__item__quite {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-base, #f85b05);
  font-size: 34px;
  color: var(--theme-white, #fff);
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.testimonials-three__thumb__item__angle {
  width: 286px;
  height: 222px;
  background-color: var(--theme-black4, #0e0e0e);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0% 100%);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .testimonials-three__thumb__item__angle {
    width: 210px;
  }
}
@media (max-width: 991px) {
  .testimonials-three__thumb__item__angle {
    left: 50%;
    transform: translateX(-50%);
  }
}
.testimonials-three__thumb__item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 5px;
  width: 1px;
  height: 100%;
  z-index: -1;
  background-color: var(--theme-border-color, #dddddd);
}
@media (max-width: 991px) {
  .testimonials-three__thumb__item::after {
    display: none;
  }
}
.testimonials-three__thumb__item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0px;
  width: 10px;
  height: 85px;
  background-color: var(--theme-base, #f85b05);
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonials-three__thumb__item::before {
    display: none;
  }
}

.testimonials-card-three .ster {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 22px;
  line-height: 136%;
  color: var(--theme-base, #f85b05);
  background-color: #f4f4f4;
  padding: 10px 30px 10px 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .testimonials-card-three .ster {
    font-size: 18px;
  }
}
.testimonials-card-three .ster::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -31px;
  width: 32px;
  height: 40px;
  background-color: var(--theme-black4, #0e0e0e);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .testimonials-card-three .ster::after {
    height: 30px;
  }
}
.testimonials-card-three__text {
  font-weight: 400;
  font-size: 26px;
  line-height: 192%;
  text-transform: capitalize;
  color: var(--theme-black4, #0e0e0e);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--theme-border-color, #dddddd);
}
.testimonials-card-three__text a {
  color: var(--theme-base, #f85b05);
  text-decoration: underline;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .testimonials-card-three__text {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.testimonials-card-three__author__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-black4, #0e0e0e);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.testimonials-card-three__author__deg {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-text, #636363);
  display: block;
}

/* project-sec style start */
.project-sec {
  padding: 80px 0 200px;
  position: relative;
  background: #021932;
}
.project-sec:before {
  position: absolute;
  content: '';
  bottom: -191px;
  right: 55px;
  width: 230px;
  height: 500px;
  background: url(../images/car.png) no-repeat;
  background-size: contain;
  z-index: 9;
  display: none;
}

.project-sec .title-area span {
  color: #f85b05 !important;
}

.project-sec h2 {
  color: #fff;
}
.project-sec::after {
  position: absolute;
  width: 500px;
  height: 500px;
  content: '';
  background: url(../img/project-1.png) no-repeat;
  top: 0;
  right: 0;
  z-index: 1;
  background-size: contain;
}

.project-sec .title-area span {
  color: #f85b05;
}

.project-sec .main-btn.pro-btn:hover {
  color: #000;
}
.project-sec .main-btn.pro-btn:before {
  background: #ffffff;
}

/* For gallery style start */

#image-gallery {
  position: relative;
  z-index: 9;
}

#gallery .img-wrapper {
  position: relative;
  margin-top: 15px;
  transition: 0.5s;
  z-index: 1;
  margin-bottom: 6px;
  transition: 0.5s;
}
#gallery .img-wrapper.long-image {
  height: 615px;
}

#gallery .img-wrapper:hover:before {
  top: 0;
  left: 0;
  transition: 0.5s;
}

#gallery .img-wrapper img {
  width: 100%;
  border-radius: 6px;
}

#gallery .img-wrapper:hover .img-overlay {
  opacity: 1;
}
#exitButton {
  position: relative;
  top: -170px;
}
#exitButton i {
  font-size: 30px;
  color: #fff;
}

#gallery .img-wrapper .img-overlay {
  background: #02193280;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}
#gallery .img-wrapper {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
#gallery .img-wrapper a img {
  height: 100%;
}
#gallery .img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgb(0 0 0 / 91%);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 5%;
}
@media screen and (max-width: 767px) {
  #gallery .img-wrapper {
    height: 130px !important;
    border-radius: 10px;
  }
  .main-header--two .main-header__center .top-area li:first-child {
    display: none;
  }
  .map-area__left {
    margin-top: 30px;
    margin-right: 0;
  }
  .servicessingelpage img {
    width: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
  .main-header--two .main-header__center .top-area li:first-child {
    visibility: visible;
  }
}

/* project-sec style end */

.cta-two {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 140px;
}

.cta-two .theme-btn::before {
  background: #cacaca;
}
.cta-two .theme-btn:hover {
  color: #000;
}

@media (max-width: 1199px) {
  .cta-two {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .cta-two {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cta-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.cta-two p {
  color: #fff;
}
.cta-two__bg {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: cover;
  background-position: top left;
  z-index: -1;
}
.cta-two__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-black4, #0e0e0e);
  opacity: 83%;
}
.cta-two__content {
  position: relative;
  z-index: 1;
}
.cta-two__content h5 {
  color: #fe6e04;
}
.cta-two__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 131%;
  text-align: center;
  color: var(--theme-white, #fff);
  margin-bottom: 20px;
}
.cta-two__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: var(--theme-white, #fff);
  max-width: 570px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}
.cta-two__btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .cta-two__btn-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.cta-two__call {
  display: flex;
  align-items: center;
}
.cta-two__call__icon {
  font-size: 50px;
  color: #ffc501;
  transition: all 0.4s ease-in-out;
  display: flex;
}
.cta-two__call__content {
  margin-left: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--theme-white, #fff);
  line-height: 1;
}
.cta-two__call__content span {
  display: block;
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-white, #fff);
  margin-bottom: 10px;
}
.cta-two__call__content a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  display: inline;
  color: var(--theme-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cta-two__call__content a:hover {
  background-size: 100% 1px;
}
.cta-two__call__content a {
  margin-bottom: -4px;
}
.cta-two__call__content a:hover {
  color: var(--theme-base, #f85b05);
}
/* .cta-two__call:hover .cta-two__call__icon i {
  color: #ffc501;
} */
.cta-two__call:hover .cta-two__call__icon i {
  animation: bwTada 1s ease 1;
  color: #f85b05;
}
.cta-two__call__shape {
  position: absolute;
  top: -60px;
  left: -50px;
}
.cta-two__call__shape img {
  animation: bwscale 3s linear infinite;
 
}
@media (max-width: 575px) {
  .cta-two__call__shape {
    display: none;
  }
}
.cta-two__call__shape-two {
  position: absolute;
  bottom: -60px;
  right: -50px;
}
.cta-two__call__shape-two img {
  animation: bwscale 3s linear infinite;
}
@media (max-width: 575px) {
  .cta-two__call__shape-two {
    display: none;
  }
}
.cta-two__shape {
  position: absolute;
  top: -10px;
  left: 0;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bwTada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes flip-2-hor-top-1 {
  0% {
    transform: translateY(0);
    transform-origin: 50% 0%;
  }
  50% {
    transform: translateY(-100%);
    transform-origin: 50% 100%;
  }
  100% {
    transform: translateY(0);
    transform-origin: 50% 0%;
  }
}
@keyframes bwslideTop {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@keyframes bwLeftToRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bwTopToBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes textScrolling {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -100px 0;
  }
  40% {
    background-position: -200px 0;
  }
  60% {
    background-position: -150px 0;
  }
  80% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
@keyframes wobbleTop {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
@keyframes bwscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*='col-'] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--theme-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-black, #000000);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: #001335;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--theme-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--theme-base, #f85b05);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--theme-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--theme-white, #fff);
  font-size: 12px;
  font-family: var(--theme-font, 'Roboto', sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--theme-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--theme-base, #f85b05);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--theme-base, #f85b05);
  border: none;
  outline: none;
  color: var(--theme-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--theme-white, #fff);
  color: var(--theme-black, #000000);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--theme-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--theme-base, #f85b05);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--theme-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--theme-base, #f85b05);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--theme-base, #f85b05);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--theme-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s,
    width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type='search'],
.search-popup__form input[type='text'] {
  width: 100%;
  background-color: var(--theme-white, #fff);
  font-size: 15px;
  color: var(--theme-text, #636363);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .theme-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

@keyframes splitText {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* Main Banner style */
.main-slider-two {
  position: relative;
  z-index: 1;
}
.main-slider-two__item:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000057;
  content: '';
  z-index: -1;
}
.main-slider-two__bg-one {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  /* border-left: 10px solid var(--theme-white, #fff); */
  z-index: -1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  opacity: 0;
}
.main-slider-two__bg-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  z-index: -1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(-50%) scalex(2);
  filter: blur(10px);
  opacity: 0;
}
.main-slider-two__item {
  background-color: var(--theme-black, #000000);
  position: relative;
  z-index: 3;
  padding-top: 112px;
  height: 732px;
  padding-bottom: 112px;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .main-slider-two__item {
    height: auto;
    padding-bottom: 200px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__item {
    height: auto;
    padding-top: 80px;
    padding-bottom: 112px;
  }
}
.main-slider-two__content {
  /* background-color: var(--theme-white, #fff); */
  padding: 80px;
  padding-right: 50px;
  margin-right: -100px;
  position: relative;
  z-index: 1;
  clip-path: polygon(86.5% 0, 100% 17%, 100% 100%, 0 100%, 0 0);
}
@media (max-width: 1199px) {
  .main-slider-two__content {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__content {
    margin-right: 0;
  }
}
.main-slider-two__content::after {
  content: '';
  position: absolute;
  bottom: 84px;
  right: 0;
  height: 146px;
  width: 31px;
  background-color: var(--theme-black, #000000);
}
@media (max-width: 991px) {
  .main-slider-two__content::after {
    display: none;
  }
}
.main-slider-two__subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f85b05;
  margin-bottom: 23px;
  transform: scaleX(1.9) translateX(50%);
  opacity: 0;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
}
@media (max-width: 1199px) {
  .main-slider-two__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__subtitle {
    font-size: 16px;
  }
}
.main-slider-two__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 117%;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 19px;
  transform: scaleX(1.9) translateX(50%);
  opacity: 0;
  visibility: hidden;
  transition: transform 1300ms ease, opacity 1300ms ease;
}
@media (max-width: 1199px) {
  .main-slider-two__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
	.main-slider-two__content {
    padding: 30px 15px 30px;
  }
  .main-slider-two__title {
    font-size: 30px;
  }
}
.main-slider-two__title .future {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-transform: none;
  font-size: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-slider-two__title .future {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title .future {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title .future {
    font-size: 35px;
  }
}
.main-slider-two__title .future .outline {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #ffc501;
  text-stroke: 2px #ffc501;
  line-height: normal;
}
.main-slider-two__title .future .filled {
  font-weight: 900;
  color: var(--theme-black3, #222222);
  -webkit-text-stroke: 2px #ffc501;
  text-stroke: 2px #ffc501;
  line-height: normal;
}
.main-slider-two__title .future .f {
  transform: translateY(-5px);
  font-size: 60px;
}
@media (max-width: 1199px) {
  .main-slider-two__title .future .f {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title .future .f {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title .future .f {
    font-size: 40px;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__thumb img {
    width: 100% !important;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__thumb {
    max-width: 100% !important;
  }
}
.main-slider-two__title .future .underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: clamp(3px, 0.8vw, 3px);
  background: var(--theme-base, #f85b05);
  border-radius: 999px;
  transform: translateY(2px);
}
.main-slider-two__text {
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
}
.main-slider-two__btn {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
}
.main-slider-two__btn a:last-child {
  padding: 11px 12px 11px 12px;
}
@media (max-width: 575px) {
  .main-slider-two__btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.main-slider-two__btn .theme-btn:first-child {
  background-color: #012449;
  color: #ffffff;
}
.main-slider-two__btn .theme-btn:first-child:hover {
  color: #fff;
}
.main-slider-two__btn .theme-btn:first-child::before {
  background-color: var(--theme-base, #f85b05);
}
.main-slider-two .about-three__funfact {
  border-top: 10px solid var(--theme-white, #fff);
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 10px solid var(--theme-white, #fff);
  z-index: 3;
  max-width: 520px;
  margin: 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .main-slider-two .about-three__funfact {
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
	.main-slider-two .about-three__funfact {
    width: 100%;
    max-width: 100%;
	border-right: 10px solid #fff;	
  }
	
}

@media (max-width: 1400px) and (min-width: 992px), (max-width: 575px) {
  .main-slider-two .about-three__funfact .about-three__funfact__thumb img {
    width: 170px;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__thumb {
    max-width: 170px;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__box {
    padding: 25px 15px;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__text {
    font-size: 20px;
  }
  .main-slider-two .about-three__funfact .about-three__funfact__text-two {
    font-size: 15px;
    padding-top: 10px;
    padding-left: 10px;
  }
}
.main-slider-two__thumb-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  position: absolute;
  bottom: 122px;
  left: 57%;
}
@media (max-width: 1500px) {
  .main-slider-two__thumb-box {
    left: 60%;
  }
}
@media (max-width: 1400px) {
  .main-slider-two__thumb-box {
    left: 59%;
    bottom: 210px;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__thumb-box {
    bottom: 230px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__thumb-box {
    height: 42px;
    width: 123px;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -41px;
    z-index: 3;
  }
}
@media (max-width: 991px) {
  .main-slider-two__thumb-carousel {
    height: 42px;
    width: 123px;
  }
}
.main-slider-two__thumb-carousel .main-slider-two__thumb__item {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.main-slider-two__thumb-carousel .main-slider-two__thumb__item span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  color: var(--theme-black, #000000);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-slider-two__thumb-carousel .main-slider-two__thumb__item:hover span {
  background-color: #f70101a3;
  color: var(--theme-white, #fff);
}
.main-slider-two__thumb-carousel
  .slick-current
  + .slick-active
  .main-slider-two__thumb__item
  span {
  background-color: rgba(var(--theme-base-rgb, 255, 90, 30), 0.9);
  color: var(--theme-white, #fff);
}
@media (max-width: 991px) {
  .main-slider-two__thumb-carousel .item {
    width: 41px !important;
    height: 41px;
  }
}
.main-slider-two .slick-active .main-slider-two__bg-two,
.main-slider-two .slick-active .main-slider-two__bg-one {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1000ms;
}
.main-slider-two .slick-active .main-slider-two__title {
  opacity: 1;
  visibility: visible;
  transform: translatex(0) scalex(1);
  transition-delay: 1500ms;
}
.main-slider-two .slick-active .main-slider-two__subtitle {
  opacity: 1;
  visibility: visible;
  transform: translatex(0) scalex(1);
  transition-delay: 1000ms;
}
.main-slider-two .slick-active .main-slider-two__text,
.main-slider-two .slick-active .main-slider-two__btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 1000ms;
  color: #fff;
}
.main-slider-two__thumb-carousel
  .slick-current
  + .slick-active
  .main-slider-two__thumb__item
  span {
  background-color: #f85a05bb;
}

.about-two {
  position: relative;
  z-index: 1;
}
.about-two .sec-title {
  padding-bottom: 10px;
}
.about-two__thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-two__thumb__video {
  position: absolute;
  bottom: 0;
  left: -11px;
  z-index: 1;
  border: 10px solid var(--theme-white, #fff);
  border-left: none;
  border-bottom: none;
  width: 252px;
  height: 239px;
  overflow: hidden;
}
.about-two .about-two__content ul li i {
  color: #f85b05;
  margin-right: 10px;
}
.about-two .about-two__content p b {
  color: #222;
  font-size: 18px;
}
@media (max-width: 425px) {
  .about-two__thumb__video {
    position: relative;
    margin-top: 20px;
    border: none;
  }
  .about-two__thumb__video img {
    width: 100%;
  }
}
.about-two__thumb__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-two__thumb__video::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.5);
}
.about-two__thumb__item-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--theme-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}
.about-two__thumb__item-video span {
  position: absolute;
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background-color: transparent;
  border-radius: 50%;
  border: 3px solid var(--theme-white, #fff);
}
.about-two__thumb__item-video .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--theme-base-rgb, 255, 90, 30), 0.55);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-two__thumb__item-video .ripple::before,
.about-two__thumb__item-video .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--theme-base-rgb, 255, 90, 30), 0.45);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-two__thumb__item-video .ripple::before {
  animation-delay: 0.9s;
  content: '';
  position: absolute;
}
.about-two__thumb__item-video .ripple::after {
  animation-delay: 0.6s;
  content: '';
  position: absolute;
}
.about-two__thumb__item {
  margin-right: 95px;
  height: 600px;
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 767px) {
  .about-two__thumb__item {
    margin-right: 30px;
  }
}
@media (max-width: 425px) {
  .about-two__thumb__item {
    margin-right: 0;
  }
}
.about-two__thumb__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-two__thumb__item-small {
  position: absolute;
  top: 130px;
  right: 30px;
  border: 10px solid var(--theme-white, #fff);
  border-right: none;
  width: 200px;
  height: 200px;
}
.about-two__thumb__item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-two__thumb__item-small__box {
  height: 100%;
}
@media (max-width: 575px) {
  .about-two__thumb__item-small {
    display: none;
  }
}
.about-two__thumb__item-small::after {
  content: '';
  position: absolute;
  background-color: var(--theme-base, #f85b05);
  width: 65px;
  height: 71px;
  top: -80px;
  right: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.about-two__shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .about-two__shape {
    top: auto;
    bottom: 0;
    text-align: end;
  }
}
@media (max-width: 1366px) {
  .about-two__shape {
    display: none;
  }
}
.about-two__shape img {
  animation: bwLeftToRight 2s linear infinite;
}
@media (max-width: 1600px) {
  .about-two__shape img {
    width: 50%;
  }
}
/* .about-two__text {
  margin-bottom: 27px;
} */
@media (min-width: 1200px) {
  .about-two__text {
    max-width: 540px;
    width: 100%;
  }
}
.about-two__feature {
  margin-bottom: 40px;
}
.about-two__feature__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .about-two__feature__item {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
}
.about-two__feature__item:hover .about-two__feature__icon::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.about-two__feature__item + .about-two__feature__item {
  margin-top: 25px;
}
.about-two__feature__icon {
  max-width: 70px;
  width: 100%;
  background-color: var(--theme-base, #f85b05);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--theme-white, #fff);
  position: relative;
  z-index: 1;
}
.about-two__feature__icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-black4, #0e0e0e);
  z-index: -1;
  transform: scale(0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.about-two__feature__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--theme-black3, #222222);
  margin-bottom: 5px;
}
.about-two__feature__text {
  margin-bottom: -4px;
  max-width: 425px;
  width: 100%;
}
.about-two__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-black, #000000);
}
@media (max-width: 575px) {
  .about-two__author {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
  }
}
.about-two__author-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  position: relative;
  z-index: 1;
  flex: 55%;
  width: 55%;
}
@media (max-width: 575px) {
  .about-two__author-box {
    width: 100%;
    flex: 100%;
  }
}
.about-two__author-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 100%;
  background-color: var(--theme-base, #f85b05);
  z-index: -1;
}
.about-two__author-deg {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-white, #fff);
  margin-bottom: 0;
}
.about-two__author-image {
  max-width: 94px;
  height: 87px;
  width: 100%;
}
.about-two__author-image img {
  object-fit: cover;
  width: 100%;
}
.about-two__author__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-white, #fff);
  margin-bottom: 5px;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-two__author__name {
    font-size: 18px;
  }
}
.about-two__author__aigneture {
  flex: 45%;
  width: 45%;
  padding-left: 40px;
  border-left: 1px solid #d9d9d9;
}
@media (max-width: 575px) {
  .about-two__author__aigneture {
    width: 100%;
    flex: 100%;
    border: none;
    padding-left: 30px;
    padding-bottom: 30px;
  }
}

.about-three {
  position: relative;
  z-index: 1;
  background-color: var(--theme-white, #fff);
}
@media (min-width: 1200px) {
  .about-three__content {
    margin-right: 30px;
  }
}
.about-three .sec-title {
  padding-bottom: 22px;
}
.about-three__text {
  margin-bottom: 42px;
}
.about-three__thumb {
  position: relative;
  z-index: 1;
}
.about-three__thumb__item img {
  object-fit: cover;
  width: 100%;
  clip-path: polygon(84% 0, 100% 16%, 100% 100%, 0 100%, 0 0);
}
.about-three__thumb__item-small {
  position: absolute;
  bottom: 0;
  left: -118px;
  border-right: 15px solid var(--theme-white, #fff);
  border-top: 15px solid var(--theme-white, #fff);
}
.about-three__thumb__item-small img {
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 75%);
}
@media (max-width: 767px) {
  .about-three__thumb__item-small {
    border-top: none;
    border-right: none;
    text-align: start;
    left: -20px;
  }
  .about-three__thumb__item-small img {
    width: 50%;
  }
}
.about-three__thumb__item-small::after {
  width: 118px;
  height: 118px;
  position: absolute;
  content: '';
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  top: -133px;
  left: 0;
  background-color: var(--theme-base, #f85b05);
}
@media (max-width: 767px) {
  .about-three__thumb__item-small::after {
    display: none;
  }
  .msg_area form input[type='submit'] {
    width: unset !important;
  }
  .msg_area form {
    height: auto !important;
    margin-bottom: 20px;
  }
}
.about-three__funfact {
  display: flex;
  align-items: start;
  background: #012449;
  padding-right: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact {
    padding-right: 20px;
  }
}
@media (max-width: 500px) {
  .about-three__funfact {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 25px;
  }
}
.about-three__funfact__thumb {
  max-width: 213px;
  height: 213px;
  width: 100%;
}
.about-three__funfact__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact__thumb {
    max-width: 170px;
  }
  .about-three__funfact__thumb img {
    width: 170px;
  }
}
@media (max-width: 500px) {
  .about-three__funfact__thumb {
    max-width: 100%;
  }
  .about-three__funfact__thumb img {
    width: 100%;
    height: 200px;
  }
}
.about-three__funfact__top {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.5);
}
.about-three__funfact__box {
  background-color: var(--theme-base, #f85b05);
  padding: 35px 23px;
  max-width: 140px;
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact__box {
    padding: 25px 15px;
  }
}
.about-three__funfact__count {
  font-weight: 700;
  font-size: 60px;
  line-height: 50%;
  text-transform: uppercase;
  color: #000;
  text-shadow: -1px 1px 1px #ffffff, 1px 1px 1px #ffffff, -1px -1px 1px #ffffff,
    1px -1px 1px #ffffff;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact__count {
    font-size: 55px;
  }
}
.about-three__funfact__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--theme-white, #fff);
  margin-bottom: 0;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact__text {
    font-size: 20px;
  }
}
.about-three__funfact__text-two {
  padding-top: 15px;
  padding-left: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--theme-white, #fff);
  margin-bottom: 0;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-three__funfact__text-two {
    font-size: 15px;
    padding-top: 10px;
    padding-left: 10px;
  }
}
.about-three__blockquote {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #636363;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  padding-left: 11px;
  margin-bottom: 34px;
  margin-top: -4px;
}
.about-three__blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--theme-base, #f85b05);
}
.about-three__list {
  margin-bottom: 50px;
}
.about-three__list__item {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--theme-heading-font, 'Barlow', sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--theme-black, #000000);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 425px) {
  .about-three__list__item {
    font-size: 18px;
  }
}
.about-three__list__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background-color: var(--theme-base, #f85b05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.about-three__list__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0px;
  height: 2px;
  background-color: var(--theme-black, #000000);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.about-three__list__item__icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--theme-base, #f85b05);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 425px) {
  .about-three__list__item__icon {
    max-width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
.about-three__list__item:hover {
  padding-left: 40px;
}
.about-three__list__item:hover::after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.about-three__list__item:hover::before {
  width: 40px;
  visibility: visible;
  opacity: 1;
}
.about-three__list__item:hover .about-three__list__item__icon {
  background-color: var(--theme-black, #000000);
  border-radius: 10px;
  color: var(--theme-white, #fff);
}
.about-three__list__item:hover .about-three__list__item__icon i {
  animation: bwTada 0.5s ease-in-out;
}
.about-three__list__item + .about-three__list__item {
  margin-top: 30px;
}
.about-three__shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.about-three__shape img {
  object-fit: cover;
  animation: bwLeftToRight 3s ease-in-out infinite;
}
@media (max-width: 1600px) {
  .about-three__shape {
    text-align: end;
  }
  .about-three__shape img {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .about-three__shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-two,
.service-page {
  counter-reset: serviceCard;
  position: relative;
  z-index: 1;
}

.service-two {
  background: #021932;
  padding: 80px 0;
  margin-top: -45px;
}
.service-two h3 {
  color: #fff;
}

.service-two .service-card:hover .service-card__top::before,
.service-two .service-card {
  background-color: var(--theme-white, #fff);
}
.service-two .service-card-two__thumb::before,
.service-two .service-card-two__thumb::after,
.service-two .service-card::after,
.service-two .service-card__top::after {
  background-color: #021932;
}

.service-card {
  position: relative;
  z-index: 1;
  background-color: #f4f4f4;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.service-card__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 93%;
  z-index: -1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.service-card__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
  opacity: 0;
}
.service-two .service-card:hover .service-card__bg::after {
  opacity: 1;
}
.service-card__top {
  padding: 42px 50px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 425px) {
  .service-card__top {
    padding: 30px 41px 37px 20px;
  }
}
.service-card__top__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: var(--theme-black3, #222222);
  margin-bottom: 0;
}
@media (max-width: 1199px) and (min-width: 767px), (max-width: 425px) {
  .service-card__top__title {
    font-size: 24px;
  }
}
.service-card__top__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card__top__title a:hover {
  background-size: 100% 1px;
}
.service-card__top::before {
  content: '';
  width: 96px;
  height: 102px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--theme-base, #f85b05);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 425px) {
  .service-card__top::before {
    width: 76px;
    height: 80px;
  }
}
.service-card__top::after {
  content: '';
  width: 70px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -0.8px;
  background-color: var(--theme-white, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.service-card__top__subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-base, #f85b05);
  display: flex;
  align-items: center;
  counter-increment: serviceCard;
  transition: all 0.4s ease-in-out;
}
.service-card__top__subtitle span {
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 10px; */
  width: 10px;
  height: 10px;
  border: 2px solid var(--theme-base, #f85b05);
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}
.service-card__top__subtitle::after {
  margin-left: 3px;
  content: '0' counter(serviceCard);
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-base, #f85b05);
  transition: all 0.4s ease-in-out;
}
.service-card__top__icon {
  max-width: 80px;
  width: 100%;
  font-size: 38px;
  color: var(--theme-white, #fff);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #012449;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(0 0, 70% 0, 100% 25%, 100% 100%, 0 100%, 0% 50%);
}
.service-card__top__icon img {
  padding: 10px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
width:80%;
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 425px) {
  .service-card__top__icon {
    max-width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
.service-card__content {
  position: relative;
  z-index: 1;
  padding: 24px 30px 30px;
  height: 177px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 425px) {
  .service-card__content {
    padding: 24px 17px 25px;
  }
}
.service-card__content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: #dddddd;
  transition: 0.5s;
}
.service-card__text {
  margin-bottom: 13px;
  transition: 0.5s;
}
.service-card__list {
  margin-bottom: -6px;
}
.service-card__list__item {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-text, #636363);
  transition: all 0.4s ease-in-out;
}
.service-card__list__item + .service-card__list__item {
  margin-top: 5px;
}
.service-card__list__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-black4, #0e0e0e);
  font-size: 11px;
  color: var(--theme-white, #fff);
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
.service-card__btn {
  text-align: end;
}
.service-card__btn .theme-btn {
  background-color: var(--theme-base);
  padding: 0;
  margin-left: auto;
  margin-right: 0;
  padding-left: 18px;
  font-size: 15px;
}
.service-card__btn .theme-btn::before {
  display: none;
}
.service-card__btn .theme-btn__icon {
  width: 50px;
  height: 50px;
  background-color: #012449;
  color: var(--theme-white, #fff);
}
.service-card__btn .theme-btn__icon-box {
  width: 20px;
  height: 20px;
  font-size: 19px;
}
.service-card::after {
  width: 185px;
  height: 46px;
  position: absolute;
  bottom: -0.7px;
  left: 0;
  background-color: var(--theme-white, #fff);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: '';
  z-index: 9;
  display: none;
}
.service-card:hover .service-card__bg {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-card:hover .service-card__bg::after {
  background-color: #fff;
}
.service-card:hover .service-card__top::before {
  background-color: #f4f4f4;
}
.service-card:hover .service-card__top__icon {
  background-color: var(--theme-base, #f85b05);
}
.service-card:hover .service-card__top__icon i {
  animation: bwTada 0.5s ease-in-out;
}
.service-card:hover .service-card__top__title,
.service-card:hover .service-card__text,
.service-card:hover .service-card__top__subtitle::after,
.service-card:hover .service-card__top__subtitle {
  color: #000;
}
.service-card:hover .service-card__top__subtitle span {
  background-color: var(--theme-base, #f85b05);
}
.service-card .service-card__content {
  background: #fff;
  opacity: 0;
  transition: 0.5s;
}
.service-card:hover .service-card__content {
  opacity: 1;
}
.service-card:hover .service-card__content::after {
  background-color: rgba(221, 221, 221, 0.3);
}
.service-card:hover .service-card__list__item {
  color: var(--theme-white, #fff);
}
.service-card:hover .service-card__list__item .service-card__list__icon {
  background-color: var(--theme-base, #f85b05);
  color: var(--theme-white, #fff);
}
.service-card:hover .theme-btn .theme-btn__icon {
  background-color: var(--theme-base, #f85b05);
}
.service-card:hover .theme-btn .theme-btn__icon-box {
  transform: rotate(45deg);
}
.service-card .service-card__list__item:hover .service-card__list__icon {
  background-color: var(--theme-white, #fff);
  color: var(--theme-base, #f85b05);
}

.service-card-two__thumb {
  position: relative;
  z-index: 1;
}
.service-card-two__thumb::after {
  content: '';
  width: 70px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -0.8px;
  background-color: var(--theme-white, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.service-card-two__thumb::before {
  width: 185px;
  height: 46px;
  position: absolute;
  bottom: -0.7px;
  left: 0;
  background-color: var(--theme-white, #fff);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: '';
}
.service-card-two__thumb img {
  object-fit: cover;
  width: 100%;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.working-process {
  position: relative;
  z-index: 1;
}
.working-process__item {
  position: relative;
  z-index: 1;
  margin-top: 95px;
  padding-bottom: 1px;
}
@media (max-width: 1199px) {
  .working-process__item {
    margin-bottom: 30px;
  }
}
.working-process__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 365px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 663.000000 900.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1025 8985 c-6 -9 -35 -20 -65 -25 -128 -21 -289 -88 -422 -176 -90 -60 -242 -205 -309 -296 -102 -137 -185 -329 -218 -504 -8 -44 -11 -973 -11 -3500 0 -2885 2 -3449 14 -3504 56 -263 162 -456 353 -641 67 -65 200 -169 217 -169 3 0 27 -13 53 -28 87 -51 233 -103 371 -131 91 -19 355 -14 458 8 216 46 305 91 629 316 44 31 130 89 190 131 61 41 151 104 200 139 114 82 282 184 315 192 14 3 30 9 35 14 13 9 111 43 190 64 92 25 376 32 492 11 120 -21 226 -56 335 -111 85 -43 127 -69 271 -168 148 -103 200 -139 260 -180 34 -24 91 -64 127 -89 36 -24 102 -70 148 -102 170 -117 343 -192 518 -225 77 -14 339 -14 418 0 274 50 498 169 686 365 166 173 272 379 317 614 5 26 14 44 21 42 9 -1 12 774 12 3457 0 3007 -2 3460 -14 3464 -8 3 -18 23 -21 44 -30 174 -116 366 -230 513 -48 61 -178 190 -241 238 -137 104 -346 196 -496 217 -32 4 -48 11 -48 21 0 12 -302 14 -2273 14 -2026 0 -2273 -2 -2282 -15z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 663.000000 900.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1025 8985 c-6 -9 -35 -20 -65 -25 -128 -21 -289 -88 -422 -176 -90 -60 -242 -205 -309 -296 -102 -137 -185 -329 -218 -504 -8 -44 -11 -973 -11 -3500 0 -2885 2 -3449 14 -3504 56 -263 162 -456 353 -641 67 -65 200 -169 217 -169 3 0 27 -13 53 -28 87 -51 233 -103 371 -131 91 -19 355 -14 458 8 216 46 305 91 629 316 44 31 130 89 190 131 61 41 151 104 200 139 114 82 282 184 315 192 14 3 30 9 35 14 13 9 111 43 190 64 92 25 376 32 492 11 120 -21 226 -56 335 -111 85 -43 127 -69 271 -168 148 -103 200 -139 260 -180 34 -24 91 -64 127 -89 36 -24 102 -70 148 -102 170 -117 343 -192 518 -225 77 -14 339 -14 418 0 274 50 498 169 686 365 166 173 272 379 317 614 5 26 14 44 21 42 9 -1 12 774 12 3457 0 3007 -2 3460 -14 3464 -8 3 -18 23 -21 44 -30 174 -116 366 -230 513 -48 61 -178 190 -241 238 -137 104 -346 196 -496 217 -32 4 -48 11 -48 21 0 12 -302 14 -2273 14 -2026 0 -2273 -2 -2282 -15z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: #f4f4f4;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .working-process__item::after {
    height: 310px;
    mask: none;
    border-radius: 30px;
  }
}
.working-process__item::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 365px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 663.000000 900.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1025 8985 c-6 -9 -35 -20 -65 -25 -128 -21 -289 -88 -422 -176 -90 -60 -242 -205 -309 -296 -102 -137 -185 -329 -218 -504 -8 -44 -11 -973 -11 -3500 0 -2885 2 -3449 14 -3504 56 -263 162 -456 353 -641 67 -65 200 -169 217 -169 3 0 27 -13 53 -28 87 -51 233 -103 371 -131 91 -19 355 -14 458 8 216 46 305 91 629 316 44 31 130 89 190 131 61 41 151 104 200 139 114 82 282 184 315 192 14 3 30 9 35 14 13 9 111 43 190 64 92 25 376 32 492 11 120 -21 226 -56 335 -111 85 -43 127 -69 271 -168 148 -103 200 -139 260 -180 34 -24 91 -64 127 -89 36 -24 102 -70 148 -102 170 -117 343 -192 518 -225 77 -14 339 -14 418 0 274 50 498 169 686 365 166 173 272 379 317 614 5 26 14 44 21 42 9 -1 12 774 12 3457 0 3007 -2 3460 -14 3464 -8 3 -18 23 -21 44 -30 174 -116 366 -230 513 -48 61 -178 190 -241 238 -137 104 -346 196 -496 217 -32 4 -48 11 -48 21 0 12 -302 14 -2273 14 -2026 0 -2273 -2 -2282 -15z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 663.000000 900.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1025 8985 c-6 -9 -35 -20 -65 -25 -128 -21 -289 -88 -422 -176 -90 -60 -242 -205 -309 -296 -102 -137 -185 -329 -218 -504 -8 -44 -11 -973 -11 -3500 0 -2885 2 -3449 14 -3504 56 -263 162 -456 353 -641 67 -65 200 -169 217 -169 3 0 27 -13 53 -28 87 -51 233 -103 371 -131 91 -19 355 -14 458 8 216 46 305 91 629 316 44 31 130 89 190 131 61 41 151 104 200 139 114 82 282 184 315 192 14 3 30 9 35 14 13 9 111 43 190 64 92 25 376 32 492 11 120 -21 226 -56 335 -111 85 -43 127 -69 271 -168 148 -103 200 -139 260 -180 34 -24 91 -64 127 -89 36 -24 102 -70 148 -102 170 -117 343 -192 518 -225 77 -14 339 -14 418 0 274 50 498 169 686 365 166 173 272 379 317 614 5 26 14 44 21 42 9 -1 12 774 12 3457 0 3007 -2 3460 -14 3464 -8 3 -18 23 -21 44 -30 174 -116 366 -230 513 -48 61 -178 190 -241 238 -137 104 -346 196 -496 217 -32 4 -48 11 -48 21 0 12 -302 14 -2273 14 -2026 0 -2273 -2 -2282 -15z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--theme-base, #f85b05);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .working-process__item::before {
    mask: none;
    height: 310px;
    border-radius: 30px;
  }
}
.working-process__item__image {
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background-color: #012449;
  border: 1px solid var(--theme-border-color, #dddddd);
  padding: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -94px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.4 ease-in-out;
}
@media (max-width: 1199px) and (min-width: 575px) {
  .working-process__item__image {
    width: 190px;
    height: 190px;
  }
}
.working-process__item__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.working-process__item__image__shape {
  position: absolute;
  left: 18%;
  top: 6.3%;
  z-index: 2;
}
.working-process__item__image__shape img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .working-process__item__image__shape img {
    width: 147px;
    height: 140px;
  }
}
@media (max-width: 575px) {
  .working-process__item__image__shape img {
    display: none;
  }
}
.working-process__item__content {
  text-align: center;
}
.working-process__item .step {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--theme-white, #fff);
  padding: 7px 16px;
  border-radius: 6px;
  background-color: var(--theme-base, #f85b05);
  text-align: center;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.working-process__item__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  margin-bottom: 15px;
}
@media (max-width: 1199px) and (min-width: 767px) {
  .working-process__item__title {
    font-size: 18px;
  }
}
.working-process__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.working-process__item__title a:hover {
  background-size: 100% 1px;
}
.working-process__item__title a:hover {
  color: var(--theme-base, #f85b05);
}
.working-process__item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--theme-text, #636363);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .working-process__item__btn {
    margin-bottom: -30px;
  }
}
.working-process__item__btn a {
  margin-left: auto;
  margin-right: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #012449;
  color: var(--theme-white, #fff);
}
.working-process__item__arrow {
  position: absolute;
  top: -40px;
  right: -90px;
}
@media (max-width: 767px) {
  .working-process__item__arrow {
    display: none;
  }
}
.working-process__item:hover::before,
.working-process__item:hover::after {
  background: #021932;
}
.working-process__item:hover .working-process__item__text,
.working-process__item:hover .working-process__item__title {
  color: var(--theme-white, #fff);
}
.working-process__item:hover .step {
  background-color: var(--theme-white, #fff);
  color: var(--theme-base, #f85b05);
}
.working-process__item:hover .working-process__item__image {
  border-style: dashed;
  border-color: var(--theme-base, #f85b05);
}
.working-process__item:hover .working-process__item__image img {
  filter: blur(2px);
}
.working-process__item:hover .working-process__item__image__shape img {
  animation: rotate 6s ease-in-out infinite;
}
.working-process__item:hover .working-process__item__btn a {
  transform: rotate(45deg);
  background-color: #f85b05;
  color: #000;
}
.working-process__item:hover .working-process__item__arrow img {
  animation: bwLeftToRight 2s ease-in-out infinite;
}
.working-process__item--two {
  margin-top: 145px;
}
@media (max-width: 767px) {
  .working-process__item--two {
    margin-top: 95px;
  }
}

/* Form style */
.map-area {
  background: #fff;
  margin-bottom: -10px;
}
.map-area .contact-form {
  position: relative;
  margin-top: -150px;
}

.map-area form {
  padding: 50px 30px 50px 30px;
  background: #f85b05;
  border-radius: 10px;
  position: relative;
  height: 609px;
}
.map-area form:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #012169;
  transform: rotate(-5deg);
  z-index: -1;
}
.map-area form h3 {
  font-size: 25px;
}

.map-area form input {
  background: #fff;
  border-radius: 6px;
  height: 60px;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.map-area form select {
  height: 60px;
  display: block !important;
  appearance: auto;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.map-area form textarea {
  border-radius: 6px;
  padding-left: 20px;
  padding-top: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.map-area form input[type='submit'] {
  display: flex;
  margin: auto;
  background: #012449;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px 50px;
  color: #fff;
  font-weight: 600;
  height: unset;
  margin-top: 14px;
}
.map-area form input[type='submit'] {
  width: 40%;
  margin: auto;
  margin-top: 20px;
}

/* Footer style */

.footer {
  padding: 170px 0 60px;
  background: #011122;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 250px;
  background: url(../images/wavy1.png) no-repeat 50% 0;
  z-index: -1;
  background-size: cover;
}
.footer::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: url(../images/wavy2.png) no-repeat 100% 100%;
  z-index: -1;
  background-size: contain;
}

.footer .footer_logo_area p {
  color: #fff;
  font-size: 18px;
  padding-top: 7px;
}

.footer .wideget-area h3 {
  border-bottom: 3px solid #f85b05;
  display: inline-block;
  color: #fff;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-size: 23px;
}
.footer .wideget-area ul {
  padding-top: 7px;
  list-style: none;
}

.footer ul.footer-menu li {
  position: relative;
  transition: 0.8s;
}
.footer ul.footer-menu li:hover {
  padding-left: 10px;
}

.footer .wideget-area ul li a {
  text-decoration: none;
  color: #fff;
  padding-bottom: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  position: relative;
  transition: 0.5s;
}
.footer .wideget-area ul li a:hover {
  transform: translateX(10px);
}

.footer .wideget-contact-area ul li i {
  color: #f85b05;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 11px;
  margin-bottom: 18px;
  padding-top: 9px;
  width: 26px;
}
.footer .wideget-contact-area ul li p {
  /* font-weight: 600; */
  padding-top: 3px;
}

.footer .wideget-contact-area h3 {
  border-bottom: 3px solid #f85b05;
  display: inline-block;
  color: #fff;
  padding-bottom: 4px;
  font-size: 23px;
  text-transform: uppercase;
}
.footer .wideget-contact-area ul {
  padding-top: 7px;
}
.footer .wideget-contact-area ul li p {
  color: #fff;
  font-size: 18px;
}
.footer .wideget-contact-area ul li {
  display: flex;
}
.footer .wideget-contact-area a {
  text-decoration: none;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  word-break: break-all;
}
.footer .wideget-contact-area a:hover {
  color: #fff;
}
/* footer style end */
/* footer-bottom style start */

.footer-bottom {
  padding: 10px 0;
  background: #010c17;
}
.footer-bottom p {
  padding-top: 10px;
  font-size: 18px;
  margin-bottom: 0;
}

/*# sourceMappingURL=theme.css.map */

.icon-angle-down {
  width: 19px;
  height: 19px;
  padding-left: 4px;
  fill: #fff;
}
.wpcf7-not-valid-tip {
  color: #000 !important;
}
.inner_banner {
  height: 400px;
  overflow: hidden;
  position: relative;	
}
.inner_banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.inner_banner_caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  text-align: center;
  width: 100%;
}

.inner_banner_caption h1 {
  font-size: 40px;
  color: #fff;
  margin: 0;
}

.inner_banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  right: 0;
  top: 0;
}
.servicessingelpage {
  padding: 60px 0;
}
.project-sec.inner-gallery {
  background: #fff;
}
.project-sec .theme-btn:before {
  background: #ffffff;
}
.project-sec .theme-btn:hover {
  color: #000;
}

/* Contact Style */

.msg_area form {
  padding: 50px 30px 50px 30px;
  background: #f85b05;
  border-radius: 10px;
  position: relative;
  height: 609px;
}
.msg_area form:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #012449;
  transform: rotate(-5deg);
  z-index: -1;
}
.msg_area form h3 {
  font-size: 25px;
}

.msg_area form input {
  background: #fff;
  border-radius: 6px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.msg_area form select {
  height: 60px;
  display: block !important;
  appearance: auto;
  border-radius: 6px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.msg_area form textarea {
  border-radius: 6px;
  padding-left: 20px;
  padding-top: 20px;
}
.msg_area form input[type='submit'] {
  display: flex;
  margin: auto;
  background: #000;
  text-align: center;
  border: 2px solid #fff;
  padding: 10px 50px;
  color: #fff;
  font-weight: 600;
  height: unset;
  margin-top: 14px;
}
.msg_area form input[type='submit'] {
  width: 40%;
  margin: auto;
  margin-top: 20px;
}
.msg_area {
  padding: 60px 0;
}
.home_map ul {
  padding-left: 0;
}
.home_map {
  background: #012449;
  padding: 30px;
}
.home_map ul li {
  list-style: none;
  display: flex;
  margin-bottom: 15px;
}
.home_map ul li i {
  padding-top: 10px;
  margin-right: 11px;
  color: #f85b05;
}
.home_map ul li a,
.home_map ul li p {
  color: #fff;
}
.home_map ul li h4 {
  color: #f85b05;
}
.home_map ul li p {
  margin-bottom: 0;
}

.servicessingelpage,
.contact-page {
  padding: 70px 0 120px;
}
.servicessingelpage ul li {
  position: relative;
}
.servicessingelpage ul li:before {
  content: '\f00c';
  color: #f85b05;
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  position: absolute;
  left: -30px;
}
.servicessingelpage img {
  float: right;
  width: 40%;
  margin: 0 0 15px 20px;
}
.servicessingelpage ul li {
  list-style: none;
}
.sticky-header--cloned
  .main-header__center__bottom
  .main-header-inner__logo
  a
  img {
  width: 100px;
}
.services_img{
float: none !important;
width: 100% !important;
margin: 0 0 15px 0 !important;	
}
