/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --flowtrack-font: 'DM Sans', sans-serif;
  --flowtrack-gray: #767676;
  --flowtrack-gray-rgb: 118, 118, 118;
  --flowtrack-white: #dddadaf5;
  --flowtrack-white-rgb: 255, 255, 255;
  --flowtrack-base: #011e75;
  --flowtrack-base-rgb: 29, 60, 152;
  --flowtrack-black: #191919;
  --flowtrack-black-rgb: 29, 29, 29;
  --flowtrack-primary: #1D3C98;
  --flowtrack-primary-rgb: 29, 60, 152;
  --flowtrack-extra: #eaeaef;
  --flowtrack-extra-rgb: 245, 245, 248;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--flowtrack-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--flowtrack-gray);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--flowtrack-base);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--flowtrack-font-two);
  color: var(--flowtrack-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}





/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: -100%;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--flowtrack-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup.popup-visible {
  left: 0px;
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--flowtrack-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  width: 100%;
  padding: 11px 40px 11px;
  border-radius: 5px;
  border: none;
}

.chat-popup .chat-form .form-group button:hover {
  color: var(--flowtrack-black);
}

.chat-popup .chat-form .form-group button.thm-btn::before {
  background: var(--flowtrack-white);
}

.chat-popup .chat-form .form-group button.thm-btn::after {
  background: var(--flowtrack-white);
}


.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--flowtrack-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--flowtrack-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}





.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--flowtrack-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--flowtrack-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--flowtrack-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

.section-separator {
  border-color: var(--flowtrack-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 62px;
  margin-top: -9px;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.016em;
}

.section-title__title {
  color: var(--flowtrack-black);
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  margin: 16px 0 0;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 14px;
  color: var(--flowtrack-white);
  text-transform: uppercase;
  padding: 15px 50px 15px;
  letter-spacing: 0.016em;
  background-color: var(--flowtrack-base);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.thm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--flowtrack-primary);
  background-position: left center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(0);
  z-index: -1;
}

.thm-btn:hover::before {
  transform: scaleX(1.0);
}

.thm-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--flowtrack-black);
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: right center;
  z-index: -1;
}

.thm-btn:hover::after {
  transform: scaleY(1.0);
  transform-origin: bottom center;
  transition-delay: 200ms;
}

.thm-btn:hover {
  color: var(--flowtrack-white);
}

.thm-btn span {
  position: relative;
  margin-left: 10px;
  font-size: 12px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.menu-li-span {
  margin-left: 6px;
  margin-top: 2px;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--flowtrack-base);
  color: var(--flowtrack-white);
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 12px;
  color: #ffffff;
  text-transform: uppercase;
  background: var(--flowtrack-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--flowtrack-base);
  color: var(--flowtrack-white);
  cursor: pointer;
}


/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e4e4e4;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--flowtrack-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--flowtrack-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--flowtrack-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}




/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--flowtrack-black);
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 0;
}

.scroll-to-top i {
  color: var(--flowtrack-white);
  font-size: 18px;
  line-height: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--flowtrack-base);
}

.scroll-to-top:hover i {
  color: var(--flowtrack-white);
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.html),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #dcdcdc;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--flowtrack-base);
  border-color: var(--flowtrack-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--flowtrack-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--flowtrack-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:before {
  background-color: var(--flowtrack-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 60px 0px;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 60px;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 20px;
  color: var(--flowtrack-white);
}

.main-menu__contact-list li .text {
  margin-left: 15px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  color: var(--flowtrack-white);
}

.main-menu__contact-list li .text p a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--flowtrack-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__social-box {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__social-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: -1000000px;
  left: 100%;
  bottom: 0;
  background-color: var(--flowtrack-primary);
  z-index: -1;
}

.main-menu__social-box-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--flowtrack-primary);
  padding-left: 80px;
  padding-top: 17px;
  padding-bottom: 17px;
  gap: 30px;
  clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
}

.main-menu__social-box-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--flowtrack-black);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--flowtrack-base);
}

.main-menu__social a+a {
  margin-left: 15px;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0px;
  z-index: 1;
}

.main-menu__left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__logo {
  position: relative;
  display: block;
  margin-right: 30px;
  z-index: 1;
}

.main-menu__logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  right: 100%;
  bottom: 0;
  background-color: var(--flowtrack-base);
}

.main-menu__logo a {
  position: relative;
  display: block;
  padding: 32px 0;
  padding-right: 150px;
  background-color: var(--flowtrack-base);
  clip-path: polygon(0 0, 100% 0%, 76% 100%, 0% 100%);
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.main-menu__search-cart-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__search-box {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
}

.main-menu__search-form {
  position: relative;
  display: block;
}

.main-menu__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: var(--flowtrack-extra);
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 60px;
  height: 60px;
  width: 100%;
  border: 0;
  color: var(--flowtrack-gray);
  border-radius: 0;
}

.main-menu__search-form button[type="submit"] {
  color: var(--flowtrack-black);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50px;
  width: 100%;
  bottom: 0;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search-form button[type="submit"]:hover {
  color: var(--flowtrack-base);
}

.main-menu__cart-box {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-box:hover {
  color: var(--flowtrack-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__btn {
  padding: 15px 45px 15px;
}



.stricky-header.main-menu {
  background-color: var(--flowtrack-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 35px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--flowtrack-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li.current2>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li.current2>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--flowtrack-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--flowtrack-base);
  position: absolute;
  bottom: 4px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #dfdfdf;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: var(--flowtrack-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 10px 8px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: var(--flowtrack-base);
  padding-left: 20px;
  background-color: var(--flowtrack-extra);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  display: none;
  background-color: #ffffff;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--flowtrack-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--flowtrack-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--flowtrack-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--flowtrack-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--flowtrack-black);
  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;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--flowtrack-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--flowtrack-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--flowtrack-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--flowtrack-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--flowtrack-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--flowtrack-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--flowtrack-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--flowtrack-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--flowtrack-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--flowtrack-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--flowtrack-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--flowtrack-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 27px 0;
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 20px 0;
}

.main-menu-two__top-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-menu-two__top-icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 42px;
  color: var(--flowtrack-base);
  top: 3px;
}

.main-menu-two__top-icon-content {
  position: relative;
  display: block;
}

.main-menu-two__top-icon-content p {
  line-height: 26px;
}

.main-menu-two__top-icon-content h6 {
  font-size: 16px;
  color: var(--flowtrack-white);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-menu-two__social:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -30px;
  bottom: -5px;
  width: 1px;
  background-color: #353535;
}

.main-menu-two__social:after {
  content: "";
  position: absolute;
  top: -5px;
  right: -30px;
  bottom: -5px;
  width: 1px;
  background-color: #353535;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: #292929;
  font-size: 16px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__social a:hover {
  color: var(--flowtrack-primary);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn:hover {
  color: var(--flowtrack-base);
}

.main-menu-two__btn::after {
  background-color: var(--flowtrack-white);
}



.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__main-menu-two-box {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__cart-search-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 15px 0;
}

.main-menu-two__cart-search-box .main-menu__search-form input[type="search"] {
  height: 50px;
}

.stricky-header.main-menu-two {
  background-color: var(--flowtrack-white);
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 25px;
  padding-bottom: 25px;
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 60px 0px;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li+li {
  margin-left: 60px;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 20px;
  color: var(--flowtrack-white);
}

.main-menu-three__contact-list li .text {
  margin-left: 15px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--flowtrack-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--flowtrack-base);
}

.main-menu-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__social-box {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__social-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  left: 100%;
  bottom: 0;
  background-color: var(--flowtrack-primary);
  z-index: -1;
}

.main-menu-three__social-box-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--flowtrack-primary);
  padding-left: 55px;
  gap: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 8% 50%);
}

.main-menu-three__social-box-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--flowtrack-white);
  height: 50px;
  width: 44px;
  background-color: #0866ff;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:nth-child(2) {
  background-color: #a230b9;
}

.main-menu-three__social a:nth-child(3) {
  background-color: #d54f43;
}

.main-menu-three__social a:nth-child(4) {
  background-color: #1da1f2;
}

.main-menu-three__social a:hover {
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-base);
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
  z-index: 1;
}

.main-menu-three__left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  margin-right: 55px;
  z-index: 1;
}

.main-menu-three__logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  right: 100%;
  bottom: 0;
  background-color: #1D3C98;
}

.main-menu-three__logo a {
  position: relative;
  display: block;
  padding: 32px 0;
  padding-right: 85px;
  background-color: #1D3C98;
}

.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.main-menu-three__btn {
  background-color: var(--flowtrack-black);
}

.main-menu-three__btn:after {
  background-color: var(--flowtrack-base);
}


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--flowtrack-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:after {
  background-color: var(--flowtrack-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--flowtrack-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--flowtrack-white);
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider .item {
  position: relative;
  padding-top: 211px;
  padding-bottom: 220px;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.84) 30%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
}

.active .main-slider__bg {
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}


.main-slider__shape-1 {
  position: absolute;
  top: 0;
  left: 102px;
  z-index: 1;
}

.main-slider__shape-1 img {
  width: auto !important;
}

.main-slider__shape-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: .40;
  z-index: 1;
}

.main-slider__shape-2 img {
  width: auto !important;
}

.main-slider__shape-3 {
  position: absolute;
  top: 0;
  left: 229px;
  opacity: 0.04;
  z-index: 1;
}

.main-slider__shape-3 img {
  width: auto !important;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: var(--flowtrack-primary);
  text-transform: uppercase;
  letter-spacing: -0.016em;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
}

.main-slider__title {
  position: relative;
  font-size: 70px;
  color: var(--flowtrack-white);
  font-weight: 700;
  line-height: 86px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 19px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}

.main-slider__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 45px;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider__btn {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.main-slider__btn:hover {
  color: var(--flowtrack-base);
}

.main-slider__btn:before {
  background-color: var(--flowtrack-base);
}

.main-slider__btn:after {
  background-color: var(--flowtrack-white);
}

.main-slider__video-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
}

.main-slider__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 17px;
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider__video-icon:hover {
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-base);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider__video-text {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--flowtrack-white);
  line-height: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 20px;
}

.active .main-slider__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.active .main-slider__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.active .main-slider__btn-and-video-box {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 56%;
  left: 0;
  right: 0;
  padding: 0 80px;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-top: 15px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(var(--flowtrack-white-rgb), 1);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--flowtrack-white-rgb), 0);
  border: 2px solid var(--flowtrack-white);
}






/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 130px 0 130px;
  background: var(--flowtrack-black);
  overflow: hidden;
  z-index: 5;
}

.banner-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.banner-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.84) 30%, rgba(0, 0, 0, 0.3) 67%, rgba(0, 0, 0, 0.9) 100%);
  content: "";
}










.banner-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .90;
  z-index: -1;
}

.banner-one__shape-1 img {
  width: auto;
  opacity: 0.10;
}

.banner-one__left {
  position: relative;
  display: block;
}

.banner-one__tagline {
  position: relative;
  display: block;
}

.banner-one__tagline span {
  color: var(--flowtrack-primary);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.016em;
}

.banner-one__title-box {
  position: relative;
  display: block;
}

.banner-one__title {
  color: var(--flowtrack-white);
  font-size: 80px;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: -0.04em;
  margin-top: 10px;
}

.banner-one__text {
  color: var(--flowtrack-white);
  font-size: 18px;
  line-height: 28px;
  margin-top: 28px;
  margin-bottom: 41px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
}

.banner-one__btn-box .thm-btn {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.banner-one__btn-box .thm-btn:hover {
  color: var(--flowtrack-black);
}

.banner-one__btn-box .thm-btn::after {
  background-color: var(--flowtrack-white);
}

.banner-one__btn-box .thm-btn::before {
  background-color: var(--flowtrack-base);
}

.banner-one__satisfied-partner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 65px;
}

.banner-one__satisfied-partner-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-one__satisfied-partner-list li {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-list li+li {
  margin-left: -12px;
}

.banner-one__satisfied-partner-img {
  position: relative;
  display: block;
  max-width: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-one__satisfied-partner-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid rgba(var(--flowtrack-white-rgb), 0.5);
}

.banner-one__satisfied-partner-content {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-content .odometer-formatting-mark {
  display: none;
}

.banner-one__satisfied-partner-count-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 7px;
}

.banner-one__satisfied-partner-count-box p {
  font-size: 24px;
  color: var(--flowtrack-white);
  font-weight: 700;
  line-height: 24px !important;
}

.banner-one__satisfied-partner-count-box span {
  font-size: 24px;
  color: var(--flowtrack-white);
  font-weight: 700;
  line-height: 24px;
}

.banner-one__satisfied-partner-text {
  color: var(--flowtrack-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}

.banner-one__google-rating {
  position: absolute;
  bottom: 0;
  right: 50px;
  border: 1px solid rgba(var(--flowtrack-white-rgb), 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) -21.0%, rgba(0, 0, 0, 0.1) 98.75%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 9px;
  padding: 20px 20px 20px;
  max-width: 192px;
  width: 100%;
}

.banner-one__google-rating-img {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.banner-one__google-rating-img img {
  width: auto;
}

.banner-one__google-rating-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.banner-one__google-rating-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.banner-one__google-rating-star span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--flowtrack-base);
}

.banner-one__google-rating-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.banner-one__google-rating-count p {
  font-size: 18px;
  color: var(--flowtrack-white);
  font-weight: 500;
}

.banner-one__google-rating-count span {
  font-size: 18px;
  color: var(--flowtrack-white);
  font-weight: 500;
}



.banner-one__right {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-right: -80px;
}

.banner-one__form-box {
  position: relative;
  display: block;
  padding: 58px 40px 58px;
  border-radius: 0px;
  border: 1px solid rgba(var(--flowtrack-white-rgb), 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) -21.0%, rgba(0, 0, 0, 0.1) 98.75%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.banner-one__form {
  position: relative;
  display: block;
}

.banner-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.banner-one__form .input-box .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.banner-one__form .input-box .icon span::before {
  position: relative;
  display: inline-block;
  color: rgba(var(--flowtrack-white-rgb), .70);
  font-size: 15px;
}

.banner-one__form .input-box input[type="text"],
.banner-one__form .input-box input[type="email"] {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background: rgba(var(--flowtrack-white-rgb), .08);
  border: 1px solid rgba(var(--flowtrack-white-rgb), .20);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--flowtrack-white-rgb), .70);
  border-radius: 0px;
  font-family: var(--flowtrack-font);
}

.banner-one__form .input-box .select-box {
  width: 100%;
}

.banner-one__form .input-box .nice-select {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background: rgba(var(--flowtrack-white-rgb), .08);
  border: 1px solid rgba(var(--flowtrack-white-rgb), .20);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  line-height: 48px;
  font-weight: 400;
  color: rgba(var(--flowtrack-white-rgb), .70);
  border-radius: 2px;
  font-family: var(--flowtrack-font);
  float: none;
}

.banner-one__form .input-box .nice-select:after {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid rgba(var(--flowtrack-white-rgb), .70);
  border-right: 1px solid rgba(var(--flowtrack-white-rgb), .70);
  margin-top: 0px;
  z-index: 10;
}

.banner-one__form .input-box .nice-select .option {
  color: var(--flowtrack-white);
}

.banner-one__form .input-box textarea {
  position: relative;
  display: block;
  background: rgba(var(--flowtrack-white-rgb), .08);
  border: 1px solid rgba(var(--flowtrack-white-rgb), .20);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--flowtrack-white-rgb), .70);
  border-radius: 2px;
  font-family: var(--flowtrack-font);
  width: 100%;
  height: 150px;
  padding-top: 11px;
  outline: none;
  resize: none;
}

.banner-one__form .input-box .icon.style2 {
  top: 11%;
  transform: translateY(0%);
}

.banner-one__form-btn {
  position: relative;
  display: block;
}

.banner-one__form-btn .thm-btn {
  border: none;
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.banner-one__form-btn .thm-btn:hover {
  color: var(--flowtrack-black);
}

.banner-one__form-btn .thm-btn::after {
  background-color: var(--flowtrack-white);
}

.banner-one__form-btn .thm-btn::before {
  background-color: var(--flowtrack-base);
}


/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 2;
}

.main-slider-three .item {
  position: relative;
  padding-top: 249px;
  padding-bottom: 256px;
  z-index: 2;
}

.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 18, 44, .75);
  z-index: -1;
}

.active .main-slider-three__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider-three__shape-1 {
  position: absolute;
  top: -8px;
  left: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-300px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-300px);
  transform: perspective(400px) rotateY(0deg) translateX(-300px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-three__shape-1 img {
  width: auto !important;
}

.active .main-slider-three__shape-1 {
  opacity: .16;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three__shape-2 {
  position: absolute;
  top: 0;
  left: 164px;
  mix-blend-mode: difference;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-300px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-300px);
  transform: perspective(400px) rotateY(0deg) translateX(-300px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-three__shape-2 img {
  width: auto !important;
  mix-blend-mode: difference;
}

.active .main-slider-three__shape-2 {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-three__shape-3 {
  position: absolute;
  top: -18px;
  right: 64px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(300px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(300px);
  transform: perspective(400px) rotateY(0deg) translateX(300px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-three__shape-3 img {
  width: auto !important;
}

.active .main-slider-three__shape-3 {
  opacity: .40;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(300px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(300px);
  transform: perspective(400px) rotateY(0deg) translateX(300px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-three__shape-4 img {
  width: auto !important;
}

.active .main-slider-three__shape-4 {
  opacity: .40;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-three__content {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  z-index: 10;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: var(--flowtrack-primary);
  text-transform: uppercase;
  letter-spacing: -0.016em;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-200px);
}

.main-slider-three__title {
  position: relative;
  font-size: 80px;
  color: var(--flowtrack-white);
  font-weight: 700;
  line-height: 86px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 11px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-200px);
}

.main-slider-three__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.main-slider-three__btn-1 {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.main-slider-three__btn-1:before {
  background-color: var(--flowtrack-base);
}

.active .main-slider-three__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.active .main-slider-three__btn-box {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}


.main-slider-three .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
}

.main-slider-three .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-left: 15px;
}

.main-slider-three .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(var(--flowtrack-white-rgb), 1);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-three .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-three .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--flowtrack-white-rgb), 0);
  border: 2px solid var(--flowtrack-white);
}





/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;

  z-index: 1;
}

.brand-one .container {
  max-width: 1350px;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  max-width: 100%;
  opacity: 0.82;
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.about-one__shape-2 {
  position: absolute;
  top: 94px;
  left: 77px;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__shape-3 {
  position: absolute;
  top: 214px;
  right: 0;
  z-index: -1;
}

.about-one__shape-3 img {
  width: auto;
}

.about-one__left {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-right: 192px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img img {
  width: 100%;
}

.about-one__img-2 {
  position: absolute;
  bottom: -134px;
  right: -200px;
}

.about-one__img-2 img {
  width: auto;
}

.about-one__shape-1 {
  position: absolute;
  bottom: -126px;
  left: 123px;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__round-text-box {
  position: absolute;
  top: 65px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--flowtrack-base);
  z-index: 5;
}

.about-one__round-text-box-inner {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
}

.about-one__curved-circle {
  position: absolute;
  top: 4px;
  left: 0px;
  bottom: 0;
  right: 0;
  color: var(--flowtrack-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0px;
  word-spacing: -1px;
  transform: rotate(0deg);
  height: 170px !important;
}

.about-one__round-text-play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__round-text-play i {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--flowtrack-white);
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 52px;
  margin-top: -13px;
}

.about-one__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.about-one__text {
  margin-top: 16px;
  margin-bottom: 38px;
}

.about-one__points {
  position: relative;
  display: block;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(18, 14, 14, 0.04);
  padding: 14px 30px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__points li:hover {
  box-shadow: none;
}

.about-one__points li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-image: -moz-linear-gradient(156deg, rgb(255, 150, 99) 0%, rgb(255, 115, 114) 38%, rgb(255, 80, 128) 100%);
  background-image: -webkit-linear-gradient(156deg, rgb(255, 150, 99) 0%, rgb(255, 115, 114) 38%, rgb(255, 80, 128) 100%);
  background-image: -ms-linear-gradient(156deg, rgb(255, 150, 99) 0%, rgb(255, 115, 114) 38%, rgb(255, 80, 128) 100%);
  background-position: left center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(0);
}

.about-one__points li:hover::before {
  transform: scaleX(1.0);
}

.about-one__points li+li {
  margin-top: 20px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--flowtrack-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-one__points li:hover .icon span {
  transform: scale(0.9);
  color: var(--flowtrack-base);
}

.about-one__points li .content {
  position: relative;
  display: block;
  margin-left: 25px;
}

.about-one__points li .content>h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.016em;
}

.about-one__points li .content>p {
  line-height: 26px;
  margin-top: 1px;
}

.about-one__btn-and-client-img {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 55px;
}

.about-one__btn-box {
  position: relative;
  display: block;
}

.about-one__client-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 60px;
}

.about-one__client-img {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.about-one__client-img img {
  width: 100%;
  border: 2px solid var(--flowtrack-base);
  border-radius: 50%;
}

.about-one__client-signature {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-one__client-signature img {
  width: auto;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 120px 0 110px;
  z-index: 1;
}

.services-one__bg-shape {
  position: absolute;
  top: -150px;
  left: 20px;
  z-index: 1;
}

.services-one__bg-shape img {
  width: auto;
}

.services-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-one .container {
  max-width: 1600px;
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-one__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--flowtrack-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img::before {
  opacity: .60;
}

.services-one__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
}

.services-one__title-box {
  position: relative;
  display: block;
  padding: 32px 40px 25px;
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.02em;
}

.services-one__title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title a:hover {
  color: var(--flowtrack-base);
}

.services-one__text {
  line-height: 26px;
  margin-top: 7px;
}

.services-one__read-more {
  position: relative;
  display: block;
}

.services-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.016em;
  color: var(--flowtrack-black);
  background-color: #1D3C98;
  padding: 8px 40px 8px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__read-more a {
  color: var(--flowtrack-white);
}

.services-one__read-more a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-one__single:hover .services-one__read-more a::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-one__icon-box {
  position: absolute;
  bottom: -40px;
  right: 30px;
  z-index: 2;
}

.services-one__icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f8;
  overflow: hidden;
  z-index: 1;
}

.services-one__icon-box::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 0;
  border-top: 40px solid #e0e0e7;
  border-right: 30px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon-box::before {
  border-top: 40px solid #ad0b12;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
  color: var(--flowtrack-white);
}

.services-one__icon::after {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--flowtrack-base);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.services-one__single:hover .services-one__icon::after {
  top: -40%;
}

.services-one__bottom-text {
  text-align: center;
  padding-top: 21px;
}

.services-one__bottom-text a {
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__bottom-text a:hover {
  color: var(--flowtrack-black);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  padding: 0px 0 0px;
  z-index: 1;
}

.why-choose-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  width: calc((100% - 90px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.why-choose-one__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--flowtrack-black-rgb), .70);
}

.why-choose-one__left {
  position: relative;
  display: block;
  min-height: 760px;
}

.why-choose-one__img {
  position: absolute;
  right: 200px;
  bottom: 0;
}

.why-choose-one__img img {
  width: auto;
}

.why-choose-one__count-box {
  position: absolute;
  top: 0px;
  right: 30px;
  max-width: 235px;
  width: 100%;
  text-align: center;
  background-color: var(--flowtrack-base);
  padding: 61px 30px 54px;
  z-index: -1;
}

.why-choose-one__count-icon {
  position: relative;
  display: inline-block;
}

.why-choose-one__count-icon span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: var(--flowtrack-white);
}

.why-choose-one__count-inner {
  position: relative;
  display: block;
}

.why-choose-one__count {
  position: relative;
  display: block;
  margin-top: 3px;
  margin-bottom: 10px;
}

.why-choose-one__count>h3 {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  color: var(--flowtrack-white);
  letter-spacing: -0.04em;
}

.why-choose-one__count-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--flowtrack-white);
  letter-spacing: -0.016em;
}

.why-choose-one__right {
  position: relative;
  display: block;
  padding: 105px 0;
}

.why-choose-one__right .section-title {
  margin-bottom: 30px;
}

.why-choose-one__progress-list {
  position: relative;
  display: block;
  margin-top: 42px;
  margin-bottom: 56px;
}

.why-choose-one__progress-list li {
  position: relative;
  display: block;
}

.why-choose-one__progress-list li+li {
  margin-top: 42px;
}

.progress-levels .progress-box {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  margin-left: 120px;
}

.progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.progress-levels .progress-box .bar {
  position: relative;
  display: block;
  z-index: 1;
}

.progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 0;
  background-color: var(--flowtrack-gray);
}

.progress-levels .progress-box .bar .bar-fill {
  position: relative;
  width: 0px;
  height: 2px;
  border-radius: 0px;
  background-color: var(--flowtrack-base);
  transition: all 2000ms ease 300ms;
}

.progress-levels .progress-box .bar .bar-fill:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0px;
  height: 12px;
  width: 2px;
  background-color: var(--flowtrack-base);
  z-index: 1;
}

.progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: -15px;
  right: -59px;
  width: 40px;
  height: 20px;
  display: block;
  text-align: center;
  padding: 0;
  z-index: 1;
}

.progress-levels .progress-box .inner .count-text {
  position: relative;
  color: var(--flowtrack-gray);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  display: inline-block;
  float: none;
}

.progress-levels .progress-box .inner .percent {
  position: relative;
  color: var(--flowtrack-gray);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  display: inline-block;
  float: none;
  margin-left: -2px;
}

.progress-levels .progress-box .inner .text {
  position: absolute;
  top: -7px;
  left: -120px;
  font-size: 16px;
  font-weight: 700;
  color: var(--flowtrack-black);
  line-height: 16px;
}

.why-choose-one__points {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__points li+li {
  margin-left: 75px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: var(--flowtrack-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon {
  background-color: var(--flowtrack-primary);
}

.why-choose-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--flowtrack-black);
}

.why-choose-one__points li .text {
  position: relative;
  display: block;
  margin-left: 20px;
}

.why-choose-one__points li .text p {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
}

.why-choose-one__bottom-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--flowtrack-black);
  margin-top: 48px;
}

.why-choose-one__bottom-text a {
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__bottom-text a:hover {
  color: var(--flowtrack-black);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);

  overflow: hidden;
  z-index: 1;
}

.counter-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -30px;
  opacity: 0.60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-one__inner {
  position: relative;
  display: block;
}

.counter-one__count-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-one__count-list li {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 22px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(var(--flowtrack-white-rgb), .40);
  border-radius: 50%;
  transition: all 500ms linear;
  margin: 0 auto;
  z-index: 1;
}

.counter-one__count-list li:hover .counter-one__icon {
  border: 1px dashed transparent;
}

.counter-one__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-primary);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.counter-one__count-list li:hover .counter-one__icon::before {
  transform: scaleX(1);
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--flowtrack-primary);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__count-list li:hover .counter-one__icon span {
  transform: scale(0.9);
  color: var(--flowtrack-black);
}

