/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Barlow', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #7b7981;
    --thm-gray-rgb: 123, 121, 129;
    --thm-primary: #1989fb;
    --thm-primary-rgb: 25, 137, 251;
    --thm-black: #1b1825;
    --thm-black-rgb: 27, 24, 37;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #1dad39;
    --thm-extra-rgb: 66, 217, 190;
    --thm-bdr-color: #dae3e9;
    --thm-bdr-color-rgb: 218, 227, 233;
    --thm-bdr-radius: 8px;
}

.row {
    --bs-gutter-x: 30px;
}

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

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
	    padding: 15px 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

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


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

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

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

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

.section-separator {
    border-color: var(--thm-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.40;
    z-index: -1;
}

canvas {
    display: block;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 60px 18px;
    border-radius: 8px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.2em;
    z-index: 1;
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.thm-btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.thm-btn:hover {
    color: var(--thm-base);
}



.section-title {
    margin-top: -19px;
    margin-bottom: 50px;
}

.section-title_tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}

.section-title_tagline::before {
    content: '';
    background-color: var(--thm-extra);
    width: 10px;
    height: 2px;
    margin-right: 10px;
}

.section-title_title {
    margin: 0;
    font-weight: 800;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
}

.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 {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    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(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader_image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    background: var(--thm-base);
}

.main-header_top {
    position: relative;
    display: block;
    padding: 0px 80px;
    background-color: var(--thm-black);
}

.main-header_top-inner {
    position: relative;
    display: block;
    padding: 1.5px 0;
}

.main-header_top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header_top-address {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header_top-address li {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 35px;
}

.main-header_top-address li+li {
    margin-left: 30px;
}

.main-header_top-address li .icon span {
    font-size: 14px;
    color: var(--thm-base);
}

.main-header_top-address li .text {
    margin-left: 10px;
}

.main-header_top-address li .text p {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    margin: 0;
}

.main-header_top-address li .text a {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header_top-address li .text a:hover {
    color: var(--thm-base);
}

.main-header_top-right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-header_top-right-text {
    margin-right: 30px;
}

.main-header_top-right-text p {
    font-size: 12px;
    margin: 0;
    color: #ada8ba;
}

.main-header_top-right-text p span {
    color: var(--thm-extra);
}

.main-header_top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 0;
}

.main-header_top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header_top-right-social a:hover {
    color: var(--thm-extra);
}

.main-header_top-right-social a+a {
    margin-left: 25px;
}

.main-menu {
    position: relative;
    padding: 0 80px;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper-inner {
    position: relative;
    display: block;
}

.main-menu-wrapper_left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper_logo {
    position: relative;
    float: left;
    padding-top: 19px;
    padding-bottom: 25px;
    margin-right: 165px;
}

.main-menu-wrapper_main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper_right {
    position: relative;
    display: flex;
    float: right;
    padding: 12px 0;
    align-items: center;
}

.main-menu-wrapper_call {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 80px;
}

.main-menu-wrapper_call-icon {
    font-size: 30px;
    color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper_call-icon:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper_call-number {
    margin-left: 20px;
}

.main-menu-wrapper_call-number h5 {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.main-menu-wrapper_call-number h5 a {
    color: #171717;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper_call-number a:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper_call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    color: #67656f;
}

.main-menu-wrapper_search-box-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8.5px 0;
}

.main-menu-wrapper_search-box-cart-box:before {
    position: absolute;
    top: -13px;
    bottom: -13px;
    left: -40px;
    content: "";
    background-color: var(--thm-bdr-color);
    width: 1px;
}

.main-menu-wrapper_search,
.main-menu-wrapper_cart {
    font-size: 24px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper_cart {
    margin-left: 25px;
}

.main-menu-wrapper_search:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper_cart:hover {
    color: var(--thm-extra);
}









.stricky-header.main-menu {
    padding: 0 80px;
    background-color: var(--thm-base);
}

.main-menu .main-menu_list,
.main-menu .main-menu_list ul,
.stricky-header .main-menu_list,
.stricky-header .main-menu_list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu_list,
    .main-menu .main-menu_list ul,
    .stricky-header .main-menu_list,
    .stricky-header .main-menu_list ul {
        display: flex;
    }
}

.main-menu .main-menu_list>li,
.stricky-header .main-menu_list>li {
    padding-top: 33px;
    padding-bottom: 33px;
    position: relative;
}

.main-menu .main-menu_list>li+li,
.stricky-header .main-menu_list>li+li {
    margin-left: 55px;
}

.main-menu .main-menu_list>li>a,
.stricky-header .main-menu_list>li>a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-gray);
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu_list>li>a::before,
.stricky-header .main-menu_list>li>a::before {
    content: '';
    width: 10px;
    height: 2px;
    border-radius: 0px;
    background-color: var(--thm-primary);
    position: absolute;
    top: 50%;
    bottom: 0px;
    left: -20px;
    transition: transform 500ms ease;
    transform: scale(0) translateY(-50%);
    z-index: -1;
}

.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(--thm-black);
    text-shadow: 0 0 1px currentColor;
}

.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) translateY(-50%);
}

.main-menu .main-menu_list>li.current>a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu_list>li:hover>a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu_list li ul,
.stricky-header .main-menu_list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}


.main-menu .main-menu_list li ul li:last-child>a,
.stricky-header .main-menu_list li ul li:last-child>a {
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}

.main-menu .main-menu_list li:hover>ul,
.stricky-header .main-menu_list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu_list li ul li,
.stricky-header .main-menu_list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu_list li ul li+li,
.stricky-header .main-menu_list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu_list li ul li a,
.stricky-header .main-menu_list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.main-menu .main-menu_list li ul li:hover>a,
.stricky-header .main-menu_list li ul li:hover>a {
    background-color: var(--thm-primary);
    color: #fff;
}

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

