/*--------------------------------------------------------------
>>> 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: #ffffff;
    --flowtrack-white-rgb: 255, 255, 255;
    --flowtrack-base: #ca1f26;
    --flowtrack-base-rgb: 202, 31, 38;
    --flowtrack-black: #1d1d1d;
    --flowtrack-black-rgb: 29, 29, 29;
    --flowtrack-primary: #f7c600;
    --flowtrack-primary-rgb: 247, 198, 0;
    --flowtrack-extra: #f5f5f8;
    --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: var(--flowtrack-base);
    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;
}

.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;
}

.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: #fff;
    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: 50px;
    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.png), 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 #fff;
    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 60px;
    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: -10000000px;
    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: 50px;
}

.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:hover>a,
.stricky-header .main-menu__list>li.current>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: #fff;
    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;
    background-color: #fff;
    width: 100%;
    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 {
    -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: -1000000px;
    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: -10000000px;
    right: 100%;
    bottom: 0;
    background-color: var(--flowtrack-base);
}

.main-menu-three__logo a {
    position: relative;
    display: block;
    padding: 32px 0;
    padding-right: 85px;
    background-color: var(--flowtrack-base);
}

.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: 251px;
    padding-bottom: 260px;
    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;
    padding: 120px 0 120px;
    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.20;
}

.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: #f5f5f8;
    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);
    padding: 120px 0 90px;
    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;
    padding: 120px 0 90px;
    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%;
    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;
    padding: 120px 0 90px;
    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;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/

.blog-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-one__img-box {
    position: relative;
    display: block;
}

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-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;
}

.blog-one__single:hover .blog-one__img::before {
    opacity: .50;
}

.blog-one__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-one__single:hover .blog-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.blog-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
    border: 1px solid #f4efef;
    padding-top: 23px;
}

.blog-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
    padding-left: 30px;
}

.blog-one__title a {
    color: var(--flowtrack-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__title a:hover {
    color: var(--flowtrack-base);
}

.blog-one__meta-and-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f4efef;
    margin-top: 38px;
    padding-left: 30px;
}

.blog-one__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__meta li {
    position: relative;
    display: block;
}

.blog-one__meta li+li {
    margin-left: 30px;
}

.blog-one__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--flowtrack-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__meta li a:hover {
    color: var(--flowtrack-black);
}

.blog-one__meta li a span {
    position: relative;
    margin-right: 10px;
}

.blog-one__arrow {
    position: relative;
    display: block;
}

.blog-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    background-color: var(--flowtrack-base);
    color: var(--flowtrack-white);
    font-size: 14px;
    margin-bottom: -1px;
    margin-top: -1px;
    margin-right: -1px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__arrow a:hover {
    background-color: var(--flowtrack-primary);
    color: var(--flowtrack-black);
}

/*--------------------------------------------------------------
# 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;
    padding: 120px 0 90px;
    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;
    padding: 120px 0 90px;
    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;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 90px;
    z-index: 3;
}

.services-three__bg-color {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0;
    height: 408px;
    background-color: var(--flowtrack-primary);
    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-box {
    position: absolute;
    top: -190px;
    right: 0;
    max-width: 229px;
    width: 100%;
    background-color: var(--flowtrack-white);
    text-align: center;
    padding: 60px 30px 58px;
    z-index: 2;
}

.services-three__count-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100px;
    border-bottom-left-radius: 115px;
    border-bottom-right-radius: 115px;
    background-color: #f4f4f4;
    z-index: -1;
}

.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__img-box {
    position: relative;
    display: block;
}

.project-three__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-three__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--flowtrack-base-rgb), .90);
    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: 1;
}

.project-three__single:hover .project-three__img:before {
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.project-three__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.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;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 90px;
    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;
    padding: 120px 0 90px;
    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-img {
    position: relative;
    display: block;
}

.blog-three__client-img img {
    width: auto;
    border-radius: 50%;
}

.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 {
    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: 120px 0 120px;
    z-index: 1;
}

.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;
    padding: 120px 0 120px;
    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;
}

/*--------------------------------------------------------------
# Team Details Info
--------------------------------------------------------------*/

.team-details-info {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 120px;
}

.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;
    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;
}

/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/

.related-products {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
}

.related-products__title {
    position: relative;
    display: block;
    padding-bottom: 52px;
}

.related-products__title h3 {
    font-size: 40px;
    line-height: 1.0em;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.related-products__title p {
    margin: 0;
}

.single-product-style1.instyle--2 {
    margin-bottom: 0px;
}

.related-products .owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 0px !important;
}

/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/

.cart-page {
    position: relative;
    display: block;
    background: var(--flowtrack-white);
    padding: 114px 0px 120px;
}

.cart-page__left {
    position: relative;
    display: block;
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .cart-table {
        min-width: 1170px;
    }
}

.cart-table {
    margin-bottom: 0px;
}