.counter-one__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 3px;
}

.counter-one__count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.counter-one__count span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.counter-one__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--flowtrack-white);
}

.counter-one__shape-1 {
  position: absolute;
  top: 2px;
  left: 0;
  border-top: 205px solid transparent;
  border-left: 232px solid var(--flowtrack-primary);
  border-bottom: 205px solid transparent;
}

.counter-one__shape-2 {
  position: absolute;
  bottom: -10px;
  left: -53px;
  border-right: 202px solid red;
  border-top: 173px solid transparent;
}


/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;

  z-index: 1;
}

.project-one__shape-1 {
  position: absolute;
  top: 168px;
  right: 20px;
  z-index: -1;
}

.project-one__shape-1 img {
  width: auto;
}

.project-one__bg-color {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - 584px) /3);
  background-color: var(--flowtrack-primary);
  z-index: -1;
}

.project-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
}

.project-one__top .section-title {
  margin-bottom: 0px;
}

.project-one__btn-box {
  position: relative;
  display: block;
}

.project-one__bottom {
  position: relative;
  display: block;
}

.project-one__bottom .container {
  max-width: 1730px;
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-one__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(90deg, rgb(2, 7, 35) 0%, rgba(2, 7, 35, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(2, 7, 35) 0%, rgba(2, 7, 35, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(2, 7, 35) 0%, rgba(2, 7, 35, 0) 100%);
  z-index: 1;
}

.project-one__img img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05) rotate(0deg);
}
.project-one__content {
  position: absolute;
  bottom: 33px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.project-one__title-box {
  position: relative;
  display: block;
  padding-left: 10px;
}

.project-one__title-box::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 7px;
  width: 2px;
  background-color: var(--flowtrack-base);
}

.project-one__sub-title {
  color: var(--flowtrack-primary);
}

.project-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.project-one__title a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__title a:hover {
  color: var(--flowtrack-base);
}

.project-one__arrow {
  position: relative;
  display: block;
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--flowtrack-base);
  font-size: 16px;
  color: var(--flowtrack-white);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__arrow a:hover {
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  padding: 100px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.contact-one__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 750px;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: .95;
}

.contact-one__shape-2 img {
  width: auto;
}

.contact-one__shape-4 {
  position: absolute;
  bottom: 0;
  left: 97px;
  opacity: 0.10;
  z-index: -1;
}

.contact-one__shape-4 img {
  width: auto;
}

.contact-one__shape-5 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.12;
  z-index: -1;
}

.contact-one__shape-5 img {
  width: auto;
}

.contact-one__shape-6 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -1;
}

.contact-one__shape-6 img {
  width: auto;
}

.contact-one__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  width: calc((100% - -272px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-one__bg-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--flowtrack-black-rgb), .70);
}

.contact-one__left {
  position: relative;
  display: block;
  min-height: 675px;
  z-index: 2;
}

.contact-one__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.contact-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 18px;
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.contact-one__video-icon:hover {
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-base);
}

.contact-one__video-link .ripple,
.contact-one__video-icon .ripple:before,
.contact-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.contact-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.contact-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: 40px;
  z-index: 1;
}

.contact-one__content {
  position: relative;
  display: block;
  padding: 35px 50px 44px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
}

.contact-one__tagline {
  font-weight: 500;
  color: var(--flowtrack-base);
}

.contact-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.018em;
  margin-bottom: 23px;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__content-box {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: 0;
  background-color: var(--flowtrack-extra);
  outline: none;
  font-size: 16px;
  color: var(--flowtrack-gray);
  font-weight: 400;
  padding: 0 30px 0;
}

.contact-one__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 40px;
  padding-top: 6px;
}

.contact-one__progress-single {
  position: relative;
  display: block;
}

.contact-one__progress-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-one__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--flowtrack-extra);
  border: 0;
}

.contact-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  top: 0;
  left: 0;
  background-color: var(--flowtrack-primary);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.contact-one__progress .count-text {
  position: absolute;
  right: -3px;
  bottom: -4px;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--flowtrack-primary);
  border: 3px solid var(--flowtrack-black);
  width: 18px;
  height: 18px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.contact-one__content-bottom {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-one__btn {
  border: none;
}

.contact-one__content-bottom-text-box {
  position: relative;
  display: block;
}

.contact-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__count h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  font-family: var(--flowtrack-font);
}

.contact-one__count span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--flowtrack-black);
}

.contact-one__count-box p {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--flowtrack-black);
  margin-left: 4px;
}

.contact-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.contact-one__ratting span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--flowtrack-primary);
}

.contact-one__ratting span+span {
  margin-left: 3px;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 124px;
  z-index: 1;
}

.team-one__bottom {
  position: relative;
  display: block;
}

.team-one__carousel {
  position: relative;
  display: block;
}

.team-one__single {
  position: relative;
  display: block;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-one__img:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease-out;
  background-color: rgba(1, 13, 40, .90);
}

.team-one__single:hover:hover .team-one__img:after {
  opacity: 1
}

.team-one__img img {
  width: 100%;
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.27, .48, .45, .94);
  transform-origin: 70% 80%
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.036);
  transition-duration: .9s
}

.team-one__content {
  position: relative;
  display: block;
  padding: 15px 20px 0;
}

.team-one__share-and-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.team-one__share {
  position: relative;
  display: block;
}

.team-one__share>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
}

.team-one__social {
  position: absolute;
  right: 55px;
  top: 50%;
  display: flex;
  align-items: center;
  transform: scaleX(0.0) translateY(-50%);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: left center;
}

.team-one__share-and-social:hover .team-one__social {
  transform: scaleX(1.0) translateY(-50%);
  transform-origin: left center;
  transition-delay: 500ms;
}

.team-one__social>a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social>a:hover {
  color: var(--flowtrack-primary);
}

.team-one__social>a+a {
  margin-left: 12px;
}

.team-one__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.016em;
}

.team-one__name>a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__name>a:hover {
  color: var(--flowtrack-base);
}

.team-one__carousel.owl-carousel .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 57px 0 0 !important;
}

.team-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #a7a7a7;
  margin: 0px 10px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.team-one__carousel.owl-carousel .owl-dot.active {
  background-color: var(--flowtrack-base);
}

.team-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  content: "";
  border: 1px solid var(--flowtrack-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.team-one__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.team-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.team-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Work Steps One
--------------------------------------------------------------*/
.work-steps-one {
  position: relative;
  display: block;

  background-color: #f4f4f4;
  counter-reset: count;
  z-index: 1;
}

.work-steps-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.80;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.work-steps-one__shape-5 {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: -1;
}

.work-steps-one__shape-5 img {
  width: auto;
}

.work-steps-one .section-title {
  margin-bottom: 127px;
}

.work-steps-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.work-steps-one__shape-4 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.work-steps-one__shape-4 img {
  width: auto;
}

.work-steps-one__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-steps-one__list li {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 21px;
}

.work-steps-one__icon {
  position: relative;
  display: inline-block;
}

.work-steps-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 68px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  z-index: 2;
}

.work-steps-one__list li:hover .work-steps-one__icon span {
  transform: scale(0.9);
  color: var(--flowtrack-black);
}

.work-steps-one__count {
  position: absolute;
  top: -40px;
  right: -45px;
  z-index: 2;
}

.work-steps-one__count:before {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  color: var(--flowtrack-white);
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.work-steps-one__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.016em;
  margin-top: 65px;
}

.work-steps-one__text a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.work-steps-one__text a:hover {
  color: var(--flowtrack-base);
}

.work-steps-one__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.work-steps-one__shape-1 img {
  width: auto;
}

.work-steps-one__shape-2 {
  display: none;
}

.work-steps-one__shape-3 {
  display: none;
}


/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
  padding: 120px 0 108px;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.35;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 62px;
}

.testimonial-one__top .section-title {
  margin-bottom: 0;
}

.testimonial-one__top .section-title__title {
  color: var(--flowtrack-white);
}

.testimonial-one__top .section-title__tagline {
  color: var(--flowtrack-primary);
}

.testimonial-one__btn-box {
  position: relative;
  display: block;
}

.testimonial-one__btn {
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
}

.testimonial-one__btn::before {
  background-color: var(--flowtrack-base);
}

.testimonial-one__btn::after {
  background-color: var(--flowtrack-white);
}

.testimonial-one__btn:hover {
  color: var(--flowtrack-primary);
}

.testimonial-one__bottom {
  position: relative;
  display: block;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  text-align: center;
}

.testimonial-one__quote-box {
  position: relative;
  display: block;
}

.testimonial-one__quote {
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  z-index: 2;
}

.testimonial-one__single:hover .testimonial-one__quote {
  opacity: 0;
}

.testimonial-one__quote>img {
  width: auto;
}

.testimonial-one__quote-2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.testimonial-one__single:hover .testimonial-one__quote-2 {
  opacity: 1;
}

.testimonial-one__quote-2>img {
  width: auto;
}

.testimonial-one__text-box {
  position: relative;
  display: block;
  background-color: rgb(39, 38, 38);
  box-shadow: 0px 0px 60px 0px rgba(18, 20, 31, 0.06);
  padding: 49px 30px 76px;
  margin-top: -32px;
  z-index: 1;
}

.testimonial-one__text-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scaleX(0.7) rotateX(20deg);
  transition: all 0.4s linear;
  z-index: -1;
}

.testimonial-one__single:hover .testimonial-one__text-box-bg {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0.60;
}

.testimonial-one__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.testimonial-one__single:hover .testimonial-one__text-box::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.testimonial-one__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__text {
  color: var(--flowtrack-white);
}

.testimonial-one__client-info {
  position: relative;
  display: block;
  margin-top: -40px;
  z-index: 2;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  max-width: 65px;
  width: 100%;
  margin: 0 auto;
  border-radius: 50%;
}

.testimonial-one__client-img::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 8px solid #1d1d1d;
  border-radius: 50%;
}

.testimonial-one__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.016em;
  margin-top: 18px;
}

.testimonial-one__client-name a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__client-name a:hover {
  color: var(--flowtrack-base);
}

.testimonial-one__client-sub-title {
  position: relative;
  top: -2px;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}


/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  z-index: 2;
}

.cta-one .container {
  max-width: 1450px;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.1);
  padding: 58px 125px 58px;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .70;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-one__title-box {
  position: relative;
  display: block;
}

.cta-one__title-box h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.04em;
}

.cta-one__title-box p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.016em;
  margin-top: 14px;
}

.cta-one__btn-box {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
  margin-top: -100px;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  top: 100px;
  right: 0;
  opacity: .16;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__shape-2 {
  position: absolute;
  bottom: 124px;
  left: 50px;
  opacity: 0.06;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.site-footer__shape-2 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 210px 0 110px;
}

.site-footer__top-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__logo {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: #abafb5;
  margin-top: 30px;
  margin-bottom: 16px;
  line-height: 26px;
}

.footer-widget__emergency-call {
  position: relative;
  display: block;
}

.footer-widget__emergency-call p {
  color: #a5a5a5;
  font-weight: 500;
}

.footer-widget__emergency-call a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--flowtrack-white);
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__emergency-call a:hover {
  color: var(--flowtrack-primary);
}

.footer-widget__emergency-mail {
  color: #a5a5a5;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
  margin-top: 15px;
}

.footer-widget__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 25px;
  color: var(--flowtrack-white);
  letter-spacing: -0.016em;
}

.footer-widget__navigation {
  position: relative;
  display: block;
  margin-left: 70px;
}

.footer-widget__navigation-list {
  position: relative;
  display: block;
}

.footer-widget__navigation-list li {
  position: relative;
  display: block;
}

.footer-widget__navigation-list li+li {
  margin-top: 8px;
}

.footer-widget__navigation-list li a {
  color: #a5a5a5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__navigation-list li a:before {
  content: "\f067";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  color: var(--flowtrack-primary);
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__navigation-list li a:hover:before {
  opacity: 1;
}

.footer-widget__navigation-list li a:hover {
  color: var(--flowtrack-primary);
  padding-left: 15px;
}

.footer-widget__quick-link {
  position: relative;
  display: block;
  margin-left: 24px;
}

.footer-widget__newsletter {
  position: relative;
  display: block;
  margin-left: 64px;
}

.footer-widget__newsletter .footer-widget__title-box {
  margin-bottom: 32px;
}

.footer-widget__newsletter-text {
  line-height: 26px;
  color: #a5a5a5;
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
  margin-top: 25px;
}

.footer-widget__newsletter-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--flowtrack-gray);
  padding-right: 75px;
  padding-left: 30px;
  background-color: var(--flowtrack-white);
  border-radius: 30px;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 54px;
  height: 54px;
  border: 0;
  background-color: var(--flowtrack-primary);
  transition: all 500ms ease;
  padding: 0;
  font-size: 18px;
  color: var(--flowtrack-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__newsletter-btn:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-black);
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid #32353b;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  padding: 14px 0 23px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer__bottom-text {
  color: #bfbfbf;
  font-weight: 500;
}

.site-footer__bottom-text a {
  color: var(--flowtrack-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--flowtrack-white);
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  height: 38px;
  width: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--flowtrack-white);
  background-color: #292929;
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--flowtrack-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0 110px;
  z-index: 1;
}

.services-two__left {
  position: relative;
  display: block;
  margin-right: -10px;
}

.services-two__left .section-title {
  margin-bottom: 18px;
}

.services-two__btn-box {
  position: relative;
  display: block;
  margin-top: 50px;
}

.services-two__right {
  position: relative;
  display: block;
  margin-left: 30px;
  z-index: 1;
}

.services-two__shape-2 {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: -1;
}

.services-two__right .row {
  --bs-gutter-x: 10px;
}

.services-two__single {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  text-align: center;
  padding: 50px 30px 46px;
  margin-bottom: 10px;
  z-index: 1;
}

.services-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-two__single:hover::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-two__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: scaleY(0.7) rotateY(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-two__single:hover .services-two__shape-1 {
  transform: scaleY(1.0) rotateY(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-two__shape-1 img {
  width: auto;
}

.services-two__icon {
  position: relative;
  display: inline-block;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon span {
  color: var(--flowtrack-white);
}

.services-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin-top: 5px;
}

.services-two__title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__title a {
  color: var(--flowtrack-white);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 57px;
  margin-left: 183px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
}

.about-two__img-2 {
  position: absolute;
  top: 50%;
  left: -226px;
  transform: translateY(-50%);
  z-index: 1;
}

.about-two__img-2 img {
  width: auto;
}

.about-two__shape-1 {
  position: absolute;
  top: -100px;
  left: -75px;
  z-index: -1;
}

.about-two__shape-1 img {
  width: auto;
}

.about-two__count-box {
  position: absolute;
  bottom: 33px;
  right: -120px;
  max-width: 300px;
  width: 100%;
  background-color: var(--flowtrack-primary);
  border-top-right-radius: 75px;
  padding: 27px 40px 28px;
}

.about-two__sub-title {
  font-weight: 700;
  letter-spacing: 0.016em;
  color: var(--flowtrack-black);
}

.about-two__count {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 6px;
}

.about-two__count>h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.about-two__count>span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-black);
}

.about-two__count-text {
  color: var(--flowtrack-black);
}

.about-two__right {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-left: 12px;
}

.about-two__right .section-title {
  margin-bottom: 30px;
}

.about-two__content-and-btn {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-top: 34px;
}

.about-two__content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__icon {
  position: relative;
  display: inline-block;
}

.about-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-two__icon:hover span {
  transform: scale(0.9);
}

.about-two__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-two__content>h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.016em;
}

.about-two__content>p {
  line-height: 26px;
  margin-top: 2px;
}

.about-two__btn-box {
  position: relative;
  display: block;
  margin-top: 55px;
}

/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
  position: relative;
  display: block;
  z-index: 2;
}

.counter-two__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.counter-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: var(--flowtrack-black);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 2;
}

.counter-two__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--flowtrack-primary);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.counter-two__single:hover .counter-two__icon:before {
  transform: scaleX(1);
}

.counter-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--flowtrack-primary);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-two__single:hover .counter-two__icon span {
  transform: scale(0.9);
  color: var(--flowtrack-black);
}

.counter-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
  padding: 88px 30px 36px;
  margin-top: -60px;
  z-index: 1;
}

.counter-two__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.counter-two__single:hover .counter-two__content::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.counter-two__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-two__count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-two__single:hover .counter-two__count h3 {
  color: var(--flowtrack-white);
}

.counter-two__count span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-two__single:hover .counter-two__count span {
  color: var(--flowtrack-white);
}

.counter-two__count-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-two__single:hover .counter-two__count-text {
  color: var(--flowtrack-white);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding-top: 229px;
  margin-top: -138px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-one .container {
  max-width: 1620px;
}

.video-one__inner {
  position: relative;
  display: block;
  background-color: #000134;
  text-align: center;
  padding: 127px 0 136px;
  overflow: hidden;
  z-index: 1;
}

.video-one__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-one__shape-2 {
  position: absolute;
  bottom: 22px;
  right: 21px;
  z-index: -1;
}

.video-one__shape-2 img {
  width: auto;
}


.video-one__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.video-one__video-link {
  position: relative;
  display: inline-block;
  margin-top: 37px;
}

.video-one__shape-1 {
  position: absolute;
  top: 47px;
  left: -95px;
}

.video-one__shape-1 img {
  width: auto;
}

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 22px;
  color: var(--flowtrack-white);
  background-color: rgba(var(--flowtrack-white-rgb), 0.15);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
}

.video-one__video-icon:hover {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 140px 0 157px;
}

.project-two__top {
  position: relative;
  display: block;
  margin-bottom: 46px;
}

.project-two__top .section-title {
  margin-bottom: 0;
}

.project-two__bottom {
  position: relative;
  display: block;
}

.project-two__bottom .container {
  max-width: 1370px;
}

.project-two__box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.project-two__box li {
  position: relative;
  flex: 0 0 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.project-two__box li.active {
  flex: 0 0 50%;
}

.project-two__box-content {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 464px;
  z-index: 1;
}

.single-project-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 500ms ease;
  z-index: -1;
}

.project-two__box-content-inner-wrapper {
  position: relative;
  display: block;
  text-align: center;
}

.project-two__box-content-inner {
  position: relative;
  display: block;
  padding: 37px 50px;
  width: 100%;
  height: 464px;
  opacity: 0;
  transform: perspective(540px) rotateY(0deg) translateY(-100px);
  transform-origin: top;
  transition: all 500ms ease;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.project-two__box-content:hover .project-two__box-content-inner {
  opacity: 1;
  transform: perspective(540px) rotateY(0deg) translateY(0px);
  transition-delay: 500ms;
}

.project-two__box-content-inner .title-box {
  position: relative;
  display: block;
}

.project-two__box-content .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(90deg, rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0) 100%);
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(540px) rotateX(-10deg);
  -ms-transform: perspective(540px) rotateX(-10deg);
  transform: perspective(540px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.project-two__box-content:hover .img-holder-img-bg {
  opacity: 1;
  -webkit-transform: perspective(540px) rotateX(0deg);
  -ms-transform: perspective(540px) rotateX(0deg);
  transform: perspective(540px) rotateX(0deg);
}

.project-two__box-content-inner-icon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(0) translateY(-50%);
  transform: scale(0) translateY(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 6;
  height: 0;
  line-height: 0;
}

.project-two__box-content:hover .project-two__box-content-inner-icon {
  -webkit-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
  transition-delay: 500ms;
  opacity: 1;
}

.project-two__box-content-inner-icon>a {
  position: relative;
  display: flex;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 21px;
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.project-two__box-content-inner-icon>a:hover {
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-black);
}

.project-two__box-content-inner-wrapper p {
  color: var(--flowtrack-white);
}

.project-two__box-content-inner-wrapper h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.016em;
}

.project-two__box-content-inner-wrapper h4 a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__box-content-inner-wrapper h4 a:hover {
  color: var(--flowtrack-base);
}

@media(min-width: 768px) {


  .project-two__box li {
    flex: 1;

  }

  .project-two__box li.active {
    flex: 1.46;
  }

  .project-two__box li.active .project-two__box-content .img-holder-img-bg {
    opacity: 0.80;
    -webkit-transform: perspective(540px) rotateX(0deg);
    -ms-transform: perspective(540px) rotateX(0deg);
    transform: perspective(540px) rotateX(0deg);
  }

  .project-two__box li.active .project-two__box-content .project-two__box-content-inner {
    opacity: 1;
    transform: perspective(540px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
  }


}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

  .project-two {
    padding: 100px 0 100px;
  }

  .project-two__box li {
    flex: 0 0 100%;
  }

  .project-two__box li.active {
    flex: 0 0 100%;
  }

  .project-two__box li+li {
    margin-top: 30px;
  }

  .project-two__box-content {
    min-height: 400px;
  }

  .project-two__box-content-inner {
    padding: 48px 30px;
    height: 400px;
  }

  .project-two__box-content-inner-wrapper h4 {
    font-size: 28px;
  }




}

.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 57px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 2px;
  background-color: #d4d4d4;
  border: none;
  margin: 0;
  padding: 0px;
  border-radius: 0;
  transition: all 100ms linear;
  transition-delay: 0.1s;
  overflow: hidden;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
  background-color: var(--flowtrack-base) !important;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 0;
  background-color: var(--flowtrack-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 900ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
  transform-origin: left center;
}

.project-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -120px;
  right: 0px;
  margin: 0;
  z-index: 2;
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--flowtrack-black);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--flowtrack-black);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-180deg);
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 10px;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 10px;
}

.project-two__carousel.owl-theme .owl-nav .owl-next span,
.project-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-two__carousel.owl-theme .owl-nav .owl-next:hover,
.project-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--flowtrack-base);
  color: var(--flowtrack-white);
}

.project-two__carousel.owl-theme .owl-nav .disabled {
  opacity: 1;
}

/*--------------------------------------------------------------
# We Want Help
--------------------------------------------------------------*/
.we-want-help {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 0 0 120px;
  z-index: 1;
}

.we-want-help__left {
  position: relative;
  display: block;
  margin-right: 69px;
  margin-left: -69px;
}

.we-want-help__img-box {
  position: relative;
  display: block;
}

.we-want-help__img {
  position: relative;
  display: block;
  z-index: 1;
}

.we-want-help__img img {
  width: 100%;
}

.we-want-help__shape-1 {
  position: absolute;
  top: -36px;
  left: -68px;
  z-index: -1;
}

.we-want-help__shape-1 img {
  width: auto;
}

.we-want-help__shape-2 {
  position: absolute;
  bottom: -20px;
  right: -11px;
  z-index: 3;
}

.we-want-help__shape-2 img {
  width: auto;
}

.we-want-help__quick-box {
  position: absolute;
  top: -8px;
  right: -34px;
  max-width: 256px;
  width: 100%;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(18, 20, 31, 0.06);
  padding: 39px 30px 33px;
  z-index: 2;
}

.we-want-help__quick-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  margin: 0 auto;
}

.we-want-help__quick-icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  color: var(--flowtrack-white);
}

.we-want-help__quick-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 14px;
}

.we-want-help__policy {
  position: absolute;
  left: 30px;
  bottom: -25px;
  max-width: 362px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(18, 20, 31, 0.06);
  padding: 36px 40px 39px;
  z-index: 2;
}

.we-want-help__policy-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
}

.we-want-help__policy-icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  color: var(--flowtrack-white);
}

.we-want-help__policy-text {
  margin-left: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.we-want-help__right {
  position: relative;
  display: block;
  margin-left: -10px;
}

.we-want-help__right .section-title {
  margin-bottom: 33px;
  margin-right: -11px;
}

.we-want-help__list {
  position: relative;
  display: block;
}

.we-want-help__list li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 31px;
}

.we-want-help__list li:last-child {
  border-bottom: none;
}

.we-want-help__list li+li {
  margin-top: 27px;
}

.we-want-help__count {
  position: relative;
  display: block;
  padding-right: 30px;
  top: 2px;
}

.we-want-help__count:before {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: var(--flowtrack-base);
  letter-spacing: -0.04em;
}

.we-want-help__list li h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.018em;
}

.we-want-help__btn-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

/*--------------------------------------------------------------
# Work Steps Two
--------------------------------------------------------------*/
.work-steps-two {
  background-color: #000134;
}

.work-steps-two .work-steps-one__bg-shape {
  opacity: 0.15;
}

.work-steps-two .section-title__tagline {
  color: var(--flowtrack-primary);
}

.work-steps-two .section-title__title {
  color: var(--flowtrack-white);
}

.work-steps-two .work-steps-one__text a {
  color: var(--flowtrack-white);
}

.work-steps-two .work-steps-one__text a:hover {
  color: var(--flowtrack-primary);
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;

  z-index: 1;
}

.pricing-one__shape-1 {
  position: absolute;
  top: 73px;
  left: 105px;
  opacity: 0.20;
  z-index: -1;
}

.pricing-one__shape-1 img {
  width: auto;
}

.pricing-one__shape-2 {
  position: absolute;
  bottom: 120px;
  right: -30px;
  z-index: -1;
}

.pricing-one__shape-2 img {
  width: auto;
}

.pricing-one__single {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--flowtrack-base);
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.pricing-one__single:hover::before {
  transform: scaleY(1.0);
}

.pricing-one__single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--flowtrack-base);
  background-position: left center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(0);
  z-index: -1;
}

.pricing-one__single:hover::after {
  transform: scaleX(1.0);
}

.pricing-one__single-inner {
  position: relative;
  display: block;
  padding: 15px 15px 60px;
}

.pricing-one__single-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--flowtrack-base);
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.pricing-one__single:hover .pricing-one__single-inner::before {
  transform: scaleY(1.0);
}

.pricing-one__single-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--flowtrack-base);
  background-position: right center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: right;
  transform-style: preserve-3d;
  transform: scaleX(0);
  z-index: -1;
}

.pricing-one__single:hover .pricing-one__single-inner::after {
  transform: scaleX(1.0);
}

.pricing-one__single-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.20;
  z-index: -1;
}

.pricing-one__single-shape-1 img {
  width: auto;
}

.pricing-one__price-box {
  position: relative;
  display: block;
  background-color: var(--flowtrack-white);
  padding: 40px 45px 50px;
  padding-right: 20px;
}