.main-menu .main-menu_list li ul li>ul ul,
.stricky-header .main-menu_list li ul li>ul ul {
    display: none;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    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 {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu_inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav_buttons {
    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(--thm-black);
    cursor: pointer;
}

.mobile-nav_buttons a+a {
    margin-left: 10px;
}

.mobile-nav_buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav_toggler {
    font-size: 20px;
    color: var(--thm-primary);
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

.main-menu .mobile-nav_toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav_toggler {
        display: none;
    }
}


/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: relative;
    display: block;
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}



@-moz-keyframes service_hexagon_2 {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-o-keyframes service_hexagon_2 {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav_wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav_wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.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(--thm-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav_content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

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

.mobile-nav_close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

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

.mobile-nav_content .main-menu_list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav_content .main-menu_list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav_content .main-menu_list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav_content .main-menu_list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav_content .main-menu_list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav_content .main-menu_list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav_content .main-menu_list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav_content .main-menu_list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav_top .main-menu_login a {
    color: var(--thm-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: flex;
    align-items: center;
}

.mobile-nav_social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

.mobile-nav_social a+a {
    margin-left: 30px;
}

.mobile-nav_social a:hover {
    color: #ffffff;
}

.mobile-nav_contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav_contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav_contact li+li {
    margin-top: 15px;
}

.mobile-nav_contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav_contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav_contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    display: flex;
    justify-content: 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;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup_content {
    width: 100%;
    max-width: 560px;
}

.search-popup_content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    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: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup_content .thm-btn i {
    margin: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--thm-black);
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
    mix-blend-mode: luminosity;
    opacity: .3;
}


.main-slider-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: cover;
    opacity: 0;
    transform: translateX(200px);
    z-index: 2;
}

.main-slider .swiper-slide-active .main-slider-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.main-slider .container {
    position: relative;
    padding-top: 218px;
    padding-bottom: 235px;
    z-index: 30;
}

.main-slider_content {
    position: relative;
    display: block;
    z-index: 30;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 50px;
    line-height: 90px;
    letter-spacing: -0.02em;
    z-index: 30;
}

.main-slider p {
    font-size: 20px;
    color: var(--thm-base);
    margin: 0;
    line-height: 30px;
    margin-bottom: 53px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 30;
}

.main-slider .thm-btn {
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider_nav {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}


.main-slider_nav .swiper-button-next,
.main-slider_nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--thm-base);
    background: transparent;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 0.3;
    transition: all 500ms ease;
}


.main-slider_nav .swiper-button-next:hover,
.main-slider_nav .swiper-button-prev:hover {
    opacity: 1;
}

.main-slider_nav .swiper-button-next::after,
.main-slider_nav .swiper-button-prev::after {
    display: none;
}

.main-slider_nav .swiper-button-prev {
    margin-bottom: 10px;
}

.main-slider_nav .swiper-button-prev .icon-left-arrow {
    position: relative;
    transform: rotate(180deg);
}

#main-slider-pagination {
    z-index: 10;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

#main-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
    background-color: #fff;
    transition: all 500ms ease;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 10px;
}

#main-slider-pagination .swiper-pagination-bullet {
    margin: 0;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Main slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .container {
    padding-top: 203px;
    padding-bottom: 220px;
}

.main-slider-two .main-slider_content {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.main-slider-two_map {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 410px;
    width: 582px;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: -1;
}

.main-slider-two h3 {
    font-size: 70px;
    color: var(--thm-base);
    line-height: 90px;
    font-weight: lighter;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-120px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider-two .swiper-slide-active h3 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider-two h2 {
    letter-spacing: 0;
}

.main-slider-two h2 span {
    position: relative;
    display: inline-block;
}

.main-slider-two h2 span:before {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: var(--thm-base);
}

.main-slider-two p {
    margin-bottom: 43px;
}

.main-slider_nav-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.main-slider_nav-two .swiper-button-next {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-right: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: 0.5s;
}

.main-slider_nav-two .swiper-button-prev {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-left: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    transform: rotate(-180deg);
    transition: 0.5s;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-slider_nav-two .swiper-button-next:hover,
.main-slider_nav-two .swiper-button-prev:hover {
    opacity: 1;
}

.main-slider_nav-two .swiper-button-next::after,
.main-slider_nav-two .swiper-button-prev::after {
    display: none;
}

.main-slider_nav-two .swiper-button-prev {
    margin-bottom: 10px;
}

.main-slider-two #main-slider-pagination {
    text-align: center;
    justify-content: center;
}



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 99px 0 208px;
}

.brand-one .swiper-container {
    padding: 0 10px;
}

.brand-one .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    width: auto;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
    margin-top: -125px;
}

.feature-one_top {
    position: relative;
    display: block;
}

.feature-one_single {
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: var(--thm-bdr-radius);
    padding: 41px 47px 41px;
    margin-bottom: 30px;
}

.feature-one_icon {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.feature-one_icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-extra);
    transform: scale(1);
    transition: transform 500ms linear, color 500ms linear;
}

.feature-one_single:hover .feature-one_icon span {
    transform: scale(.9);
    color: var(--thm-primary);
}

.feature-one_text {
    margin-left: 30px;
}

.feature-one_text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 4px;
}

.feature-one_text p {
    font-size: 14px;
    margin: 0;
    line-height: 30px;
}

.feature-one_bottom {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-bottom: 38px;
    padding-top: 7px;
}

.feature-one_bottom-inner {
    position: relative;
    display: block;
    text-align: center;
}

.feature-one_bottom-inner p {
    font-size: 16px;
    margin: 0;
}

.feature-one_bottom-inner a {
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one_bottom-inner a:hover {
    color: var(--thm-extra);
}

.feature-one_bottom-inner a:before {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background-color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one_bottom-inner a:hover:before {
    background-color: var(--thm-extra);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.about-one_left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.about-one_img-box {
    position: relative;
    display: block;
}

.about-one_img-box:before {
    position: absolute;
    top: 0;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--thm-extra);
    content: "";
    border-radius: var(--thm-bdr-radius);
}

.about-one_img-box:after {
    position: absolute;
    top: 220px;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--thm-primary);
    content: "";
    border-radius: var(--thm-bdr-radius);
}

.about-one_img {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-one_img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-one_img:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-one_img>img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.about-one_small-img {
    position: absolute;
    bottom: -90px;
    left: -120px;
    z-index: 2;
}

.about-one_small-img>img {
    border-radius: var(--thm-bdr-radius);
}

.about-one_right {
    position: relative;
    display: block;
}

.about-one_right .section-title {
    margin-bottom: 28px;
}

.about-one_text {
    margin: 0;
}

.about-one_points-box {
    position: relative;
    display: block;
    margin-left: 21px;
    margin-top: 32px;
}

.about-one_points-box:before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -21px;
    content: "";
    background-color: var(--thm-primary);
    width: 2px;
}

.about-one_points {
    position: relative;
    display: block;
}

.about-one_points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one_points li+li {
    margin-top: 6px;
}

.about-one_points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one_points li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.about-one_points li .text {
    margin-left: 16px;
}

.about-one_points li .text p {
    color: var(--thm-black);
    margin: 0;
}

.about-one_it-solutions {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--thm-bdr-color);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}