.cart-table thead th {
    color: var(--flowtrack-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0;
    border: none;
    padding-bottom: 22px;
}

.cart-table thead th:last-child {
    text-align: right;
}

.cart-table tbody tr {
    vertical-align: middle;
}

.cart-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.cart-table tbody td {
    font-size: 18px;
    color: var(--flowtrack-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

.cart-table tbody td:last-child {
    text-align: right;
}

.cart-table .product-box {
    display: flex;
    align-items: center;
}

.cart-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 35px;
}

.cart-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    border-radius: 10px;
}

.cart-table h3 {
    color: var(--flowtrack-black);
    font-size: 20px;
    margin-left: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.cart-table h3 a {
    color: var(--flowtrack-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cart-table h3 a:hover {
    color: var(--flowtrack-base);
}

.cart-table .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.cart-table .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;
    font-family: var(--flowtrack-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    color: var(--flowtrack-gray);
    font-weight: 700;
}

.cart-table .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-left: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.cart-table .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;
}

.cart-table .cross-icon {
    position: relative;
    display: block;
}

.cart-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--flowtrack-black);
    font-size: 16px;
    cursor: pointer;
}

.cart-page__right {
    position: relative;
    display: block;
}

.cart-page__sidebar {
    position: relative;
    display: block;
    padding: 38px 20px 40px;
    background-color: var(--flowtrack-extra);
    border-radius: 5px;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.cart-page__shipping {
    position: relative;
    display: block;
}

.cart-page__shipping-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 25px;
}

.cart-page__shipping-form {
    position: relative;
    display: block;
}

.cart-page__shipping-form .row {
    --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
    background-color: var(--flowtrack-white);
    color: var(--flowtrack-gray);
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
    position: absolute;
    right: 20px;
}

.cart-page__shipping-input-box .nice-select .option:hover,
.cart-page__shipping-input-box .nice-select .option.focus,
.cart-page__shipping-input-box .nice-select .option.selected.focus {
    background-color: var(--flowtrack-black);
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
    width: 100%;
    height: 50px;
    background-color: var(--flowtrack-white);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--flowtrack-gray);
    font-family: var(--flowtrack-font);
    border-radius: 8px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-page__btn-box {
    position: relative;
    display: block;
}

.cart-page__btn-box .thm-btn {
    width: 100%;
    border: none;
    padding: 10px 50px 10px;
}

.cart-page__coupon-code {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 23px;
    padding-bottom: 30px;
}

.cart-page__coupon-code-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 20px;
}

.cart-page__coupon-code-text {
    margin-bottom: 16px;
}

.cart-page__coupon-code-form {
    position: relative;
    display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
    width: 100%;
    height: 50px;
    background-color: var(--flowtrack-white);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--flowtrack-gray);
    font-family: var(--flowtrack-font);
    border-radius: 8px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
    width: 100%;
    padding: 10px 50px 10px;
    border: none;
    margin-top: 20px;
}

.cart-total {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.cart-total li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--flowtrack-gray);
    font-size: 16px;
    font-weight: 500;
}

.cart-total li+li {
    margin-top: 15px;
}

.cart-total li span:first-child {
    display: block;
    color: var(--flowtrack-black);
    font-size: 18px;
    margin-right: 80px;
    font-weight: 700;
    width: 140px;
    text-align: right;
}

.cart-total-amount {
    color: var(--flowtrack-base);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cart-page__buttons-1 {
    position: relative;
    display: block;
    line-height: 0px;
}

.cart-page__buttons-1 .thm-btn {
    padding: 25px 30px 25px;
}

.cart-page__buttons-2 {
    position: relative;
    display: block;
    line-height: 0px;
}

.cart-page__buttons-2 .thm-btn {
    padding: 25px 30px 25px;
}

/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/

.checkout-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.checkout-page .billing_details {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding: 53px 50px 60px;
}

.billing_title {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.billing_title p {
    font-size: 16px;
    margin: 0;
}

.billing_title a {
    color: var(--flowtrack-base);
}

.billing_title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
    margin-top: 16px;
}

.billing_details_form {
    position: relative;
    display: block;
}

.billing_details_form .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
    border: none;
}

.billing_details_form .btn-light:hover {
    border: none;
}

.billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
    height: 60px;
    width: 100%;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    background-color: var(--flowtrack-white);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    color: var(--flowtrack-gray);
    display: block;
    font-weight: 400;
}

.billing_input_box textarea {
    display: block;
    color: var(--flowtrack-gray);
    font-size: 16px;
    font-weight: 400;
    height: 140px;
    width: 100%;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    background-color: var(--flowtrack-white);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    border-radius: 10px;
    outline: none;
    resize: none;
}

.billing_input_box textarea:focus {
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.billing_details .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--flowtrack-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--flowtrack-font);
}