.pricing-one__price {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.04em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__single:hover .pricing-one__price {
  color: var(--flowtrack-base);
}

.pricing-one__price>span {
  font-size: 18px;
  color: var(--flowtrack-black);
}

.pricing-one__price-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.pricing-one__cup-and-tag {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 41px;
}

.pricing-one__price-cup {
  position: relative;
  display: inline-block;
}

.pricing-one__price-cup img {
  width: auto;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.pricing-one__price-cup:hover img {
  transform: scale(0.9);
}

.pricing-one__price-tag {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 14px 0px rgba(4, 23, 26, 0.08);
  padding: 0 17px 0;
  margin-left: 45px;
  top: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price-tag:hover {
  background-color: var(--flowtrack-base);
}

.pricing-one__price-tag>span {
  font-weight: 700;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price-tag:hover span {
  color: var(--flowtrack-white);
}

.pricing-one__points-box {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-top: 31px;
}

.pricing-one__points {
  position: relative;
  display: block;
}

.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-one__points li+li {
  margin-top: 4px;
}

.pricing-one__points li .icon {
  position: relative;
  display: inline-block;
}

.pricing-one__points li .icon>span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--flowtrack-base);
}

.pricing-one__points li p {
  margin-left: 15px;
}

.pricing-one__btn-box {
  position: relative;
  display: block;
  margin-top: 43px;
}

.pricing-one__btn {
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-white);
}

.pricing-one__btn::after {
  background-color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Looking Best
--------------------------------------------------------------*/
.looking-best {
  position: relative;
  display: block;
  background-color: #000134;
  overflow: hidden;
  z-index: 1;
}

.looking-best__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.looking-best__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  z-index: -1;
}

.looking-best__shape-2 img {
  width: auto;
}

.looking-best__shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.40;
  mix-blend-mode: screen;
  z-index: -1;
}

.looking-best__shape-3 img {
  width: auto;
}

.looking-best__shape-4 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.20;
  z-index: -1;
}

.looking-best__shape-4 img {
  width: auto;
}

.looking-best__left {
  position: relative;
  display: block;
  margin-right: 11px;
  margin-left: -268px;
}

.looking-best__img {
  position: relative;
  display: block;
}

.looking-best__img img {
  width: 100%;
}

.looking-best__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: -15px;
  margin-top: 93px;
}

.looking-best__shape-1 {
  position: absolute;
  bottom: -72px;
  right: 275px;
}

.looking-best__shape-1 img {
  width: auto;
}

.looking-best__title {
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.looking-best__btn-and-call {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.looking-best__btn-box {
  position: relative;
  display: block;
}

.looking-best__btn {
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
}

.looking-best__btn::before {
  background-color: var(--flowtrack-white);
}

.looking-best__btn::after {
  background-color: var(--flowtrack-base);
}

.looking-best__call-us {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.looking-best__call-us .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.looking-best__call-us .icon:hover {
  background-color: var(--flowtrack-primary);
}

.looking-best__call-us .icon>span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.looking-best__call-us .icon:hover span {
  color: var(--flowtrack-black);
}

.looking-best__call-us .content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.looking-best__call-us .content>span {
  color: var(--flowtrack-white);
}

.looking-best__call-us .content>p {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.looking-best__call-us .content>p>a {
  color: var(--flowtrack-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.looking-best__call-us .content>p>a:hover {
  color: var(--flowtrack-white);
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;

  z-index: 1;
}

.faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc((100% - 132px) /2);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: -1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-left: 34px;
  margin-top: 297px;
}

.faq-one__left .row {
  --bs-gutter-x: 0px;
}

.faq-one__count-single {
  position: relative;
  display: block;
  background-color: var(--flowtrack-base);
  padding: 28px 40px 35px;
  margin-bottom: 30px;
}

.faq-one__count-single-2 {
  background-color: var(--flowtrack-primary);
}

.faq-one__count {
  position: relative;
  display: block;
}

.faq-one__count h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.faq-one__count-single-2 .faq-one__count h3 {
  color: var(--flowtrack-black);
}

.faq-one__count-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-white);
  margin-top: 1px;
}

.faq-one__count-single-2 .faq-one__count-text {
  color: var(--flowtrack-black);
}

.faq-one__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.faq-one__right .section-title {
  margin-bottom: 40px;
}

.faq-one__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--flowtrack-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 18px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 700;
  font-size: 10px;
  color: var(--flowtrack-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-black);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 8px;
}

.faq-one__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Sales Growth
--------------------------------------------------------------*/
.sales-growth {
  position: relative;
  display: block;

  z-index: 1;
}

.sales-growth__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - -130px) /2);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
}

.sales-growth__shape-1 {
  position: absolute;
  bottom: 0;
  left: -40px;
}

.sales-growth__shape-1 img {
  width: auto;
}

.sales-growth__inner {
  position: relative;
  display: block;
}

.sales-growth__inner .section-title {
  position: relative;
  display: block;
  margin-bottom: 28px;
  margin-top: -9px;
}

.sales-growth__progress-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.sales-growth__progress-box {
  position: relative;
  display: inline-block;
  height: 100px;
}

.sales-growth__progress-box canvas {
  transform: rotate(72deg);
}

.sales-growth__progress-box .sales-growth__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

.sales-growth__progress-box .sales-growth__pack p {
  font-size: 20px;
  font-weight: 800;
  color: var(--flowtrack-black);
  line-height: 20px;
}

.sales-growth__progress-content {
  margin-left: 25px;
}

.sales-growth__progress-content p {
  font-size: 20px;
  color: var(--flowtrack-black);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 24px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.blog-two {
  padding: 0 0 90px;
}

.blog-one__date {
  /* position: absolute; */
  top: 0;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--flowtrack-base);
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.blog-one__single:hover .blog-one__date {
  background-color: var(--flowtrack-primary);
}

.blog-one__date p {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__date p {
  color: var(--flowtrack-black);
}

/*--------------------------------------------------------------
# Google Map Two
--------------------------------------------------------------*/
.google-map-one {
  position: relative;
  display: block;
  margin-bottom: -100px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 480px;
  width: 100%;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;

  z-index: 3;
}

.services-three__bg-color {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  height: 408px;
  background-color: #1D3C98;
  color: #fff;
  z-index: -1;
}

.services-three__shape-1 {
  position: absolute;
  left: 0;
  bottom: 54px;
  z-index: -1;
}

.services-three__shape-1 img {
  width: auto;
}

.services-three__inner {
  position: relative;
  display: block;
}


.services-three__count-icon {
  position: relative;
  display: inline-block;
}

.services-three__count-icon span {
  position: relative;
  display: inline-block;
  font-size: 58px;
  color: var(--flowtrack-base);
}

.services-three__count-inner {
  position: relative;
  display: block;
}

.services-three__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 5px;
}

.services-three__count h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.02em;
}

.services-three__count span {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: var(--flowtrack-black);
}

.services-three__count-text {
  line-height: 20px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 200px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img img {
  width: 100%;
}

.about-three__shape-1 {
  position: absolute;
  top: 158px;
  right: -30px;
  width: 10px;
  height: 130px;
  background-color: var(--flowtrack-primary);
}

.about-three__shape-2 {
  position: absolute;
  bottom: -106px;
  left: 19px;
}

.about-three__shape-2 img {
  width: auto;
}

.about-three__img-2 {
  position: absolute;
  right: -131px;
  bottom: -153px;
}

.about-three__img-2 img {
  width: auto;
}

.about-three__count-box {
  position: absolute;
  top: 48px;
  right: -131px;
  display: flex;
  align-items: center;
  max-width: 252px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
  padding: 15px 20px 15px;
}

.about-three__client-img {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.about-three__client-img>img {
  width: 100%;
}

.about-three__count-inner {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-three__count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__count h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-base);
}

.about-three__count span {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-base);
}

.about-three__count-text {
  line-height: 26px;
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: -19px;
}

.about-three__right .section-title {
  margin-bottom: 29px;
}

.about-three__points {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  margin-top: 36px;
  padding-bottom: 37px;
  margin-bottom: 46px;
}

.about-three__points li {
  position: relative;
  display: block;
}

.about-three__points li+li {
  margin-left: 75px;
}

.about-three__points-single {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__points-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-three__points-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #f4f4f4;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.about-three__points li:hover .about-three__points-icon::before {
  background-color: var(--flowtrack-primary);
}

.about-three__points-icon span {
  position: relative;
  display: inline-block;
  font-size: 68px;
  color: var(--flowtrack-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  z-index: 2;
}

.about-three__points li:hover .about-three__points-icon span {
  color: var(--flowtrack-base);
  transform: scale(0.9);
}

.about-three__points-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  margin-left: 30px;
}

.about-three__text-2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: var(--flowtrack-base);
}

.about-three__btn-and-contact {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 54px;
}

.about-three__btn-box {
  position: relative;
  display: block;
}

.about-three__contact-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 60px;
}

.about-three__contact-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__contact-box:hover .icon {
  background-color: var(--flowtrack-base);
  border: 1px solid var(--flowtrack-base);
}

.about-three__contact-box .icon>span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__contact-box:hover .icon>span {
  color: var(--flowtrack-white);
}

.about-three__contact-box .content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-three__contact-box .content>h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.016em;
}

.about-three__contact-box .content>h3>a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__contact-box .content>h3>a:hover {
  color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Sign Up
--------------------------------------------------------------*/
.sign-up {
  position: relative;
  display: block;
  z-index: 2;
}

.sign-up__left {
  position: relative;
  display: block;
}

.sign-up__contact-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(30, 22, 22, 0.08);
  padding: 46px 60px 54px;
  margin-bottom: 30px;
}

.sign-up__contact-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.sign-up__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.sign-up__contact .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sign-up__contact .icon:hover {
  background-color: var(--flowtrack-primary);
}

.sign-up__contact .icon>span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sign-up__contact .icon:hover span {
  color: var(--flowtrack-black);
}

.sign-up__contact-content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.sign-up__contact-content p {
  line-height: 26px;
}

.sign-up__contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.016em;
}

.sign-up__contact-content h3 a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sign-up__contact-content h3 a:hover {
  color: var(--flowtrack-base);
}

.sign-up__right {
  position: relative;
  display: block;
}

.sign-up__right-inner {
  position: relative;
  display: block;
  background-color: var(--flowtrack-black);
  padding: 48px 60px 45px;
  padding-right: 50px;
  margin-bottom: 30px;
}

.sign-up__right-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-white);
}

.sign-up__contact-form {
  position: relative;
  display: block;
  margin-top: 33px;
}

.sign-up__contact-form-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.sign-up__contact-form-input-box input[type="email"] {
  height: 60px;
  max-width: 270px;
  width: 100%;
  background-color: var(--flowtrack-extra);
  outline: none;
  font-size: 13px;
  color: var(--flowtrack-gray);
  font-weight: 400;
  border: none;
  padding-right: 30px;
  padding-left: 30px;
}

.sign-up__btn {
  border: none;
  margin-left: 10px;
  padding: 15px 43px 15px;
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.sign-up__btn::before {
  background-color: var(--flowtrack-white);
}

.sign-up__btn::after {
  background-color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 196px 0 90px;
  margin-top: -106px;
  z-index: 1;
}

.project-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 575px;
  opacity: .30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.project-three .container {
  max-width: 1600px;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}


.project-three__single:hover .project-three__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.project-three__single:hover .project-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.project-three__content {
  position: absolute;
  bottom: 33px;
  left: 40px;
  padding-left: 22px;
  transform: scaleX(0.7) rotateX(90deg);
  opacity: 0;
  transition: all 0.9s linear;
  z-index: 2;
}

.project-three__single:hover .project-three__content {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.9s linear;
  opacity: 1;
}

.project-three__content::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  bottom: 7px;
  width: 2px;
  background-color: var(--flowtrack-primary);
}

.project-three__content p {
  color: var(--flowtrack-white);
}

.project-three__content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.020em;
}

.project-three__content h3>a {
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-three__content h3>a:hover {
  color: var(--flowtrack-black);
}

.project-three__arrow-box {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.project-three__single:hover .project-three__arrow-box {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.project-three__arrow-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 16px;
  color: var(--flowtrack-black);
  border-radius: 50%;
  background-color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-three__arrow-box a:hover {
  background-color: var(--flowtrack-primary);
}

.project-three__arrow-box a+a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Destination One
--------------------------------------------------------------*/
.destination-one {
  position: relative;
  display: block;
  z-index: 2;
}

.destination-one__left {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--flowtrack-primary);
  padding: 44px 50px 43px;
  z-index: 1;
}

.destination-one__shape-1 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--flowtrack-base);
}

.destination-one__left .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: var(--flowtrack-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__left .icon:hover {
  background-color: var(--flowtrack-black);
}

.destination-one__left .icon span {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-black);
  font-size: 48px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__left .icon:hover span {
  color: var(--flowtrack-primary);
}

.destination-one__left-content {
  position: relative;
  display: block;
  margin-left: 25px;
}

.destination-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.destination-one__count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.destination-one__count span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  color: var(--flowtrack-black);
}

.destination-one__left-text {
  color: var(--flowtrack-black);
  margin-top: 1px;
}

.destination-one__right {
  position: relative;
  display: flex;
  padding: 35px 50px 22px;
  margin-left: -30px;
  z-index: 1;
}

.destination-one__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -100000px;
  bottom: 0;
  background-color: var(--flowtrack-white);
  z-index: -1;
}

.destination-one__right .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  top: 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__right .icon:hover {
  background-color: var(--flowtrack-black);
}

.destination-one__right .icon span {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-white);
  font-size: 48px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__right .icon:hover span {
  color: var(--flowtrack-primary);
}

.destination-one__right .content {
  position: relative;
  display: block;
  margin-left: 25px;
}

.destination-one__right .content p {
  color: var(--flowtrack-black);
  margin-top: 2px;
  margin-bottom: 23px;
}

.destination-one__right .content h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.016em;
}

.destination-one__right .content a {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.016em;
  color: var(--flowtrack-base);
  border-bottom: 1px solid var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__right .content a:hover {
  color: var(--flowtrack-primary);
  border-bottom: 1px solid var(--flowtrack-primary);
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
  position: relative;
  display: block;
  background-color: #02122c;
  margin-top: -88px;
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.40;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-two__shape-1 {
  position: absolute;
  top: -20px;
  left: 0;
  opacity: .20;
  z-index: -1;
}

.video-two__shape-1 img {
  width: auto;
}

.video-two__shape-2 {
  position: absolute;
  top: 151px;
  left: 205px;
  z-index: -1;
}

.video-two__shape-2 img {
  width: auto;
}

.video-two__inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 275px 0 186px;
  overflow: hidden;
}

.video-two__video-link {
  position: relative;
  display: inline-block;
}

.video-two__shape-1 {
  position: absolute;
  top: 47px;
  left: -95px;
}

.video-two__shape-1 img {
  width: auto;
}

.video-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 22px;
  color: var(--flowtrack-white);
  background-color: rgba(var(--flowtrack-white-rgb), 0.15);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
}

.video-two__video-icon:hover {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

.video-two__video-link .ripple,
.video-two__video-icon .ripple:before,
.video-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--flowtrack-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;

  z-index: 1;
}

.testimonial-two__middle {
  position: relative;
  display: block;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(18, 20, 31, 0.08);
  z-index: 1;
}

.testimonial-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.testimonial-two__single:hover::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  padding: 40px 40px 40px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__shape-1 {
  opacity: .60;
}

.testimonial-two__shape-1 img {
  width: auto;
}

.testimonial-two__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__shape-2 {
  opacity: 1;
}

.testimonial-two__shape-2 img {
  width: auto;
}

.testimonial-two__ratting {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__ratting span+span {
  margin-left: 5px;
}

.testimonial-two__ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--flowtrack-primary);
}

.testimonial-two__text {
  color: var(--flowtrack-black);
  margin-top: 17px;
  margin-bottom: 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__text {
  color: var(--flowtrack-white);
}

.testimonial-two__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  max-width: 65px;
  width: 100%;
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-two__client-content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonial-two__client-content h3 {
  color: var(--flowtrack-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.016em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__client-content h3 a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__client-content h3 a {
  color: var(--flowtrack-white);
}

.testimonial-two__client-content p {
  line-height: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__client-content p {
  color: var(--flowtrack-white);
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__bottom {
  position: relative;
  display: flex;
  max-width: 696px;
  margin: 57px auto 0;
  align-items: center;
  justify-content: space-between;
}

.testimonial-two__bottom-left {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__bottom-left .icon {
  position: relative;
  display: inline-block;
  padding-left: 22px;
}

.testimonial-two__bottom-left .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 7px;
  width: 2px;
  background-color: var(--flowtrack-primary);
}

.testimonial-two__bottom-left .icon>span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.testimonial-two__bottom-left .icon:hover span {
  transform: scale(0.9);
}

.testimonial-two__bottom-text {
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
}

.testimonial-two__btn-box {
  position: relative;
  display: block;
}

.testimonial-two__btn {
  color: var(--flowtrack-base);
  padding: 15px 37px 15px;
  background-color: #f4f4f4;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -120px;
  right: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--flowtrack-black);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--flowtrack-black);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
  transform: rotate(-180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 10px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 10px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--flowtrack-primary);
  color: var(--flowtrack-black);
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
  position: relative;
  display: block;

  background-color: var(--flowtrack-black);
  overflow: hidden;
  z-index: 1;
}

.contact-two__shape-2 {
  position: absolute;
  right: -30px;
  bottom: 35px;
  z-index: -1;
}

.contact-two__shape-2 img {
  width: auto;
}

.contact-two__shape-3 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: .60;
  z-index: -1;
}

.contact-two__shape-3 img {
  width: auto;
}

.contact-two__shape-4 {
  position: absolute;
  right: 0;
  top: 0;
  opacity: .50;
  z-index: -1;
}

.contact-two__shape-4 img {
  width: auto;
}

.contact-two__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-two__img img {
  width: auto;
}

.contact-two__left {
  position: relative;
  display: block;
}

.contact-two__left .section-title {
  margin-bottom: 43px;
}

.contact-two__left .section-title__tagline {
  color: var(--flowtrack-primary);
}

.contact-two__left .section-title__title {
  color: var(--flowtrack-white);
}

.contact-two__points-and-progress-bar {
  position: relative;
  display: block;
}

.contact-two__text {
  color: #a5a5a5;
  margin-bottom: 20px;
}

.contact-two__btn-box-1 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.contact-two__btn-box-1 .thm-btn:hover {
  color: var(--flowtrack-black);
}

.contact-two__btn-box-1 .thm-btn::before {
  background-color: var(--flowtrack-primary);
}

.contact-two__btn-box-1 .thm-btn::after {
  background-color: var(--flowtrack-white);
}

.contact-two__points {
  position: relative;
  display: block;
}

.contact-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-two__points li .icon {
  position: relative;
  display: inline-block;
}

.contact-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--flowtrack-primary);
}

.contact-two__points li p {
  margin-left: 15px;
  color: #a5a5a5;
}

.contact-two__progress-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
}

.contact-two__progress-box {
  position: relative;
  display: inline-block;
  height: 100px;
}

.contact-two__progress-box canvas {
  transform: rotate(72deg);
}

.contact-two__progress-box .contact-two__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

.contact-two__progress-box .contact-two__pack p {
  font-size: 30px;
  font-weight: 700;
  color: var(--flowtrack-white);
  line-height: 30px;
  letter-spacing: -0.04em;
}

.contact-two__progress-content {
  margin-left: 25px;
}

.contact-two__progress-content p {
  font-size: 20px;
  color: var(--flowtrack-white);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 24px;
}

.contact-two .contact-one__right {
  margin-top: 0;
}

/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
  position: relative;
  display: block;
  padding: 26px 0 100px;
  z-index: 1;
}

.cta-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #f4f4f4;
  padding: 48px 60px 48px;
}

.cta-two__title-box {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-two__title-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-two__title-box .icon:hover {
  background-color: var(--flowtrack-primary);
}

.cta-two__title-box .icon>span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-two__title-box .icon:hover span {
  color: var(--flowtrack-black);
}

.cta-two__title {
  margin-left: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
}

.cta-two__btn-box {
  position: relative;
  display: block;
}

.cta-two__btn {
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
}

.cta-two__btn::before {
  background-color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.why-choose-two__shape-2 {
  position: absolute;
  top: 30px;
  right: 102px;
  z-index: -1;
}

.why-choose-two__shape-2 img {
  width: auto;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-left: -56px;
  margin-right: 56px;
}

.why-choose-two__left .row {
  --bs-gutter-x: 10px;
}

.why-choose-two__img-1 {
  position: relative;
  display: block;
}

.why-choose-two__img-1 img {
  width: 100%;
}

.why-choose-two__right {
  position: relative;
  display: block;
  margin-left: 15px;
  margin-top: 30px;
}

.why-choose-two__right .section-title {
  margin-bottom: 20px;
}

.why-choose-two__list-box {
  position: relative;
  display: block;
  margin-left: -185px;
  margin-top: 35px;
}

.why-choose-two__list {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;
  flex-wrap: wrap;
}

.why-choose-two__list li {
  position: relative;
  display: block;
  padding-right: 5px;
  padding-left: 5px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
}

.why-choose-two__list-single {
  position: relative;
  display: block;
  padding: 27px 30px 24px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
}

.why-choose-two__list-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--flowtrack-base);
  background-position: left center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(0);
  z-index: 2;
}

.why-choose-two__list-single:hover::before {
  transform: scaleX(1.0);
}

.why-choose-two__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 34px solid var(--flowtrack-base);
  border-left: 34px solid transparent;
  background-position: top center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.why-choose-two__list-single:hover .why-choose-two__shape-1 {
  transform: scaleY(1.0);
}

.why-choose-two__list li .icon {
  position: relative;
  display: inline-block;
}

.why-choose-two__list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 49px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-two__list li:hover .icon span {
  transform: scale(0.9);
}

.why-choose-two__list-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.016em;
  margin-top: 9px;
  margin-bottom: 25px;
}

.why-choose-two__list-title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-two__list-title a:hover {
  color: var(--flowtrack-base);
}

.why-choose-two__list-arrow {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--flowtrack-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-two__list-arrow:hover {
  color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  background-color: #f4f4f4;

  z-index: 1;
}

.team-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team-two__shape-1 {
  position: absolute;
  left: 0;
  top: 67px;
  opacity: .20;
  z-index: -1;
}

.team-two__shape-1 img {
  width: auto;
}

.team-two__shape-2 {
  position: absolute;
  bottom: 12px;
  right: 23px;
  z-index: -1;
}

.team-two__shape-2 img {
  width: auto;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-two__img-box {
  position: relative;
  display: block;
}

.team-two__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-two__img:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease-out;
  background-color: rgba(0, 25, 58, .70);
}

.team-two__single:hover:hover .team-two__img:after {
  opacity: 1
}

.team-two__img img {
  width: 100%;
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.27, .48, .45, .94);
  transform-origin: 70% 80%
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.036);
  transition-duration: .9s
}

.team-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(18, 20, 31, 0.08);
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -45px;
  padding: 16px 30px 19px;
  z-index: 2;
}

.team-two__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--flowtrack-base);
  background-position: top center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.team-two__single:hover .team-two__content::before {
  transform: scaleY(1.0);
}

.team-two__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 30px solid transparent;
  border-left: 30px solid var(--flowtrack-base);
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.team-two__single:hover .team-two__content::after {
  transform: scaleY(1.0);
}

.team-two__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
}

.team-two__title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__title a:hover {
  color: var(--flowtrack-base);
}

.team-two__sub-title {
  font-size: 15px;
  line-height: 25px;
}

.team-two__share-and-social {
  position: absolute;
  top: 0;
  right: 0;
}

.team-two__share {
  position: relative;
  display: block;
}

.team-two__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--flowtrack-base);
  font-size: 18px;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__social {
  position: absolute;
  top: -114px;
  right: 0;
  width: 45px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--flowtrack-white);
  padding: 15px;
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: right center;
}

.team-two__share-and-social:hover .team-two__social {
  transform: scaleY(1.0);
  transform-origin: bottom center;
  transition-delay: 500ms;
}

.team-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__social a:hover {
  color: var(--flowtrack-base);
}

.team-two__social a+a {
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;

  z-index: 1;
}

.blog-three__single {
  position: relative;
  display: block;
  border: 1px solid #dedede;
  padding: 30px 30px 39px;
  margin-bottom: 30px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.blog-three__single:hover {
  border: 1px solid var(--flowtrack-base);
}

.blog-three__img-box {
  position: relative;
  display: block;
}

.blog-three__date {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.blog-three__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--flowtrack-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__single:hover .blog-three__date p {
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-primary);
}

.blog-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-three__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--flowtrack-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-three__single:hover .blog-three__img::before {
  opacity: .50;
}

.blog-three__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-three__single:hover .blog-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-three__content {
  position: relative;
  display: block;
  padding-top: 15px;
}

.blog-three__tag {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-three__tag span {
  font-size: 14px;
  line-height: 14px;
  background-color: var(--flowtrack-extra);
  padding: 5px 14px 5px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.blog-three__tag span:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.blog-three__tag span+span {
  margin-left: 10px;
}

.blog-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 22px;
  margin-bottom: 38px;
  letter-spacing: -0.02em;
}

.blog-three__title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.blog-three__title a:hover {
  color: var(--flowtrack-base);
}

.blog-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-three__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.blog-three__client-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.016em;
}

.blog-three__client-content p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
  margin-top: 0;
}

.site-footer-two .site-footer__shape-1 {
  top: 0;
}

.site-footer-two .site-footer__top {
  padding: 110px 0 110px;
}

.footer-widget__post {
  position: relative;
  display: block;
  margin-left: 64px;
}

.footer-widget__post .footer-widget__title-box {
  margin-bottom: 37px;
}

.footer-widget__post-list {
  position: relative;
  display: block;
}

.footer-widget__post-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__post-list li+li {
  margin-top: 30px;
}

.footer-widget__post-img {
  position: relative;
  display: block;
  max-width: 68px;
  width: 100%;
}

.footer-widget__post-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--flowtrack-primary-rgb), .85);
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.footer-widget__post-list li:hover .footer-widget__post-img::before {
  transform: scaleY(1.0);
}

.footer-widget__post-img img {
  width: 100%;
}

.footer-widget__post-content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.footer-widget__post-content span {
  font-size: 14px;
  color: #a5a5a5;
}

.footer-widget__post-content h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 2px;
}