.about-one_it-solutions-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one_it-solutions-icon span {
    font-size: 70px;
    color: var(--thm-extra);
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.about-one_it-solutions:hover .about-one_it-solutions-icon span {
    transform: rotateY(360deg);
}

.about-one_it-solutions-text-box {
    margin-left: 20px;
}

.about-one_it-solutions-text {
    font-weight: 600;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: #eef3f7;
    padding: 120px 0 210px;
}

.services-one .row {
    --bs-gutter-x: 15px;
}

.services-one_single {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    border-radius: var(--thm-bdr-radius);
    padding: 50px 25px 50px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 500ms ease;
    z-index: 2;
}

.services-one_single:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.services-one_icon {
    position: relative;
    height: 130px;
    width: 130px;
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 65px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
    z-index: 2;
}

.services-one_single:hover .services-one_icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.services-one_icon:before {
    position: absolute;
    top: -20px;
    bottom: -17px;
    left: 61px;
    content: "";
    width: 2px;
    background-color: var(--thm-primary);
    z-index: -1;
}

.services-one_icon:after {
    position: absolute;
    top: -15px;
    bottom: -22px;
    right: 61px;
    content: "";
    width: 2px;
    background-color: var(--thm-primary);
    z-index: -1;
}

.services-one_icon:before,
.services-one_icon:after {
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    transition: all 500ms ease;
}

.services-one_single:hover .services-one_icon:before,
.services-one_single:hover .services-one_icon:after {
    transform: rotate(45deg);
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.services-one_title {
    font-size: 24px;
    font-weight: 800;
    line-height: 26px;
    margin-top: 26px;
    margin-bottom: 16px;
}

.services-one_title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one_title a:hover {
    color: var(--thm-primary);
}

.services-one_text {
    margin: 0;
    padding-bottom: 20px;
}

.services-one_arrow {
    position: relative;
    display: block;
}

.services-one_arrow a {
    position: relative;
    height: 63px;
    width: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--thm-black);
    background-color: #eef3f7;
    margin: 0 auto;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one_single:hover .services-one_arrow a {
    background-color: var(--thm-extra);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Share The Joy
--------------------------------------------------------------*/
.share-the-joy {
    position: relative;
    display: block;
    margin-top: -120px;
    padding: 0 0 120px;
    z-index: 1;
}

.share-the-joy_inner {
    position: relative;
    display: block;
    max-width: 1594px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--thm-primary);
    border-radius: var(--thm-bdr-radius);
    padding: 105px 0 120px;
    z-index: 1;
}

.share-the-joy-map {
    background-color: var(--thm-primary);
    position: absolute;
    top: 0;
    left: 0;
    width: 490px;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .75;
    z-index: -1;
    background-blend-mode: lighten;
    bottom: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.share-the-joy_left {
    position: relative;
    display: block;
    z-index: 2;
}

.share-the-joy_shape-1 {
    position: absolute;
    left: 281px;
    bottom: 43px;
}

.share-the-joy_shape-1 img {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: banner3Shake;
    animation-name: banner3Shake;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.share-the-joy_title {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 59px;
}

.share-the-joy_btn {
    background-color: var(--thm-black);
}

.share-the-joy_btn:after {
    background-color: var(--thm-base);
}

.share-the-joy_btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.share-the-joy_btn:hover {
    color: var(--thm-primary);
}

.share-the-joy_right {
    position: relative;
    display: block;
}

.share-the-joy_img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.share-the-joy_img {
    position: absolute;
    top: -181px;
    bottom: 0;
    left: -270px;
}

.share-the-joy_trusted {
    position: absolute;
    top: 44px;
    left: 74px;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    text-align: center;
}

.share-the-joy_trusted:before {
    position: absolute;
    bottom: 0;
    right: 38px;
    width: 24px;
    height: 11px;
    content: "";
    background-image: url(../images/shapes/share-the-joy-shape-2.png);
    background-repeat: no-repeat;
    transform: rotate(-30deg);
}

.share-the-joy_trusted>span {
    font-size: 65px;
    color: var(--thm-primary);
}

.share-the-joy_trusted_content {
    position: relative;
    display: block;
    margin-top: 13px;
}

.share-the-joy_trusted_content p {
    font-size: 16px;
    margin: 0;
    line-height: 10px;
}

.share-the-joy_trusted_content h3 {
    font-size: 20px;
    font-family: var(--thm-font) !important;
    font-weight: 800;
    line-height: 30px !important;
}

.share-the-joy_trusted .odometer-formatting-mark {
    display: none;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 0 0 200px;
}

.project-one .container {
    max-width: 1060px;
}

.project-one_carousel {
    position: relative;
    display: block;
}

.project-one_carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.project-one_carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: -23px;
    right: 0px;
    left: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-one_carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--thm-black);
    opacity: .4;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-one_carousel.owl-carousel .owl-dot.active {
    background: var(--thm-extra);
    opacity: 1;
    height: 13px;
    width: 13px;
}

.project-one_carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-one_carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.project-one_single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one_img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.project-one_img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.project-one_single:hover .project-one_img:before {
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.project-one_img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
    transform: scale(1);
    transition: transform 500ms ease;
}

.project-one_single:hover .project-one_img img {
    transform: scale(1.05);
}

.project-one_content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: var(--thm-bdr-radius);
    padding: 32px 40px 39px;
    margin-top: -108px;
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
}

.project-one_content:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgb(25, 137, 251);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    transition: all 500ms ease;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-radius: var(--thm-bdr-radius);
    z-index: -1;
}

.project-one_single:hover .project-one_content:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.project-one_tagline {
    font-size: 14px;
    margin: 0;
    line-height: 27px;
    transition: all 500ms ease;
}

.project-one_title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    transition: all 500ms ease;
}

.project-one_title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.project-one_arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.project-one_arrow a {
    color: var(--thm-black);
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.project-one_single:hover .project-one_tagline,
.project-one_single:hover .project-one_title a {
    color: var(--thm-base);
}

.project-one_single:hover .project-one_arrow a {
    color: var(--thm-extra);
}

/*--------------------------------------------------------------
# Improve One
--------------------------------------------------------------*/
.improve-one {
    position: relative;
    display: block;
    padding: 0 0 0;
    z-index: 1;
    background-color: var(--thm-black);
}

.improve-one-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
}


.improve-one-bg.jarallax div div {
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
}

.improve-one_left {
    position: relative;
    display: block;
    margin-top: -60px;
}

.improve-one_img-box {
    position: relative;
    display: block;
}

.improve-one_img {
    position: relative;
    display: block;
    overflow: hidden;
}

.improve-one_img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.improve-one_img-box:hover .improve-one_img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.improve-one_img img {
    width: 100%;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.improve-one_project-complete {
    position: absolute;
    top: 170px;
    left: -230px;
    transform: rotate(-90deg);
    background-color: var(--thm-extra);
    padding: 13px 58px 13px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.improve-one_project-complete p {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 800;
    letter-spacing: 0.2em;
    margin: 0;
    text-transform: uppercase;
}

.improve-one_right {
    position: relative;
    display: block;
    margin-left: 70px;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-right: -42px;
}

.improve-one_right .section-title {
    margin-bottom: 41px;
}

.improve-one_right .section-title_tagline {
    color: #ada8ba;
}

.improve-one_right .section-title_title {
    color: var(--thm-base);
}

.improve-one_points li {
    position: relative;
    display: flex;
}

.improve-one_points li:before {
    position: absolute;
    bottom: -44px;
    left: 0;
    right: 42px;
    content: "";
    height: 1px;
    background-color: rgba(var(--thm-base-rgb), .10);
}

.improve-one_points li:last-child:before {
    display: none;
}

.improve-one_points li+li {
    margin-top: 85px;
}

.improve-one_points li .icon {
    position: relative;
    top: 8px;
}

.improve-one_points li .icon span {
    font-size: 65px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    transform: rotateY(0deg);
    transition: all 500ms ease;
}

.improve-one_points li:hover .icon span {
    transform: rotateY(180deg);
    color: var(--thm-base);
}

.improve-one_points li .text {
    margin-left: 25px;
}

.improve-one_points li .text h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    margin-bottom: 10px;
    color: var(--thm-base);
}

.improve-one_points li .text p {
    margin: 0;
    color: #ada8ba;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: #eef3f7;
    padding: 120px 0 60px;
    z-index: 1;
}

.testimonial-one-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 353px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: grayscale(100%);
    opacity: .15;
}

.testimonial-one_left {
    position: relative;
    display: block;
}

.testimonial-one_right {
    position: relative;
    display: block;
}

.testimonial-one_carousel {
    position: relative;
    display: block;
}

.testimonial-one_carousel.owl-carousel .owl-stage-outer {
    margin-right: -360px;
    padding-bottom: 60px;
}

.testimonial-one_carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 99px;
    left: -405px;
}

.testimonial-one_carousel.owl-theme .owl-nav .owl-next {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one_carousel.owl-theme .owl-nav .owl-prev {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    transform: rotate(180deg);
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one_carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one_carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
}

.testimonial-one_single {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    border-radius: var(--thm-bdr-radius);
    padding: 60px 60px 50px;
    transition: all 500ms ease;
	min-height:325px;
}

.testimonial-one_single:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.testimonial-one_client-info {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.testimonial-one_client-details {
    margin-left: 20px;
}

.testimonial-one_client-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.testimonial-one_client-title {
    font-size: 16px;
    color: var(--thm-primary);
    margin: 0;
    line-height: 26px;
}

.testimonial-one_text {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    line-height: 36px;
}

.testimonial-one_quote {
    position: absolute;
    top: 68px;
    right: 60px;
}

.testimonial-one_quote span {
    font-size: 63px;
    color: #eef3f7;
    transition: all 500ms ease;
}

.testimonial-one_single:hover .testimonial-one_quote span {
    color: var(--thm-extra);
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.news-page {
    padding-bottom: 120px;
}

.news-one_single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-one_img {
    position: relative;
    display: block;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
}

.news-one_img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1);
}

.news-one_single:hover .news-one_img img {
    transform: scale(1.05);
}

.news-one_img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-black-rgb), 0.3);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--thm-base);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.news-one_img>a>span {
    position: relative;
}