.billing_details .checked-box input[type="checkbox"] {
    display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--flowtrack-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.billing_details .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--flowtrack-white);
    border-right: 2px solid var(--flowtrack-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--flowtrack-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.billing_details_form .select-box .nice-select {
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    background-color: var(--flowtrack-white);
    border-radius: 10px;
    color: var(--flowtrack-gray);
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.billing_details_form .nice-select .option:hover,
.billing_details_form .nice-select .option.focus,
.billing_details_form .nice-select .option.selected.focus {
    background-color: var(--flowtrack-black);
}

.billing_details_form-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.billing_details_form-btn-1 {
    position: relative;
    display: block;
}

.billing_details_form-btn-1 .thm-btn {
    border: none;
}

.billing_details_form-btn-2 {
    position: relative;
    display: block;
}

.billing_details_form-btn-2 .thm-btn {
    border: none;
}

.sidebar-order-summary {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding: 37px 30px 45px;
    z-index: 1;
}

.sidebar-order-summary .title-box {
    position: relative;
    display: block;
    padding-bottom: 3px;
    margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--flowtrack-base);
    content: "";
}

.sidebar-order-summary .title-box::after {
    position: absolute;
    left: 37px;
    bottom: 0;
    width: 3px;
    height: 2px;
    background: var(--flowtrack-white);
    content: "";
}

.sidebar-order-summary .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar-order-summary__list {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.sidebar-order-summary__list>li>.left-text {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.left-text p {
    font-size: 18px;
    margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text p {
    font-size: 18px;
    margin: 0px;
}

.sidebar-order-summary__list>li>.right-text>ul {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
    margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
    position: relative;
    display: block;
    padding-right: 24px;
    font-size: 18px;
    font-weight: 400;
    text-align: right;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
    position: absolute;
    top: 6px;
    right: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--flowtrack-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>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-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
    border-color: var(--flowtrack-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
}

.sidebar-order-summary__Payment {
    position: relative;
    display: block;
    margin-top: 37px;
}

.checkout__payment {
    position: relative;
    margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
    margin-top: 23px;
}

.checkout__payment__title {
    display: flex;
    color: var(--flowtrack-black);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    align-items: center;
    cursor: pointer;
}

.checkout__payment__title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--flowtrack-white);
    border: 2px solid rgba(var(--flowtrack-black-rgb), .15);
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--flowtrack-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--flowtrack-base);
    border-color: var(--flowtrack-base);
    content: '\f00c';
}

.checkout__payment__content {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--flowtrack-gray);
    font-weight: 400;
    margin-top: 15px;
}

.sidebar-order-summary__bottom {
    position: relative;
    display: block;
}

.sidebar-order-summary__bottom .text1 {
    margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
    color: var(--flowtrack-base);
    text-decoration: underline;
}

.sidebar-order-summary__checked {
    position: relative;
    display: block;
    margin-top: 20px;
    ;
}

.sidebar-order-summary__checked label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--flowtrack-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--flowtrack-font);
}

.sidebar-order-summary__checked label a {
    color: var(--flowtrack-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
    display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--flowtrack-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.sidebar-order-summary__checked label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--flowtrack-white);
    border-right: 2px solid var(--flowtrack-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
    border-color: var(--flowtrack-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.sidebar-order-summary__btn {
    position: relative;
    display: block;
    margin-top: 27px;
}

/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/

.wishlist-page {
    position: relative;
    display: block;
    background: var(--flowtrack-white);
    padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .wishlist-table {
        min-width: 1170px;
    }
}

.wishlist-table {
    margin-bottom: 0px;
}

.wishlist-table thead th {
    color: var(--flowtrack-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding-top: 22px;
    padding-bottom: 22px;
    text-align: center;
}

.wishlist-table tbody tr {
    vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
}

.wishlist-table tbody td {
    font-size: 18px;
    color: var(--flowtrack-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    border-bottom: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.wishlist-table .product-box {
    display: flex;
    align-items: center;
}

.wishlist-table .cross-icon {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--flowtrack-black);
    font-size: 16px;
}

.wishlist-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-left: 35px;
    margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--flowtrack-black-rgb), .15);
    border-radius: 10px;
}

.wishlist-table h3 {
    color: var(--flowtrack-black);
    font-size: 20px;
    margin-left: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.wishlist-table h3 a {
    color: var(--flowtrack-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
    color: var(--flowtrack-base);
}

.product-details__social.two {
    margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/

.sign-up-one {
    position: relative;
    display: block;
    background-color: var(--flowtrack-white);
    padding: 115px 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: 60px;
}

.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: 115px 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;
    padding: 120px 0 90px;
    z-index: 1;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/

.services-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    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;
    padding: 120px 0 90px;
    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;
    padding: 120px 0 90px;
    z-index: 1;
}

.testimonial-page .testimonial-two__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/

.team-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

/*--------------------------------------------------------------
# Why Choose Three
--------------------------------------------------------------*/

.why-choose-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    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;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/