.footer-widget__post-content h3 a {
  color: var(--flowtrack-white);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.footer-widget__post-content h3 a:hover {
  color: var(--flowtrack-primary);
}

.footer-widget__post-link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0);
  transform: scale(0) translateX(-50%) translateY(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.footer-widget__post-list li:hover .footer-widget__post-link {
  -webkit-transform: scale(1);
  transform: scale(1) translateX(-50%) translateY(-50%);
  transition-delay: 500ms;
  opacity: 1;
}

.footer-widget__post-link a {
  position: relative;
  font-size: 20px;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__post-link a:hover {
  color: var(--flowtrack-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 215px 0 216px;
  background-color: #000d24;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .40;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
}

.page-header__inner h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: var(--flowtrack-white);
  letter-spacing: -0.04em;
}

.thm-breadcrumb__box {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.thm-breadcrumb {
  position: relative;
  display: inline-block;
}

.thm-breadcrumb li ,.thm-breadcrumb li h1{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--flowtrack-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:nth-child(2) {
  color: var(--flowtrack-primary);
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 40px 0 120px;
  z-index: 1;
}

.invalid-feedback {
  color: #e74c3c;
  font-size: 0.95em;
  margin-top: 4px;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__img {
  position: relative;
  display: block;
}

.error-page__img img {
  width: auto;
}

.error-page__text {
  margin-top: 83px;
  margin-bottom: 54px;
  font-size: 18px;
  color: #141733;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;

  z-index: 1;
}

.contact-page__top-img {
  position: relative;
  display: block;
}

.contact-page__top-img img {
  width: 100%;
}

.contact-page__middle {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-bottom: 115px;
}

.contact-page__middle-left {
  position: relative;
  display: block;
}

.contact-page__middle-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 58px;
}

.contact-page__middle-text {
  margin-top: 14px;
}

.contact-page__contact-info {
  position: relative;
  display: block;
  margin-top: 29px;
  margin-bottom: 26px;
}

.contact-page__contact-info-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-base);
  margin-bottom: 18px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
}

.contact-page__contact-list li {
  position: relative;
  display: block;
}

.contact-page__contact-list li+li {
  margin-top: 19px;
}

.contact-page__contact-list-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.contact-page__contact-list li p>a {
  color: var(--flowtrack-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li p>a:hover {
  color: var(--flowtrack-base);
}

.contact-page__contact-list li p>span {
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
}

.contact-page__contact-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.374em;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-link:hover {
  color: var(--flowtrack-black);
}

.contact-page__middle-right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.contact-page__google-map {
  position: relative;
  display: block;
  border: none;
  height: 477px;
  width: 100%;
}

.contact-page__bottom {
  position: relative;
  display: block;
}

.contact-page__form-box {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  padding: 67px 75px 75px;
}

.comment-one__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.04em;
}

.comment-one__text {
  font-size: 14px;
}

.contact-page__form {
  position: relative;
  display: block;
  margin-top: 34px;
}

.contact-page__form .row {
  --bs-gutter-x: 20px;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--flowtrack-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--flowtrack-gray);
  display: block;
  letter-spacing: 0.02em;
}

.contact-page__input-box textarea {
  color: var(--flowtrack-gray);
  height: 150px;
  width: 100%;
  background-color: var(--flowtrack-white);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  letter-spacing: 0.02em;
}

.contact-page__btn {
  border: none;
}

.contact-page__input-box.text-message-box {
  height: 150px;
}

.contact-page__form-box {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-page__form-box .comment-one__title,
.contact-page__middle-title,
.contact-page__contact-info-title,
.contact-page__contact-list-title {
  color: #0f172a;
}

.contact-page__form-box .comment-one__text,
.contact-page__middle-text,
.contact-page__contact-list li p,
.contact-page__contact-list li a {
  color: #475569;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box textarea {
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.contact-page__input-box input[type="text"]::placeholder,
.contact-page__input-box input[type="email"]::placeholder,
.contact-page__input-box textarea::placeholder {
  color: #94a3b8;
}

.contact-page__input-box input[type="text"]:focus,
.contact-page__input-box input[type="email"]:focus,
.contact-page__input-box textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-page__btn.thm-btn {
  color: #ffffff !important;
}


/*--------------------------------------------------------------
# Team Details Info
--------------------------------------------------------------*/
.team-details-info {
  position: relative;
  display: block;

  z-index: 1;
}

.team-details-info__inner {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  padding: 60px 0 0;
  z-index: 1;
}

.team-details-info__inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92px;
  background-color: var(--flowtrack-white);
  z-index: -1;
}

.team-details-info__shape-1 {
  position: absolute;
  left: -48px;
  bottom: 35px;
  z-index: -1;
}

.team-details-info__shape-1 img {
  width: auto;
}

.team-details-info__shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.08;
  z-index: -1;
}

.team-details-info__shape-2 img {
  width: auto;
}

.team-details-info__left {
  position: relative;
  display: block;
  margin-left: 245px;
  margin-right: -30px;
}

.team-details-info__img {
  position: relative;
  display: block;
}

.team-details-info__img img {
  width: 100%;
}

.team-details-info__content {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-left: 100px;
}

.team-details-info__content-title-box {
  position: relative;
  display: block;
}

.team-details-info__content-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 3px;
}

.team-details-info__content-sub-title {
  font-size: 18px;
  color: var(--flowtrack-base);
}

.team-details-info__details-box {
  position: relative;
  display: block;
  margin-top: 33px;
  margin-bottom: 70px;
}

.team-details-info__details-list {
  position: relative;
  display: block;
}

.team-details-info__details-list li {
  position: relative;
  display: block;
}

.team-details-info__details-list li+li {
  margin-top: 5px;
}

.team-details-info__details-list li span {
  font-size: 18px;
  color: var(--flowtrack-black);
  font-weight: 700;
}

.team-details-info__details-list li a {
  color: var(--flowtrack-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details-info__details-list li a:hover {
  color: var(--flowtrack-black);
}

.team-details-info__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.team-details-info__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #4661c5;
  color: var(--flowtrack-white);
  font-size: 15px;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.team-details-info__social a:nth-child(2) {
  background-color: #1da1f2;
}

.team-details-info__social a:nth-child(3) {
  background-color: #dc395c;
}

.team-details-info__social a:nth-child(4) {
  background-color: #0073b0;
}

.team-details-info__social a:hover {
  background-color: var(--flowtrack-base);
}

.team-details__bottom {
  position: relative;
  display: block;
  margin-top: 92px;
}

.team-details__title-1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.team-details__text-1 {
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__progress-and-company {
  position: relative;
  display: block;
  margin-top: 44px;
  margin-bottom: 48px;
}

.team-details__progress-box {
  position: relative;
  display: block;
  margin-right: 70px;
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li+li {
  margin-top: 25px;
}

.team-details__progress-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: var(--flowtrack-black);
  margin-bottom: 7px;
}

.team-details__progress-list li .bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #f5f5f8;
}

.team-details__progress-list li .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 4px;
  top: -1px;
  background-color: var(--flowtrack-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress-list li .count-text {
  position: absolute;
  right: 0;
  bottom: 8px;
  color: #8f8e9a;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress-list li .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress-list li .bar.marb-0 {
  margin-bottom: 0;
}

.team-details__company-box {
  position: relative;
  display: block;
}

.team-details__company-list {
  position: relative;
  display: block;
}

.team-details__company-list li {
  position: relative;
  display: block;
}

.team-details__company-list li+li {
  margin-top: 26px;
}

.team-details__company-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.016em;
  margin-bottom: 3px;
}

.team-details__title-2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.team-details__text-3 {
  margin-top: 19px;
  margin-bottom: 53px;
}

.team-details__contact-box {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  padding: 68px 75px 75px;
}

.team-details__contact-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.team-details__contact-text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 1px;
  margin-bottom: 37px;
}

.team-details__form {
  position: relative;
  display: block;
}

.team-details__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.team-details__input-box input[type="text"],
.team-details__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--flowtrack-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--flowtrack-gray);
  display: block;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.team-details__input-box textarea {
  font-size: 16px;
  color: var(--flowtrack-gray);
  height: 150px;
  width: 100%;
  background-color: var(--flowtrack-white);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.team-details__input-box.text-message-box {
  height: 150px;
}

.team-details__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.team-details__btn {
  border: none;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;

  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 39px;
}

.blog-details__title-1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.blog-details__big-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.014em;
  color: var(--flowtrack-base);
  margin-top: 23px;
  margin-bottom: 21px;
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 51px;
  margin-bottom: 20px;
}

.blog-details__img-box-img-1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img-1 img {
  width: 100%;
}

.blog-details__title-2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
}

.blog-details__text-2 {
  margin-top: 11px;
  margin-bottom: 51px;
}

.blog-details__quote-box {
  position: relative;
  display: block;
  text-align: center;
}

.blog-details__quote-icon {
  position: relative;
  display: inline-block;
}

.blog-details__quote-icon img {
  width: auto;
}

.blog-details__quote-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: -0.016em;
  margin-top: 20px;
  margin-bottom: 9px;
}

.blog-details__quote-sub-title {
  color: var(--flowtrack-base);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--flowtrack-black-rgb), .12);
  padding-top: 20px;
  margin-top: 50px;
  margin-bottom: 49px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__tag>span {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
  margin-right: 20px;
}

.blog-details__tag>a {
  color: var(--flowtrack-gray);
  background-color: var(--flowtrack-extra);
  padding: 0 15px 2px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tag>a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.blog-details__tag>a+a {
  margin-left: 10px;
}

.blog-details__share {
  position: relative;
  display: block;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--flowtrack-black);
  font-size: 16px;
  color: var(--flowtrack-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__share a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.comment-one {
  position: relative;
  display: block;
}

.comment-one__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
  margin-bottom: 19px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 60px 0px rgba(21, 24, 32, 0.1);
  padding: 26px 26px 26px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 154px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.comment-one__content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.016em;
  margin-top: 6px;
  margin-bottom: 16px;
}

.comment-one__btn {
  position: absolute;
  right: 40px;
  top: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.028em;
  display: flex;
  align-items: center;
  color: var(--flowtrack-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn:hover {
  color: var(--flowtrack-black);
}

.comment-one__btn span {
  position: relative;
  margin-right: 10px;
}

.comment-form {
  position: relative;
  display: block;
  margin-top: 52px;
}

.comment-form .comment-one__title {
  margin-bottom: 1px;
}

.comment-form>p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 37px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--flowtrack-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--flowtrack-gray);
  display: block;
  letter-spacing: 0.02em;
}

.comment-form__input-box textarea {
  color: var(--flowtrack-gray);
  height: 150px;
  width: 100%;
  background-color: var(--flowtrack-extra);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  letter-spacing: 0.02em;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 150px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
  display: block;
  margin-top: -4px;
}

.sidebar__single+.sidebar__single {
  margin-top: 36px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--flowtrack-extra);
  color: var(--flowtrack-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  height: 60px;
  width: 100%;
  padding-right: 70px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--flowtrack-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--flowtrack-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--flowtrack-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--flowtrack-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--flowtrack-black);
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  z-index: 1;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 20px 0px rgba(21, 24, 32, 0.06);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 30px;
}

.sidebar__post-image>img {
  width: 96px;
}

.sidebar__post-content {
  position: relative;
  display: block;
}

.sidebar__post-content h3 {
  font-size: 16px;
  margin: 0;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.sidebar__post-content-meta {
  line-height: 23px;
  font-weight: 400;
  font-size: 14px;
  color: #8f8e9a;
  letter-spacing: normal;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  font-size: 15px;
  padding-right: 10px;
  top: 2px;
  position: relative;
}

.sidebar__post-content h3 a {
  margin-bottom: 8px;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
}

.sidebar__post-content h3 a:hover {
  color: var(--flowtrack-base);
}

.sidebar__category {
  position: relative;
  display: block;
}

.services-details__catagories-list {
  position: relative;
  display: block;
}

.services-details__catagories-list li {
  position: relative;
  display: block;
}

.services-details__catagories-list li+li {
  margin-top: 10px;
}

.services-details__catagories-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 20px 0px rgba(21, 24, 32, 0.06);
  font-size: 16px;
  font-weight: 600;
  color: var(--flowtrack-black);
  padding: 12px 20px 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.services-details__catagories-list li:hover a {
  color: var(--flowtrack-white);
}

.services-details__catagories-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.services-details__catagories-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.services-details__catagories-list li a span {
  font-size: 18px;
}

.sidebar__tags {
  position: relative;
  display: block;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: var(--flowtrack-gray);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #efeded;
  display: inline-block;
  padding: 2px 20px 2px;
  margin-left: 6px;
  font-weight: 500;
}

.sidebar__tags-list a+a {
  margin-left: 6px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
  border: 1px solid var(--flowtrack-base);
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog-sidebar {
  position: relative;
  display: block;

  z-index: 1;
}

.blog-sidebar__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.blog-sidebar__single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.blog-sidebar__img {
  position: relative;
  display: block;
}

.blog-sidebar__img img {
  width: 100%;
}

.blog-sidebar__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.blog-sidebar__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-sidebar__meta li {
  position: relative;
  display: block;
}

.blog-sidebar__meta li+li {
  margin-left: 18px;
}

.blog-sidebar__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #8f8e9a;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-sidebar__meta li a span {
  position: relative;
  margin-right: 10px;
  color: var(--flowtrack-black);
  font-weight: 700;
}

.blog-sidebar__meta li a:hover {
  color: var(--flowtrack-base);
}

.blog-sidebar__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 29px;
}


.blog-sidebar__title a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-sidebar__title a:hover {
  color: var(--flowtrack-base);
}

.blog-sidebar__btn-box {
  position: relative;
  display: block;
}

.blog-sidebar__pagination {
  position: relative;
  display: block;
}

.blog-sidebar__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 6px;
}

.blog-sidebar__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.blog-sidebar__pagination .pg-pagination li a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  color: var(--flowtrack-black);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 20px 0px rgba(4, 23, 26, 0.08);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.016em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-sidebar__pagination .pg-pagination li a:hover {
  background-color: var(--flowtrack-black);
  color: var(--flowtrack-white);
}


/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;

}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--flowtrack-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  border-radius: 5px;
  padding: 30px 20px 30px;
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--flowtrack-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--flowtrack-gray);
  font-family: var(--flowtrack-font);
  border-radius: 5px;
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--flowtrack-base);
  color: var(--flowtrack-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--flowtrack-black);
  color: var(--flowtrack-white);
}

.product__price-ranger {
  position: relative;
  padding: 30px 20px 30px;
  margin: 0;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  border-radius: 5px;
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--flowtrack-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--flowtrack-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--flowtrack-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--flowtrack-base);
  float: right;
  text-align: center;
  border: none;
  color: var(--flowtrack-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"]:hover {
  background: var(--flowtrack-black);
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-gray);
  font-size: 16px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}

.shop-category {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  padding: 30px 20px 30px;
  border-radius: 5px;
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--flowtrack-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--flowtrack-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--flowtrack-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--flowtrack-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--flowtrack-base);
  content: "\e918";
  font-family: 'icomoon' !important;
  opacity: 1;
  font-size: 15px;
  color: var(--flowtrack-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-category ul li a:hover:after {
  background-color: var(--flowtrack-black);
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  padding: 30px 15px 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.shop-product-tags .product__sidebar-title {
  margin-left: 5px;
}

.shop-product__tags-list {
  margin-top: -10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--flowtrack-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--flowtrack-white);
  display: inline-block;
  padding: 5px 20px 5px;
  margin-left: 5px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shop-product__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.shop-product__tags-list a:hover {
  color: var(--flowtrack-white);
  background: var(--flowtrack-base);
}


.shop-product-reviews {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  padding: 30px 20px 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li+li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--flowtrack-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--flowtrack-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
  border-color: var(--flowtrack-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  padding: 30px 20px 30px;
  border-radius: 5px;
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
  padding: 0;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--flowtrack-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flowtrack-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--flowtrack-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--flowtrack-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--flowtrack-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--flowtrack-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
  margin-left: 5px;
}









.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: var(--flowtrack-extra);
  color: var(--flowtrack-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--flowtrack-extra);
  padding: 15px 15px 15px;
  border-radius: 5px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--flowtrack-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--flowtrack-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--flowtrack-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1.0;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  background-color: var(--flowtrack-white);
  padding: 0 0 30px;
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li+li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--flowtrack-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li+li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--flowtrack-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 10px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--flowtrack-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--flowtrack-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--flowtrack-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--flowtrack-extra);
  padding: 3.5px 6px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-base);
  font-size: 16px;
  margin-right: 5px;
  top: -2px;
}

.single-product-style1__review p {
  color: var(--flowtrack-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  background-color: var(--flowtrack-white);
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 20px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--flowtrack-base);
  font-size: 16px;
}

.single-product-style2__review i+i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--flowtrack-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--flowtrack-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--flowtrack-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li+li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .15);
  color: var(--flowtrack-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}




















/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--flowtrack-base);
  opacity: 0;
  transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  border-radius: 15px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-white);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.product-details__nav .swiper-button-prev i {
  transform: rotate(180deg);
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}

.product-details__right {
  position: relative;
  display: block;
  margin-top: -7px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--flowtrack-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--flowtrack-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flowtrack-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
  color: var(--flowtrack-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--flowtrack-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--flowtrack-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
  border-color: var(--flowtrack-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
  opacity: 1;
}


.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--flowtrack-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--flowtrack-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--flowtrack-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--flowtrack-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--flowtrack-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flowtrack-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--flowtrack-extra);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 116px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--flowtrack-black);
  background-color: var(--flowtrack-extra);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--flowtrack-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--flowtrack-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--flowtrack-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  position: relative;
  display: inline-block;
  color: var(--flowtrack-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-left: 5px;
  font-family: var(--flowtrack-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--flowtrack-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--flowtrack-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 16px;
  color: var(--flowtrack-gray);
  height: 160px;
  width: 100%;
  background-color: var(--flowtrack-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  border-radius: 5px;
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  background-color: var(--flowtrack-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--flowtrack-gray);
  display: block;
  font-weight: 400;
  border-radius: 5px;
}

.review-form-one__form .thm-btn {
  position: relative;
  border: none;
}


/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--flowtrack-white);
  padding: 20px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 30px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  background-color: var(--flowtrack-extra);
  width: 100%;
  height: 60px;
  color: var(--flowtrack-gray);
  font-size: 16px;
  font-family: var(--flowtrack-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--flowtrack-base);
  background-color: var(--flowtrack-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  border: none;
  justify-content: space-between;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--flowtrack-gray);
  background-color: var(--flowtrack-white);
  color: var(--flowtrack-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--flowtrack-font);
  font-weight: 500;
  padding: 10px 15px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--flowtrack-base);
  background-color: var(--flowtrack-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--flowtrack-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--flowtrack-white);
  padding: 40px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--flowtrack-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
  background-color: var(--flowtrack-extra);
  width: 100%;
  height: 60px;
  color: var(--flowtrack-gray);
  font-size: 16px;
  font-family: var(--flowtrack-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
  border-color: var(--flowtrack-base);
  background-color: var(--flowtrack-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--flowtrack-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--flowtrack-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--flowtrack-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--flowtrack-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--flowtrack-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--flowtrack-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--flowtrack-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--flowtrack-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--flowtrack-black);
}

.login-one__form form .create-account p a {
  color: var(--flowtrack-base);
  font-weight: 500;
}





/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--flowtrack-gray-rgb), .50);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--flowtrack-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--flowtrack-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--flowtrack-white);
  background: var(--flowtrack-base);
  border-color: var(--flowtrack-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--flowtrack-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--flowtrack-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--flowtrack-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--flowtrack-white);
}






/***
=============================================
End
=============================================
***/






/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 101px;
  z-index: 1;
}

.project-details__inner {
  position: relative;
  display: block;
}

.project-details__img-box {
  position: relative;
  display: block;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
}

.project-details__catagory {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--flowtrack-white);
  margin-left: 60px;
  margin-right: 60px;
  margin-top: -60px;
  padding: 38px 50px 28px;
  z-index: 1;
}

.project-details__catagory-list {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 655px;
  width: 100%;
  justify-content: space-between;
}

.project-details__catagory-list li {
  position: relative;
  display: block;
}

.project-details__catagory-list li>span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.014em;
}

.project-details__catagory-list li>h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.project-details__social {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__social li {
  position: relative;
  display: block;
}

.project-details__social li+li {
  margin-left: 15px;
}

.project-details__social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #4661c5;
  border-radius: 50%;
  font-size: 14px;
  color: var(--flowtrack-white);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-details__social li:nth-child(2) a {
  background-color: #1da1f2;
}

.project-details__social li:nth-child(3) a {
  background-color: #ff2e2e;
}

.project-details__social li:nth-child(4) a {
  background-color: #0073b0;
}

.project-details__social li a:hover {
  color: var(--flowtrack-white);
}

.project-details__social li a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--flowtrack-black);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.project-details__social li a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.project-details__title-1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.04em;
  margin-top: 59px;
  margin-bottom: 31px;
}

.project-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}

.project-details__tag {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__tag>a {
  position: relative;
  background-color: #f5f5f8;
  font-size: 16px;
  line-height: 26px;
  color: var(--flowtrack-gray);
  padding: 2px 20px 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-details__tag>a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.project-details__tag>a+a {
  margin-left: 10px;
}

.project-details__share {
  position: relative;
  display: inline-block;
}

.project-details__share>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-black);
  border-radius: 50%;
}

.project-details__share>a:hover {
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
}

.project-details__pagination-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--flowtrack-black-rgb), .12);
  margin-top: 27px;
  padding-top: 36px;
}

.project-details__pagination-single {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__arrow {
  position: relative;
  display: inline-block;
}

.project-details__arrow a {
  position: relative;
  display: inline-block;
  font-size: 29px;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: rotate(-180deg);
}

.project-details__pagination-single-two .project-details__arrow a {
  transform: rotate(0);
}

.project-details__arrow a:hover {
  color: var(--flowtrack-base);
}

.project-details__next-content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.project-details__pagination-sub-title {
  line-height: 25px;
}

.project-details__pagination-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-details__pagination-title:hover {
  color: var(--flowtrack-base);
}

.project-details__previous-content {
  position: relative;
  display: block;
  margin-right: 30px;
  text-align: right;
}

/*--------------------------------------------------------------
# Related Projects
--------------------------------------------------------------*/
.related-project {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;

}

.related-project__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 57px;
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
  position: relative;
  display: block;

  z-index: 1;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;

  z-index: 1;
}

.services-details__left {
  position: relative;
  display: block;
}

.services-details__catagories-box {
  position: relative;
  display: block;
  padding: 33px 40px 40px;
  background-color: var(--flowtrack-extra);
}

.services-details__catagories-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.016em;
  margin-bottom: 26px;
}

.services-details__catagories-list {
  position: relative;
  display: block;
}

.services-details__catagories-list li {
  position: relative;
  display: block;
}

.services-details__catagories-list li+li {
  margin-top: 10px;
}

.services-details__catagories-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 20px 0px rgba(21, 24, 32, 0.06);
  font-size: 16px;
  font-weight: 600;
  color: var(--flowtrack-black);
  padding: 12px 20px 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.services-details__catagories-list li:hover a {
  color: var(--flowtrack-white);
}

.services-details__catagories-list li.active a {
  color: var(--flowtrack-white);
}

.services-details__catagories-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--flowtrack-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.services-details__catagories-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.services-details__catagories-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.services-details__catagories-list li a span {
  font-size: 18px;
}

.services-details__need-help {
  position: relative;
  display: block;
  background: var(--flowtrack-black);
  text-align: center;
  padding: 87px 20px 95px;
  margin-top: 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-details__need-help-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.services-details__need-help-shape-1 img {
  width: auto;
}

.services-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-details__need-help-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-white);
}

.services-details__need-help-btn-box {
  position: relative;
  display: block;
  margin-top: 49px;
}

.services-details__need-help-btn:hover {
  color: var(--flowtrack-black);
}

.services-details__need-help-btn::after {
  background-color: var(--flowtrack-white);
}

.services-details__contact {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--flowtrack-extra);
  padding: 29px 40px 37px;
}

.services-details__contact-icon {
  position: relative;
  display: inline-block;
  top: 5px;
}

.services-details__contact-icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--flowtrack-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-details__contact:hover .services-details__contact-icon span {
  transform: scale(0.9);
}

.services-details__contact-content {
  position: relative;
  display: block;
  margin-left: 25px;
}

.services-details__contact-content>span {
  font-size: 14px;
  line-height: 24px;
}

.services-details__contact-content>p {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
}

.services-details__contact-content>p>a {
  color: var(--flowtrack-black);
  margin-left: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__contact-content>p>a:hover {
  color: var(--flowtrack-base);
}

.services-details__right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -12px;
}

.services-details__title-1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.services-details__img-1 {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 31px;
}

.services-details__img-1 img {
  width: 100%;
}

.services-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.016em;
}

.services-details__text-2 {
  margin-top: 12px;
  margin-bottom: 42px;
}

.services-details__points-and-text-box {
  position: relative;
  display: flex;
}

.services-details__points-box {
  position: relative;
  display: block;
}

.services-details__points-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.016em;
  margin-bottom: 12px;
}

.services-details__points {
  position: relative;
  display: block;
}

.services-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__points li+li {
  margin-top: 4px;
}

.services-details__points li .icon {
  position: relative;
  display: inline-block;
  top: 3px;
}

.services-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--flowtrack-base);
}

.services-details__points li>p {
  margin-left: 15px;
  font-weight: 600;
  color: var(--flowtrack-black);
}

.services-details__text-box {
  margin-left: 93px;
}

.services-details__text-box>h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.016em;
  margin-bottom: 12px;
}

.services-details__faq {
  position: relative;
  display: block;
  margin-right: 30px;
  margin-top: 53px;
}

.services-details__faq .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 20px 0px rgba(16, 23, 40, 0.06);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-details__faq .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 80px 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.services-details__faq .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__faq .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 10px;
}

.services-details__faq .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 12px;
  color: var(--flowtrack-white);
  position: absolute;
  top: 50%;
  left: -50px;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 25px;
  height: 25px;
  background-color: var(--flowtrack-base);
}

.services-details__faq .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--flowtrack-white);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-details__faq .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 22px;
  margin-left: 40px;
  margin-right: 52px;
  padding-top: 17px;
  border-top: 1px solid rgba(var(--flowtrack-black-rgb), 0.08);
}

.services-details__faq .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;

  z-index: 1;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 118px;
  z-index: 1;
}

.faq-page__text-box {
  position: relative;
  display: block;
  background-color: var(--flowtrack-extra);
  padding: 80px 100px 66px;
  z-index: 1;
}

.faq-page__text-box .section-title {
  margin-bottom: 0
}

.faq-page__text-box-shape-1 {
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: -1;
}

.faq-page__text-box-shape-1 img {
  width: auto;
}

.faq-page__bottom {
  position: relative;
  display: block;
  margin-top: 60px;
}

.faq-page__bottom-left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.faq-page__search-form {
  position: relative;
  display: block;
}

.faq-page__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 50px;
  border: 1px solid #e0e0e0;
  color: var(--flowtrack-gray);
}

.faq-page__search-form button[type="submit"] {
  color: var(--flowtrack-black);
  font-size: 25px;
  position: absolute;
  top: 50%;
  right: 20px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: translateY(-50%);
}

.faq-page__bottom-left-img-box {
  position: relative;
  display: block;
  margin-top: 50px;
}

.faq-page__bottom-left-img {
  position: relative;
  display: block;
}

.faq-page__bottom-left-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--flowtrack-black-rgb), .45);
}

.faq-page__bottom-left-img img {
  width: 100%;
}

.faq-page__bottom-left-img-text {
  position: absolute;
  top: 35px;
  left: 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.03em;
  color: var(--flowtrack-white);
}

.faq-page__bottom-right {
  position: relative;
  display: block;
  margin-right: 120px;
  margin-top: -6px;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.016em;
  color: var(--flowtrack-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 18px;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 10px;
  color: var(--flowtrack-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: var(--flowtrack-black);
}

.faq-page__bottom-right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--flowtrack-white);
  background-color: var(--flowtrack-base);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 8px;
}

.faq-page__bottom-right .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;

  z-index: 1;
}