.news-one_img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.news-one_img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-one_img>a:hover>span::before,
.news-one_img>a:hover>span::after {
    background-color: var(--thm-primary);
}

.news-one_single:hover .news-one_img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.news-one_date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 17px 22px 20px;
    border-top-right-radius: 8px;
}

.news-one_date-box p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 800;
    margin: 0;
    line-height: 17px;
    text-align: center;
}

.news-one_content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    padding: 20px 42px 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 3px solid transparent;
    transition: all 500ms ease;
}

.news-one_single:hover .news-one_content {
    border-bottom: 3px solid var(--thm-extra);
}

.news-one_meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-one_meta li+li {
    margin-left: 10px;
}

.news-one_meta li a {
    color: var(--thm-gray);
    font-size: 14px;
    transition: all 500ms ease;
}

.news-one_meta li a:hover {
    color: var(--thm-extra);
}

.news-one_meta li a i {
    color: var(--thm-extra);
}

.news-one_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.news-one_title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.news-one_single:hover .news-one_title a {
    color: var(--thm-primary);
}

.news-one_text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
    padding-top: 13px;
    padding-bottom: 8px;
}

.news-one_read-more-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    display: inline-block;
    transition: all 500ms ease;
}

.news-one_read-more-btn:hover {
    color: var(--thm-extra);
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    z-index: 1;
}

.cta-one_container {
    position: relative;
    display: block;
    max-width: 1595px;
    width: 100%;
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    z-index: 1;
}

.cta-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--thm-extra);
    background-blend-mode: luminosity;
    opacity: 0.15;
    z-index: -1;
}


.cta-one_inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 108px 0 120px;
}

.cta-one_sub-title {
    font-weight: 600;
    color: var(--thm-base);
    margin: 0;
    padding-bottom: 15px;
}

.cta-one_title {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 50px;
}

.cta-one_btn {
    background-color: var(--thm-black);
}

.cta-one_btn:after {
    background-color: var(--thm-base);
}

.cta-one_btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.cta-one_btn:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #1b1825;
    /* margin-top: -120px; */
}

.site-footer_top {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.site-footer_top-inner {
    position: relative;
    display: block;
    padding: 60px 0 30px;
    z-index: 1;
}

.site-footer-map {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -42px;
    height: 566px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.footer-widget_about {
    position: relative;
    display: block;
}

.footer-widget_about-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 30px;
}

.footer-widget_about-social {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.footer-widget_about-social a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    background-color: #100d16;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget_about-social a:hover {
    color: var(--thm-black);
    transform: rotate(360deg);
}

.footer-widget_about-social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    border-radius: 50%;
    transform: scale(0.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;
}

.footer-widget_about-social a:hover:before {
    transform: scaleX(1.0);
}

.footer-widget_about-social a+a {
    margin-left: 10px;
}

.footer-widget_title {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 30px;
}

.footer-widget_links {
    position: relative;
    display: block;
}

.footer-widget_links-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.footer-widget_links-list li+li {
    margin-top: 0px;
}

.footer-widget_links-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ada8ba;
    transition: all 500ms ease;
}

.footer-widget_links-list li a::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}

.footer-widget_links-list li:hover>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

.footer-widget_links-list li a:hover {
    color: var(--thm-base);
}

.footer-widget_links-list-two {
    margin-right: 0px;
}

.footer-widget_contact {
    position: relative;
    display: block;
}

.footer-widget_contact-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    line-height: 30px;
    margin-bottom: 20px;
    padding-top: 3px;
}

.footer-widget_contact-list {
    position: relative;
    display: block;
}

.footer-widget_contact-list li {
    display: flex;
}

.footer-widget_contact-list li .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.footer-widget_contact-list li .icon span {
    font-size: 13px;
    color: var(--thm-extra);
}

.footer-widget_contact-list li .text {
    margin-left: 10px;
}

.footer-widget_contact-list li .text p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 30px;
}

.footer-widget_contact-list li .text p a {
    color: var(--thm-base);
    transition: all 500ms ease;
}

.footer-widget_contact-list li .text p a:hover {
    color: var(--thm-extra);
}

.footer-widget_newsletter {
    position: relative;
    display: block;
}

.footer-widget_newsletter-text {
    font-size: 16px;
    color: #ada8ba;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    padding-bottom: 23px;
    padding-top: 5px;
}

.footer-widget_newsletter-form {
    position: relative;
    display: block;
}

.footer-widget_newsletter-input-box {
    position: relative;
    display: block;
}

.footer-widget_newsletter-input-box input[type="email"] {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 500;
    text-transform: capitalize;
    height: 60px;
    width: 100%;
    background: var(--thm-base);
    border: none;
    border-radius: var(--thm-bdr-radius);
    padding-right: 95px;
    outline: none;
    padding-left: 20px;
}

.footer-widget_newsletter-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-primary);
    border: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: var(--thm-base);
    transition: all 500ms ease;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .2em;
}

.footer-widget_newsletter-btn:hover {
    background-color: var(--thm-extra);
}

.site-footer_bottom {
    position: relative;
    display: block;
    z-index: 2;
}

.site-footer_bottom-container {
    position: relative;
    display: block;
    max-width: 1595px;
    width: 100%;
    margin: 0 auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.site-footer_bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.site-footer_bottom-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #ada8ba;
}

.site-footer_bottom-text a {
    color: #ada8ba;
    transition: all 500ms ease;
}

.site-footer_bottom-text a:hover {
    color: var(--thm-base);
}

.site-footer_bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer_bottom-menu li+li {
    margin-left: 12px;
}

.site-footer_bottom-menu li a {
    color: #ada8ba;
    font-size: 16px;
    display: inline-block;
    transition: all 500ms ease;
}

.site-footer_bottom-menu li a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Business Growth
--------------------------------------------------------------*/
.business-growth {
    position: relative;
    display: block;
    background-color: #eef3f7;
    padding: 0 0 120px;
    z-index: 1;
}

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

.business-growth-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-primary);
    z-index: -1;
}

.business-growth_left {
    position: relative;
    display: block;
}

.business-growth_left .section-title_tagline {
    color: var(--thm-base);
}

.business-growth_left .section-title_title {
    color: var(--thm-base);
}

.business-growth_right {
    position: relative;
    display: block;
    margin-top: 12px;
}

.business-growth_right-text {
    margin: 0;
    color: #cce5ff;
    line-height: 30px;
}

.business-growth_bottom {
    position: relative;
    display: block;
    margin-top: -120px;
    z-index: 2;
}

.business-growth_single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.business-growth_img {
    position: relative;
    display: block;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
}

.business-growth_img::before {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-top-left-radius: 8px;
    z-index: 1;
    transition: all 500ms ease;
}

.business-growth_single:hover .business-growth_img::before,
.business-growth_single:hover .business-growth_img::after {
    width: 50%;
}

.business-growth_img::after {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-top-right-radius: 8px;
    transition: all 500ms ease;
}

.business-growth_img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1.05);
}

.business-growth_single:hover .business-growth_img img {
    transform: scale(1);
}

.business-growth_content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 44px 26px 44px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
	min-height:260px;
}

.business-growth_content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-primary);
    height: 10px;
    transition: all 500ms ease;
}



.business-growth_title {
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 16px;
}

.business-growth_title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.business-growth_single:hover .business-growth_title a {
    color: var(--thm-extra);
}

.business-growth_text {
    font-size: 16px;
    margin: 0;
    line-height: 24px;
}

.business-growth_find {
    position: relative;
    display: block;
}

.business-growth_find-inner {
    position: relative;
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-top: 18px;
    padding-bottom: 39px;
}

.business-growth_find-inner p {
    font-size: 16px;
    margin: 0;
}

.business-growth_find-inner a {
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth_find-inner a:before {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background-color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth_find-inner a:hover {
    color: var(--thm-extra);
}

.business-growth_find-inner a:hover:before {
    background-color: var(--thm-extra);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.welcome-one_left {
    position: relative;
    display: block;
    margin-right: 100px;
    margin-top: -60px;
    z-index: 2;
}

.welcome-one_img-box {
    position: relative;
    display: block;
}

.welcome-one_img-box:before {
    position: absolute;
    top: 0;
    right: -60px;
    width: 30px;
    height: 390px;
    content: "";
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
}

.welcome-one_img {
    position: relative;
    display: block;
    border-radius: var(--thm-bdr-radius);
    overflow: hidden;
}

.welcome-one_img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.welcome-one_img-box:hover .welcome-one_img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.welcome-one_img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.welcome-one_certified {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    position: absolute;
    bottom: 0;
    right: -60px;
    padding: 40px 40px 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.welcome-one_certified-icon {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.welcome-one_certified-icon span {
    font-size: 63px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    transform: rotateY(0deg);
    transition: all 500ms ease;
}

.welcome-one_certified:hover .welcome-one_certified-icon span {
    transform: rotateY(180deg);
    color: var(--thm-extra);
}

.welcome-one_certified-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.welcome-one_right {
    position: relative;
    display: block;
    padding-top: 60px;
}

.welcome-one_right .section-title {
    margin-bottom: 38px;
}

.welcome-one_right-text {
    margin: 0;
}

.welcome-one_funded {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--thm-bdr-color);
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 35px;
}

.welcome-one_funded-content {
    margin-left: 30px;
}

.welcome-one_funded-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
}

.welcome-one_funded-text span {
    font-size: 24px;
    font-weight: 800;
    color: var(--thm-extra);
}

.welcome-one_funded-name {
    font-size: 24px;
    color: var(--thm-primary);
    font-family: var(--thm-reey-font);
    line-height: 34px;
    font-weight: 400;
}

.welcome-one_funded-name span {
    font-size: 20px;
    font-weight: 500;
    color: var(--thm-black);
    font-family: var(--thm-font);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
    position: relative;
    display: block;
    padding: 120px 0 230px;
    z-index: 1;
    background-color: var(--thm-black);
}

.video-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    background-color: var(--thm-black);
}


.video-one-bg.jarallax div div {
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
}

.video-one_inner {
    position: relative;
    display: block;
    text-align: center;
}

.video-one_video-link {
    position: relative;
    display: inline-block;
}

.video-one_video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    line-height: 108px;
    text-align: center;
    font-size: 25px;
    color: var(--thm-base);
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    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;
}

.video-one_video-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.video-one_video-link .ripple,
.video-one_video-icon .ripple:before,
.video-one_video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: var(--thm-bdr-radius);
}

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

.video-one_title {
    font-size: 50px;
    font-weight: 800;
    line-height: 60px;
    margin-top: 45px;
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Help
--------------------------------------------------------------*/
.help {
    position: relative;
    display: block;
    padding: 0 0 120px;
    margin-top: -120px;
    z-index: 1;
}

.help_box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    border-radius: var(--thm-bdr-radius);
}

.help_single {
    position: relative;
    float: left;
    max-width: 300px;
    width: 100%;
}

.help_single:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    width: 1px;
    background-color: var(--thm-bdr-color);
}

.help_single:nth-child(1):before {
    display: none;
}

.help_single:nth-child(2):before {
    display: none;
}

.help_box-one {
    max-width: 285px;
}

.help_box-one-content {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 52px 60px 52px;
    border-top-left-radius: 8px;
    z-index: 1;
}

.help_box-one-content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background-color: var(--thm-extra);
    border-top-left-radius: 8px;
    opacity: 0;
    transition: all 500ms ease;
    z-index: -1;
}

.help_single:hover .help_box-one-content:before {
    height: 100%;
    opacity: 1;
}

.help_box-one-title {
    font-size: 26px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 34px;
}

.help_box-one-img {
    position: relative;
    display: block;
    border-bottom-left-radius: 8px;
    overflow: hidden;
}

.help_box-one-img::before {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-bottom-left-radius: 8px;
    z-index: 1;
    transition: all 500ms ease;
}

.help_single:hover .help_box-one-img::before,
.help_single:hover .help_box-one-img::after {
    width: 50%;
}

.help_box-one-img::after {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-bottom-right-radius: 8px;
    transition: all 500ms ease;
}

.help_box-one-img img {
    width: 100%;
    border-bottom-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1.05);
}

.help_single:hover .help_box-one-img img {
    transform: scale(1);
}

.help_box-two {
    position: relative;
    display: block;
}

.help_box-two-content {
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 44px;
    padding-left: 30px;
    padding-right: 30px;
}

.help_box-two-icon {
    position: relative;
    height: 70px;
    width: 70px;
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 35px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.help_box-two-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-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;
}

.help_single:hover .help_box-two-icon:before {
    transform: scale(1);
}

.help_box-two-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    transition: all 500ms ease;
}

.help_single:hover .help_box-two-icon span {
    color: var(--thm-base);
    transform: rotateY(180deg);
}

.help_box-two-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    margin-top: 22px;
    margin-bottom: 21px;
}

.help_box-two-title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.help_single:hover .help_box-two-title a {
    color: var(--thm-primary);
}

.help_box-two-text {
    font-size: 16px;
    margin: 0;
    line-height: 24px;
}

.help_box-last {
    max-width: 285px;
}

.help_box-last .help_box-two-content {
    padding-right: 30px;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    padding: 0 0 100px;
}

.project-two_container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.project-two .project-one_single {
    margin-bottom: 70px;
}

.project-two .project-one_title {
    font-size: 24px;
    line-height: 30px;
}

.project-two .project-one_content {
    padding: 22px 30px 29px;
    margin-top: -78px;
}

.project-two .project-one_arrow {
    top: 50%;
    right: 20px;
}

.project-two_carousel {
    position: relative;
    display: block;
}

.project-two_carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 18px;
    right: 0px;
    left: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-two_carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--thm-black);
    opacity: .4;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-two_carousel.owl-carousel .owl-dot.active {
    background: var(--thm-extra);
    opacity: 1;
    height: 13px;
    width: 13px;
}

.project-two_carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-two_carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
}

.brand-two_inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-bdr-color);
    padding: 98px 0 99px;
}

.brand-two .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-two .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-two .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Industries We Serve
--------------------------------------------------------------*/
.industries-we-serve {
    position: relative;
    display: block;
    padding: 120px 0 240px;
    background-color: var(--thm-black);
    z-index: 1;
}

.industries-we-serve-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.industries-we-serve-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.industries-we-serve_left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.industries-we-serve_left .section-title {
    margin-bottom: 28px;
}

.industries-we-serve_left .section-title_tagline {
    color: #ada8ba;
}

.industries-we-serve_left .section-title_title {
    color: var(--thm-base);
}

.industries-we-serve_text {
    color: #ada8ba;
    margin: 0;
}

.industries-we-serve_points {
    position: relative;
    display: block;
    margin-top: 33px;
}

.industries-we-serve_points li {
    position: relative;
    display: flex;
    align-items: center;
}

.industries-we-serve_points li+li {
    margin-top: 6px;
}

.industries-we-serve_points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.industries-we-serve_points li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.industries-we-serve_points li .text {
    margin-left: 20px;
}

.industries-we-serve_points li .text p {
    font-size: 20px;
    color: var(--thm-base);
    margin: 0;
}

.industries-we-serve_right {
    position: relative;
    display: block;
    margin-left: 60px;
}

.industries-we-serve_boxes {
    position: relative;
    display: block;
}

.industries-we-serve_boxes li {
    position: relative;
    background-color: #100d16;
    border-radius: var(--thm-bdr-radius);
    max-width: 200px;
    float: left;
    width: 100%;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 39px 0 35px;
}