.testimonial-page .testimonial-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;

  z-index: 1;
}

/*--------------------------------------------------------------
# Why Choose Three
--------------------------------------------------------------*/
.why-choose-three {
  position: relative;
  display: block;

  z-index: 1;
}

/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.blog-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.blog-carousel-page .container {
  max-width: 1200px;
}

.blog-carousel-page .blog-one__single {
  margin-bottom: 0;
}



.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--flowtrack-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--flowtrack-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}


/*--------------------------------------------------------------
# Project Carousel Page
--------------------------------------------------------------*/
.project-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.project-carousel-page .container {
  max-width: 1200px;
}

.project-carousel-page .project-one__single {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Project Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.services-carousel-page .container {
  max-width: 1200px;
}

.services-carousel-page .services-one__single {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.team-carousel-page .team-two__single {
  margin-bottom: 0;
}

.floating-divider{
    position: relative;
    z-index: 20;
    margin: 0;
}

.floating-divider__track{
    position: relative;
    top: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 18px 0;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(29,78,216,0.22);
}

.floating-divider__inner{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: tickerMove 35s linear infinite;
}

.floating-divider__inner li{
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.floating-divider__inner li i,
.floating-divider__inner li span{
    color: #ffffff;
    opacity: 1;
}

.floating-divider__inner:hover{
    animation-play-state: paused;
}

@keyframes tickerMove{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

@media (max-width: 767px){
    .floating-divider__track{
        padding: 14px 0;
        box-shadow: none;
    }

    .floating-divider__inner li{
        font-size: 16px;
    }
}

/* ===== FOOTER UPGRADE ===== */

footer,
.footer-area,
.site-footer{
    background: linear-gradient(180deg, #0b0f19 0%, #05070d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

footer::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37,99,235,0.08), transparent 70%);
    pointer-events: none;
}

footer .footer-widget,
.footer-area .footer-widget,
.site-footer .footer-widget{
    position: relative;
    z-index: 1;
}

footer .container,
.footer-area .container,
.site-footer .container{
    position: relative;
    z-index: 1;
}

footer p,
footer li,
footer li a,
.footer-area p,
.footer-area li,
.footer-area li a,
.site-footer p,
.site-footer li,
.site-footer li a{
    color: #cbd5e1;
}

footer li a:hover,
.footer-area li a:hover,
.site-footer li a:hover{
    color: #ffffff;
}

footer p,
footer li,
footer li a,
.footer-area p,
.footer-area li,
.footer-area li a,
.site-footer p,
.site-footer li,
.site-footer li a{
    color: #cbd5e1;
}

footer li a:hover,
.footer-area li a:hover,
.site-footer li a:hover{
    color: #ffffff;
}

footer .container,
.footer-area .container,
.site-footer .container{
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-right: 40px;
}

footer ul{
    list-style: none;
    padding-left: 0;
}

footer ul li{
    list-style: none;
}


footer ul li a{
    transition: all 0.3s ease;
}

footer ul li a:hover{
    transform: translateX(6px);
    color: #ffffff;
}

.hasch-process-section{
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,0.12), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
}

.hasch-process-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../images/backgrounds/world-map.png') center center / 70% no-repeat;
    opacity:.06;
    pointer-events:none;
}

.hasch-process-wrap{
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hasch-process-title{
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
}

.hasch-process-subtitle{
    max-width: 820px;
    margin: 0 auto 80px;
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.hasch-route-line{
    position: absolute;
    top: 165px;
    left: 10%;
    width: 80%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb,#60a5fa,#2563eb);
    background-size: 200% 100%;
    animation: haschMoveLine 5s linear infinite;
    opacity: .8;
    box-shadow: 0 0 12px rgba(37,99,235,.15);
}

@keyframes haschMoveLine{
    0%{ background-position: 0% 50%; }
    100%{ background-position: 200% 50%; }
}

.hasch-dot{
    position: absolute;
    top: 156px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #2563eb;
    box-shadow: 0 0 0 7px rgba(37,99,235,.12);
}

.hasch-dot1{ left: 10%; }
.hasch-dot2{ left: 36%; }
.hasch-dot3{ left: 62%; }
.hasch-dot4{ right: 10%; }

.hasch-process-grid{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.hasch-process-card{
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hasch-process-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(37,99,235,.14);
}

.hasch-process-num{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 800;
    font-size: 22px;
}

.hasch-process-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(37,99,235,.22);
}

.hasch-process-card h3{
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.hasch-process-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 1199px){
    .hasch-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hasch-route-line,
    .hasch-dot{
        display: none;
    }
}

@media (max-width: 767px){
    .hasch-process-section{
        padding: 70px 20px;
    }

    .hasch-process-title{
        font-size: 38px;
    }

    .hasch-process-subtitle{
        font-size: 16px;
        margin-bottom: 50px;
    }

    .hasch-process-grid{
        grid-template-columns: 1fr;
    }

    .hasch-process-card{
        padding: 26px 20px;
    }
}

.simple-process-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    text-align: center;
    overflow: hidden;
}

.simple-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/backgrounds/world-map.png') center center / 70% no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.simple-process-section .container {
    position: relative;
    z-index: 1;
}

.simple-process-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.simple-process-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.simple-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.simple-process-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.simple-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(37,99,235,0.12);
}

.simple-process-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.simple-process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.simple-process-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 992px) {
    .simple-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .simple-process-grid {
        grid-template-columns: 1fr;
    }
}

.simple-process-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.simple-process-subtitle {
    color: #5f6b7a;
    max-width: 820px;
    margin: 0 auto 70px;
    line-height: 1.8;
    font-size: 18px;
}

.simple-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.simple-process-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.simple-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(37,99,235,0.14);
}

.simple-process-number {
    width: 62px;
    height: 62px;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-weight: 800;
    font-size: 22px;
}

.simple-process-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 700;
}

.simple-process-card p {
    color: #6b7280;
    line-height: 1.9;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 1199px) {
    .simple-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .simple-process-title {
        font-size: 40px;
    }

    .simple-process-subtitle {
        font-size: 16px;
        margin-bottom: 45px;
    }

    .simple-process-grid {
        grid-template-columns: 1fr;
    }

    .simple-process-card {
        padding: 28px 22px;
    }
}

.simple-process-title {
    font-size: 56px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #111827 !important;
}

.simple-process-subtitle {
    color: #5f6b7a !important;
    max-width: 820px !important;
    margin: 0 auto 70px !important;
    line-height: 1.8 !important;
    font-size: 18px !important;
}

.simple-process-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

.simple-process-card {
    background: rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 24px !important;
    padding: 34px 28px !important;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08) !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.simple-process-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 70px rgba(37,99,235,0.14) !important;
}

.simple-process-number {
    width: 62px !important;
    height: 62px !important;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%) !important;
    color: #2563eb !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    font-weight: 800 !important;
    font-size: 22px !important;
}

.simple-process-card h3 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    color: #111827 !important;
    font-weight: 700 !important;
}

.simple-process-card p {
    color: #6b7280 !important;
    line-height: 1.9 !important;
    margin: 0 !important;
    font-size: 15px !important;
}

@media (max-width: 1199px) {
    .simple-process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .simple-process-title {
        font-size: 40px !important;
    }

    .simple-process-subtitle {
        font-size: 16px !important;
        margin-bottom: 45px !important;
    }

    .simple-process-grid {
        grid-template-columns: 1fr !important;
    }

    .simple-process-card {
        padding: 28px 22px !important;
    }
}

.hasch-process-section{
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,0.12), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
}

.hasch-process-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../images/backgrounds/world-map.png') center center / 70% no-repeat;
    opacity:.06;
    pointer-events:none;
}