.industries-we-serve_boxes li:nth-child(1) {
    margin-left: 0;
}

.industries-we-serve_boxes li:nth-child(3) {
    margin-left: 0;
    margin-bottom: 0;
}

.industries-we-serve_boxes li:nth-child(4) {
    margin-bottom: 0;
}

.industries-we-serve_icon {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.industries-we-serve_icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: var(--thm-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.industries-we-serve_boxes li:hover .industries-we-serve_icon span {
    color: var(--thm-base);
    transform: rotateY(360deg);
}

.industries-we-serve_title {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 600;
    line-height: 22px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    z-index: 3;
}

.team-one_container {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    max-width: 1595px;
    width: 100%;
    margin: -120px auto 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 120px 0 150px;
    z-index: 3;
}

.team-one_single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one_img {
    position: relative;
    display: block;
    border-radius: var(--thm-bdr-radius);
    overflow: hidden;
    transition: all 500ms ease;
}

.team-one_single:hover .team-one_img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.team-one_img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.team-one_single:hover .team-one_img:before {
    transform: translateY(0);
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.team-one_img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
    transition: all 500ms ease;
    transform: scale(1);
}

.team-one_single:hover .team-one_img img {
    transform: scale(1.05);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.team-one_social {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 0;
    left: 0;
    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: bottom center;
    z-index: 2;
}

.team-one_single:hover .team-one_social {
    transform: scaleY(1.0);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.team-one_social a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    background-color: #100d16;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.team-one_social a:hover {
    color: var(--thm-base);
    transform: rotate(360deg);
    background-color: var(--thm-extra);
}

.team-one_social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-extra);
    border-radius: 50%;
    transform: scale(0.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;
}

.team-one_social a:hover:before {
    transform: scaleX(1.0);
}

.team-one_social a+a {
    margin-left: 10px;
}

.team-one_content {
    position: relative;
    display: block;
    text-align: center;
    padding: 23px 0 26px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.team-one_content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    z-index: -1;
}

.team-one_single:hover .team-one_content:before {
    transform: scaleY(1);
}

.team-one_name {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
}

.team-one_title {
    font-size: 12px;
    margin: 0;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 0 0 120px;
    z-index: 3;
}

.why-choose-shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
}

.why-choose_left {
    position: relative;
    display: block;
    margin-left: -376px;
    margin-top: -60px;
    z-index: 5;
}

.why-choose_img {
    position: relative;
    display: block;
}

.why-choose_img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.why-choose_right {
    position: relative;
    display: block;
    margin-left: 70px;
    padding-top: 120px;
}

.why-choose_right .section-title {
    margin-bottom: 36px;
}

.why-choose_right .section-title_tagline {
    color: var(--thm-base);
}

.why-choose_right .section-title_title {
    color: var(--thm-base);
}

.why-choose_right-text-box {
    margin-right: -58px;
}

.why-choose_right-text {
    font-size: 20px;
    color: var(--thm-base);
    margin: 0;
}

.why-choose_progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 38px;
}

.why-choose_progress-single {
    position: relative;
    display: block;
}

.why-choose_progress-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    color: var(--thm-base);
    margin-bottom: 10px;
}

.why-choose_progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(var(--thm-black-rgb), 0.09);
    border-radius: 30px;
    margin-bottom: 19px;
}

.why-choose_progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    border-radius: 30px;
    background: var(--thm-extra);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.why-choose_progress .count-text {
    position: absolute;
    right: 0px;
    bottom: 20px;
    color: var(--thm-base);
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    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;
}

.why-choose_progress .bar-inner.counted .count-text {
    opacity: 1;
}

.why-choose_progress .bar.marb-0 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
}

.google-map_one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.news-two_left {
    position: relative;
    display: block;
    margin-right: 30px;
    z-index: 5;
}

.news-two .section-title {
    margin-bottom: 28px;
}

.news-two_text {
    margin: 0;
    padding-bottom: 31px;
}

.news-two_right {
    position: relative;
    display: block;
    margin-right: -360px;
}

.news-two_carousel {
    position: relative;
    display: block;
}

.news-two_carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0 0 0;
    margin-right: 0px;
}

.news-two_carousel .owl-stage-outer .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.news-two_carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    visibility: visible;
    transition: all 200ms linear;
}

.news-two_carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 165px;
    left: -405px;
}

.news-two_carousel.owl-theme .owl-nav .owl-next {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two_carousel.owl-theme .owl-nav .owl-prev {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    transform: rotate(180deg);
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two_carousel.owl-theme .owl-nav .owl-next:hover,
.news-two_carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
}

/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
    position: relative;
    display: block;
    z-index: 2;
}

.cta-two_container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

.cta-two-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.10;
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
    z-index: -1;
}

.cta-two_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 112.5px 0;
}

.cta-two_title {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 800;
    line-height: 60px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 147px 0 185px;
    z-index: 1;
    background-color: var(--thm-black);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.3;
}


.page-header-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 570px;
    background-repeat: no-repeat;
}

.page-header_inner {
    position: relative;
    display: block;
    text-align: left;
}

.page-header_inner h2 {
    font-size: 50px;
    color: var(--thm-base);
    line-height: 50px;
    font-weight: 900;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #ada8ba;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    color: #ada8ba;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover {
    color: var(--thm-base);
}

.thm-breadcrumb li:hover a {
    color: var(--thm-base);
}


/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    margin-top: 0;
}

.site-footer-two .site-footer_top-inner {
    padding: 116px 0 120px;
}

.site-footer-two .site-footer-map {
    bottom: -95px;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.service-details_right {
    position: relative;
    display: block;
}

.service-details_img {
    position: relative;
    display: block;
}

.service-details_img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.service-details_content {
    position: relative;
    display: block;
    margin-top: 29px;
}

.service-details_title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 20px;
}

.service-details_text {
    margin: 0;
}

.service-details_text-2 {
    margin: 0;
    padding-top: 35px;
}

.service-details_benefits {
    position: relative;
    display: block;
    margin-top: 51px;
    margin-bottom: 60px;
}

.service-details_benefits-img {
    position: relative;
    display: block;
}

.service-details_benefits-img img {
    width: 100%;
}

.service-details_benefits-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 36px;
    margin-top: -11px;
}

.service-details_benefits-text {
    font-size: 20px;
    margin: 0;
    color: var(--thm-primary);
}

.service-details_benefits-list {
    position: relative;
    display: block;
    margin-top: 33px;
}

.service-details_benefits-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details_benefits-list li+li {
    margin-top: 6px;
}

.service-details_benefits-list li .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.service-details_benefits-list li .icon span {
    font-size: 12px;
    color: var(--thm-extra);
}

.service-details_benefits-list li .text {
    margin-left: 10px;
}

.service-details_benefits-list li .text p {
    font-size: 18px;
    margin: 0;
    color: var(--thm-gray);
    font-weight: 500;
}

.service-details_faq {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: var(--thm-bdr-radius);
    background-color: #eef3f7;
}

.faq-one-accrodion .accrodion.active {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 21px 40px 21px;
    padding-right: 27px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    color: var(--thm-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--thm-primary);
    ;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--thm-black);
    ;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 40px 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
}

.service-details_sidebar {
    position: relative;
    display: block;
}

.service-details_sidebar-service {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 45px 25px 36px;
    border-radius: var(--thm-bdr-radius);
}

.service-details_sidebar-title {
    font-size: 20px;
    font-weight: 800;
    padding-left: 25px;
    margin-bottom: 18px;
}

.service-details_sidebar-service-list {
    margin: 0;
}

.service-details_sidebar-service-list li+li {
    margin-top: 6px;
}

.service-details_sidebar-service-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 25px;
    border-radius: var(--thm-bdr-radius);
}

.service-details_sidebar-service-list li.current a,
.service-details_sidebar-service-list li:hover a {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.service-details_sidebar-service-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-details_sidebar-service-list li.current a span,
.service-details_sidebar-service-list li:hover a span {
    color: var(--thm-black);
    transform: translateY(-50%) scale(1);
}

.service-details_need-help {
    position: relative;
    display: block;
    padding: 50px 50px 43px;
    margin-top: 30px;
    text-align: center;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.service-details_need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    border-radius: var(--thm-bdr-radius);
    z-index: -1;
}

.service-details_need-help-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
    border-radius: var(--thm-bdr-radius);
    z-index: -1;
}

.service-details_need-help-icon {
    height: 75px;
    width: 75px;
    background-color: var(--thm-base);
    color: var(--thm-primary);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 22px;
    transition: all 500ms ease;
}

.service-details_need-help-icon:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.service-details_need-help-text-box {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 600;
    line-height: 33px;
}

.service-details_need-help-contact {
    position: relative;
    display: block;
    margin-top: 28px;
}

.service-details_need-help-contact a {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 800;
    transition: all 500ms ease;
}

.service-details_need-help-contact a:hover {
    color: var(--thm-black);
}

.service-details_need-help-contact p {
    font-size: 14px;
    color: #cce5ff;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/*Project Page*/
.project-page {
    padding: 120px 0 90px;
}

.project-page .project-one_single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.project-details_img-box {
    position: relative;
    display: block;
}

.project-details_img-box img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.project-details_details-box {
    border-radius: var(--thm-bdr-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 38px 50px 30px;
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    z-index: 3;
}

.project-details_details-info li {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.project-details_details-info li:nth-child(3) {
    margin-left: 110px;
}

.project-details_details-info li:nth-child(4) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.project-details_details-info li+li {
    margin-left: 120px;
}

.project-details_client {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.project-details_name {
    color: var(--thm-primary);
    margin: 0;
    font-size: 16px;
}

.project-details_social-list {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.project-details_social-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.project-details_social-list a:hover {
    color: var(--thm-base);
    transform: rotate(360deg);
}

.project-details_social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0.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;
}

.project-details_social-list a:hover:before {
    transform: scaleX(1.0);
}

.project-details_social-list a+a {
    margin-left: 10px;
}

.project-details_content {
    position: relative;
    display: block;
    margin-top: 74px;
}

.project-details_title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 35px;
}

.project-details_text-1 {
    margin: 0;
    padding-bottom: 33px;
}

.project-details_text-2 {
    margin: 0;
}

.project-details_list {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-top: 43px;
}

.project-details_list:before {
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    content: "";
    background-color: var(--thm-primary);
    width: 2px;
}

.project-details_list li {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details_list li+li {
    margin-top: 6px;
}

.project-details_list li .icon {
    display: flex;
    align-items: center;
}

.project-details_list li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.project-details_list li .text {
    margin-left: 15px;
}

.project-details_list li .text p {
    margin: 0;
    color: var(--thm-black);
}

.project-details_pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid var(--thm-bdr-color);
    border-bottom: 1px solid var(--thm-bdr-color);
    padding: 48px 0;
    margin-top: 113px;
}

.project-details_pagination li {
    display: inline-block;
}

.project-details_pagination li.next {
    float: left;
    position: relative;
}

.project-details_pagination li a {
    font-size: 18px;
    color: var(--thm-black);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.project-details_pagination li a:hover {
    color: var(--thm-primary);
}

.project-details_pagination li.next i {
    position: relative;
    transform: rotate(180deg);
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.project-details_pagination li.previous {
    position: relative;
    float: right;
}

.project-details_pagination li.previous i {
    margin-left: 10px;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Similar Work
--------------------------------------------------------------*/
.simialr-work {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.simialr-work .project-one_single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-details_left {
    position: relative;
    display: block;
}

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

.news-details_img img {
    width: 100%;
}

.news-details_date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 17px 22px 20px;
    border-top-right-radius: 8px;
}

.news-details_date-box p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 800;
    margin: 0;
    line-height: 17px;
    text-align: center;
}

.news-details_content {
    position: relative;
    display: block;
}

.news-details_meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-details_meta li+li {
    margin-left: 10px;
}

.news-details_meta li a {
    color: var(--thm-gray);
    font-size: 14px;
    transition: all 500ms ease;
}

.news-details_meta li a:hover {
    color: var(--thm-extra);
}

.news-details_meta li a i {
    color: var(--thm-extra);
}

.news-details_title {
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 24px;
}

.news-details_text-1 {
    margin: 0;
    padding-bottom: 37px;
}

.news-details_text-2 {
    margin: 0;
}

.news-details_text-3 {
    margin: 0;
}

.news-details_bottom {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 51px;
    border-top: 1px solid var(--thm-bdr-color);
}

.news-details_bottom p {
    margin: 0;
}

.news-details_tags span {
    color: var(--thm-black);
    font-weight: 800;
    font-size: 20px;
    margin-right: 16px;
}

.news-details_tags a {
    position: relative;
    color: var(--thm-base);
    font-size: 11px;
    font-weight: 800;
    background-color: var(--thm-primary);
    display: inline-block;
    padding: 3px 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--thm-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details_tags a:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.news-details_tags a+a {
    margin-left: 6px;
}

.news-details_social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.news-details_social-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.news-details_social-list a:hover {
    color: var(--thm-base);
    transform: rotate(360deg);
}

.news-details_social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0.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;
}

.news-details_social-list a:hover:before {
    transform: scaleX(1.0);
}

.news-details_social-list a+a {
    margin-left: 10px;
}

.news-details_pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 51px;
}

.news-details_pagenation {
    position: relative;
    display: block;
}

.news-details_pagenation li {
    position: relative;
    float: left;
    font-size: 22px;
    color: var(--thm-black);
    background-color: #eef3f7;
    font-weight: 700;
    line-height: 36px;
    padding: 51px 0px;
    border-radius: var(--thm-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
}

.news-details_pagenation li+li {
    margin-left: 30px;
}

.news-details_pagenation li:hover {
    background-color: var(--thm-extra);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one_title,
.comment-form_title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 53px;
}

.comment-one_single {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-bottom: 50px;
    margin-bottom: 58px;
}

.comment-one_content {
    position: relative;
    margin-left: 35px;
}

.comment-one_content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 800;
    margin-bottom: 40px;
}

.comment-one_content h3 span {
    font-size: 16px;
    color: var(--thm-primary);
    font-weight: 500;
    margin-left: 5px;
}

.comment-one_content p {
    margin: 0;
}

.comment-one_btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 25px;
}

.comment-one_image img {
    border-radius: 50%;
}

.comment-form .comment-form_title {
    margin-top: -7px;
}

.comment-one_form .row {
    --bs-gutter-x: 20px;
}

.comment-form_input-box {
    position: relative;
    display: block;
}

.comment-form_input-box input[type="text"],
.comment-form_input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: none;
    background: #eef3f7;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-radius: var(--thm-bdr-radius);
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    display: block;
}

.comment-form_input-box textarea {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    height: 195px;
    width: 100%;
    background: #eef3f7;
    padding: 20px 30px 30px;
    border: none;
    border-radius: var(--thm-bdr-radius);
    outline: none;
    margin-bottom: 20px;
    display: block;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar_single+.sidebar_single {
    margin-top: 30px;
}

.sidebar_title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 21px;
}

.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(--thm-extra);
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 80px;
    border-radius: var(--thm-bdr-radius);
    width: 100%;
    padding-right: 80px;
}

.sidebar_search-form ::-webkit-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar_search-form ::-moz-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar_search-form :-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar_search-form ::-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar_search-form ::placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar_search-form :-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar_search-form ::-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar_search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-base);
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 60px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
}