.hasch-process-wrap{
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hasch-process-title{
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
}

.hasch-process-subtitle{
    max-width: 820px;
    margin: 0 auto 70px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
}

.hasch-route-line{
    position: absolute;
    top: 165px;
    left: 10%;
    width: 80%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb,#60a5fa,#2563eb);
    background-size: 200% 100%;
    animation: haschMoveLine 5s linear infinite;
    opacity: .8;
    box-shadow: 0 0 12px rgba(37,99,235,.15);
}

@keyframes haschMoveLine{
    0%{ background-position: 0% 50%; }
    100%{ background-position: 200% 50%; }
}

.hasch-dot{
    position: absolute;
    top: 156px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #2563eb;
    box-shadow: 0 0 0 7px rgba(37,99,235,.12);
}

.hasch-dot1{ left: 10%; }
.hasch-dot2{ left: 36%; }
.hasch-dot3{ left: 62%; }
.hasch-dot4{ right: 10%; }

.hasch-process-grid{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hasch-process-card{
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.hasch-process-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(37,99,235,0.14);
}

.hasch-process-num{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 800;
    font-size: 22px;
}

.hasch-process-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(37,99,235,.22);
}

.hasch-process-card h3{
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.hasch-process-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

@media (max-width: 1199px){
    .hasch-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hasch-route-line,
    .hasch-dot{
        display: none;
    }
}

@media (max-width: 767px){
    .hasch-process-section{
        padding: 70px 20px;
    }

    .hasch-process-title{
        font-size: 40px;
    }

    .hasch-process-subtitle{
        font-size: 16px;
        margin-bottom: 45px;
    }

    .hasch-process-grid{
        grid-template-columns: 1fr;
    }

    .hasch-process-card{
        padding: 28px 22px;
    }
}

.hasch-process-section{
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.hasch-process-wrap{
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hasch-process-title{
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
}

.hasch-process-subtitle{
    max-width: 820px;
    margin: 0 auto 70px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
}

.hasch-route-line{
    position: absolute;
    top: 165px;
    left: 10%;
    width: 80%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb,#60a5fa,#2563eb);
    background-size: 200% 100%;
    animation: haschMoveLine 5s linear infinite;
    opacity: .8;
    box-shadow: 0 0 12px rgba(37,99,235,.15);
}

@keyframes haschMoveLine{
    0%{background-position:0% 50%;}
    100%{background-position:200% 50%;}
}

.hasch-dot{
    position: absolute;
    top: 156px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #2563eb;
    box-shadow: 0 0 0 7px rgba(37,99,235,.12);
}

.hasch-dot1{left:10%;}
.hasch-dot2{left:36%;}
.hasch-dot3{left:62%;}
.hasch-dot4{right:10%;}

.hasch-process-grid{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hasch-process-card{
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.hasch-process-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(37,99,235,0.14);
}

.hasch-process-num{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 800;
    font-size: 22px;
}

.hasch-process-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(37,99,235,.22);
}

.hasch-process-card h3{
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.hasch-process-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

@media (max-width: 1199px){
    .hasch-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hasch-route-line,
    .hasch-dot{
        display: none;
    }
}

@media (max-width: 767px){
    .hasch-process-section{
        padding: 70px 20px;
    }

    .hasch-process-title{
        font-size: 40px;
    }

    .hasch-process-subtitle{
        font-size: 16px;
        margin-bottom: 45px;
    }

    .hasch-process-grid{
        grid-template-columns: 1fr;
    }

    .hasch-process-card{
        padding: 28px 22px;
    }
}

/* REMOVE WHITE GAP UNDER TICKER */
.floating-divider{
    margin-bottom: 0 !important;
}

.floating-divider__track{
    margin-bottom: 0 !important;
}

footer,
.site-footer{
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* kill random white space blocks */
section:empty{
    display:none;
}

/* remove gap between sections */
section{
    margin-bottom: 0 !important;
}

/* CLOSE THE WHITE GAP BETWEEN TICKER AND FOOTER */
.floating-divider{
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    line-height: 0 !important;
}

.floating-divider__track{
    margin: 0 !important;
    border: 0 !important;
    padding: 15px 0 !important;
    min-height: 0 !important;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d2b57 0%, #0a2347 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.floating-divider__inner{
    align-items: center;
    gap: 32px;
}

.floating-divider__inner li{
    gap: 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff !important;
}

.floating-divider__inner li i,
.floating-divider__inner li span{
    font-size: 1em;
    line-height: 1;
}

.floating-divider + footer,
.floating-divider + .site-footer{
    margin-top: -32px !important;
}

.floating-divider + footer .site-footer__top,
.floating-divider + .site-footer .site-footer__top{
    padding-top: 32px !important;
}

@media (max-width: 767px){
    .floating-divider__track{
        padding: 10px 0 !important;
        box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

    .floating-divider__inner{
        gap: 24px;
    }

    .floating-divider__inner li{
        gap: 6px;
        font-size: 15px;
        line-height: 1.15;
    }

    .floating-divider__inner li i,
    .floating-divider__inner li span{
        font-size: 0.9em;
    }
}

/* ===== HOMEPAGE POLISH RESTORE - REAL SELECTORS ===== */

/* service cards */
.services-one__single{
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(15,23,42,0.08) !important;
    overflow: hidden !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.services-one__single:hover{
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 70px rgba(37,99,235,0.14) !important;
}

.services-one__icon{
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(37,99,235,0.22) !important;
}

.services-one__read-more a{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 24px rgba(239,17,17,0.18) !important;
}

/* about-three icon points */
.about-three__points-single{
    background: rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08) !important;
    padding: 18px 18px !important;
}

.about-three__points-icon{
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(37,99,235,0.22) !important;
}

/* sign up right box */
.sign-up__right-inner{
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(15,23,42,0.08) !important;
}

.sign-up__btn.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* contact two left ticks */
.contact-two__points li{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.contact-two__points li .icon{
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(37,99,235,0.18) !important;
}

.contact-two__points li .icon span{
    color: #fff !important;
    font-size: 14px !important;
}

/* contact form card */
.contact-one__content{
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08) !important;
}

.contact-one__input-box input{
    background: #f5f7fb !important;
    border: 1px solid #e5ebf5 !important;
    border-radius: 10px !important;
}

.contact-one__btn.thm-btn,
.contact-two__btn-box-1 .thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* why choose cards */
.why-choose-two__list-single{
    background: rgba(255,255,255,0.84) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.78) !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08) !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.why-choose-two__list-single:hover{
    transform: translateY(-6px) !important;
    box-shadow: 0 26px 60px rgba(37,99,235,0.14) !important;
}

.why-choose-two__list-single .icon{
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(37,99,235,0.22) !important;
}

/* generic homepage buttons */
.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* ===== HOMEPAGE POLISH RESTORE - REAL SELECTORS ===== */

/* service cards */
.services-one__single{
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(15,23,42,0.08) !important;
    overflow: hidden !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.services-one__single:hover{
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 70px rgba(37,99,235,0.14) !important;
}

.services-one__icon{
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 25px rgba(37,99,235,0.22) !important;
}

.services-one__read-more a{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 24px rgba(239,17,17,0.18) !important;
}

/* about-three icon points */
.about-three__points-single{
    background: rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08) !important;
    padding: 18px 18px !important;
}

.about-three__points-icon{
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(37,99,235,0.22) !important;
}

/* sign up right box */
.sign-up__right-inner{
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 55px rgba(15,23,42,0.08) !important;
}

.sign-up__btn.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* contact two left ticks */
.contact-two__points li{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.contact-two__points li .icon{
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(37,99,235,0.18) !important;
}

.contact-two__points li .icon span{
    color: #fff !important;
    font-size: 14px !important;
}

/* contact form card */
.contact-one__content{
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(15,23,42,0.08) !important;
}

.contact-one__input-box input{
    background: #f5f7fb !important;
    border: 1px solid #e5ebf5 !important;
    border-radius: 10px !important;
}

.contact-one__btn.thm-btn,
.contact-two__btn-box-1 .thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* why choose cards */
.why-choose-two__list-single{
    background: rgba(255,255,255,0.84) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.78) !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08) !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.why-choose-two__list-single:hover{
    transform: translateY(-6px) !important;
    box-shadow: 0 26px 60px rgba(37,99,235,0.14) !important;
}

.why-choose-two__list-single .icon{
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(37,99,235,0.22) !important;
}

/* generic homepage buttons */
.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 14px 28px rgba(239,17,17,0.18) !important;
}

/* ===== COUNTER SECTION UPGRADE ===== */
.counter-one{
    position: relative;
    background: linear-gradient(135deg, #020617 0%, #020617 100%) !important;
    overflow: hidden;
}

/* blue glass overlay */
.counter-one::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(37,99,235,0.25), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(59,130,246,0.18), transparent 40%);
    z-index: 0;
}

/* keep content above overlay */
.counter-one .container{
    position: relative;
    z-index: 2;
}

/* icons glow */
.counter-one__icon{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

/* numbers stronger */
.counter-one__count{
    color: #ffffff !important;
    font-weight: 700;
}

/* labels softer */
.counter-one__text{
    color: rgba(255,255,255,0.7) !important;
}


/* ===== PREMIUM TYPOGRAPHY SYSTEM ===== */

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

/* hero headings */
.main-slider h1,
.main-slider__title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* menu */
.main-menu a {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* subtle upgrade */
p {
    color: #64748b;
}

/* Font Awesome live compatibility */
.fa-solid,
.fas,
.fa,
.fa-classic {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-thin,
.fat {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* ===== HEADER PREMIUM POLISH ===== */

/* top black bar */
.main-menu-three__top{
    background: #0b0f19 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.main-menu-three__top-inner{
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* contact list */
.main-menu-three__contact-list{
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-menu-three__contact-list li{
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-menu-three__contact-list .icon{
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    box-shadow: 0 12px 24px rgba(37,99,235,0.18);
}

.main-menu-three__contact-list .icon i{
    color: #ffffff !important;
    font-size: 18px;
}

.main-menu-three__contact-list .text p,
.main-menu-three__contact-list .text a{
    margin: 0;
    color: rgba(255,255,255,0.82) !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.main-menu-three__contact-list .text a:hover{
    color: #60a5fa !important;
}

/* follow us block */
.main-menu-three__social-box-title{
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    margin-right: 14px;
}

.main-menu-three__social{
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-menu-three__social a{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(15,23,42,0.18);
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.main-menu-three__social a:nth-child(1){
    background: linear-gradient(135deg,#1877f2 0%, #1257b8 100%);
}

.main-menu-three__social a:nth-child(2){
    background: linear-gradient(135deg,#d946ef 0%, #f97316 100%);
}

.main-menu-three__social a:nth-child(3){
    background: linear-gradient(135deg,#2563eb 0%, #1d4ed8 100%);
}

.main-menu-three__social a:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15,23,42,0.24);
    opacity: .95;
}

/* main nav wrapper */
.main-menu-three__wrapper{
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 56%, #eef4ff 100%) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(15,23,42,0.08);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.main-menu-three__wrapper::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    height: 34px;
    background: linear-gradient(90deg, #ef1111 0%, #ff5b2e 100%);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    z-index: 0;
}

.main-menu-three__wrapper::after{
    content: "";
    position: absolute;
    left: 232px;
    bottom: 0;
    width: 186px;
    height: 24px;
    background: #101a32;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 12% 100%);
    z-index: 0;
}

.main-menu-three__wrapper-inner{
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

/* logo area */
.main-menu-three__logo{
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid rgba(15,23,42,0.08);
    display: flex;
    align-items: center;
    min-height: 110px;
}

.main-menu-three__logo a{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 0;
}

.main-menu-three__logo img{
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: none;
    transform: none;
}

.main-header-three,
.main-menu-three,
.main-menu-three__wrapper,
.main-menu-three__wrapper-inner{
    margin-bottom: 0 !important;
}

.main-slider-three{
    margin-top: 0 !important;
}

/* nav links */
.main-menu__list > li{
    margin-right: 8px;
}

.main-menu__list > li > a{
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: #6b7280 !important;
    text-transform: uppercase;
    transition: color .25s ease;
}

.main-menu__list > li:hover > a,
.main-menu__list > li.current > a,
.main-menu__list > li.current-menu-item > a{
    color: #2563eb !important;
}

/* account dropdown */
.main-menu__list li ul{
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,23,42,0.12);
    border: 1px solid rgba(15,23,42,0.06);
}

.main-menu__list li ul li a{
    font-weight: 500;
}

.main-menu-three .main-menu__list > li > ul,
.stricky-header.main-menu-three .main-menu__list > li > ul {
    min-width: 270px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(15,23,42,0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 50px rgba(15,23,42,0.14) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-menu-three .main-menu__list > li > ul::before,
.stricky-header.main-menu-three .main-menu__list > li > ul::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid rgba(15,23,42,0.08);
    border-left: 1px solid rgba(15,23,42,0.08);
    transform: rotate(45deg);
}

.main-menu-three .main-menu__list > li > ul > li > a,
.stricky-header.main-menu-three .main-menu__list > li > ul > li > a {
    border-radius: 12px;
    padding: 12px 14px !important;
    font-size: 15px;
    line-height: 1.35;
    color: #0f172a !important;
}

.main-menu-three .main-menu__list > li > ul > li + li,
.stricky-header.main-menu-three .main-menu__list > li > ul > li + li {
    margin-top: 4px;
}

.main-menu-three .main-menu__list > li > ul > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li > ul > li:hover > a {
    background: linear-gradient(135deg, rgba(37,99,235,0.10) 0%, rgba(239,17,17,0.08) 100%) !important;
    color: #2563eb !important;
    padding-left: 18px !important;
}

/* search box */
.main-menu__search-form{
    background: #f8fafc;
    border: 1px solid #e5ebf5;
    border-radius: 14px;
    overflow: hidden;
}

.main-menu__search-form input{
    background: transparent !important;
    color: #111827;
}

.main-menu__search-form button{
    color: #2563eb !important;
}

/* quote button */
.main-menu-three__btn,
.main-menu-three__btn.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 30px rgba(239,17,17,0.22) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    padding: 18px 34px !important;
}

.main-menu-three__btn:hover,
.main-menu-three__btn.thm-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(239,17,17,0.28) !important;
}

/* mobile */
@media (max-width: 991px){
    .main-menu-three__top-inner{
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }

    .main-menu-three__contact-list{
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .main-menu-three__logo{
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }

    .main-menu-three__wrapper-inner{
        min-height: 88px;
    }

    .main-menu-three__wrapper{
        box-shadow: 0 14px 28px rgba(15,23,42,0.10) !important;
    }

    .main-menu-three__wrapper::before{
        width: 196px;
        height: 18px;
    }

    .main-menu-three__wrapper::after{
        left: 126px;
        width: 108px;
        height: 12px;
    }
}

.main-menu-three__social-box{
    background: transparent !important;
}

.main-menu-three__social-box-title{
    display: block;
}

.main-menu-three__wrapper{
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 56%, #eef4ff 100%) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.main-menu-three__left{
    gap: 0;
}

.main-menu-three__logo{
    margin-right: 30px !important;
    padding-right: 30px;
    border-right: 1px solid rgba(15,23,42,0.08);
    background: transparent !important;
}

.main-menu-three__logo:before{
    content: none !important;
    display: none !important;
}

.main-menu-three__logo a{
    background: transparent !important;
    padding: 0 !important;
    padding-right: 0 !important;
    min-height: 110px;
    display: flex !important;
    align-items: center !important;
}

.main-menu-three__logo img{
    width: 176px !important;
    max-width: 100%;
    height: auto !important;
    display: block;
}

.main-menu__list > li > a{
    color: #1e293b !important;
}

.main-menu__list > li:hover > a{
    color: #2563eb !important;
}

.main-menu__list > li > a::after{
    content: none;
}

/* MOBILE MENU TEXT FIX */
.mobile-nav__content {
    background: #111111 !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > a button,
.mobile-nav__content .main-menu__list > li > a span,
.mobile-nav__content .navigation li a,
.mobile-nav__content ul li a {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}

.mobile-nav__content .main-menu__list > li > a:hover,
.mobile-nav__content .navigation li a:hover,
.mobile-nav__content ul li a:hover {
    color: #3b82f6 !important;
}

.mobile-nav__content .dropdown-btn,
.mobile-nav__content .mobile-nav__close {
    color: #ffffff !important;
}

.mobile-nav__content .main-menu__list li {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* ===== HERO PREMIUM LOOK ===== */

/* darker gradient overlay */
.main-slider:before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.85) 0%,
        rgba(15,23,42,0.55) 40%,
        rgba(15,23,42,0.2) 100%
    );
    z-index: 1;
}

/* ensure content is above overlay */
.main-slider .container{
    position: relative;
    z-index: 2;
}

/* hero text glow */
.main-slider h1{
    text-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.main-slider p{
    color: rgba(255,255,255,0.85);
}

/* hero button upgrade */
.main-slider .thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(239,17,17,0.3);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.main-slider .thm-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(239,17,17,0.35);
}

.main-slider .sub-title,
.main-slider__sub-title{
    color: #facc15 !important; /* softer gold */
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 14px;
    opacity: 0.9;
}

.main-slider .sub-title,
.main-slider__sub-title{
    color: #facc15 !important; /* softer gold */
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 14px;
    opacity: 0.9;
}

.main-slider h1 br{
    display: none;
}

.main-slider h1 br{
    display: none;
}

.main-slider .container{
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-slider h1{
    max-width: 820px;
    font-size: 60px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.main-slider h1{
    max-width: 820px;
    font-size: 60px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.main-slider .sub-title,
.main-slider__sub-title{
    color: #eab308 !important;
    font-weight: 500;
    letter-spacing: 0.14em;
    font-size: 13px;
    opacity: 0.85;
}

.main-slider .sub-title,
.main-slider__sub-title{
    color: #eab308 !important;
    font-weight: 500;
    letter-spacing: 0.14em;
    font-size: 13px;
    opacity: 0.85;
}

.main-slider h1{
    animation: fadeSlideUp 0.8s ease forwards;
}

@keyframes fadeSlideUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== WHY CHOOSE SECTION UPGRADE ===== */

.why-choose-two{
    padding-top: 100px;
    padding-bottom: 100px;
}

/* right text block */
.why-choose-two__right{
    padding-left: 20px;
}

/* title */
.why-choose-two__right .section-title__title{
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

/* description */
.why-choose-two__right p{
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* list items */
.why-choose-two__list-single{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* ICON BOX (this is key) */
.why-choose-two__list-single .icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(37,99,235,0.2);
}

/* icon inside */
.why-choose-two__list-single .icon span{
    color: #ffffff !important;
    font-size: 20px;
}

/* text */
.why-choose-two__list-title{
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

/* subtle hover (premium feel) */
.why-choose-two__list-single:hover .icon{
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(37,99,235,0.3);
    transition: all .3s ease;
}

/* ===== WHY CHOOSE GLASS CARD ===== */

.why-choose-two__right{
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 45px;
    border-radius: 24px;

    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);

    border: 1px solid rgba(255,255,255,0.5);
}

/* spacing improvement */
.why-choose-two{
    padding-top: 120px;
    padding-bottom: 120px;
}

/* optional: lift effect */
.why-choose-two__right:hover{
    transform: translateY(-4px);
    transition: all 0.3s ease;
    box-shadow: 0 30px 70px rgba(15,23,42,0.12);
}

.why-choose-two{
    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #eef2ff 100%
    );
}

.why-choose-two__list-single{
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;

    padding: 25px;
    transition: all 0.3s ease;

    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.why-choose-two__list-single:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}

.why-choose-two__list-single .icon{
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    border-radius: 12px;
    padding: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

.why-choose-two__list-single .icon span{
    color: #fff;
    font-size: 22px;
}

.why-choose-two__right h2{
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.why-choose-two__right p{
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== TESTIMONIAL TWO / TRUST CARDS UPGRADE ===== */

.testimonial-two{
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%) !important;
}

html[data-theme="dark"] .testimonial-two{
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,0.16), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%) !important;
}

.testimonial-two__single{
    padding: 12px !important;
}

.testimonial-two__single-inner{
    background: rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08) !important;
    padding: 34px 34px 28px !important;
    min-height: 380px !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
    position: relative;
    overflow: hidden;
}

.testimonial-two__single-inner:hover{
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 70px rgba(37,99,235,0.14) !important;
}

.testimonial-two__shape-1,
.testimonial-two__shape-2{
    opacity: .08 !important;
}

/* stars */
.testimonial-two__ratting{
    margin-bottom: 22px !important;
}

.testimonial-two__ratting .fas{
    color: #eab308 !important;
    font-size: 18px !important;
    margin-right: 4px !important;
}

/* description */
.testimonial-two__text{
    font-size: 17px !important;
    line-height: 1.9 !important;
    color: #475569 !important;
    margin-bottom: 26px !important;
    min-height: 150px !important;
}

/* bottom client/info row */
.testimonial-two__client-info{
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: auto !important;
}

.testimonial-two__client-img{
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg,#eff6ff 0%, #dbeafe 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 24px rgba(37,99,235,0.16) !important;
    border: 1px solid rgba(37,99,235,0.08) !important;
}

.testimonial-two__client-img img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* title + label */
.testimonial-two__client-content h3{
    margin: 0 0 6px !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.testimonial-two__client-content h3 a{
    color: #0f172a !important;
}

.testimonial-two__client-content h3 a:hover{
    color: #2563eb !important;
}

.testimonial-two__client-content p{
    margin: 0 !important;
    font-size: 15px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

/* section bottom summary bar */
.testimonial-two__bottom{
    margin-top: 36px !important;
    padding: 26px 30px !important;
    background: rgba(255,255,255,0.72) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.85) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 40px rgba(15,23,42,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.testimonial-two__bottom-left{
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.testimonial-two__bottom-left .icon{
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(37,99,235,0.20) !important;
}

.testimonial-two__bottom-left .icon span{
    color: #fff !important;
    font-size: 22px !important;
}

.testimonial-two__bottom-text{
    margin: 0 !important;
    color: #475569 !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
}

.testimonial-two__btn.thm-btn{
    background: linear-gradient(135deg,#ef1111 0%, #c70f0f 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 30px rgba(239,17,17,0.20) !important;
    font-weight: 700 !important;
    padding: 16px 28px !important;
}

/* responsive */
@media (max-width: 991px){
    .testimonial-two__bottom{
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .testimonial-two__single-inner{
        min-height: auto !important;
    }

    .testimonial-two__text{
        min-height: auto !important;
    }
}

.testimonial-two__single-inner{
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(12px) !important;

    border-radius: 20px !important;
    padding: 32px !important;

    box-shadow: 
        0 10px 30px rgba(15,23,42,0.06),
        0 2px 10px rgba(15,23,42,0.04);

    border: 1px solid rgba(255,255,255,0.6) !important;
}

.testimonial-two__single-inner:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 60px rgba(37,99,235,0.12);
}

.testimonial-two__client-img{
    background: linear-gradient(135deg,#eff6ff,#dbeafe) !important;
    border-radius: 16px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(37,99,235,0.15);
}

.testimonial-two__client-img img{
    width: 60% !important;
    height: auto !important;
    object-fit: contain !important;
}

.testimonial-two__client-content h3{
    font-size: 21px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
}

.testimonial-two__text{
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

.testimonial-two__single-inner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,#2563eb,#ef4444);
    border-radius: 20px 20px 0 0;
}

/* ===== PARTNER FORM GLASS ===== */

.delivery-partnership__right,
.contact-one__form-box{
    background: rgba(255,255,255,0.65) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 24px;
    padding: 40px;

    box-shadow: 
        0 20px 60px rgba(15,23,42,0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);

    border: 1px solid rgba(255,255,255,0.5);
}

.contact-one__form input,
.contact-one__form textarea{
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid #e2e8f0 !important;

    border-radius: 12px !important;
    padding: 14px 16px !important;

    font-size: 15px !important;
    color: #0f172a !important;

    transition: all 0.25s ease;
}

/* focus state */
.contact-one__form input:focus,
.contact-one__form textarea:focus{
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    outline: none;
}

.delivery-partnership__right h2{
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
}

.delivery-partnership__right h6{
    color: #ef4444;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-one__btn,
.delivery-partnership__btn{
    background: linear-gradient(135deg,#ef1111,#c70f0f) !important;
    border-radius: 14px !important;

    font-weight: 700;
    letter-spacing: 0.02em;

    box-shadow: 0 18px 35px rgba(239,17,17,0.25);

    transition: all 0.3s ease;
}

.contact-one__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(239,17,17,0.35);
}

.delivery-partnership{
    background: linear-gradient(
        180deg,
        #0f172a 0%,
        #1e293b 100%
    );
}

/* ===== GLOBAL PREMIUM CARD SYSTEM ===== */
.services-one__single,
.testimonial-two__single-inner,
.why-choose-two__list-single,
.contact-one__content,
.sign-up__right-inner,
.hasch-process-card,
.delivery-capabilities__item,
.cta-box,
.feature-box {
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08) !important;
    border: 1px solid #f1f5f9 !important;
}

.services-one{
    background: #ffffff !important;
}

.services-one{
    background: #ffffff !important;
}

/* ===== PREMIUM FOOTER ===== */

.site-footer{
    background: linear-gradient(135deg, #020617 0%, #0b1120 50%, #020617 100%) !important;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.site-footer::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(37,99,235,0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(239,17,17,0.12), transparent 40%);
    pointer-events: none;
}

/* glass feel layer */
.site-footer__top,
.site-footer__middle{
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* headings */
.site-footer h3,
.site-footer h4{
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* text */
.site-footer p,
.site-footer li,
.site-footer a{
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* hover */
.site-footer a:hover{
    color: #60a5fa;
}

/* links spacing */
.footer-widget ul li{
    margin-bottom: 10px;
}

/* logo area */
.footer-widget__logo img{
    opacity: 0.95;
}

/* bottom bar */
.site-footer__bottom{
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
}

/* social icons */
.site-footer__social a{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.site-footer__social a:hover{
    background: #2563eb;
    transform: translateY(-2px);
}

.delivery-capabilities{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.delivery-capabilities img{
    border-radius: 16px;
}

.services-one__single,
.feature-box,
.testimonial-two__single-inner,
.contact-one__content{
    padding: 30px !important;
}

.services-one__btn{
    border-radius: 10px !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.services-one__btn:hover{
    transform: translateY(-2px);
}

.delivery-partnership{
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.delivery-partnership::before{
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    pointer-events: none;
}

.delivery-partnership h2,
.delivery-partnership p,
.delivery-partnership li{
    color: #e2e8f0 !important;
}

.delivery-partnership h2,
.delivery-partnership p,
.delivery-partnership li{
    color: #e2e8f0 !important;
}

.delivery-partnership .icon{
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    border-radius: 10px;
}

.contact-one__form-box{
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(12px);

    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.delivery-partnership::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239,17,17,0.25), transparent);
    top: -100px;
    right: -100px;
}

@media (max-width: 767px) {
    .why-choose-two .row {
        flex-direction: column;
    }

    .why-choose-two__left,
    .why-choose-two__right {
        width: 100%;
        max-width: 100%;
    }

    .why-choose-two__left {
        margin-bottom: 30px;
    }

    .why-choose-two__left .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .why-choose-two__left .col-xl-6,
    .why-choose-two__left .col-lg-6,
    .why-choose-two__left .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .why-choose-two__img-1,
    .why-choose-two__img-2,
    .why-choose-two__img-3,
    .why-choose-two__img-4 {
        overflow: hidden;
        border-radius: 20px;
    }

    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img,
    .why-choose-two__img-3 img,
    .why-choose-two__img-4 img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .why-choose-two__right {
        padding-top: 10px;
    }

    .why-choose-two__text {
        max-width: 100%;
    }

    .why-choose-two__list li {
        width: 100%;
    }
}

.video-two {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

.why-choose-two,
.why-choose-three {
    margin-top: 0 !important;
    padding-top: 40px !important;
}


.site-footer__about-text {
    line-height: 1.9;
    color: #cfd7e6;
}

.footer-widget__title {
    letter-spacing: 0.5px;
}

.footer-widget__navigation-list li {
    margin-bottom: 10px;
}

.footer-widget__navigation-list li a {
    transition: all 0.3s ease;
}

.footer-widget__navigation-list li a:hover {
    color: #ff1e1e;
    padding-left: 4px;
}

.footer-widget__post-content h3 {
    font-size: 18px;
    line-height: 1.6;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer__social a {
    transition: all 0.3s ease;
}

.site-footer__social a:hover {
    background: #ff1e1e;
    color: #fff;
}

@media (max-width: 767px) {
    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-widget__logo img {
        width: 190px;
        height: auto !important;
    }

    .site-footer .footer-widget__title {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .site-footer .footer-widget__about-text,
    .site-footer .footer-widget__navigation-list li a,
    .site-footer .footer-widget__post-content span,
    .site-footer .footer-widget__post-content h3 a,
    .site-footer .footer-widget__emergency-call a,
    .site-footer .footer-bottom p,
    .site-footer .footer-bottom a {
        font-size: 14px;
        line-height: 1.75;
    }

    .site-footer .footer-widget__post-content {
        margin-bottom: 16px;
    }

    .site-footer .footer-widget__post-content h3 {
        font-size: 16px;
    }
}

.footer-widget__post-content a {
    transition: 0.3s;
}

.footer-widget__post-content a:hover {
    color: #ff1e1e;
    text-decoration: underline;
}

.site-footer .footer-widget__column {
    position: relative;
    z-index: 2;
}

.site-footer .footer-widget__logo {
    margin-bottom: 22px;
}

.site-footer .footer-widget__logo a {
    display: inline-flex;
    align-items: center;
}

.site-footer .footer-widget__logo img {
    width: 220px;
    max-width: 100%;
    height: auto !important;
    display: block;
    opacity: 1;
    filter: none;
    transform: none;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.site-footer .footer-widget__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.site-footer .footer-widget__about-text,
.site-footer .footer-widget__navigation-list li a,
.site-footer .footer-widget__post-content span,
.site-footer .footer-widget__post-content h3 a,
.site-footer .footer-widget__emergency-call a,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
    font-size: 15px;
    line-height: 1.8;
}

.site-footer .footer-widget__about-text {
    color: #dde6f5;
    max-width: 300px;
}

.site-footer .footer-widget__navigation-list li {
    margin-bottom: 12px;
}

.site-footer .footer-widget__navigation-list li a,
.site-footer .footer-widget__post-content h3 a,
.site-footer .footer-widget__emergency-call a {
    color: rgba(255,255,255,0.86);
}

.site-footer .footer-widget__post-content {
    padding-left: 0;
    margin-bottom: 18px;
}

.site-footer .footer-widget__post-content span {
    display: block;
    color: #aebed6;
    margin-bottom: 6px;
}

.site-footer .footer-widget__post-content h3 {
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.site-footer .footer-widget__emergency-call {
    gap: 8px;
}

.site-footer .footer-widget__emergency-call a:first-child {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.site-footer .footer-bottom {
    position: relative;
    z-index: 2;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: #d7e0ef;
}

.site-footer .site-footer__social {
    gap: 12px;
}

@media (max-width: 767px) {
.why-choose-two__img-1,
.why-choose-two__img-2,
.why-choose-two__img-3,
.why-choose-two__img-4 {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.why-choose-two__img-1 img,
.why-choose-two__img-2 img,
.why-choose-two__img-3 img,
.why-choose-two__img-4 img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

}

@media (max-width: 767px) {
    .why-choose-two__img-1,
    .why-choose-two__img-2,
    .why-choose-two__img-3,
    .why-choose-two__img-4 {
        margin-bottom: 20px;
    }

    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img,
    .why-choose-two__img-3 img,
    .why-choose-two__img-4 img {
        height: 220px;
    }
}

@media (min-width: 768px) {
    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img,
    .why-choose-two__img-3 img,
    .why-choose-two__img-4 img {
        height: 280px;
    }
}

.custom-two-man-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #2f66ff 0%, #1f49d8 100%);
    border-radius: 18px;
}

.custom-two-man-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

:root{
    --glass-bg: rgba(255,255,255,0.12);
    --glass-bg-strong: rgba(255,255,255,0.18);
    --glass-bg-soft: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.22);
    --glass-border-strong: rgba(255,255,255,0.32);
    --glass-shadow: 0 14px 38px rgba(15, 23, 42, 0.10);
    --glass-shadow-hover: 0 18px 44px rgba(29, 60, 152, 0.14);
    --glass-highlight: inset 0 1px 0 rgba(255,255,255,0.22);
    --glass-blur: 12px;
    --glass-radius: 22px;

    --brand-blue: #1D3C98;
    --brand-red: #ca1f26;

    --glass-text: #132238;
    --glass-text-soft: #5a6778;
}

.services-three,
.sign-up,
.project-three,
.destination-one,
.testimonial-two,
.contact-two,
.cta-two,
.why-choose-two{
    position: relative;
}

/* Header only */
.stricky-header.main-menu-three,
.stricky-header .sticky-header__content{
    background: #ffffff;
    border-bottom: 1px solid rgba(15,23,42,0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

.stricky-header:not(.stricky-fixed),
.stricky-header:not(.stricky-fixed) .sticky-header__content{
    display: none !important;
}

.main-menu-three .main-menu__wrapper,
.main-menu-three .main-menu__wrapper-inner,
.main-menu-three .main-menu__left,
.main-menu-three .main-menu__right{
    background: transparent;
}

/* Shared glass panels */
.services-one__single,
.sign-up__left,
.sign-up__right,
.project-three__content,
.destination-one__left,
.destination-one__right,
.testimonial-two__single-inner,
.contact-two__left,
.contact-one__content,
.cta-two__inner,
.why-choose-two__list-single,
.about-three__count-box,
.about-three__contact-box,
.contact-two__progress-single{
    background: linear-gradient(180deg, var(--glass-bg-strong) 0%, var(--glass-bg) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--glass-radius);
    position: relative;
    overflow: hidden;
}

/* soft highlight */
.services-one__single::before,
.contact-one__content::before,
.cta-two__inner::before,
.why-choose-two__list-single::before,
.testimonial-two__single-inner::before,
.project-three__content::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%);
}

/* Hover */
.services-one__single,
.testimonial-two__single-inner,
.why-choose-two__list-single,
.destination-one__left,
.destination-one__right,
.contact-one__content,
.cta-two__inner,
.sign-up__left,
.sign-up__right,
.project-three__content,
.hasch-process-card{
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.services-one__single:hover,
.testimonial-two__single-inner:hover,
.why-choose-two__list-single:hover,
.destination-one__left:hover,
.destination-one__right:hover,
.contact-one__content:hover,
.cta-two__inner:hover,
.sign-up__left:hover,
.sign-up__right:hover,
.project-three__content:hover,
.hasch-process-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
    border-color: var(--glass-border-strong);
}

/* Content readability */
.services-one__title a,
.why-choose-two__list-title a,
.testimonial-two__client-content h3 a,
.project-three__content h3 a,
.destination-one__right .content h3,
.contact-one__title,
.cta-two__title{
    color: var(--glass-text);
}

.services-one__text,
.testimonial-two__text,
.why-choose-two__text,
.contact-two__text,
.destination-one__right .content p,
.destination-one__left-text,
.about-three__count-text{
    color: var(--glass-text-soft);
}

/* Services cards */
.services-one__single{
    border-radius: 24px;
}

.services-one__img img{
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.services-one__content{
    padding: 24px 24px 26px;
}

/* Project / capability content overlay */
.project-three__content{
    border-radius: 18px;
}

/* Buttons: keep branding, just refine */
.sign-up__btn,
.contact-one__btn,
.cta-two__btn,
.testimonial-two__btn,
.contact-two__btn-box-1 .thm-btn,
.about-three__btn,
.popup-btn{
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 26px rgba(29,60,152,.16);
    transition: transform .3s ease, box-shadow .3s ease;
}

.sign-up__btn:hover,
.contact-one__btn:hover,
.cta-two__btn:hover,
.testimonial-two__btn:hover,
.contact-two__btn-box-1 .thm-btn:hover,
.about-three__btn:hover,
.popup-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(29,60,152,.22);
}

/* Branded icon blocks */
.services-one__icon,
.why-choose-two__list-single .icon,
.destination-one__left .icon,
.destination-one__right .icon,
.cta-two__title-box .icon,
.about-three__contact-box .icon{
    background: linear-gradient(135deg, rgba(29,60,152,.96) 0%, rgba(202,31,38,.90) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(29,60,152,.18);
}

/* Why choose arrow */
.why-choose-two__list-arrow{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(29,60,152,.08);
    color: var(--brand-blue);
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.why-choose-two__list-single:hover .why-choose-two__list-arrow{
    transform: translateX(3px);
    background: var(--brand-blue);
    color: #fff;
}

/* Forms */
.contact-one__content-box .contact-one__input-box input,
.chat-form .form-group input,
.chat-form .form-group textarea{
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(148,163,184,.24);
    color: var(--glass-text);
    border-radius: 14px;
}

.contact-one__content-box .contact-one__input-box input:focus,
.chat-form .form-group input:focus,
.chat-form .form-group textarea:focus{
    outline: none;
    border-color: rgba(29,60,152,.42);
    box-shadow: 0 0 0 4px rgba(29,60,152,.10);
}

/* Popup */
.chat-popup .popup-inner{
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Inner panel padding */
.sign-up__left,
.sign-up__right,
.contact-two__left,
.contact-one__content,
.cta-two__inner,
.destination-one__left,
.destination-one__right{
    padding: 30px;
}

.testimonial-two__single-inner{
    padding: 30px 28px;
}

.cta-two__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Focus accessibility */
.thm-btn:focus,
a:focus,
button:focus,
input:focus,
textarea:focus{
    outline: 2px solid rgba(29,60,152,.35);
    outline-offset: 2px;
}

/* Fallback */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
    .stricky-header.main-menu-three,
    .stricky-header .sticky-header__content{
        background: rgba(10,18,36,.92);
    }

    .services-one__single,
    .sign-up__left,
    .sign-up__right,
    .project-three__content,
    .destination-one__left,
    .destination-one__right,
    .testimonial-two__single-inner,
    .contact-two__left,
    .contact-one__content,
    .cta-two__inner,
    .why-choose-two__list-single,
    .about-three__count-box,
    .about-three__contact-box,
    .contact-two__progress-single,
    .chat-popup .popup-inner,
    .hasch-process-card{
        background: rgba(255,255,255,.94);
    }
}

/* Responsive */
@media (max-width: 991px){
    .sign-up__left,
    .sign-up__right,
    .contact-two__left,
    .contact-one__content,
    .cta-two__inner,
    .destination-one__left,
    .destination-one__right{
        padding: 24px;
    }

    .cta-two__inner{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px){
    .services-one__content,
    .testimonial-two__single-inner,
    .sign-up__left,
    .sign-up__right,
    .contact-two__left,
    .contact-one__content,
    .cta-two__inner,
    .destination-one__left,
    .destination-one__right{
        padding: 20px;
    }

    .services-one__single{
        border-radius: 20px;
    }

    .services-one__img img{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
}

/* Process section – aligned to same glass system */
.hasch-process-section{
    position: relative;
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(29,60,152,.08), transparent 28%),
        radial-gradient(circle at right center, rgba(202,31,38,.06), transparent 24%),
        linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.hasch-process-wrap{
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hasch-process-title{
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
}

.hasch-process-subtitle{
    max-width: 820px;
    margin: 0 auto 70px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
}

.hasch-route-line{
    position: absolute;
    top: 165px;
    left: 10%;
    width: 80%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb,#60a5fa,#2563eb);
    background-size: 200% 100%;
    animation: haschMoveLine 5s linear infinite;
    opacity: .75;
    box-shadow: 0 0 12px rgba(37,99,235,.12);
}

@keyframes haschMoveLine{
    0%{background-position:0% 50%;}
    100%{background-position:200% 50%;}
}

.hasch-dot{
    position: absolute;
    top: 156px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #2563eb;
    box-shadow: 0 0 0 7px rgba(37,99,235,.10);
}

.hasch-dot1{left:10%;}
.hasch-dot2{left:36%;}
.hasch-dot3{left:62%;}
.hasch-dot4{right:10%;}

.hasch-process-grid{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hasch-process-card{
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--glass-bg-strong) 0%, rgba(255,255,255,0.82) 100%);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-strong);
    border-radius: 24px;
    padding: 32px 26px;
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    text-align: center;
}

.hasch-process-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,.20), transparent 45%);
    pointer-events: none;
}

.hasch-process-num{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 800;
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 25px rgba(37,99,235,.14);
}

.hasch-process-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg,#2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(37,99,235,.18);
}

.hasch-process-card h3{
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    position: relative;
    z-index: 1;
}

.hasch-process-card p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    position: relative;
    z-index: 1;
}

html[data-theme="dark"] .hasch-process-section{
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,0.16), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(59,130,246,0.12), transparent 30%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
}

html[data-theme="dark"] .hasch-process-title{
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .hasch-process-subtitle{
    color: var(--hasch-theme-text) !important;
}

html[data-theme="dark"] .hasch-process-card{
    background: var(--hasch-theme-surface) !important;
    border: 1px solid var(--hasch-theme-border) !important;
    box-shadow: var(--hasch-theme-card-shadow) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] .hasch-process-card::before{
    background: none !important;
}

html[data-theme="dark"] .hasch-process-card h3{
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .hasch-process-card p{
    color: var(--hasch-theme-text) !important;
}

@media (max-width: 1199px){
    .hasch-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hasch-route-line,
    .hasch-dot{
        display: none;
    }
}

@media (max-width: 767px){
    .hasch-process-section{
        padding: 70px 20px;
    }

    .hasch-process-title{
        font-size: 40px;
    }

    .hasch-process-subtitle{
        font-size: 16px;
        margin-bottom: 45px;
    }

    .hasch-process-grid{
        grid-template-columns: 1fr;
    }

    .hasch-process-card{
        padding: 28px 22px;
    }
}

@media (max-width: 767px){
    .why-choose-two__list-single{
        padding: 18px 16px;
        border-radius: 18px;
    }

    .why-choose-two__list-title{
        font-size: 18px;
        line-height: 1.35;
    }

    .why-choose-two__list-title br{
        display: none;
    }

    .why-choose-two__list-arrow{
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .why-choose-two__list-single .icon,
    .why-choose-two__list-single .custom-two-man-icon{
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .why-choose-two__list-single .icon span{
        font-size: 20px;
        line-height: 1;
    }

    .why-choose-two__list-box{
        margin-top: 24px;
    }

    .why-choose-two__list li + li{
        margin-top: 14px;
    }
}

/* Mobile text safety pass */
@media (max-width: 767px){
    body,
    p,
    li,
    a,
    button,
    span,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .section-title__title,
    .page-header__inner h1,
    .page-header__inner h2,
    .seo-fnd-pagetitle,
    .contact-one__title,
    .cta-one__title-box h3,
    .cta-two__title,
    .project-details__title,
    .services-details__title,
    .about-three__points-title,
    .services-one__title a,
    .project-three__content h3 a,
    .team-one__name a,
    .testimonial-one__client-name a,
    .testimonial-two__client-content h3 a,
    .footer-widget__title,
    .footer-widget__post-content h3 {
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .section-title__title,
    .page-header__inner h1,
    .page-header__inner h2,
    .seo-fnd-pagetitle {
        font-size: clamp(28px, 7vw, 40px) !important;
        line-height: 1.2 !important;
    }

    .services-one__text,
    .testimonial-one__text,
    .testimonial-two__text,
    .contact-two__text,
    .why-choose-two__text,
    .destination-one__right .content p,
    .project-details__text,
    .services-details__text,
    .about-three__text,
    .about-three__text-2,
    .contact-one__text,
    .footer-widget__about-text {
        line-height: 1.7 !important;
    }

    .thm-btn,
    .cta-one__btn,
    .cta-two__btn,
    .main-menu-three__btn,
    .about-three__btn,
    .contact-one__btn,
    .testimonial-one__btn,
    .testimonial-two__btn,
    .popup-btn,
    .contact-two__btn-box-1 .thm-btn {
        white-space: normal !important;
        word-break: break-word;
        height: auto !important;
        min-height: 0 !important;
        line-height: 1.35 !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        text-align: center;
    }

    .about-three__btn-and-contact,
    .cta-one__inner,
    .cta-two__inner,
    .main-menu__search-cart-btn-box {
        flex-wrap: wrap;
    }

    .cta-one__btn-box a,
    .cta-two__btn-box a {
        width: 100%;
        justify-content: center;
    }

    .testimonial-two__single-inner,
    .hasch-process-card,
    .why-choose-two__right,
    .cta-one__inner,
    .cta-two__inner,
    .contact-one__content,
    .contact-two__left,
    .project-three__content,
    .destination-one__left,
    .destination-one__right,
    .about-three__count-box,
    .about-three__contact-box,
    .contact-two__progress-single {
        min-height: 0 !important;
        height: auto !important;
    }

    .testimonial-two__single-inner {
        padding: 24px 20px !important;
    }

    .why-choose-two__right {
        padding: 24px 20px !important;
    }

    .why-choose-two__list-single {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .why-choose-two__list-title {
        min-width: 0;
        flex: 1 1 calc(100% - 68px);
        line-height: 1.4 !important;
    }

    .why-choose-two__list-arrow {
        flex-shrink: 0;
        margin-left: 66px;
    }

    .contact-one__input-box input,
    .main-menu__search-form input,
    .chat-form .form-group input,
    .chat-form .form-group textarea {
        min-width: 0;
    }

    .site-footer__bottom-inner,
    .footer-widget__post,
    .footer-widget__navigation-list li a,
    .footer-widget__services-list li a {
        white-space: normal !important;
    }

    .hasch-process-section {
        overflow: visible !important;
    }
}

@media (max-width: 480px){
    .section-title__title,
    .page-header__inner h1,
    .page-header__inner h2,
    .seo-fnd-pagetitle {
        font-size: clamp(24px, 8vw, 32px) !important;
    }

    .hasch-process-card,
    .testimonial-two__single-inner,
    .contact-one__content,
    .contact-two__left,
    .cta-one__inner,
    .cta-two__inner,
    .why-choose-two__right {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .why-choose-two__list-arrow {
        margin-left: 0;
    }
}

/* Why Choose HASCH final layout pass */
.why-choose-two{
    padding-top: 88px !important;
    padding-bottom: 88px !important;
}

html[data-theme="dark"] .why-choose-two{
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,0.16), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%) !important;
}

.why-choose-two .row{
    align-items: center;
    --bs-gutter-x: 36px;
    --bs-gutter-y: 28px;
}

.why-choose-two__left{
    max-width: 560px;
    height: 100%;
}

.why-choose-two__left .row{
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
    align-items: stretch;
}

.why-choose-two__img-1,
.why-choose-two__img-2,
.why-choose-two__img-3,
.why-choose-two__img-4{
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.7);
}

.why-choose-two__img-1 img,
.why-choose-two__img-2 img,
.why-choose-two__img-3 img,
.why-choose-two__img-4 img{
    width: 100%;
    height: 440px;
    min-height: 440px;
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    object-position: center 38%;
    border-radius: 22px;
}

.why-choose-two__right{
    max-width: 620px;
    margin-left: auto;
    padding: 36px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.why-choose-two__right .section-title{
    margin-bottom: 18px;
}

.why-choose-two__text{
    margin-bottom: 24px;
}

.why-choose-two__list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-two__list li{
    width: 100%;
    margin: 0 !important;
    display: block;
}

.why-choose-two__list-single{
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    margin-bottom: 0;
    min-height: 148px;
}

.why-choose-two__list-single .icon{
    width: 56px;
    height: 56px;
    min-width: 56px;
}

.why-choose-two__list-title{
    min-width: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.why-choose-two__list-title a{
    display: block;
}

.why-choose-two__list-arrow{
    margin-left: 0;
    justify-self: end;
}

@media (max-width: 991px){
    .why-choose-two{
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .why-choose-two .row{
        --bs-gutter-x: 24px;
    }

    .why-choose-two__left,
    .why-choose-two__right{
        max-width: 100%;
    }

    .why-choose-two__right{
        padding: 28px !important;
    }

    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img,
    .why-choose-two__img-3 img,
    .why-choose-two__img-4 img{
        height: 320px;
        min-height: 320px;
        aspect-ratio: 4 / 5;
    }
}


@media (max-width: 767px){
    .why-choose-two{
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .why-choose-two .row{
        --bs-gutter-y: 22px;
    }

    .why-choose-two__left{
        margin-bottom: 0;
    }

    .why-choose-two__left .row{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .why-choose-two__left .col-xl-6,
    .why-choose-two__left .col-lg-6,
    .why-choose-two__left .col-md-6{
        width: auto;
        max-width: none;
        flex: initial;
        padding: 0;
    }

    .why-choose-two__img-1,
    .why-choose-two__img-2{
        border-radius: 18px;
    }

    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img{
        min-height: 160px;
        aspect-ratio: 1 / 1.08;
        border-radius: 18px;
    }

    .why-choose-two__right{
        padding: 22px 18px !important;
        border-radius: 20px;
    }

    .why-choose-two__right .section-title__title{
        font-size: clamp(28px, 7vw, 36px) !important;
        line-height: 1.18 !important;
    }

    .why-choose-two__text{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .why-choose-two__list{
        gap: 12px;
    }

    .why-choose-two__list-single{
        grid-template-columns: 52px minmax(0, 1fr) 40px;
        gap: 12px;
        padding: 16px 16px;
        border-radius: 16px;
    }

    .why-choose-two__list-single .icon,
    .why-choose-two__list-single .custom-two-man-icon{
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .why-choose-two__list-title{
        font-size: 16px;
        line-height: 1.35;
    }

    .why-choose-two__list-arrow{
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px){
    .why-choose-two__left .row{
        gap: 10px;
    }

    .why-choose-two__img-1 img,
    .why-choose-two__img-2 img{
        min-height: 136px;
        aspect-ratio: 1 / 1;
    }

    .why-choose-two__right{
        padding: 18px 16px !important;
    }

    .why-choose-two__list-single{
        grid-template-columns: 48px minmax(0, 1fr) 36px;
        gap: 10px;
        padding: 14px 14px;
    }

    .why-choose-two__list-single .icon,
    .why-choose-two__list-single .custom-two-man-icon{
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .why-choose-two__list-title{
        font-size: 15px;
    }

    .why-choose-two__list-arrow{
        width: 36px;
        height: 36px;
    }
}

.hasch-about-points {
    margin: 20px 0 0;
    padding-left: 22px;
    list-style: disc;
}

.hasch-about-points li {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.8;
}

.about-three__sub-title {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #0f172a;
}

.about-three__text-2 {
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .about-three__text-2 {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    .about-three__text-2 {
        font-size: 14px;
        line-height: 1.6;
    }
}

.hasch-join-section {
    padding: 120px 0;
    background: #ffffff;
}

.hasch-join-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.hasch-join-intro {
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

.hasch-join-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.hasch-join-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.hasch-join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hasch-join-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
}

.hasch-join-card p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.hasch-join-card .thm-btn {
    margin-top: auto;
}

@media (max-width: 991px) {
    .hasch-join-section {
        padding: 90px 0;
    }

    .hasch-join-grid {
        grid-template-columns: 1fr;
    }

    .hasch-join-intro {
        font-size: 16px;
        line-height: 1.7;
    }

    .hasch-join-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .hasch-join-section {
        padding: 70px 0;
    }

    .hasch-join-card {
        padding: 25px 20px;
    }

    .hasch-join-card h3 {
        font-size: 20px;
    }

    .hasch-join-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}


.hasch-join-section {
    padding: 120px 0;
    background: #ffffff;
}

.hasch-join-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.hasch-join-intro {
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

.hasch-join-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.hasch-join-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.hasch-join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hasch-join-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
}

.hasch-join-card p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.hasch-join-card .thm-btn {
    margin-top: auto;
}

@media (max-width: 991px) {
    .hasch-join-section {
        padding: 90px 0;
    }

    .hasch-join-grid {
        grid-template-columns: 1fr;
    }

    .hasch-join-intro {
        font-size: 16px;
        line-height: 1.7;
    }

    .hasch-join-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .hasch-join-section {
        padding: 70px 0;
    }

    .hasch-join-card {
        padding: 25px 20px;
    }

    .hasch-join-card h3 {
        font-size: 20px;
    }

    .hasch-join-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

html[data-theme="dark"] .hasch-join-section {
    background: linear-gradient(180deg, #0b1220 0%, #111827 100%) !important;
}

html[data-theme="dark"] .hasch-join-section .section-title__tagline {
    color: #60a5fa !important;
}

html[data-theme="dark"] .hasch-join-section .section-title__title {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .hasch-join-intro {
    color: var(--hasch-theme-text) !important;
}

html[data-theme="dark"] .hasch-join-card {
    background: var(--hasch-theme-surface) !important;
    border: 1px solid var(--hasch-theme-border) !important;
    box-shadow: var(--hasch-theme-card-shadow) !important;
}

html[data-theme="dark"] .hasch-join-card h3 {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .hasch-join-card p {
    color: var(--hasch-theme-text) !important;
}

html[data-theme="dark"] .about-one {
    background: linear-gradient(180deg, #0b1220 0%, #111827 100%) !important;
}

html[data-theme="dark"] .about-one__title {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .about-one__text {
    color: var(--hasch-theme-text) !important;
}

html[data-theme="dark"] .about-one__points li {
    background: var(--hasch-theme-surface) !important;
    border-color: var(--hasch-theme-border) !important;
    box-shadow: var(--hasch-theme-card-shadow) !important;
}

html[data-theme="dark"] .about-one__points li .content > h3 {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .about-one__points li .content > p {
    color: var(--hasch-theme-text) !important;
}


.hasch-page-points {
    margin: 15px 0 25px;
    padding-left: 20px;
    list-style: disc;
}

.hasch-page-points li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #4b5563;
}

.services-details__content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.3;
}

.services-details__content h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
}

.hasch-hire-form .contact-one__input-box {
    margin-bottom: 20px;
}

.hasch-form-check {
    margin: 10px 0 25px;
    color: #4b5563;
    line-height: 1.7;
}

.hasch-form-check input {
    margin-right: 8px;
}

:root {
    --hasch-dark: #0f1720;
    --hasch-dark-2: #161f2b;
    --hasch-dark-3: #0b121a;
    --hasch-text: #d9dee7;
    --hasch-muted: #a7b0bd;
    --hasch-border: #2a3442;
    --hasch-primary: #1d4ed8;
    --hasch-primary-hover: #1e40af;
    --hasch-heading-soft: #f3f4f6;
}

html,
body,
.page-wrapper,
section,
header,
footer,
.main-menu-three__wrapper,
.main-menu-three__top,
.site-footer,
.site-footer-two,
.services-one__single,
.project-one__content,
.services-details__catagories-box,
.services-details__contact,
.services-details__points-and-text-box,
.sidebar__single,
.contact-one__content,
.contact-two__left,
.contact-two__right,
.why-choose-two__right,
.why-choose-two__list-single,
.destination-one__left,
.destination-one__right,
.testimonial-one__single,
.testimonial-two__single-inner,
.faq-one-accrodion .accrodion,
.hasch-process-card,
.hasch-join-card,
.about-one__points li,
.about-three__count-box,
.about-three__contact-box,
.project-three__content,
.cta-one__inner,
.cta-two__inner,
.mobile-nav__content,
.footer-widget__column,
.theme-toggle,
.contact-one__input-box input,
.contact-one__input-box textarea,
.main-menu__search-form input[type="search"],
.sidebar__search-form input[type="search"],
.nice-select,
.testimonial-two__bottom {
    transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

html[data-theme="dark"],
body.dark,
body.dark-mode {
    --hasch-theme-bg: var(--hasch-dark);
    --hasch-theme-surface: var(--hasch-dark-2);
    --hasch-theme-surface-strong: var(--hasch-dark-3);
    --hasch-theme-text: var(--hasch-text);
    --hasch-theme-heading: var(--hasch-heading-soft);
    --hasch-theme-border: var(--hasch-border);
    --hasch-theme-primary: var(--hasch-primary);
    --hasch-theme-primary-hover: var(--hasch-primary-hover);
    --hasch-theme-card-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body,
html[data-theme="dark"] .page-wrapper,
body.dark,
body.dark-mode {
    background: var(--hasch-dark) !important;
    color: var(--hasch-text) !important;
}

html[data-theme="dark"] .main-header,
html[data-theme="dark"] .main-header-three,
html[data-theme="dark"] .main-menu,
html[data-theme="dark"] .main-menu-three__top,
html[data-theme="dark"] .main-menu-three__wrapper,
html[data-theme="dark"] .stricky-header.main-menu-three,
html[data-theme="dark"] .stricky-header .sticky-header__content {
    background: var(--hasch-dark) !important;
    border-color: var(--hasch-border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] .about-one,
html[data-theme="dark"] .about-three,
html[data-theme="dark"] .why-choose-two,
html[data-theme="dark"] .testimonial-two,
html[data-theme="dark"] .hasch-join-section,
html[data-theme="dark"] .work-steps-one,
html[data-theme="dark"] .counter-one,
html[data-theme="dark"] .contact-one,
html[data-theme="dark"] .contact-two,
html[data-theme="dark"] .destination-one,
html[data-theme="dark"] .project-three,
html[data-theme="dark"] .services-three,
html[data-theme="dark"] .cta-one,
html[data-theme="dark"] .cta-two,
html[data-theme="dark"] .faq-one,
html[data-theme="dark"] .faq-page,
html[data-theme="dark"] .services-details,
html[data-theme="dark"] .hasch-process-section {
    background: var(--hasch-dark) !important;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer-two,
html[data-theme="dark"] .footer-bottom {
    background: var(--hasch-dark-3) !important;
    border-color: var(--hasch-border) !important;
}

html[data-theme="dark"] .services-one__single,
html[data-theme="dark"] .project-one__content,
html[data-theme="dark"] .services-details__catagories-box,
html[data-theme="dark"] .services-details__contact,
html[data-theme="dark"] .services-details__points-and-text-box,
html[data-theme="dark"] .sidebar__single,
html[data-theme="dark"] .contact-one__content,
html[data-theme="dark"] .contact-two__left,
html[data-theme="dark"] .contact-two__right,
html[data-theme="dark"] .why-choose-two__right,
html[data-theme="dark"] .why-choose-two__list-single,
html[data-theme="dark"] .destination-one__left,
html[data-theme="dark"] .destination-one__right,
html[data-theme="dark"] .testimonial-one__single,
html[data-theme="dark"] .testimonial-two__single-inner,
html[data-theme="dark"] .faq-one-accrodion .accrodion,
html[data-theme="dark"] .hasch-process-card,
html[data-theme="dark"] .hasch-join-card,
html[data-theme="dark"] .about-one__points li,
html[data-theme="dark"] .about-three__count-box,
html[data-theme="dark"] .about-three__contact-box,
html[data-theme="dark"] .project-three__content,
html[data-theme="dark"] .cta-one__inner,
html[data-theme="dark"] .cta-two__inner,
html[data-theme="dark"] .mobile-nav__content,
html[data-theme="dark"] .footer-widget__column,
html[data-theme="dark"] .testimonial-two__bottom,
html[data-theme="dark"] .services-details__need-help {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] .section-title__title,
html[data-theme="dark"] .seo-fnd-pagetitle,
html[data-theme="dark"] .page-header__inner h1,
html[data-theme="dark"] .page-header__inner h2,
html[data-theme="dark"] .about-one__title,
html[data-theme="dark"] .about-three__sub-title,
html[data-theme="dark"] .about-three__points-title,
html[data-theme="dark"] .why-choose-two__list-title,
html[data-theme="dark"] .why-choose-two__list-title a,
html[data-theme="dark"] .testimonial-two__client-content h3 a,
html[data-theme="dark"] .services-one__title a,
html[data-theme="dark"] .project-three__content h3 a,
html[data-theme="dark"] .destination-one__right .content h3,
html[data-theme="dark"] .footer-widget__title,
html[data-theme="dark"] .footer-widget__navigation-list li a,
html[data-theme="dark"] .footer-widget__post-content h3 a,
html[data-theme="dark"] .main-menu .main-menu__list > li > a,
html[data-theme="dark"] .main-menu-three .main-menu__list > li > a,
html[data-theme="dark"] .stricky-header .main-menu__list > li > a,
html[data-theme="dark"] .main-menu-three__contact-list li .text p,
html[data-theme="dark"] .main-menu-three__contact-list li .text a,
html[data-theme="dark"] .main-menu-three__social-box-title {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] label,
html[data-theme="dark"] .section-title__tagline,
html[data-theme="dark"] .section-title__tagline-box,
html[data-theme="dark"] .about-one__text,
html[data-theme="dark"] .about-three__text,
html[data-theme="dark"] .about-three__text-2,
html[data-theme="dark"] .why-choose-two__text,
html[data-theme="dark"] .testimonial-two__text,
html[data-theme="dark"] .testimonial-two__bottom-text,
html[data-theme="dark"] .destination-one__left-text,
html[data-theme="dark"] .destination-one__right .content p,
html[data-theme="dark"] .services-one__text,
html[data-theme="dark"] .project-three__content p,
html[data-theme="dark"] .services-details__text-1,
html[data-theme="dark"] .services-details__text-2,
html[data-theme="dark"] .services-details__text-box p,
html[data-theme="dark"] .contact-one__text,
html[data-theme="dark"] .contact-one__content-bottom-text-box p,
html[data-theme="dark"] .footer-widget__about-text,
html[data-theme="dark"] .footer-widget__post-content span,
html[data-theme="dark"] .footer-bottom p,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .site-footer li,
html[data-theme="dark"] .site-footer a,
html[data-theme="dark"] .hasch-page-points li,
html[data-theme="dark"] .hasch-form-check {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] a {
    color: inherit;
}

html[data-theme="dark"] a:hover {
    color: var(--hasch-primary) !important;
}

html[data-theme="dark"] .thm-btn:not(.theme-toggle),
html[data-theme="dark"] .main-menu-three__btn,
html[data-theme="dark"] .cta-one__btn,
html[data-theme="dark"] .testimonial-one__btn,
html[data-theme="dark"] .popup-btn {
    background: var(--hasch-primary) !important;
    border-color: var(--hasch-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.28) !important;
}

html[data-theme="dark"] .thm-btn:not(.theme-toggle):hover,
html[data-theme="dark"] .main-menu-three__btn:hover,
html[data-theme="dark"] .cta-one__btn:hover,
html[data-theme="dark"] .testimonial-one__btn:hover,
html[data-theme="dark"] .popup-btn:hover {
    background: var(--hasch-primary-hover) !important;
    border-color: var(--hasch-primary-hover) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .theme-toggle {
    background: rgba(22, 31, 43, 0.9) !important;
    border: 1px solid var(--hasch-border) !important;
    color: var(--hasch-theme-heading) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .theme-toggle__icon {
    background: rgba(29, 78, 216, 0.18) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .contact-one__input-box input[type="text"],
html[data-theme="dark"] .contact-one__input-box input[type="email"],
html[data-theme="dark"] .contact-one__input-box textarea,
html[data-theme="dark"] .contact-page__input-box input[type="text"],
html[data-theme="dark"] .contact-page__input-box input[type="email"],
html[data-theme="dark"] .contact-page__input-box textarea,
html[data-theme="dark"] .main-menu__search-form input[type="search"],
html[data-theme="dark"] .sidebar__search-form input[type="search"],
html[data-theme="dark"] .nice-select {
    background: var(--hasch-dark-2) !important;
    color: var(--hasch-text) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .contact-page__form-box,
html[data-theme="dark"] .contact-page__middle-left,
html[data-theme="dark"] .contact-page__middle-right {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .contact-page__form-box .comment-one__title,
html[data-theme="dark"] .contact-page__middle-title,
html[data-theme="dark"] .contact-page__contact-info-title,
html[data-theme="dark"] .contact-page__contact-list-title {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .contact-page__form-box .comment-one__text,
html[data-theme="dark"] .contact-page__middle-text,
html[data-theme="dark"] .contact-page__contact-list li p,
html[data-theme="dark"] .contact-page__contact-list li a {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .main-menu .main-menu__list > li > ul,
html[data-theme="dark"] .stricky-header .main-menu__list > li > ul,
html[data-theme="dark"] .mobile-nav__content .main-menu__list > li > ul {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
}

html[data-theme="dark"] .main-menu .main-menu__list > li > ul > li > a,
html[data-theme="dark"] .stricky-header .main-menu__list > li > ul > li > a,
html[data-theme="dark"] .mobile-nav__content .main-menu__list > li > ul > li > a {
    color: var(--hasch-text) !important;
}

html[data-theme="dark"] .main-menu .main-menu__list > li > ul > li:hover > a,
html[data-theme="dark"] .stricky-header .main-menu__list > li > ul > li:hover > a,
html[data-theme="dark"] .mobile-nav__content .main-menu__list > li > ul > li:hover > a,
html[data-theme="dark"] .main-menu .main-menu__list > li.current > a,
html[data-theme="dark"] .main-menu .main-menu__list > li:hover > a,
html[data-theme="dark"] .main-menu-three .main-menu__list > li.current > a,
html[data-theme="dark"] .main-menu-three .main-menu__list > li:hover > a,
html[data-theme="dark"] .stricky-header .main-menu__list > li.current > a,
html[data-theme="dark"] .stricky-header .main-menu__list > li:hover > a {
    color: var(--hasch-primary) !important;
}

html[data-theme="dark"] .site-footer__social a,
html[data-theme="dark"] .main-menu-three__social a {
    background: var(--hasch-dark-2) !important;
    color: var(--hasch-theme-heading) !important;
    border: 1px solid var(--hasch-border) !important;
}

html[data-theme="dark"] .site-footer__social a:hover,
html[data-theme="dark"] .main-menu-three__social a:hover {
    background: var(--hasch-primary) !important;
    border-color: var(--hasch-primary) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .main-menu-three__logo img,
html[data-theme="dark"] .footer-widget__logo img,
html[data-theme="dark"] .mobile-nav__content .logo-box img {
    filter: brightness(0) saturate(0) invert(0.92) contrast(0.96) !important;
    opacity: 0.94 !important;
}

html[data-theme="dark"] .testimonial-two,
html[data-theme="dark"] .hasch-process-section,
html[data-theme="dark"] .why-choose-two,
html[data-theme="dark"] .hasch-join-section,
html[data-theme="dark"] .about-one,
html[data-theme="dark"] .counter-one,
html[data-theme="dark"] .services-three,
html[data-theme="dark"] .destination-one,
html[data-theme="dark"] .contact-two,
html[data-theme="dark"] .faq-page,
html[data-theme="dark"] .faq-one,
html[data-theme="dark"] .work-steps-one,
html[data-theme="dark"] .team-one,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer-two {
    background: var(--hasch-dark) !important;
    background-image: none !important;
}

html[data-theme="dark"] .services-three__bg-color,
html[data-theme="dark"] .counter-one__inner,
html[data-theme="dark"] .main-slider-three__shape-1,
html[data-theme="dark"] .main-slider-three__shape-2,
html[data-theme="dark"] .counter-one__bg-shape,
html[data-theme="dark"] .contact-two__shape-3,
html[data-theme="dark"] .contact-two__shape-4,
html[data-theme="dark"] .site-footer__shape-1,
html[data-theme="dark"] .site-footer__shape-2 {
    opacity: 0.12 !important;
    filter: grayscale(1) brightness(0.8) !important;
}

html[data-theme="dark"] .counter-one::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12), transparent 38%),
        radial-gradient(circle at 78% 68%, rgba(59, 130, 246, 0.08), transparent 34%) !important;
}

html[data-theme="dark"] .counter-one__count h3,
html[data-theme="dark"] .counter-one__count span {
    color: var(--hasch-theme-heading) !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .counter-one__text {
    color: var(--hasch-muted) !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .counter-one__icon {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html[data-theme="dark"] .counter-one__icon span {
    color: var(--hasch-primary) !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .counter-one__bg-shape {
    opacity: 0.28 !important;
    filter: grayscale(1) brightness(1.15) contrast(0.9) !important;
}

html[data-theme="dark"] .counter-one__shape-1 {
    opacity: 1 !important;
    border-left-color: #facc15 !important;
}

html[data-theme="dark"] .counter-one__shape-2 {
    opacity: 1 !important;
    border-right-color: #ef4444 !important;
}

html[data-theme="dark"] .counter-one__icon {
    border: 1px dashed rgba(255, 255, 255, 0.18) !important;
}

html[data-theme="dark"] .counter-one .container,
html[data-theme="dark"] .counter-one__inner,
html[data-theme="dark"] .counter-one__count-list,
html[data-theme="dark"] .counter-one__count-list li,
html[data-theme="dark"] .counter-one__icon,
html[data-theme="dark"] .counter-one__count,
html[data-theme="dark"] .counter-one__count h3,
html[data-theme="dark"] .counter-one__count span,
html[data-theme="dark"] .counter-one__text {
    position: relative;
    z-index: 3;
    opacity: 1 !important;
}

html[data-theme="dark"] .destination-one__right {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .destination-one__right::before {
    background: var(--hasch-dark-2) !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .destination-one__right .content h3,
html[data-theme="dark"] .destination-one__right .content p,
html[data-theme="dark"] .destination-one__right .content a {
    color: var(--hasch-text) !important;
}

html[data-theme="dark"] .section-title__title,
html[data-theme="dark"] .main-slider-three__title,
html[data-theme="dark"] .main-slider-three__text,
html[data-theme="dark"] .hero-title,
html[data-theme="dark"] .hero-subtitle,
html[data-theme="dark"] .contact-one__title,
html[data-theme="dark"] .cta-two__title,
html[data-theme="dark"] .testimonial-two__bottom-text,
html[data-theme="dark"] .footer-widget__title,
html[data-theme="dark"] .footer-widget__navigation-list li a,
html[data-theme="dark"] .footer-widget__post-content h3 a {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .floating-divider__track,
html[data-theme="dark"] .floating-divider,
html[data-theme="dark"] .floating-divider + .site-footer {
    background: var(--hasch-dark-3) !important;
    border-top: 1px solid var(--hasch-border) !important;
    border-bottom: 1px solid var(--hasch-border) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .floating-divider__inner li,
html[data-theme="dark"] .floating-divider__inner li i,
html[data-theme="dark"] .floating-divider__inner li span {
    color: var(--hasch-text) !important;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer-two {
    background: var(--hasch-dark-3) !important;
    background-image: none !important;
}

html[data-theme="dark"] .site-footer::before,
html[data-theme="dark"] .site-footer__shape-1,
html[data-theme="dark"] .site-footer__shape-2 {
    display: none !important;
}

html[data-theme="dark"] .site-footer__top,
html[data-theme="dark"] .site-footer__top-inner,
html[data-theme="dark"] .footer-bottom {
    background: transparent !important;
    border-color: var(--hasch-border) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .footer-widget__column {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

html[data-theme="dark"] .footer-widget__navigation-list li a,
html[data-theme="dark"] .footer-widget__post-content h3 a,
html[data-theme="dark"] .footer-widget__emergency-call a,
html[data-theme="dark"] .footer-bottom a {
    color: var(--hasch-text) !important;
}

html[data-theme="dark"] .footer-widget__about-text,
html[data-theme="dark"] .footer-widget__post-content span,
html[data-theme="dark"] .footer-bottom p {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .site-footer__social a {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .site-footer__social a::after {
    display: none !important;
}

html[data-theme="dark"] .scroll-to-top {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .scroll-to-top:hover {
    background: var(--hasch-primary) !important;
    border-color: var(--hasch-primary) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .destination-one__right .content h3 {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .destination-one__right .content p {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .destination-one__right .content a {
    color: #cfd8e3 !important;
    border-bottom-color: var(--hasch-primary) !important;
}

html[data-theme="dark"] .services-page,
html[data-theme="dark"] .services-page .container,
html[data-theme="dark"] .services-one,
html[data-theme="dark"] .services-one__single,
html[data-theme="dark"] .services-one__content {
    background: var(--hasch-dark) !important;
}

html[data-theme="dark"] .services-one__single {
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .services-one__content {
    background: var(--hasch-dark-2) !important;
    border-top: 1px solid var(--hasch-border) !important;
}

html[data-theme="dark"] .services-one__title a {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .services-one__text {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .services-one__read-more a {
    color: #cfd8e3 !important;
}

html[data-theme="dark"] .services-three__count-box {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .services-three__count h3,
html[data-theme="dark"] .services-three__count span {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .services-three__count-text {
    color: var(--hasch-muted) !important;
}

html:not([data-theme="dark"]) .site-footer,
html:not([data-theme="dark"]) .site-footer-two,
body:not(.dark):not(.dark-mode) .site-footer,
body:not(.dark):not(.dark-mode) .site-footer-two {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
        linear-gradient(180deg, #111827 0%, #0f1720 100%) !important;
}

html:not([data-theme="dark"]) .site-footer__top,
html:not([data-theme="dark"]) .footer-bottom,
body:not(.dark):not(.dark-mode) .site-footer__top,
body:not(.dark):not(.dark-mode) .footer-bottom {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
        linear-gradient(180deg, #111827 0%, #0f1720 100%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html:not([data-theme="dark"]) .site-footer .footer-widget__title,
html:not([data-theme="dark"]) .site-footer p,
html:not([data-theme="dark"]) .site-footer li,
html:not([data-theme="dark"]) .site-footer a,
body:not(.dark):not(.dark-mode) .site-footer .footer-widget__title,
body:not(.dark):not(.dark-mode) .site-footer p,
body:not(.dark):not(.dark-mode) .site-footer li,
body:not(.dark):not(.dark-mode) .site-footer a {
    color: #d1d5db !important;
}

html:not([data-theme="dark"]) .site-footer a:hover,
body:not(.dark):not(.dark-mode) .site-footer a:hover {
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .site-footer__social a,
body:not(.dark):not(.dark-mode) .site-footer__social a {
    background: #1f2937 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html:not([data-theme="dark"]) .site-footer__social a:hover,
body:not(.dark):not(.dark-mode) .site-footer__social a:hover {
    background: #2563eb !important;
}


.hasch-footer-road {
  position: relative;
  overflow: hidden;
  height: 122px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
    linear-gradient(180deg, #111827 0%, #0f1720 100%);
  border-top: none;
  border-bottom: 1px solid rgba(24, 54, 112, 0.08);
}

.hasch-footer-road__scene {
  position: absolute;
  inset: 0 0 18px;
  pointer-events: none;
}

.hasch-footer-road__lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 22px;
  background: linear-gradient(180deg, #202a39 0%, #161f2b 100%);
}

.hasch-footer-road__lane::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 4px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65) 0 34px,
    transparent 34px 68px
  );
  opacity: 0.65;
}

.hasch-footer-road__truck {
  position: absolute;
  bottom: 26px;
  animation: haschFooterDrive 20s linear infinite;
  z-index: 3;
}

.hasch-footer-road__truck--one {
  left: -170px;
  width: 220px;
  height: 66px;
  animation-delay: 0s;
}

.hasch-footer-road__truck--two {
  left: -280px;
  width: 182px;
  height: 64px;
  animation-delay: -10s;
}

.hasch-footer-road__truck img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}

.hasch-footer-road__building,
.hasch-footer-road__house,
.hasch-footer-road__tree,
.hasch-footer-road__lamp,
.hasch-footer-road__bench {
  position: absolute;
  bottom: 48px;
}

.hasch-footer-road__building {
  width: 62px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #8b5e3c 0%, #67442c 100%);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.16);
}

.hasch-footer-road__building::before,
.hasch-footer-road__building::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(244, 236, 189, 0.95) 0 8px,
    transparent 8px 14px
  );
  opacity: 0.9;
}

.hasch-footer-road__building::before {
  top: 14px;
}

.hasch-footer-road__building::after {
  top: 28px;
}

.hasch-footer-road__building--one {
  left: 26%;
  height: 48px;
}

.hasch-footer-road__building--two {
  right: 8%;
  height: 58px;
}

.hasch-footer-road__house {
  width: 54px;
  height: 34px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #91c4ef 0%, #6fa6d8 100%);
}

.hasch-footer-road__house::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: -14px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 14px solid #26374c;
}

.hasch-footer-road__house::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #f4e6bd;
  border-radius: 2px 2px 0 0;
}

.hasch-footer-road__house--one {
  left: 56%;
}

.hasch-footer-road__house--two {
  right: 20%;
}

.hasch-footer-road__tree {
  width: 16px;
  height: 36px;
}

.hasch-footer-road__tree::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 14px;
  transform: translateX(-50%);
  background: #6d4c41;
}

.hasch-footer-road__tree::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 26px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #b8dd7d 0%, #7cb342 68%, #5a8a28 100%);
}

.hasch-footer-road__tree--one {
  left: 17%;
}

.hasch-footer-road__tree--two {
  right: 17%;
}

.hasch-footer-road__lamp {
  width: 4px;
  height: 44px;
  background: #9098a4;
}

.hasch-footer-road__lamp::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 239, 163, 0.92);
  box-shadow: 0 0 12px rgba(255, 239, 163, 0.45);
}

.hasch-footer-road__lamp--one {
  left: 39%;
}

.hasch-footer-road__lamp--two {
  right: 31%;
}

.hasch-footer-road__bench {
  left: 66%;
  width: 26px;
  height: 8px;
  background: #d35400;
  border-radius: 2px;
}

.hasch-footer-road__bench::before,
.hasch-footer-road__bench::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 10px;
  background: #7f5539;
}

.hasch-footer-road__bench::before {
  left: 4px;
}

.hasch-footer-road__bench::after {
  right: 4px;
}

@keyframes haschFooterDrive {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 420px));
  }
}

@media (max-width: 767px) {
  .hasch-footer-road {
    height: 82px;
  }

  .hasch-footer-road__building,
  .hasch-footer-road__house,
  .hasch-footer-road__tree,
  .hasch-footer-road__lamp,
  .hasch-footer-road__bench {
    display: none;
  }

  .hasch-footer-road__lane {
    bottom: 18px;
    height: 20px;
  }

  .hasch-footer-road__lane::before {
    top: 8px;
  }

  .hasch-footer-road__truck {
    bottom: 20px;
  }

  .hasch-footer-road__truck--one {
    width: 154px;
    height: 46px;
  }

  .hasch-footer-road__truck--two {
    width: 124px;
    height: 42px;
  }
}

html[data-theme="dark"] .hasch-footer-road {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%),
    linear-gradient(180deg, #0b121a 0%, #091018 100%);
}

html[data-theme="dark"] .services-details__catagories-box,
html[data-theme="dark"] .services-details__need-help,
html[data-theme="dark"] .services-details__contact {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .services-details__catagories-title,
html[data-theme="dark"] .services-details__need-help-title,
html[data-theme="dark"] .services-details__contact-content > p,
html[data-theme="dark"] .services-details__contact-content > p > a {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .services-details__contact-content > span {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .services-details__catagories-list li a {
    background: var(--hasch-dark) !important;
    color: var(--hasch-text) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .services-details__catagories-list li a::before {
    background: var(--hasch-primary) !important;
}

html[data-theme="dark"] .services-details__catagories-list li:hover a,
html[data-theme="dark"] .services-details__catagories-list li.active a {
    color: #ffffff !important;
    border-color: var(--hasch-primary) !important;
}

html[data-theme="dark"] .services-details__catagories-list li a span,
html[data-theme="dark"] .services-details__contact-icon span {
    color: var(--hasch-primary) !important;
}

html[data-theme="dark"] .services-details__catagories-list li:hover a span,
html[data-theme="dark"] .services-details__catagories-list li.active a span {
    color: #ffffff !important;
}

html[data-theme="dark"] .services-details__need-help-bg {
    opacity: 0.08 !important;
    filter: grayscale(1) brightness(0.7) !important;
}

html[data-theme="dark"] .services-details__need-help-btn {
    background: var(--hasch-primary) !important;
    border-color: var(--hasch-primary) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .services-details__need-help-btn:hover {
    background: var(--hasch-primary-hover) !important;
    border-color: var(--hasch-primary-hover) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .brand-one,
html[data-theme="dark"] .about-one,
html[data-theme="dark"] .destination-one,
html[data-theme="dark"] .why-choose-two,
html[data-theme="dark"] .work-steps-one,
html[data-theme="dark"] .testimonial-one,
html[data-theme="dark"] .cta-one,
html[data-theme="dark"] .team-one {
    background: var(--hasch-dark) !important;
}

html[data-theme="dark"] .brand-one,
html[data-theme="dark"] .brand-one .container,
html[data-theme="dark"] .brand-one .swiper,
html[data-theme="dark"] .brand-one .swiper-wrapper,
html[data-theme="dark"] .brand-one .swiper-slide {
    background: transparent !important;
}

html[data-theme="dark"] .brand-one .swiper-slide img,
html[data-theme="dark"] .brand-one img {
    opacity: 0.9 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

html[data-theme="dark"] .brand-one .swiper-slide img:hover,
html[data-theme="dark"] .brand-one img:hover {
    opacity: 1 !important;
    filter: none !important;
}

html[data-theme="dark"] .about-one__shape-1 img,
html[data-theme="dark"] .about-one__shape-2 img,
html[data-theme="dark"] .about-one__shape-3 img,
html[data-theme="dark"] .why-choose-two__shape-2 img,
html[data-theme="dark"] .work-steps-one__shape-4 img,
html[data-theme="dark"] .work-steps-one__shape-5 img {
    opacity: 0.22 !important;
    filter: grayscale(1) brightness(1.3) contrast(0.85) !important;
}

html[data-theme="dark"] .about-one__shape-2,
html[data-theme="dark"] .about-one__shape-3,
html[data-theme="dark"] .why-choose-two__shape-2,
html[data-theme="dark"] .work-steps-one__shape-4,
html[data-theme="dark"] .work-steps-one__shape-5 {
    opacity: 1 !important;
}

html[data-theme="dark"] .about-one__points li .icon span,
html[data-theme="dark"] .destination-one__left .icon span,
html[data-theme="dark"] .destination-one__right .icon span,
html[data-theme="dark"] .why-choose-two__list-single .icon span,
html[data-theme="dark"] .work-steps-one__icon span,
html[data-theme="dark"] .team-one__social a,
html[data-theme="dark"] .testimonial-one__icon span {
    color: #dbe4f0 !important;
}

html[data-theme="dark"] .about-one__points li .icon,
html[data-theme="dark"] .destination-one__left .icon,
html[data-theme="dark"] .destination-one__right .icon,
html[data-theme="dark"] .why-choose-two__list-single .icon,
html[data-theme="dark"] .work-steps-one__icon {
    background: linear-gradient(135deg, var(--hasch-primary) 0%, var(--hasch-primary-hover) 100%) !important;
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.22) !important;
}

html[data-theme="dark"] .about-one__title,
html[data-theme="dark"] .about-one__text,
html[data-theme="dark"] .destination-one__left-text,
html[data-theme="dark"] .why-choose-two .section-title__title,
html[data-theme="dark"] .why-choose-two .section-title__tagline,
html[data-theme="dark"] .why-choose-two .why-choose-two__text,
html[data-theme="dark"] .why-choose-two .why-choose-two__list-title,
html[data-theme="dark"] .why-choose-two .why-choose-two__list-title a,
html[data-theme="dark"] .work-steps-one .section-title__title,
html[data-theme="dark"] .work-steps-one .section-title__tagline,
html[data-theme="dark"] .work-steps-one__text,
html[data-theme="dark"] .work-steps-one__text a,
html[data-theme="dark"] .testimonial-one__text,
html[data-theme="dark"] .testimonial-one__client-name a,
html[data-theme="dark"] .team-one__name a,
html[data-theme="dark"] .team-one__sub-title {
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
}

html[data-theme="dark"] .about-one__title,
html[data-theme="dark"] .why-choose-two .section-title__title,
html[data-theme="dark"] .work-steps-one .section-title__title,
html[data-theme="dark"] .cta-one__title-box h3,
html[data-theme="dark"] .testimonial-one__client-name a,
html[data-theme="dark"] .team-one__name a {
    color: var(--hasch-theme-heading) !important;
}

html[data-theme="dark"] .about-one__text,
html[data-theme="dark"] .destination-one__left-text,
html[data-theme="dark"] .why-choose-two .section-title__tagline,
html[data-theme="dark"] .why-choose-two .why-choose-two__text,
html[data-theme="dark"] .why-choose-two .why-choose-two__list-title,
html[data-theme="dark"] .why-choose-two .why-choose-two__list-title a,
html[data-theme="dark"] .work-steps-one .section-title__tagline,
html[data-theme="dark"] .work-steps-one__text,
html[data-theme="dark"] .work-steps-one__text a,
html[data-theme="dark"] .cta-one__title-box p,
html[data-theme="dark"] .testimonial-one__text,
html[data-theme="dark"] .team-one__sub-title {
    color: var(--hasch-muted) !important;
}

html[data-theme="dark"] .cta-one__inner {
    background: var(--hasch-dark-2) !important;
    border: 1px solid var(--hasch-border) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="dark"] .cta-one__bg {
    opacity: 0.08 !important;
    filter: grayscale(1) brightness(0.7) !important;
}

.site-footer {
    background: #05070d;
}

.footer-widget__title {
    color: #ffffff;
}

.site-footer a {
    color: #aab3c5;
}

.site-footer a:hover {
    color: #3b82f6;
}

.footer-widget__logo img {
    opacity: 1 !important;
    filter: none !important;
}

.site-footer__top {
    padding: 80px 0 60px;
}


.site-footer__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.site-footer__social a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.scroll-to-top {
    background: #2563eb;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top i {
    color: #fff;
}

.scroll-to-top {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    right: 20px !important;
    bottom: 20px !important;
    border-radius: 8px !important;
    z-index: 120 !important;
    padding: 0 !important;
}

.scroll-to-top i {
    font-size: 20px !important;
    line-height: 1 !important;
}

@media (max-width: 767px) {
    .scroll-to-top {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        right: 14px !important;
        bottom: 14px !important;
        border-radius: 7px !important;
    }

    .scroll-to-top i {
        font-size: 17px !important;
    }
}

body.dark-theme {
    background: #05070d;
}

.site-footer {
    background: #05070d;
}

.site-footer__top {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.thm-btn {
    background: #2563eb;
    box-shadow: none !important;
    border-radius: 8px;
    padding: 12px 22px;
}

.thm-btn:hover {
    background: #1d4ed8;
}

.main-menu__list > li > a {
    color: #cbd5e1;
    font-weight: 500;
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
    color: #ffffff;
}

.main-header *,
.stricky-header * {
    box-shadow: none !important;
}

.main-header__logo img {
    filter: brightness(1.2);
}

.theme-toggle {
    background: #0f172a;
    border-radius: 50px;
    padding: 6px 12px;
    color: #fff;
}

.header-top {
    background: #020617;
    color: #94a3b8;
}

/* HERO CLEANUP */
.main-slider,
.main-slider-three {
    background-color: #05070d;
}

.main-slider .image-layer,
.main-slider-three .image-layer,
.main-slider-three__bg {
    opacity: 0.55 !important;
}

.main-slider::before,
.main-slider-three::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
         rgba(5, 7, 13, 0.55) 0%,
        rgba(5, 7, 13, 0.35) 50%,
        rgba(5, 7, 13, 0.20) 100%
    );
    z-index: 1;
}

.main-slider .container,
.main-slider-three .container {
    position: relative;
    z-index: 2;
}

#home.main-slider .item {
    padding-top: 0;
    padding-bottom: 0;
}

#home.main-slider .container {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
}

#home .main-slider__carousel,
#home .owl-stage-outer,
#home .owl-stage,
#home .owl-item {
    overflow: hidden;
}

#home .main-slider__content {
    max-width: 640px;
    padding-top: 205px;
    padding-bottom: 150px;
}

#home .main-slider__bg::before {
    background: linear-gradient(
        90deg,
        rgba(5, 7, 13, 0.74) 0%,
        rgba(5, 7, 13, 0.42) 45%,
        rgba(5, 7, 13, 0.12) 100%
    );
}

#home .main-slider__sub-title {
    color: #facc15 !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.12em;
    max-width: 36ch;
    margin-bottom: 16px;
}

#home .main-slider__title {
    color: #ffffff !important;
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: 11ch;
    margin-top: 0;
    margin-bottom: 18px;
}

#home .main-slider__text {
    color: #dbe4f0 !important;
    font-size: 18px;
    line-height: 1.7;
    max-width: 34ch;
    margin-bottom: 22px;
}

#home .main-slider__btn-and-video-box {
    margin-top: 0;
    gap: 14px;
}

#home .owl-item:not(.active) .main-slider__content {
    display: none !important;
}

#home .owl-item.active .main-slider__content {
    display: block !important;
}

#home .owl-item.active .main-slider__sub-title,
#home .owl-item.active .main-slider__title,
#home .owl-item.active .main-slider__text,
#home .owl-item.active .main-slider__btn-and-video-box {
    opacity: 1 !important;
    transform: none !important;
}

.main-slider h1,
.main-slider-three__title {
    color: #ffffff !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em;
    max-width: 12ch;
}

.main-slider p,
.main-slider-three__text {
    color: #cbd5e1 !important;
    font-size: 18px;
    line-height: 1.75;
    max-width: 640px;
}

.main-slider .thm-btn,
.main-slider-three .thm-btn,
.main-slider-three__btn-1,
.main-slider-three__btn-2 {
    box-shadow: none !important;
    border-radius: 8px !important;
}

.main-slider-three__btn-2,
.main-slider .video-btn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #ffffff !important;
}

.main-slider-three__btn-2:hover,
.main-slider .video-btn:hover {
    background: rgba(255,255,255,0.06) !important;
}

@media (max-width: 991px) {
    .main-slider h1,
    .main-slider-three__title {
        max-width: none;
    }

    .main-slider p,
    .main-slider-three__text {
        font-size: 16px;
        line-height: 1.7;
    }
}

.video-two__shape-1,
.video-two__shape-2 {
    display: none !important;
}

/* Homepage services section cleanup */
.services-three {
    padding: 54px 0 58px !important;
    margin-top: 0 !important;
}

.services-three__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

/* Final mobile homepage hero tune-up. */
@media (max-width: 767px) {
    #home.main-slider,
    #home.main-slider .item,
    #home .main-slider__bg,
    #home .main-slider__content {
        min-height: auto !important;
        height: auto !important;
    }

    #home.main-slider .item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #home.main-slider .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #home .main-slider__content {
        max-width: 100% !important;
        padding-top: 102px !important;
        padding-bottom: 48px !important;
    }

    #home .main-slider__sub-title {
        font-size: 11px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.08em !important;
        max-width: 100% !important;
        margin-bottom: 10px !important;
    }

    #home .main-slider__title {
        font-size: 37px !important;
        line-height: 1.03 !important;
        max-width: 11ch !important;
        margin-bottom: 10px !important;
    }

    #home .main-slider__text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        max-width: 29ch !important;
        margin-bottom: 16px !important;
    }

    #home .main-slider__btn-and-video-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }

    #home .main-slider__btn-box {
        width: 100% !important;
        max-width: 220px !important;
    }

    #home .main-slider__btn {
        width: 100% !important;
        padding: 13px 16px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
    }

    #home .main-slider__shape-1,
    #home .main-slider__shape-2,
    #home .main-slider__shape-3,
    #home .main-slider__bg::after {
        display: none !important;
    }

    #home.main-slider::before {
        background: linear-gradient(
            180deg,
            rgba(5,7,13,0.18) 0%,
            rgba(5,7,13,0.16) 46%,
            rgba(5,7,13,0.30) 100%
        ) !important;
    }
}

@media (max-width: 480px) {
    #home .main-slider__content {
        padding-top: 92px !important;
        padding-bottom: 40px !important;
    }

    #home .main-slider__title {
        font-size: 35px !important;
        line-height: 1.03 !important;
        max-width: 10ch !important;
    }

    #home .main-slider__text {
        font-size: 15px !important;
        line-height: 1.58 !important;
        max-width: 28ch !important;
    }
}

.services-three__top .section-title {
    margin-bottom: 0 !important;
}

.page-header + .brand-one{
    position: relative;
    z-index: 12;
    margin-top: -24px;
    margin-bottom: -10px;
}

.page-header + .brand-one .container{
    position: relative;
}

.page-header + .brand-one .thm-swiper__slider,
.page-header + .brand-one .swiper-container{
    position: relative;
    background: rgba(255,255,255,0.96);
    border-radius: 28px;
    padding: 24px 28px;
    box-shadow: 0 22px 46px rgba(15,23,42,0.10);
    border: 1px solid rgba(148,163,184,0.18);
    overflow: hidden;
}

.page-header + .brand-one .thm-swiper__slider::before,
.page-header + .brand-one .swiper-container::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 28%, rgba(29,60,152,0.05), transparent 24%),
        radial-gradient(circle at 84% 70%, rgba(202,31,38,0.05), transparent 22%);
    pointer-events: none;
}

.page-header + .brand-one .swiper-slide{
    min-height: 74px;
}

.page-header + .brand-one .swiper-slide img{
    position: relative;
    z-index: 1;
    opacity: 0.42;
    filter: grayscale(1) brightness(1.06);
}

.page-header + .brand-one .swiper-slide img:hover{
    opacity: 0.72;
}

.page-header + .brand-one + .about-one{
    padding-top: 0 !important;
}

@media (max-width: 991px){
    .page-header + .brand-one{
        margin-top: -18px;
        margin-bottom: -8px;
    }

    .page-header + .brand-one .thm-swiper__slider,
    .page-header + .brand-one .swiper-container{
        border-radius: 22px;
        padding: 18px 16px;
    }

    .page-header + .brand-one .swiper-slide{
        min-height: 60px;
    }

    .page-header + .brand-one + .about-one{
        padding-top: 0 !important;
    }
}

@media (max-width: 767px){
    .page-header + .brand-one{
        margin-top: -10px;
        margin-bottom: -4px;
    }

    .page-header + .brand-one .thm-swiper__slider,
    .page-header + .brand-one .swiper-container{
        border-radius: 18px;
        padding: 12px 12px;
        box-shadow: 0 14px 28px rgba(15,23,42,0.08);
    }

    .page-header + .brand-one .swiper-slide{
        min-height: 48px;
    }

    .page-header + .brand-one .swiper-slide img{
        opacity: 0.34;
    }

    .page-header + .brand-one + .about-one{
        padding-top: 0 !important;
    }
}

.services-three__round-badge {
    position: relative;
    flex: 0 0 168px;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background-color: #ca1f26;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-three__round-badge .about-one__round-text-box-inner {
    width: 168px;
    height: 168px;
}

.services-three__round-badge .about-one__curved-circle {
    color: #ffffff;
    font-size: 13px !important;
    letter-spacing: 0.02em !important;
}

.services-three__round-badge .about-one__round-text-play i {
    color: #ffffff;
    font-size: 34px !important;
}

.services-three__bg-color {
    height: 250px !important;
}

.services-three__inner {
    padding-top: 0 !important;
}

.services-three .section-title {
    margin-bottom: 14px !important;
}

.services-three__count-box {
    max-width: 245px !important;
    margin-left: auto !important;
    margin-bottom: 18px !important;
    padding: 22px 20px !important;
}

.services-three__count-icon span {
    font-size: 44px !important;
}

.services-three__count h3,
.services-three__count span {
    font-size: 30px !important;
    line-height: 1 !important;
}

.services-three__count-text {
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.services-one__img img {
    height: 260px;
    object-fit: cover;
    object-position: center;
}

.services-one__content {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.services-three .row > [class*="col-"] {
    display: flex;
}

.services-one__single {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.services-one__title-box {
    padding: 24px 24px 18px !important;
    flex: 1 1 auto;
}

.services-one__title {
    font-size: 22px !important;
    line-height: 1.25 !important;
}

.services-one__text {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-top: 10px !important;
}

.services-one__read-more a {
    padding: 8px 24px !important;
}

.services-one__read-more {
    margin-top: auto;
}

@media (max-width: 991px) {
    .services-three {
        padding: 42px 0 46px !important;
    }

    .services-three__top {
        align-items: center;
    }

    .services-three__round-badge {
        flex-basis: 155px;
        width: 155px;
        height: 155px;
    }

    .services-three__round-badge .about-one__round-text-box-inner {
        width: 155px;
        height: 155px;
    }

    .services-three__bg-color {
        height: 205px !important;
    }

    .services-three__count-box {
        max-width: 210px !important;
        padding: 18px 16px !important;
        margin-bottom: 16px !important;
    }

    .services-one__img img {
        height: 220px;
    }

    .services-one__title-box {
        padding: 20px 20px 16px !important;
    }

    .services-one__title {
        font-size: 20px !important;
    }

    .services-one__text {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }
}

@media (max-width: 767px) {
    .services-three {
        padding: 28px 0 34px !important;
    }

    .services-three__top {
        display: block;
        margin-bottom: 8px;
    }

    .services-three__round-badge {
        display: none;
    }

    .services-three__bg-color {
        height: 145px !important;
    }

    .services-three__count-box {
        max-width: 150px !important;
        padding: 14px 12px !important;
        margin-bottom: 12px !important;
    }

    .services-three__count-icon span {
        font-size: 34px !important;
    }

    .services-three__count h3,
    .services-three__count span {
        font-size: 22px !important;
    }

    .services-three__count-text {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    .services-three .section-title {
        margin-bottom: 8px !important;
    }

    .services-one__single {
        margin-bottom: 14px !important;
    }

    .services-one__img img {
        height: 185px !important;
    }

    .services-one__title-box {
        padding: 16px 16px 14px !important;
    }

    .services-one__title {
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .services-one__text {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-top: 8px !important;
    }

    .services-one__read-more a {
        padding: 7px 16px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .services-one,
    .services-one__inner,
    .services-one__top,
    .services-one__top-inner {
        min-height: 0 !important;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .services-details {
        padding: 34px 0 42px !important;
    }

    .services-details__left,
    .services-details__right {
        margin: 0 !important;
    }

    .services-details__right {
        margin-top: 24px !important;
    }

    .services-details__title-1,
    .services-details__title-2,
    .services-details__points-title,
    .services-details__text-box > h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        letter-spacing: 0 !important;
    }

    .services-details__text-1,
    .services-details__text-2,
    .services-details__text-box p,
    .services-details__faq .faq-one-accrodion .accrodion-content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .services-details__img-1 {
        margin-top: 18px !important;
        margin-bottom: 20px !important;
    }

    .services-details__points-and-text-box {
        display: block !important;
    }

    .services-details__points-box,
    .services-details__text-box {
        width: 100% !important;
    }

    .services-details__text-box {
        margin-left: 0 !important;
        margin-top: 18px !important;
    }

    .services-details__points li {
        align-items: flex-start !important;
    }

    .services-details__points li .icon {
        top: 1px !important;
        min-width: 18px;
    }

    .services-details__points li > p {
        margin-left: 10px !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .services-details__faq {
        margin-right: 0 !important;
        margin-top: 26px !important;
    }

    .services-details__faq .faq-one-accrodion .accrodion-title {
        padding: 14px 16px 14px 48px !important;
    }

    .services-details__faq .faq-one-accrodion .accrodion-title h4 {
        font-size: 17px !important;
        line-height: 1.45 !important;
    }

    .services-details__faq .faq-one-accrodion .accrodion-title h4::before {
        left: -36px !important;
        width: 24px !important;
        height: 24px !important;
    }

    .services-details__faq .faq-one-accrodion .accrodion-content {
        margin-left: 16px !important;
        margin-right: 16px !important;
        padding-top: 14px !important;
        padding-bottom: 18px !important;
    }

    .services-details__catagories-list li a {
        padding: 16px 18px 16px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
    }
}