.sidebar_categories {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 45px 25px 36px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar_categories .sidebar_title {
    margin-left: 25px;
}

.sidebar_categories-list {
    margin: 0;
}

.sidebar_categories-list li+li {
    margin-top: 6px;
}

.sidebar_categories-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 25px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar_categories-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.sidebar_categories-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar_categories-list li a:hover span {
    color: var(--thm-black);
    transform: translateY(-50%) scale(1);
}

.sidebar_post {
    position: relative;
    display: block;
    padding: 45px 50px 43px;
    background-color: #eef3f7;
    border-radius: var(--thm-bdr-radius);
}

.sidebar_post .sidebar_title {
    margin-bottom: 27px;
}

.sidebar_post-list {
    margin: 0;
}

.sidebar_post-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid var(--thm-base);
    padding-bottom: 33px;
}

.sidebar_post-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar_post-list li+li {
    margin-top: 21px;
}

.sidebar_post-image {
    margin-right: 20px;
}

.sidebar_post-image>img {
    width: 60px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar_post-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 26px;
    color: var(--thm-black);
}

.sidebar_post-content_meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    display: block;
}

.sidebar_post-content_meta i {
    font-size: 14px;
    color: var(--thm-extra);
    padding-right: 4px;
}

.sidebar_post-content h3 a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.sidebar_post-list li:hover .sidebar_post-content h3 a {
    color: var(--thm-primary);
}

.sidebar_tags {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 47px 45px 50px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar_tags .sidebar_title {
    margin-left: 5px;
    margin-bottom: 36px;
}

.sidebar_tags-list {
    margin-top: -10px;
}

.sidebar_tags-btn {
    position: relative;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 800;
    background-color: var(--thm-base);
    display: inline-block;
    padding: 2px 15px;
    margin-left: 5px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar_tags-btn:after {
    background-color: var(--thm-primary);
}

.sidebar_tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-page_left {
    position: relative;
    display: block;
}

.contact-page_left .section-title {
    margin-bottom: 25px;
}

.contact-page_text {
    margin: 0;
    padding-bottom: 40px;
}

.contact-page_social-list {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.contact-page_social-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-page_social-list a:hover {
    color: var(--thm-base);
    transform: rotate(360deg);
}

.contact-page_social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0.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;
}

.contact-page_social-list a:hover:before {
    transform: scaleX(1.0);
}

.contact-page_social-list a+a {
    margin-left: 10px;
}

.contact-page_right {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Contact Details
--------------------------------------------------------------*/
.contact-details {
    position: relative;
    display: block;
}

.contact-details_inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-bdr-color);
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-details_single {
    position: relative;
    display: flex;
    /* align-items: center; */
}

.contact-details_icon {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--thm-extra);
    font-size: 20px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-details_icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0.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;
}

.contact-details_single:hover .contact-details_icon:before {
    transform: scaleX(1.0);
}

.contact-details_icon span {
    position: relative;
    display: inline-block;
}

.contact-details_content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.contact-details_sub-title {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}

.contact-details_content h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 28px;
}

.contact-details_content h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 26px;
}

.contact-details_content h4 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-details_content h4 a:hover {
    color: var(--thm-extra);
}

.contact-details_single-2 {
    margin-left: 85px;
}

.contact-details_single-3 {
    margin-left: 160px;
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 2;
}

.contact-page-google-map_one {
    position: relative;
    display: block;
    border: none;
    height: 518px;
    width: 100%;
    max-width: 1595px;
    margin: 0 auto;
    border-radius: var(--thm-bdr-radius);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-two_left {
    position: relative;
    display: block;
    margin-right: 62px;
}

.about-two_img {
    position: relative;
    display: block;
}

.about-two_img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.about-two_right {
    position: relative;
    display: block;
    margin-left: -30px;
}

.about-two_right .section-title {
    margin-bottom: 28px;
}

.about-two_text-1 {
    margin: 0;
    padding-bottom: 19px;
}

.about-two_text-2 {
    font-size: 24px;
    color: var(--thm-primary);
    font-weight: 600;
    margin: 0;
    line-height: 40px;
    padding-bottom: 39px;
}

.about-two_progress {
    display: flex;
    align-items: center;
    line-height: 0;
}

.about-two_progress-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media (min-width: 768px) {
    .about-two_progress-wrap {
        grid-template-columns: repeat(2, 290px);
    }
}

.about-two_progress-box {
    position: relative;
    display: inline-block;
}

.about-two_progress-box canvas {
    transform: rotate(90deg);
}

.about-two_progress-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: var(--thm-black);
}

.about-two_progress h3 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    color: var(--thm-black);
    width: 120px;
    margin-left: 20px;
}

/*About Page Video*/
.about-page-video {
    padding-bottom: 110px;
}

/*About Page Team*/
.about-page-team {
    padding: 120px 0 90px;
}

/*Services Two*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    content: "";
    background-color: #eef3f7;
    z-index: -1;
}

/*Business Growth Two*/
.business-growth-two {
    position: relative;
    display: block;
    background-color: var(--thm-base);
}

.business-growth-two .business-growth_top {
    padding: 0px 0 120px;
}

.business-growth-two .section-title_tagline {
    color: var(--thm-gray);
}

.business-growth-two .section-title_title {
    color: var(--thm-black);
}

.business-growth-two .business-growth_right-text {
    color: var(--thm-gray);
}

.radiobtn {
  position: relative;
  display: block;
}
.radiobtn label {
  display: block;
  background: #eef3f7;
  color: #444;
  border-radius: 5px;
  padding: 10px 20px;
  border: 2px solid #eef3f7;
  margin-bottom: 5px;
  cursor: pointer;
}
.radiobtn label:after, .radiobtn label:before {
  content: "";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #bdc9d3;
}
.radiobtn label:before {
  background: transparent;
  transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center;
  width: 0;
  height: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}
.radiobtn input[type=radio] {
  display: none;
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radiobtn input[type=radio]:checked + label {
  background: #bdc9d3;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  border-color: #bdc9d3;
}
.radiobtn input[type=radio]:checked + label:after {
  background: #798a98;
}
.radiobtn input[type=radio]:checked + label:before {
  width: 20px;
  height: 20px;
}

@-webkit-keyframes blink {
  0% {
    background-color: #fdcb77;
  }
  10% {
    background-color: #fdcb77;
  }
  11% {
    background-color: #fdd591;
  }
  29% {
    background-color: #fdd591;
  }
  30% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  45% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  100% {
    background-color:#bdc9d3;
  }
}

@keyframes blink {
  0% {
    background-color: #bdc9d3;
  }
  10% {
    background-color: #bdc9d3;
  }
  11% {
    background-color: #bdc9d3;
  }
  29% {
    background-color: #bdc9d3;
  }
  30% {
    background-color: #bdc9d3;
  }
  50% {
    background-color: #bdc9d3;
  }
  45% {
    background-color: #bdc9d3;
  }
  50% {
    background-color: #bdc9d3;
  }
  100% {
    background-color: #bdc9d3;
  }
}

body {
  background-color: #f8f9fa;
}

.job-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.job-card .company-logo {
  max-width: 60px;
  max-height: 60px;
  margin-right: 16px;
}

.job-card .apply-btn {
  min-width: 120px;
}

.job-card .job-meta {
  font-size: 0.9rem;
  color: #555;
}




/*Job Search Page Styling*/

.job-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .job-card .company-logo {
    max-width: 60px;
    max-height: 60px;
    margin-right: 16px;
  }
  
  .job-card .apply-btn {
    min-width: 120px;
  }
  
  .job-card .job-meta {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    /* font-size: 0.9rem; */
    color: #555;
  }

  a[data-bs-toggle="collapse"]:focus {
    outline: none;
    box-shadow: none;
  }



.conBenefits{min-height:300px}
.card-block{padding:10px}