<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*------------------
* COLORS
GREEN : #76bd00 rgb : 118, 189, 0
BLUE : #112e68 rgb : 17, 46, 104
TEAL : #538a85 rgb : 83, 138, 133
GREY : #404433 rgb : 64, 68, 51
 */

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Open Sans', sans-serif;
    --thm-font-2: 'Open Sans', sans-serif;
    --thm-base: #76bd00;
    --thm-base-rgb: 118, 189, 0;
    --thm-black: #112e68;
    --thm-black-rgb: 17, 46, 104;
    --thm-gray: #404433;
    --thm-gray-rgb: 64, 68, 51;
    --thm-primary: #538a85;
    --thm-primary-rgb: 83, 138, 133;
}

#root {
    overflow-x: hidden;
}

.button-green {
    background:var(--thm-base) !important;
    width: 100%;
}

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

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


body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    overflow-x: hidden;
}

body.locked {
    overflow: hidden;
}

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

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

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin: 0;
}

p {
    margin: 0;
}

.noSelect {
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

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

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
}

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

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



::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

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

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

/*==============================================
   Preloader
===============================================*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: var(--thm-black);
}

.loader {
    background: -webkit-linear-gradient(0deg, #ffffff 0%, #777777 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
}

@media (max-width: 991.98px) {
    .loader {
        width: 100px;
        height: 100px;
    }
}

.loader:before,
.loader:after {
    content: "";
    background: var(--thm-black);
    width: 100%;
    height: 100%;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    position: absolute;
    bottom: 45px;
    -webkit-clip-path: circle(50% at 50% 100%);
    clip-path: circle(50% at 50% 100%);
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}

@media (max-width: 991.98px) {

    .loader:before,
    .loader:after {
        bottom: 45px;
    }
}

.loader:after {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    top: 45px;
    -webkit-clip-path: circle(50% at 50% 0);
    clip-path: circle(50% at 50% 0);
}

@media (max-width: 991.98px) {
    .loader:after {
        top: 45px;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


/***
=============================================
    Thm Btn
=============================================
***/
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 23px 40px 22px;
    border-radius: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    letter-spacing: 0.01em;
    overflow: hidden;
    z-index: 1;
}


.thm-btn::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--thm-black);
    color: #ffffff;
    transition: 0.5s;
    transform-origin: bottom;
    transform: translateY(-100%) rotateX(90deg);
}

.thm-btn:hover::before {
    transform: translateY(0) rotateX(0deg);
}

.thm-btn::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--thm-base);
    color: #ffffff;
    transition: 0.5s;
    transform-origin: top;
    transform: translateY(0) rotateX(0deg);
}

.thm-btn:hover::after {
    transform: translateY(100%) rotateX(90deg);
}


/***
=============================================
    Section Title
=============================================
***/
.sec-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 57px;
}

.sec-title__tagline {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.sec-title__tagline span.left {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
    margin-right: 15px;
    top: -6px;
}


.sec-title__tagline span.right {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
    margin-left: 15px;
    top: -6px;
}

.sec-title__tagline h6 {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.sec-title__title {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}

.sec-title__text {
    position: relative;
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 30px;
}

/***
=============================================
    Scroll To Top 
=============================================
***/
.scroll-to-top {
    position: relative!important;
    display: inline-block!important;
    width: 60px!important;
    height: 70px!important;
    background: var(--thm-base)!important;
    position: fixed!important;
    bottom: 93px!important;
    right: 20px!important;
    z-index: 99!important;
    border-top-left-radius: 10px!important;
    border-top-right-radius: 10px!important;
    text-align: center!important;
    transition: all 0.4s ease!important;
    transition: all 0.4s ease!important;
    overflow: hidden!important;
}

.scroll-to-top svg {
    position: relative!important;
    display: inline-block!important;
    color: #ffffff!important;
    font-size: 18px!important;
    line-height: 70px!important;
}

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

.scroll-to-top:hover svg {
    color: #fff!important;
}

/***
=============================================
    xs Sidebar
=============================================
***/
.offcanvas-backdrop {
    left: 0;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: url(../images/icon/cross-out.png), pointer;
}

.offcanvas-backdrop {
    opacity: .6!important;
    visibility: visible;
    transition-delay: 0.0s;
    right: 75%;
    background-color: #000000;
    z-index: 99;
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background-color: var(--thm-black);
    overflow: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    left: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: -150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 600ms ease 800ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}

.xs-sidebar-group .close-side-widget {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .close-side-widget button {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .close-side-widget button:hover {
    color: var(--thm-base);
    border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
    position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn {
    position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn::before {
    color: var(--thm-base);
    background: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: #848484;
    transition: all 500ms ease;
    outline: none;
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: #00224f;
}

.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: #b0b0bd;
    line-height: 30px;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
}

.sidebar-contact-info ul li a {
    color: #b0b0bd;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}

.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
    transform: scale(1);
    opacity: 1;
}

.thm-social-link1 ul li a:hover {
    color: var(--thm-base);
}

/***
=============================================
    Styled Pagination
=============================================
***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 2.5px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    text-align: center;
    font-family: var(--thm-font);
    box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li a span::before {
    position: relative;
    top: -2px;
    color: var(--thm-base);
    font-size: 15px;
    transition: all 500ms ease;
}

.styled-pagination li a:hover span::before {
    color: #ffffff;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: #ffffff;
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: #ffffff;
    line-height: 50px;
}


/***
=============================================
    Main Header One
=============================================
***/
.main-header {
    position: relative;
    display: block;
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-menu__inner .left {
    display: flex;
    align-items: center;
}

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

.main-menu .main-menu__list&gt;li,
.stricky-header .main-menu__list&gt;li {
    position: relative;
}

.main-menu .main-menu__list&gt;li+li,
.stricky-header .main-menu__list&gt;li+li {
    margin-left: 54px;
}

.main-menu .main-menu__list&gt;li&gt;a,
.stricky-header .main-menu__list&gt;li&gt;a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    padding-top: 26px;
    padding-bottom: 26px;
    z-index: 1;
}



.main-menu .main-menu__list&gt;li.current&gt;a,
.main-menu .main-menu__list&gt;li:hover&gt;a,
.stricky-header .main-menu__list&gt;li.current&gt;a,
.stricky-header .main-menu__list&gt;li:hover&gt;a {
    color: var(--thm-base);
}

.main-menu .main-menu__list&gt;li.dropdown a,
.stricky-header .main-menu__list&gt;li.dropdown a {
    padding-right: 0px;
}

.main-menu .main-menu__list&gt;li.current&gt;a::before,
.main-menu .main-menu__list&gt;li:hover&gt;a::before,
.stricky-header .main-menu__list&gt;li.current&gt;a::before,
.stricky-header .main-menu__list&gt;li:hover&gt;a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list&gt;li.dropdown&gt;a::before {
    position: absolute;
    right: -15px;
    font-family: 'icomoon' !important;
    content: "\e916";
    color: var(--thm-black);
    font-size: 12px;
    line-height: 30px;
    font-weight: 700;
    transition: all 500ms ease;
    z-index: 1;
}

.main-menu .main-menu__list&gt;li.current.dropdown&gt;a::before,
.main-menu .main-menu__list&gt;li:hover.dropdown&gt;a::before {
    color: var(--thm-base);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 200ms ease, visibility 200ms ease, -webkit-transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, -webkit-transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
    z-index: 99;
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
    margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
    margin-top: 0px;
}

.main-menu .main-menu__list li:hover&gt;ul,
.stricky-header .main-menu__list li:hover&gt;ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

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

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    position: relative;
    display: block;
    color: rgba(var(--thm-black-rgb), 0.8);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-family: var(--thm-font-2);
    text-align: left;
}

.main-menu .main-menu__list li ul li:hover&gt;a,
.stricky-header .main-menu__list li ul li:hover&gt;a {
    background-color: var(--thm-base);
    color: #ffffff;
}


.main-menu .main-menu__list li ul li&gt;ul,
.stricky-header .main-menu__list li ul li&gt;ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li&gt;ul.right-align,
.stricky-header .main-menu__list li ul li&gt;ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li&gt;ul ul,
.stricky-header .main-menu__list li ul li&gt;ul ul {
    display: none;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #ffffff;
    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);
}

.stricky-header.main-menu {
    padding: 0 0px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

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

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

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

}

@media (max-width: 1199px) {

    .stricky-header {
        display: none !important
    }

}


@media (min-width: 1200px) {

    .mobile-nav__buttons {
        display: none;
    }

}


@media (min-width: 1200px) {

    .main-menu .mobile-nav__toggler {
        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: 30px;
    color: var(--thm-base);
    cursor: pointer;
    transition: 500ms;
    margin-right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler {
    color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler:hover {
    color: #ffffff;
}

/***
=============================================
    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: 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: #fff;
    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 ul {
    padding-left: 10px;
}

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

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 28px;
    height: 28px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    border-radius: 0px;
    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-top: 20px;
    margin-bottom: 30px;
    margin-left: 32px;
}

.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-base);
    transition: 500ms;
}

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

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

.mobile-nav__contact {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 32px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
}

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

.mobile-nav__contact li&gt;i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    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;
}

a.sc-hLBbgP {
    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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.9;
    cursor: pointer;
    padding: 400px 0;
}

.search-overlay .modal-content {
    width: 100%;
    max-width: 560px;
}

.search-overlay .modal-content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-overlay .modal-content form input[type="search"],
.search-overlay .modal-content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 90px;
}

.search-overlay .modal-content .thm-btn2 {
    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-base);
    border: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-overlay .modal-content .thm-btn2::before {
    display: none;
}

.search-overlay .modal-content .thm-btn2:hover {
    background-color: var(--thm-black);
    color: #ffffff;
}

.search-overlay .modal-content .thm-btn2 i::before {
    margin: 0;
    color: #ffffff;
}


/***
=============================================
    Main Header One
=============================================
***/
.main-header-one {
    position: relative;
    display: block;
}

.main-header-one__wrapper {
    position: relative;
    display: block;
}


.main-header-one__top {
    position: relative;
    display: block;
}

.main-header-one__top .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.main-header-one__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-primary);
}

.main-header-one__left {
    position: relative;
    display: block;
    width: 300px;
    height: 100px;
    background: var(--thm-base);
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.main-header-one__left .logo {
    position: relative;
    display: block;
}

.main-header-one__left .logo a {
    position: relative;
    display: inline-block;
}


.main-header-one__middle {
    position: relative;
    display: block;
}

.main-header-one__middle ul {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-one__middle ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
    padding-right: 35px;
}

.main-header-one__middle ul li::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    right: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.30);
}

.main-header-one__middle ul li:last-child:before {
    display: none;
}

.main-header-one__middle ul li .icon {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__middle ul li:hover .icon {
    color: var(--thm-base);
}

.main-header-one__middle ul li .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.main-header-one__middle ul li .text span {
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .email {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .email a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__middle ul li .text .email a:hover {
    color: #ffffff;
}

.main-header-one__middle ul li .text .number {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    letter-spacing: 0.03em;
}

.main-header-one__middle ul li .text .number a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__middle ul li .text .number a:hover {
    color: #ffffff;
}


.main-header-one__right {
    position: relative;
    display: block;
    padding-right: 30px;
}

.main-header-one__right .side-content-button {
    position: relative;
    display: block;
}

.main-header-one__right .side-content-button a.navSidebar-button {
    position: relative;
    display: inline-block;
}

.main-header-one__right .side-content-button a.navSidebar-button .decor {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__right .side-content-button a.navSidebar-button:hover .decor {
    background: var(--thm-base);
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: #f7f7f7;
}

.main-header-one__bottom .container-fluid {
    padding-left: 100px;
    padding-right: 0px;
}

.main-header-one__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-one__bottom-left {
    position: relative;
    display: block;
}

.main-header-one__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-one__bottom-right .search-box {
    position: relative;
    display: block;
}

.main-header-one__bottom-right .search-box a {
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__bottom-right .search-box a:hover {
    color: var(--thm-base);
}

.main-header-one__bottom-right .cart-btn {
    position: relative;
    display: block;
    margin-left: 45px;
}

.main-header-one__bottom-right .cart-btn a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__bottom-right .cart-btn a span {
    color: #ffffff;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one__bottom-right .cart-btn a:hover span {
    color: #ffffff;
}

.main-header-one__bottom-right .cart-btn a .count {
    position: absolute;
    top: -3px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 9px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    background: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background: var(--thm-black);
}

.main-header-one__bottom-right .cart-btn a:hover .count {
    color: #ffffff;
}

.main-header-one__bottom-right-btn {
    position: relative;
    display: block;
    margin-left: 70px;
}

.main-header-one__bottom-right-btn .thm-btn {
    padding: 26px 40px 26px;
}

.stricky-one-logo {
    position: relative;
    display: none;
}

.stricky-header.main-menu .stricky-one-logo {
    display: block;
}

.stricky-header .main-menu__list&gt;li&gt;a {
    padding-top: 36px;
    padding-bottom: 36px;
}

/***
=============================================
    Main Header Two
=============================================
***/
.main-header-one--two {
    position: relative;
    display: block;
}

.main-header-one--two .main-header-one__top-inner {
    padding: 18px 0px 16px;
}

.main-header-one--two__left {
    position: relative;
    display: block;
    padding-left: 30px;
}

.main-header-one--two__left h4 {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.025em;
}

.main-header-one--two__right {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.main-header-one--two__right .social-links {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-one--two__right .social-links .title {
    position: relative;
    display: block;
    padding-right: 8px;
}

.main-header-one--two__right .social-links .title h4 {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.030em;
}

.main-header-one--two__right .social-links ul {
    position: relative;
    display: block;
}

.main-header-one--two__right .social-links ul li {
    position: relative;
    display: inline-block;
    padding-left: 22px;
}

.main-header-one--two__right .social-links ul li a {
    color: #ffffff;
    font-size: 15px;
    line-height: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one--two__right .social-links ul li a:hover {
    color: var(--thm-base);
}

.main-header-one--two__right .login-register-box {
    position: relative;
    display: block;
    padding: 0px 25px 0px;
    margin-left: 80px;
}

.main-header-one--two__right .login-register-box::before {
    position: absolute;
    top: -20px;
    left: 0;
    bottom: -18px;
    right: 0;
    background: var(--thm-base);
    content: "";
}

.main-header-one--two__right .login-register-box ul {
    position: relative;
    display: block;
    line-height: 0;
}

.main-header-one--two__right .login-register-box ul li {
    position: relative;
    display: inline-block;
    padding-right: 5px;
}

.main-header-one--two__right .login-register-box ul li::before {
    position: absolute;
    top: 4px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background: #ffffff;
    transform: rotate(15deg);
    content: "";
}

.main-header-one--two__right .login-register-box ul li:last-child:before {
    display: none;
}

.main-header-one--two__right .login-register-box ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.main-header-one--two .main-header-one__bottom .container-fluid {
    padding-left: 0px;
}

.main-header-one--two .main-header-one__right .side-content-button a.navSidebar-button .decor {
    background: var(--thm-black);
}

.main-header-one--two .main-header-one__right .side-content-button a.navSidebar-button:hover .decor {
    background: var(--thm-base);
}

.main-header-one--two .main-header-one__right {
    padding-left: 70px;
}

.main-header-one--two .main-header-one__bottom {
    background: #ffffff;
}



/***
=============================================
    Slider One
=============================================
***/
.slider-one-sec {
    position: relative;
    display: block;
}

.slider-one__single {
    position: relative;
    display: block;
    padding: 187px 0px 190px;
}

.slider-one__single .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
    z-index: 1;
}

.slider-one-sec .active .slider-one__single .image-layer {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.slider-one__single .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), 0.6);
    z-index: -1;
}

.slider-one__single-content {
    position: relative;
    display: block;
    z-index: 5;
}

.slider-one__single-content h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.0em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one-sec .active .slider-one__single-content h3 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.slider-one__single-content h2 {
    position: relative;
    color: #ffffff;
    font-size: 72px;
    line-height: 1.1em;
    font-weight: 700;
    margin-bottom: 28px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one-sec .active .slider-one__single-content h2 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.slider-one__single-content p {
    color: #ffffff;
    margin: 0px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one-sec .active .slider-one__single-content p {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.slider-one__single-content .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 42px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one-sec .active .slider-one__single-content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}


.slider-one-sec .slider-carousel.owl-carousel .owl-nav {
    display: block;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 39%;
    left: 0px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    z-index: 3;
}

.slider-one-sec .slider-carousel:hover.owl-theme .owl-nav {
    opacity: 1;
    left: 70px;
    transform: scaleX(1.0) translateX(0px);
}

.slider-one-sec .slider-carousel.owl-theme .owl-prev span,
.slider-one-sec .slider-carousel.owl-theme .owl-next span {
    display: block;
}


.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    line-height: 66px;
    font-weight: 100;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev {
    margin-bottom: 10px;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev::before,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    content: "";
    border-radius: 50%;
    z-index: -1;
    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);
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev:hover::before,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next:hover:before {
    transform: scaleX(1.0);
}

.slider-one-sec .slider-carousel.owl-theme .owl-prev span:before,
.slider-one-sec .slider-carousel.owl-theme .owl-next span:before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 70px;
    font-weight: 700;
    transition: all 100ms ease;
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next {
    transform: rotate(180deg);
}

.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-prev:hover,
.slider-one-sec .slider-carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-black);
}

.slider-one-sec .slider-carousel.owl-theme .owl-next span:before {
    position: relative;
    top: 1px;
}

.slider-one-sec .slider-carousel.owl-theme .owl-dots {
    display: none;
}



/***
=============================================
    Slider Two
=============================================
***/
.slider-one-sec--two {
    position: relative;
    display: block;
    background: #f2f3f5;
}

.slider-one-sec--two__img {
    position: absolute;
    top: 120px;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.slider-one-sec--two__img img {
    width: 100%;
}

.slider-one-sec--two .active .slider-one-sec--two__img {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.slider-one-sec--two .slider-one__single-content h3 {
    color: var(--thm-base);
}

.slider-one-sec--two .slider-one__single-content h2 {
    color: var(--thm-black);
}

.slider-one-sec--two .slider-one__single-content h2 span {
    color: var(--thm-base);
}

.slider-one-sec--two .slider-one__single-content p {
    color: var(--thm-gray);
}

.slider-one-sec--two.slider-one-sec .slider-carousel.owl-theme .owl-dots {
    display: block;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots {
    position: absolute;
    left: 363px;
    bottom: 22px;
}

.slider-one-sec.slider-one-sec--two .slider-carousel.owl-theme .owl-nav {
    display: none;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 4px;
    background: var(--thm-black);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot.active span,
.slider-one-sec--two .slider-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--thm-base);
}



/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 209px 0px 211px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(86deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6446953781512605) 0%, rgba(255, 255, 255, 0.014443277310924318) 60%);
    z-index: -1;
}

.page-header__wrapper {
    position: relative;
    display: block;
    z-index: 2;
}

.page-header__content {
    position: relative;
    display: block;
}

.page-header__content h2 {
    color: var(--thm-black);
    font-size: 80px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.page-header__menu {
    position: relative;
    display: block;
}

.page-header__menu ul {
    position: relative;
    display: block;
}

.page-header__menu ul li {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    padding-left: 5px;
    padding-right: 15px;
    font-family: var(--thm-font-2);
}

.page-header__menu ul li:first-child {
    padding-left: 0;
}

.page-header__menu ul li:last-child {
    padding-right: 0;
}

.page-header__menu ul li::before {
    position: absolute;
    top: 16px;
    right: 0;
    width: 5px;
    height: 2px;
    background: var(--thm-black);
    content: "";
}

.page-header__menu ul li:last-child:before {
    display: none;
}

.page-header__menu ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--thm-font-2);
}

.page-header__menu ul li a:hover {
    color: var(--thm-base);
}



/*** 
============================================
	Feature One Sec
============================================
***/
.feature-one-sec {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
    background: transparent;
    margin-top: -60px;
    z-index: 1;
}

.feature-one-sec .row {
    margin-left: 0px;
    margin-right: 0px;
}

.feature-one-sec .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.feature-one__single {
    position: relative;
    display: block;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
    padding: 43px 50px 42px;
    overflow: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-bottom: 30px;
    z-index: 1;
}

.feature-one__single:hover {
    box-shadow: none;
}

.feature-one__single .shape1 {
    position: absolute;
    top: -245px;
    right: -240px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: perspective(380px) translateY(-100%);
    transform-origin: right;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.feature-one__single:hover .shape1 {
    transform: perspective(380px) translateY(0);
    transition: all 900ms ease;
    transition-delay: 0.1s;
    opacity: 1;
}


.feature-one__single::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    z-index: -1;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform-origin: right center;
    transform-origin: right center;
}

.feature-one__single:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}


.feature-one__single-inner {
    position: relative;
    display: block;
    padding-left: 90px;
}

.feature-one__single-icon {
    position: absolute;
    top: 7px;
    left: 0;
    transition: all 500ms ease;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-icon {
    transform: rotateY(180deg);
    transition-delay: 0.3s;
}

.feature-one__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-icon span::before {
    color: #ffffff;
}

.feature-one__single-text {
    position: relative;
    display: block;
}

.feature-one__single-text h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 18px;
}

.feature-one__single-text h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-text h2 a {
    color: #ffffff;
}

.feature-one__single-text p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-text p {
    color: #ffffff;
}

.feature-one__single-btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

.feature-one__single-btn a {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-btn a {
    color: #ffffff;
}

.feature-one__single-btn a i:before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 25px;
    padding-left: 10px;
    top: 6px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__single-btn a i:before {
    color: #ffffff;
}






/*** 
============================================
	Services One Sec
============================================
***/
.services-one-sec {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
    z-index: 1;
}

.services-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 81px 0px rgb(249, 240, 240);
    padding: 10px 10px 10px;
    margin-bottom: 30px;
}

.services-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 260px;
}

.services-one__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), 0.5);
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__single-img:before {
    transform: translateY(0);
    width: 100%;
}

.services-one__single-img img {
    width: 100%;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    min-height: 260px;
    object-fit: contain;
}

.services-one__single:hover .services-one__single-img img {
    transform: scale(1.1);
}

.services-one__single-content {
    position: relative;
    display: block;
    padding: 25px 0px 30px;
}

.services-one__single-content-title {
    position: relative;
    display: block;
    width: 275px;
    padding: 13px 20px 11px;
    margin-bottom: 22px;
    overflow: hidden;
    z-index: 1;
}

.services-one__single-content-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    right: 15px;
    background: #f2f3f5;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    z-index: -1;
}

.services-one__single-content-title h2 {
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
}

.services-one__single-content-title h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single-content-title h2 a:hover {
    color: var(--thm-base);
}

.services-one__single-content-bottom {
    position: relative;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}

.services-one__single-content-bottom p {
    margin: 0;
    min-height: 85px;
}

.services-one__single-btn {
    position: relative;
    display: block;
    margin-top: 32px;
}

.services-one__single-btn .thm-btn {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
    padding: 10px 15px 6px;
}

.services-one__single-btn .thm-btn::after {
    background: #f2f3f5;
    color: var(--thm-black);
}



/*** 
============================================
	About One
============================================
***/
.about-one-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 114px;
    z-index: 1;
}

.about-one-sec .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.about-one-sec .row {
    margin-left: 0px;
    margin-right: 0px;
}

.about-one-sec .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}



.about-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    min-height: 555px;
}

.about-one__img-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}


.about-one__img-box-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--thm-base);
    padding: 30px 30px 36px;
}

.about-one__img-box-overlay h2 {
    color: #ffffff;
    font-size: 55px;
    line-height: 1em;
    text-transform: capitalize;
}

.about-one__img-box-overlay h2 .plus {
    position: relative;
    display: inline-block;
    top: 4px;
}


.about-one__content {
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
    padding-left: 70px;
}

.about-one__content .sec-title {
    padding-bottom: 39px;
}

.about-one__conten-bottom {
    position: relative;
    display: block;
}

.about-one__conten-bottom p {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}


.about-one__progress {
    position: relative;
    display: block;
    margin-top: 40px;
}

.about-one__progress-single {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.about-one__progress-single.mar0 {
    margin-bottom: 0px;
}

.about-one__progress-single-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.about-one__progress .bar {
    position: relative;
    width: 100%;
    height: 15px;
    background: #f2f3f5;
    margin-bottom: 6px;
}

.about-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 15px;
    background: var(--thm-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.about-one__progress .count-text {
    position: absolute;
    top: -3px;
    right: 10px;
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}


/*** 
============================================
	project One
============================================
***/

.project-one-sec {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 120px 0px 117px;
    z-index: 1;
}

.project-one-sec .row {
    margin-left: -1px;
    margin-right: -1px;
}

.project-one-sec .row [class*=col-] {
    padding-left: 1px;
    padding-right: 1px;
}

.project-one-sec .shape1 {
    position: absolute;
    top: 25px;
    left: -120px;
    opacity: 0.05;
    z-index: -1;
}

.project-one-sec .shape2 {
    position: absolute;
    top: 25px;
    right: -135px;
    opacity: 0.05;
    z-index: -1;
}

.project-one-sec .sec-title__title {
    color: #ffffff;
}

.project-one-sec .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.project-one__menu-box {
    position: relative;
    display: block;
    padding-bottom: 70px;
}

.project-one__menu-box .project-filter {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.project-one__menu-box .project-filter li {
    position: relative;
    display: inline-block;
    float: left;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.project-one__menu-box .project-filter li:last-child {
    border-right: none;
}

.project-one__menu-box .project-filter li .filter-text {
    position: relative;
    display: block;
    padding: 14px 25px 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    background: var(--thm-black);
    cursor: pointer;
    transition: all .4s ease;
    font-family: var(--thm-font-2);
    z-index: 1;
}

.project-one__menu-box .project-filter li .filter-text i::before {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    padding-right: 6px;
    top: 1px;
}

.project-one__menu-box .project-filter li .filter-text:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: -1px;
    content: "";
    background: var(--thm-base);
    border-radius: 0px;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.project-one__menu-box .project-filter li:hover .filter-text:before,
.project-one__menu-box .project-filter li.active .filter-text:before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.project-one__menu-box .project-filter li:hover .filter-text,
.project-one__menu-box .project-filter li.active .filter-text {
    color: #ffffff;
}

.project-one__menu-box .project-filter li .count {
    display: none;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.project-one__single-img {
    position: relative;
    display: block;
}

.project-one__single-img .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 45px;
    background: var(--thm-base);
    text-align: center;
    padding: 13px 0px 13px;
    transform: perspective(1200px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 700ms ease 100ms;
    z-index: 2;
}

.project-one__single:hover .project-one__single-img .content-box {
    transform: perspective(1200px) rotateX(0deg);
    transition: all 700ms ease 200ms;
}

.project-one__single-img .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
}

.project-one__single-img .content-box h2 a {
    color: #ffffff;
}

.project-one__single-img .content-box p {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.project-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-one__single-img .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(var(--thm-black-rgb), 0.5);
    transform: scaleX(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;
    z-index: 1;
}

.project-one__single:hover .project-one__single-img .inner:before {
    transform: scaleX(1.0);
}

.project-one__link {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0;
    transform: scale(0);
    transition: all 700ms ease;
    z-index: 2;
}

.project-one__single:hover .project-one__link {
    transform: scale(1);
    opacity: 1;
    transition-delay: 500ms;
}

.project-one__link a {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    background-color: var(--thm-base);
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

.project-one__link a:hover {
    color: var(--thm-base);
    background: #ffffff;
}

.project-one__link a span::before {
    position: relative;
    display: inline-block;
    line-height: 60px;
}

.project-one__single-img .inner img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.project-one__single:hover .project-one__single-img .inner img {
    transform: scale(1.05);
}


/*** 
============================================
	Why Choose One
============================================
***/
.why-choose-one-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.why-choose-one__content {
    position: relative;
    display: block;
}

.why-choose-one__content .sec-title {
    padding-bottom: 35px;
}

.why-choose-one__content-top {
    position: relative;
    display: block;
    padding-left: 200px;
}

.why-choose-one__content-top .img-box {
    position: absolute;
    top: 8px;
    left: 0;
    width: 170px;
    height: 150px;
}

.why-choose-one__content-top .img-box img {
    width: 100%;
}

.why-choose-one__content-top .text-box {
    position: relative;
    display: block;
}

.why-choose-one__content-top .text-box p {
    margin: 0;
}


.why-choose-one__content-bottom {
    position: relative;
    display: block;
    margin-top: 40px;
}

.why-choose-one__content-bottom-single {
    position: relative;
    display: block;
}

.why-choose-one__content-bottom-single h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.why-choose-one__content-bottom-single p {
    margin: 0;
}

.why-choose-one__img {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-right: -114px;
}

.why-choose-one__img .row {
    margin-left: -2px;
    margin-right: -2px;
}

.why-choose-one__img .row [class*=col-] {
    padding-left: 2px;
    padding-right: 2px;
}


.why-choose-one__img-single {
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.why-choose-one__img-single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.why-choose-one__img-single .img-box::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 0;
    background-color: rgba(var(--thm-base-rgb), .80);
    border-radius: 100%;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
}

.why-choose-one__img-single:hover .img-box::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
}

.why-choose-one__img-single .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.why-choose-one__img-single:hover .img-box img {
    transform: scale(1.1) rotate(1deg);
}

.why-choose-one__img-single .img-box.style2::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    content: "";
}

.why-choose-one__img-single .img-box .video-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.why-choose-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    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: #ffffff;
}

.why-choose-one__video-icon:before {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.6;
}

.why-choose-one__video-icon:after {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.45;
}

.why-choose-one__video-icon .ripple,
.why-choose-one__video-icon .ripple:before,
.why-choose-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.why-choose-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.why-choose-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}














/*** 
============================================
	Work Perfomance One
============================================
***/
.work-perfomance-one-sec {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 120px;
}

.work-perfomance-one__content {
    position: relative;
    display: block;
}

.work-perfomance-one__content .sec-title {
    padding-bottom: 47px;
}

.work-perfomance-one__content-bottom {
    position: relative;
    display: block;
    padding-left: 145px;
}

.work-perfomance-one__content-bottom .progress-box {
    position: absolute;
    top: 1px;
    left: 0;
    line-height: 0;
}

.work-perfomance-one__content-bottom .progress-box .inner-box {
    position: relative;
    display: block;
}

.work-perfomance-one__content-bottom .progress-box .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: var(--theme-black);
    font-size: 24px;
    font-weight: 700;
    transform: translateY(-50%);
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.work-perfomance-one__content-bottom .progress-box .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 600;
}

.work-perfomance-one__content-bottom .text-box {
    position: relative;
    display: block;
}

.work-perfomance-one__content-bottom .text-box h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 13px;
}

.work-perfomance-one__content-bottom .text-box p {
    margin: 0px;
}

.work-perfomance-one__img {
    position: relative;
    display: block;
    border: 10px solid #ffffff;
    overflow: hidden;
    box-shadow: 2px 3.464px 18px 0px rgb(227, 222, 222, 1.0);
    margin-right: -65px;
}



.work-perfomance-one__img::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(var(--thm-base-rgb), .7) 0%, rgba(var(--thm-base-rgb), .3) 100%);
    transform: skewX(25deg);
    z-index: 2;
}

.work-perfomance-one__img:hover::before {
    -webkit-animation: shine 1.9s;
    animation: shine 1.9s;
}

.work-perfomance-one__img img {
    width: 100%;
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.work-perfomance-one__img:hover img {
    transform: scale(1.1) rotate(0deg);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

/*** 
============================================
	Feature Three
============================================
***/
.feature-three-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.feature-three__bg {
    position: absolute;
    top: 120px;
    left: 0px;
    bottom: 120px;
    right: 52%;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-three__title {
    width: 50%;
    float: right;
}

.feature-three-sec .feature-three__title .sec-title {
    padding-bottom: 43px;
}

.feature-three__tab-button {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.feature-three__tab-button .tab-buttons {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 2px solid rgba(131, 134, 145, 0.12);
}

.feature-three__tab-button .tab-buttons .tab-btn {
    position: relative;
    display: block;
    float: left;
    cursor: pointer;
    text-align: center;
    margin-right: 60px;
    z-index: 1;
}

.feature-three__tab-button .tab-buttons .tab-btn::before {
    position: absolute;
    left: 0;
    bottom: -24px;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--thm-black);
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
    content: "";
}

.feature-three__tab-button .tab-buttons .tab-btn:hover:before,
.feature-three__tab-button .tab-buttons .tab-btn.active-btn:before {
    transform: scaleY(1);
}

.feature-three__tab-button .tab-buttons .tab-btn:last-child {
    margin-right: 0px;
}

.feature-three__tab-button .tab-buttons .tab-btn h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__tab-button .tab-buttons .tab-btn:hover h3,
.feature-three__tab-button .tab-buttons .tab-btn.active-btn h3 {
    color: var(--thm-base);
}

.feature-three__tab {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 60px 80px;
    border: 1px solid #dbdbdf;
    margin-left: 170px;
    margin-right: -170px;
}

.feature-three__tab .tabs-content {
    position: relative;
    display: block;
}

.feature-three__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 1;
    display: none;
    opacity: 0.90;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transform: scale(0.8, 1.0) translateX(0px);
    z-index: 1;
}

.feature-three__tab .tabs-content .tab.active-tab {
    position: relative;
    display: block;
    opacity: 1.0;
    transform: scale(1) translateX(0);
    z-index: 5;
}

.feature-three__tab-content-item {
    position: relative;
}

.tab-content-inner {
    position: relative;
    display: block;
}

.tab-content-inner-text {
    position: relative;
    display: block;
}

.tab-content-inner-text h2 {
    color: var(--thm-base);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.tab-content-inner-text p {
    margin: 0;
}

.tab-content-inner-text .btn-box {
    position: relative;
    display: block;
    margin-top: 22px;
}

.tab-content-inner-text .btn-box .thm-btn {
    padding: 15px 40px 14px;
}


.feature-three__history-single {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid rgba(var(--thm-base-rgb), 0.3);
    border-bottom-width: 5px;
    padding: 29px 29px 24px;
    z-index: 1;
}

.feature-three__history-single .history-text {
    position: absolute;
    top: 37px;
    right: 0;
    transform: rotate(45deg);
    z-index: -1;
}

.feature-three__history-single .history-text h2 {
    color: transparent;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    -webkit-text-stroke: 1px rgba(var(--thm-gray-rgb), 0.2);
    text-transform: uppercase;
}

.feature-three__history-single .date-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 10px;
    background-color: rgba(var(--thm-base-rgb), 0.10);
}

.feature-three__history-single .date-box h2 {
    color: var(--thm-base);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.feature-three__history-single p {
    margin: 23px 0 0;
}

.tab-content-inner-img {
    position: relative;
    display: block;
}

.tab-content-inner-img img {
    width: 100%;
}


/*** 
============================================
	Testimonials One
============================================
***/
.testimonials-one-sec {
    position: relative;
    display: block;
    background: var(--thm-primary);
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonials-one-sec .shape1 {
    position: absolute;
    top: 35px;
    left: -5px;
    opacity: 0.05;
    z-index: -1;
}

.testimonials-one-sec .shape2 {
    position: absolute;
    top: 35px;
    right: -5px;
    opacity: 0.05;
    z-index: -1;
}

.testimonials-one-sec .sec-title__title {
    color: #ffffff;
}

.testimonials-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 44px 40px 50px;
    z-index: 1;
}

.testimonials-one__single::before {
    position: absolute;
    left: 0;
    bottom: -45px;
    right: -1px;
    height: 200px;
    clip-path: polygon(0 75%, 100% 75%, 100% 83%, 20% 83%, 0 100%, 0 75%, 0 83%);
    background: #ffffff;
    z-index: -1;
    content: "";
}

.testimonials-one__single .rating {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.testimonials-one__single .rating ul {
    position: relative;
    display: block;
}

.testimonials-one__single .rating ul li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
}

.testimonials-one__single .rating ul li:last-child {
    margin-right: 0px;
}

.testimonials-one__single .rating ul li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
}

.testimonials-one__single .text-box {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.testimonials-one__single .text-box p {
    margin: 0;
}


.testimonials-one__single .client-info {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-one__single .client-info .img-box {
    position: relative;
    display: block;
}

.testimonials-one__single .client-info .img-box img {
    width: 100%;
}

.testimonials-one__single .client-info .title-box {
    position: relative;
    display: block;
    padding-left: 25px;
    line-height: 0;
}

.testimonials-one__single .client-info .title-box h2 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.05em;
}

.testimonials-one__single .client-info .title-box span {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: -0.05em;
    font-family: var(--thm-font);
}

.testimonials-one__carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 60px;
}


/*** 
============================================
	Blog One
============================================
***/
.blog-one-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

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

.blog-one__single-img {
    position: relative;
    display: block;
}

.blog-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-one__single-img .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.8);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-one__single:hover .blog-one__single-img .inner::before {
    opacity: 1;
    opacity: 0.8;
}

.blog-one__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img .inner img {
    transform: scale(1);
}

.blog-one__single-content {
    position: absolute;
    left: 20px;
    bottom: 0px;
    right: 0;
    padding-top: 32px;
}

.blog-one__single-content .date-box {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 65px;
    background: var(--thm-base);
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.blog-one__single-content .date-box span {
    color: #ffffff;
    font-size: 15px;
    line-height: 16px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.blog-one__single-content .date-box h4 {
    color: #ffffff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-top: 3px;
}

.blog-one__single-content .inner-content {
    position: relative;
    display: block;
    background: rgba(242, 243, 245, 0.95);
    padding: 23px 20px 22px;
    z-index: 1;
}

.blog-one__single-content .inner-content .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 13px;
}

.blog-one__single-content .inner-content .meta-info li {
    position: relative;
    display: inline-block;
    margin-right: 24px;
}

.blog-one__single-content .inner-content .meta-info li:last-child {
    margin-right: 0px;
}

.blog-one__single-content .inner-content .meta-info li span:before {
    position: relative;
    display: inline-block;
    padding-right: 11px;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
    top: 4px;
    left: 1px;
    font-weight: 500;
}

.blog-one__single-content .inner-content .meta-info li a {
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .meta-info li a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .inner-content h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.blog-one__single-content .inner-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .inner-content h2 a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .inner-content p {
    color: var(--thm-black);
    margin: 0;
}

.blog-one__single-content .inner-content .btn-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.blog-one__single-content .inner-content .btn-box a {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .btn-box a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .inner-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 23px;
    line-height: 23px;
    font-weight: 600;
    padding-left: 10px;
    top: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content .inner-content .btn-box a:hover span::before {
    color: var(--thm-base);
}


/*** 
============================================
	Brand One
============================================
***/
.brand-one-sec {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 100px 0px 100px;
    z-index: 1;
}

.brand-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
}

.brand-one-sec .swiper-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.brand-one-sec .swiper-slide a {
    position: relative;
    display: inline-block;
}

.brand-one-sec .swiper-slide&gt;a&gt;img {
    opacity: 1;
    transition: all 0.2s ease-in-out 0.1s;
}

.brand-one-sec .swiper-slide:hover&gt;a&gt;img {
    opacity: 0.8;
    transition: all 0.8s ease-in-out 0.1s;
}


/*** 
============================================
	Footer One
============================================
***/
.footer-one-sec {
    position: relative;
    display: block;
    background: #0a1229;
    z-index: 1;
}

.footer-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.footer-one__top {
    position: relative;
    display: block;
    padding: 112px 0px 112px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer-one__top-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 102px;
    animation: slide 50s linear infinite;
    -webkit-animation: slide 50s linear infinite;
}

.footer-one__top-img img {
    width: auto;
}

.footer-one__top-inner {
    position: relative;
    display: block;
}


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

.footer-widget__title {
    color: #ffffff;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 38px;
}

.footer-widget__about {
    position: relative;
    display: block;
    max-width: 300px;
    margin-top: 8px;
    width: 100%;
}

.footer-widget__about-logo {
    position: relative;
    display: block;
    margin-bottom: 52px;
}

.footer-widget__about-logo a {
    position: relative;
    display: inline-block;
}

.footer-widget__about-text {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 32px;
}

.footer-widget__about-social-link {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    padding-top: 35px;
}

.footer-widget__about-social-link ul {
    position: relative;
    display: block;
}


.footer-widget__about-social-link li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.footer-widget__about-social-link li:last-child {
    margin-right: 0;
}

.footer-widget__about-social-link li a {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover {
    background: var(--thm-base);
    color: #ffffff;
}

.footer-widget__about-social-link li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 35px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover span::before {
    color: #ffffff;
}

.footer-widget__about-social-link li a .first {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-widget__about-social-link li a .second {
    position: relative;
    display: block;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-widget__about-social-link li a:hover .first {
    transform: translateY(0);
}

.footer-widget__about-social-link li a:hover .second {
    transform: translateY(-100%);
}


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

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

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

.footer-widget__services-list-item a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__services-list-item a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed #ffffff;
    transition: .5s;
    transform: perspective(400px) scaleX(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 2;
}

.footer-widget__services-list-item a:hover:before {
    transform: perspective(400px) scaleX(1.0);
}

.footer-widget__services-list-item a:hover {
    color: #ffffff;
}


.footer-widget__explore {
    position: relative;
    display: block;
    margin-left: 30px;
}

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

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

.footer-widget__explore-list-item a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__explore-list-item a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed #ffffff;
    transition: .5s;
    transform: perspective(400px) scaleX(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 2;
}

.footer-widget__explore-list-item a:hover:before {
    transform: perspective(400px) scaleX(1.0);
}

.footer-widget__explore-list-item a:hover {
    color: #ffffff;
}


.footer-widget__posts {
    position: relative;
    display: block;
    margin-left: 70px;
}

.footer-widget__posts-list {
    position: relative;
    display: block;
    padding-top: 6px;
}

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

.footer-widget__posts-list ul li {
    position: relative;
    display: block;
    padding-left: 85px;
    margin-bottom: 13px;
}

.footer-widget__posts-list ul li:last-child {
    margin-bottom: 0;
}

.footer-widget__posts-list ul li .img-box {
    position: absolute;
    top: 7px;
    left: 0;
    width: 70px;
    height: 75px;
    overflow: hidden;
    z-index: 1;
}

.footer-widget__posts-list ul li .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgba(var(--thm-black-rgb), 0.8);
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scale(.5);
    transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
    z-index: 1;
}

.footer-widget__posts-list ul li:hover .img-box::before {
    opacity: 1;
    left: 0%;
    transform: scaleY(1) skew(0deg, 0deg);
    transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
}

.footer-widget__posts-list ul li .img-box img {
    width: 100%;
}

.footer-widget__posts-list ul li .img-box .overlay-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: perspective(400px) translateY(20px);
    transform-origin: top;
    transition: all 0.1s ease-in-out 0s;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-widget__posts-list ul li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) translateY(0);
    transition: all 0.5s ease-in-out 0.5s;
}

.footer-widget__posts-list ul li .img-box .overlay-icon a {
    color: #ffffff;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.footer-widget__posts-list ul li .text-box {
    position: relative;
    display: block;
}

.footer-widget__posts-list ul li .text-box p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.footer-widget__posts-list ul li .text-box p a {
    color: rgba(255, 255, 255, .7);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__posts-list ul li .text-box p a:hover {
    color: var(--thm-base);
}

.footer-widget__posts-list ul li .text-box span {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
}





.footer-one__bottom {
    position: relative;
    display: block;
    padding: 32px 0px 32px;
}

.footer-one__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-one__bottom-text {
    position: relative;
    display: block;
}

.footer-one__bottom-text p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.footer-one__bottom-text p a {
    color: var(--thm-base);
}



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

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

.footer-one__bottom-list ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.footer-one__bottom-list ul li:last-child {
    margin-right: 0px;
}

.footer-one__bottom-list ul li a {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__bottom-list ul li a:hover {
    color: #ffffff;
}


/*** 
============================================
	About Two
============================================
***/
.about-two-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.about-two__img {
    position: relative;
    display: block;
    max-width: 620px;
    width: 100%;
    padding-right: 70px;
}

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

.about-two__img1::before {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 10px;
    background: var(--thm-base);
    content: "";
}

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

.about-two__img1 .inner::before {
    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, .5) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.about-two__img:hover .about-two__img1 .inner::before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}


.about-two__img1 .inner img {
    width: 100%;
}

.about-two__img2 {
    position: absolute;
    left: -100px;
    bottom: 0;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
    z-index: 5;
}

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

.about-two__content .sec-title {
    padding-bottom: 30px;
}

.about-two__content-text1 {
    position: relative;
    display: block;
}

.about-two__content-text2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f3f5;
    padding: 33px 25px 31px;
    margin-top: 47px;
}

.about-two__content-text2 .text-box {
    position: relative;
    display: block;
}

.about-two__content-text2 .text-box p {
    color: var(--thm-gray);
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.about-two__content-text2 .icon-box {
    position: relative;
    display: block;
}

.about-two__content-text2 .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

.about-two__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.about-two__content-bottom .btn-box {
    position: relative;
    display: block;
}

.about-two__content-bottom .author-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.about-two__content-bottom .author-box .img-box {
    position: relative;
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__content-bottom .author-box .img-box img {
    width: 100%;
}

.about-two__content-bottom .author-box .title-box {
    position: relative;
    display: block;
    padding-left: 25px;
    line-height: 0;
}

.about-two__content-bottom .author-box .title-box h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-two__content-bottom .author-box .title-box span {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
}



/*** 
============================================
	Why Choose Two
============================================
***/
.why-choose-two-sec {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 120px 0px 120px;
}

.why-choose-two-sec .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .20;
    z-index: 3;
}

.why-choose-two__content {
    position: relative;
    display: block;
    padding-right: 30px;
}

.why-choose-two__content .sec-title {
    padding-bottom: 51px;
}

.why-choose-two__content .sec-title__tagline h6 {
    color: #ffffff;
}

.why-choose-two__content .sec-title__title {
    color: #ffffff;
}

.why-choose-two__content .sec-title__text {
    color: #ffffff;
}

.why-choose-two__content .sec-title__tagline span.right {
    background: #ffffff;
}

.why-choose-two__content-progress {
    position: relative;
    display: block;
}

.why-choose-two__content-progress-single {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.why-choose-two__content-progress-single.mar0 {
    margin-bottom: 0px;
}

.why-choose-two__content-progress-single .top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.why-choose-two__content-progress-single .top .count-text {
    position: relative;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    padding-left: 7px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
    font-family: var(--thm-font-2);
}

.why-choose-two__content-progress-single h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.why-choose-two__content-progress-single .bar {
    position: relative;
    width: 100%;
    height: 0px;
    background: transparent;
    margin-bottom: 0px;
}

.why-choose-two__content-progress-single .bar::before {
    position: absolute;
    left: 0;
    bottom: -9px;
    right: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    content: "";
}

.why-choose-two__content-progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    background: #ffffff;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}


.why-choose-two__img {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0;
    width: 50%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
}


/*** 
============================================
	Feature Two 
============================================
***/
.feature-two-sec {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 1;
}

.feature-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.70;
    z-index: -1;
}

.feature-two-sec .shape3 {
    position: absolute;
    top: -95px;
    left: 0;
    opacity: 0.08;
    z-index: -1;
}

.feature-two__single {
    position: relative;
    display: block;
    background: #f8f9fa;
    margin-bottom: 30px;
    padding: 40px 35px 31px;
    overflow: hidden;
    z-index: 1;
}

.feature-two__single .shape1 {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: perspective(380px) translateY(-100%);
    transform-origin: right;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.feature-two__single:hover .shape1 {
    transform: perspective(380px) translateY(0);
    transition: all 900ms ease;
    transition-delay: 0.1s;
    opacity: 1;
}

.feature-two__single .shape2 {
    position: absolute;
    left: -133px;
    bottom: -133px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: perspective(380px) translateY(100%);
    transform-origin: right;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.feature-two__single:hover .shape2 {
    transform: perspective(380px) translateY(0);
    transition: all 900ms ease;
    transition-delay: 0.1s;
    opacity: 1;
}

.feature-two__single::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: -1;
}

.feature-two__single:hover:before {
    transform: scaleX(1);
}

.feature-two__single .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 19px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.feature-two__single:hover .icon {
    transform: rotateY(180deg);
    transition-delay: 0.3s;
}

.feature-two__single .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-two__single:hover .icon span::before {
    color: #ffffff;
}

.feature-two__single h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.feature-two__single h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-two__single h3 a:hover {
    color: var(--thm-base);
}

.feature-two__single:hover h3 a {
    color: #ffffff;
}

.feature-two__single p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-two__single:hover p {
    color: #ffffff;
}

.feature-two__single .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 18px;
}

.feature-two__single .btn-box a {
    position: relative;
    display: inline-block;
}

.feature-two__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-two__single .btn-box a:hover span::before {
    color: var(--thm-base);
}

.feature-two__single:hover .btn-box a span::before {
    color: #ffffff;
}


/*** 
============================================
	Benefits One
============================================
***/
.benefits-one-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.benefits-one__content {
    position: relative;
    display: block;
}

.benefits-one__content .sec-title {
    padding-bottom: 28px;
}


.benefits-one__content-list {
    position: relative;
    display: block;
}

.benefits-one__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.benefits-one__content-list li:last-child {
    margin-bottom: 0px;
}

.benefits-one__content-list li .icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 700;
    background: #ffffff;
    box-shadow: 0px 0px 25px 0px rgb(0, 0, 0, 0.07);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.benefits-one__content-list li:hover .icon {
    color: #ffffff;
    background: var(--thm-base);
}

.benefits-one__content-list li .icon span::before {
    position: relative;
    display: inline-block;
    line-height: 40px;
}

.benefits-one__content-list li .text {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 15px;
}

.benefits-one__content-list li .text p {
    margin: 0;
}

.benefits-one__content-progress {
    position: relative;
    display: block;
    max-width: 485px;
    width: 100%;
    margin-top: 50px;
}

.benefits-one__content-progress-single {
    position: relative;
    display: flex;
    align-items: center;
}

.benefits-one__content-progress-single .progress-box {
    position: relative;
    display: block;
    line-height: 0;
}

.benefits-one__content-progress-single .progress-box .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.benefits-one__content-progress-single .progress-box .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.benefits-one__content-progress-single .progress-box .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    letter-spacing: -0.025em;
    font-family: var(--thm-font);
}

.benefits-one__content-progress-single .progress-box .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 600;
}


.benefits-one__content-progress-single .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.benefits-one__content-progress-single .title-box h4 {
    color: rgba(var(--thm-gray-rgb), 0.7);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase
}


.benefits-one__img {
    position: relative;
    display: block;
    border: 10px solid #f2f3f5;
    overflow: hidden;
    border-radius: 50%;
    margin-left: 60px;
    margin-right: -70px;
}

.benefits-one__img .shape1 {
    position: absolute;
    top: -170px;
    left: -75px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), .8);
}

.benefits-one__img .shape2 {
    position: absolute;
    bottom: -162px;
    right: -191px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), .8);
}

.benefits-one__img img {
    width: 100%;
}


/*** 
============================================
	Appointment One
============================================
***/
.appointment-one-sec {
    position: relative;
    display: block;
    padding: 245px 0px 0px;
    overflow: hidden;
    z-index: 2;
}

.appointment-one-sec .shape1 {
    position: absolute;
    top: -440px;
    left: -90px;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: rgba(var(--thm-primary-rgb), 0.3);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    z-index: 1;
}

.appointment-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 120px;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.appointment-one-sec .video-box {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.appointment-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    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;
}

.appointment-one__video-icon:before {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.6;
}

.appointment-one__video-icon:after {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.45;
}

.appointment-one__video-icon .ripple,
.appointment-one__video-icon .ripple:before,
.appointment-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.appointment-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.appointment-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}


.appointment-one__form {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding: 51px 40px 60px;
    max-width: 470px;
    width: 100%;
    z-index: 2;
}

.appointment-one__form .title-box {
    position: relative;
    display: block;
}

.appointment-one__form .title-box h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: none;
}

.appointment-one__form .form-box {
    position: relative;
    margin-top: 34px;
}

.appointment-one__form .form-box form {
    position: relative;
}

.appointment-one__form .form-box form .form-group {
    position: relative;
    margin-bottom: 20px;
}


.appointment-one__form .form-box form .form-group input[type="text"],
.appointment-one__form .form-box form .form-group input[type="email"],
.appointment-one__form .form-box form .form-group input[type="tel"],
.appointment-one__form .form-box form .form-group input[type="url"],
.appointment-one__form .form-box form .form-group textarea,
.appointment-one__form .form-box form .form-group select {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 25px;
    color: #999999;
    font-weight: 400;
    padding: 14px 20px 15px;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    border-radius: 3px;
    outline: none;
    border: none;
    font-family: var(--thm-font);
}

.appointment-one__form .form-box form .form-group textarea {
    height: 150px;
    resize: none;
    padding-top: 23px;
}

.appointment-one__form .form-box form .button-box {
    position: relative;
    display: block;
}

.appointment-one__form .form-box form .button-box button {
    position: relative;
    z-index: 5;
}

.appointment-one__form .form-box form .button-box button.thm-btn {
    background-color: var(--thm-black);
    position: relative;
    display: block;
    width: 100%;
    z-index: 5;
}

.appointment-one__form .form-box form .button-box button.thm-btn::before {
    background: #ffffff;
    color: var(--thm-base);
}

.appointment-one__form .form-box form .button-box button.thm-btn::after {
    background: var(--thm-black);
}

/*** 
============================================
	Services Two
============================================
***/
.services-two-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.services-two-sec .shape1 {
    position: absolute;
    top: -185px;
    right: 0;
    opacity: 0.05;
    z-index: -1;
}

.services-two__single {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 10px;
    margin-bottom: 30px;
}

.services-two__single-img {
    position: relative;
    display: block;
}

.services-two__single-img .icon-box {
    position: absolute;
    right: 20px;
    bottom: -25px;
}

.services-two__single-img .icon-box a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    border: 2px solid #ffffff;
    background: var(--thm-base);
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    z-index: 5;
}

.services-two__single-img .icon-box a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    background: var(--thm-black);
    content: "";
    z-index: -1;
    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);
}

.services-two__single-img .icon-box a:hover::before {
    transform: scaleX(1.0);
}


.services-two__single-img .icon-box a span::before {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.services-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-img .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    opacity: 0.70;
    content: "";
    transform: skew(-90deg) translateY(100%);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 900ms ease 100ms;
    z-index: 1;
}

.services-two__single:hover .services-two__single-img .inner:before {
    transform: skew(0deg) translateY(0);
}

.services-two__single-img .inner img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.services-two__single:hover .services-two__single-img .inner img {
    transform: scale(1.2) rotate(1deg);
}

.services-two__single-content {
    position: relative;
    display: block;
    padding: 33px 10px 22px;
}

.services-two__single-content h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.services-two__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__single-content h2 a:hover {
    color: var(--thm-base);
}

.services-two__single-content p {
    margin: 0;
}

.services-two__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-two__single-content .btn-box a {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.services-two__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 12px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-two__single-content .btn-box a:hover span::before {
    color: var(--thm-base);
}


/*** 
============================================
	Project Two
============================================
***/
.project-two-sec {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 5;
}

.project-two__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 70px;
}

.project-two__top .sec-title {
    padding-bottom: 0px;
}

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

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

.project-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-two__single-img::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: rgba(var(--thm-black-rgb), .65);
    transition: all 900ms ease 100ms;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotate(0deg) scaleX(0);
    opacity: 0;
    z-index: 1;
}

.project-two__single:hover .project-two__single-img::before {
    opacity: 1;
    transform: perspective(1200px) rotate(0deg) scaleX(1.0);
    transition: all 500ms ease 100ms;
}

.project-two__single-img img {
    transition: all 900ms ease 100ms;
    width: 100%;
}


.project-two__single-img .video-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.6);
    transition: all 900ms ease 100ms;
    z-index: 5;
}

.project-two__single:hover .project-two__single-img .video-box {
    opacity: 1;
    transform: scale(1.0);
    transition: all 900ms ease 500ms;
}

.project-two__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 15px;
    color: var(--thm-base);
    background-color: #ffffff;
    border-radius: 50%;
    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;
}

.project-two__video-icon:before {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: #ffffff;
    opacity: 0.6;
}

.project-two__video-icon:after {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: #ffffff;
    opacity: 0.45;
}

.project-two__video-icon .ripple,
.project-two__video-icon .ripple:before,
.project-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    -webkit-animation: ripple2 3s infinite;
    animation: ripple2 3s infinite;
    border-radius: 50%;
}

.project-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.project-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}


.project-two__carousel.owl-carousel {
    display: block;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}


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


.project-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-two__single-img img {
    transform: scale(1.1, 1.1);
}

.project-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-two__single-img::before {
    opacity: 1;
    transform: perspective(1200px) rotate(0deg) scaleX(1.0);
    transition: all 500ms ease 100ms;
}

.project-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .project-two__single-img .video-box {
    opacity: 1;
    transform: scale(1.0);
    transition: all 900ms ease 500ms;
}


/*** 
============================================
	Team One
============================================
***/
.team-one-sec {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.team-one-sec .shape1 {
    position: absolute;
    top: -85px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0.03;
    z-index: -1;
}

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

.team-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.team-one__single-img::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    opacity: 0;
    transform: scale(0.5);
    background-color: rgba(var(--thm-black-rgb), .65);
    transition: all 0.8s ease-in-out 0s;
    content: "";
    z-index: 1;
}

.team-one__single:hover .team-one__single-img::before {
    opacity: 1;
    transform: scale(1.0);
    height: 100%;
}

.team-one__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.team-one__single:hover .team-one__single-img img {
    transform: scale(1);
}

.team-one__single-img .content-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 12px 45px 12px 25px;
    z-index: 1;
    opacity: 0;
    transform: translateY(100%);
    transition: all 800ms ease;
}

.team-one__single:hover .team-one__single-img .content-box {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 700ms;
}

.team-one__single-img .content-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    clip-path: polygon(0% 0%, 90% 0, 96% 59%, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.team-one__single-img .content-box::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.team-one__single-img .content-box h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-one__single-img .content-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .content-box h2 a:hover {
    color: var(--thm-base);
}

.team-one__single-img .content-box span {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.025em;
    font-family: var(--thm-font);
}

/*** 
============================================
	Testimonials Two
============================================
***/
.testimonials-two-sec {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 76px;
    z-index: 2;
}

.testimonials-two__left-img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.testimonials-two__right {
    position: relative;
    display: block;
}

#testimonials-two__thumb {
    width: 350px;
    margin-left: 0;
}

.testimonials-two__right-img {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 500ms ease;
}

.testimonials-two__right-img .inner {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
}

.testimonials-two__right-img .inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(255, 255, 255, 0.2);
    transition: all 500ms ease;
    content: "";
}

#testimonials-two__thumb .swiper-slide-thumb-active .testimonials-two__right-img .inner::before {
    background-color: rgba(var(--moniz-base-rgb, 255, 255, 255), .0);
}


.testimonials-two__right-img .inner&gt;img {
    width: 105px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0.6s;
}

.testimonials-two__right-img .icon {
    position: absolute;
    bottom: 15px;
    right: -5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    background: var(--thm-base);
    transform: scale(0);
    transition: all 500ms ease;
}

#testimonials-two__thumb .swiper-slide-thumb-active .testimonials-two__right-img .icon {
    transform: scale(1);
}

.testimonials-two-content {
    position: relative;
    display: block;
    margin-top: 62px;
    padding-bottom: 46px;
}

.testimonials-two-content__single {
    position: relative;
    display: block;
}

.testimonials-two-content__single-inner {
    position: relative;
    display: block;
    padding-left: 150px;
}

.testimonials-two-content__single-inner .icon-box {
    position: absolute;
    right: 0;
    bottom: 5px;
}

.testimonials-two-content__single-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #c2c9d6;
    font-size: 50px;
    line-height: 50px;
    transform: rotate(180deg);
}

.testimonials-two-content__single-inner .img-box {
    position: absolute;
    top: 8px;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-two-content__single-inner .img-box img {
    width: 100%;
}


.testimonials-two-content__single-inner .content-box {
    position: relative;
    display: block;
}

.testimonials-two-content__single-inner .content-box h4 {
    color: var(--thm-gray);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}


.testimonials-two-content__single-inner .content-box .name {
    position: relative;
    display: block;
    margin-top: 27px;
}

.testimonials-two-content__single-inner .content-box .name h4 {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.testimonials-two-content__single-inner .content-box .name span {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--thm-font);
    letter-spacing: 0.01em;
}

#testimonials-two__carousel-pagination {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: -117px;
    right: 0;
    left: auto;
    width: 100%;
    z-index: 20;
}

#testimonials-two__carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0px;
    background-color: rgba(var(--thm-black-rgb, 30, 30, 34), .20);
    border: 0px solid var(--thm-black);
    border-color: transparent;
    transition: all 500ms ease;
    opacity: 1;
    margin: 0;
    display: block;
}

#testimonials-two__carousel-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 6px;
}

#testimonials-two__carousel-pagination .swiper-pagination-bullet-active {
    background-color: var(--thm-base);
}


/*** 
============================================
	Blog Two
============================================
***/
.blog-one-sec--two {
    position: relative;
    display: block;
}

.blog-one-sec--two .blog-one__single-content {
    position: relative;
    display: block;
    left: 0px;
    padding-top: 0px;
}

.blog-one-sec--two .blog-one__single-content .inner-content {
    padding: 23px 20px 30px;
    background: #f2f3f5;
}

.blog-one-sec--two .blog-one__single-content .inner-content .btn-box {
    position: relative;
    display: block;
    margin-top: 32px;
}

.blog-one-sec--two .blog-one__single-content .inner-content .btn-box .thm-btn {
    padding: 10px 20px 9px;
    border-radius: 5px;
}


/***
=============================================
    Work Perfomance One Sec About
=============================================
***/
.work-perfomance-one-sec--about {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 0px;
}

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


/***
=============================================
    Services One Sec Services
=============================================
***/
.services-one-sec--services {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

/***
=============================================
    Why Choose Two Sec Services
=============================================
***/
.why-choose-two-sec--services {
    position: relative;
    display: block;
    margin-top: 120px;
}

/***
=============================================
    Services Details Page
=============================================
***/
.services-details-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

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

.services-details__img1 {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    overflow: hidden;
}

.services-details__img1 img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.services-details__img1:hover img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.services-details__text-box1 {
    position: relative;
    display: block;
    margin-bottom: 67px;
}

.services-details__text-box1 .title {
    position: relative;
    display: block;
    margin-top: 31px;
    margin-bottom: 22px;
}

.services-details__text-box1 .title h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

.services-details__text-box1 .text-1 {
    position: relative;
    margin-bottom: 24px;
}

.services-details__text-box1 .text-2 {
    position: relative;
}

.services-details__text-box2 {
    position: relative;
    display: block;
}

.services-details__text-box2-img {
    position: relative;
    display: block;
    margin-right: -39px;
}

.services-details__text-box2-img img {
    width: 100%;
}

.services-details__text-box2-content {
    position: relative;
    display: block;
    margin-left: 47px;
}

.services-details__text-box2-content .title {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-bottom: 17px;
}

.services-details__text-box2-content .title h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

.services-details__text-box2-content .text {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.services-details__text-box2-content .text p {
    margin: 0;
}

.services-details__text-box2-content ul {
    position: relative;
    display: block;
}

.services-details__text-box2-content ul li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 32px;
}

.services-details__text-box2-content ul li:last-child {
    margin-bottom: 0px;
}

.services-details__text-box2-content ul li .icon {
    position: absolute;
    top: -6px;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f2f2f2;
    border-radius: 50%;
    text-align: center;
    color: #b2b4ba;
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details__text-box2-content ul li:hover .icon {
    color: #ffffff;
    background: var(--thm-base);
}

.services-details__text-box2-content ul li .text {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.services-details__text-box2-content ul li .text p {
    margin: 0;
}

.services-details__text-box3 {
    position: relative;
    display: block;
    margin-top: 62px;
}

.services-details__text-box3 p {
    margin: 0;
}

.services-details__text-box3 ul {
    position: relative;
    display: block;
    margin-top: 43px;
}

.services-details__text-box3 ul li {
    position: relative;
    display: block;
    padding-left: 60px;
    margin-bottom: 32px;
}

.services-details__text-box3 ul li:last-child {
    margin-bottom: 0px;
}

.services-details__text-box3 ul li .icon {
    position: absolute;
    top: -6px;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    text-align: center;
    color: var(--thm-gray);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details__text-box3 ul li:hover .icon {
    color: #ffffff;
    background: var(--thm-base);
}

.services-details__text-box3 ul li .text {
    position: relative;
    display: block;
}

.services-details__text-box3 ul li .text p {
    margin: 0;
}

.services-details__tab-box {
    position: relative;
    display: block;
    margin-top: 76px;
}

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

.services-details__tab-button {
    position: relative;
    display: block;
}

.services-details__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.services-details__tab-button .tab-buttons li {
    position: relative;
    display: inline-block;
    float: left;
    background: #f2f2f2;
    cursor: pointer;
    border-top: 1px solid #dcdcdf;
    border-bottom: 1px solid #dcdcdf;
    border-left: 1px solid #dcdcdf;
    padding: 18px 31px 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details__tab-button .tab-buttons li:hover,
.services-details__tab-button .tab-buttons li.active-btn {
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.services-details__tab-button .tab-buttons li:last-child {
    border-right: 1px solid #dcdcdf;
}

.services-details__tab-button .tab-buttons li:hover:last-child {
    border-color: var(--thm-base);
}

.services-details__tab-button .tab-buttons li h4 {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: -0.025em;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details__tab-button .tab-buttons li:hover h4,
.services-details__tab-button .tab-buttons li.active-btn h4 {
    color: #ffffff;
}

.services-details__tab-content-item {
    position: relative;
    display: block;
    border: 1px solid #dadade;
    border-radius: 5px;
    padding: 42px 30px 43px;
    margin-top: 60px;
}

.services-details__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
    opacity: 1;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 1;
}

.services-details__tab .tabs-content .tab.active-tab {
    position: relative;
    display: block;
    opacity: 1.0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    z-index: 5;
}

.quality-materials-tab-box {
    position: relative;
    display: block;
}

.quality-materials-tab-box-img {
    position: relative;
    display: block;
}

.quality-materials-tab-box-img img {
    width: 100%;
}

.quality-materials-tab-box-content {
    position: relative;
    display: block;
}

.quality-materials-tab-box-content .text1 {
    position: relative;
    font-size: 17px;
    margin-bottom: 15px;
}

.quality-materials-tab-box-content .text2 {
    position: relative;
    font-size: 17px;
}

.interior-design-tab-box {
    position: relative;
    display: block;
}

.interior-design-tab-box-img {
    position: relative;
    display: block;
}

.interior-design-tab-box-img img {
    width: 100%;
}

.interior-design-tab-box-content {
    position: relative;
    display: block;
}

.interior-design-tab-box-content .text1 {
    position: relative;
    font-size: 17px;
    margin-bottom: 15px;
}

.interior-design-tab-box-content .text2 {
    position: relative;
    font-size: 17px;
}

.personal-care-tab-box {
    position: relative;
    display: block;
}

.personal-care-tab-box-img {
    position: relative;
    display: block;
}

.personal-care-tab-box-img img {
    width: 100%;
}


.personal-care-tab-box-content {
    position: relative;
    display: block;
}

.personal-care-tab-box-content .text1 {
    position: relative;
    font-size: 17px;
    margin-bottom: 15px;
}

.personal-care-tab-box-content .text2 {
    position: relative;
    font-size: 17px;
}

.super-support-tab-box {
    position: relative;
    display: block;
}

.super-support-tab-box-form {
    position: relative;
    display: block;
}

.super-support-tab-box-form .comment-form__input-box textarea {
    height: 120px;
}

.services-details__sidebar {
    position: relative;
    display: block;
    padding-left: 40px;
}

.services-details__sidebar-single {
    position: relative;
    display: block;
    background: #f2f2f2;
    padding: 42px 40px 50px;
    margin-bottom: 30px;
}

.services-details__sidebar-single .title {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.services-details__sidebar-single .title h2 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

.services-details-search {
    position: relative;
    display: block;
}

.services-details-search-form {
    position: relative;
}

.services-details-search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 20px;
    padding-right: 35px;
    height: 65px;
    width: 100%;
    font-family: var(--thm-font-2);
}

.services-details-search-form ::-webkit-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.services-details-search-form ::-moz-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.services-details-search-form :-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.services-details-search-form ::-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.services-details-search-form ::placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.services-details-search-form :-ms-input-placeholder {
    color: var(--thm-gray);
}

.services-details-search-form ::-ms-input-placeholder {
    color: var(--thm-primary);
}

.services-details-search-form button[type="submit"] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 17px;
    color: var(--thm-gray);
    font-size: 15px;
    width: 20px;
    outline: none;
    border: none;
    padding: 0;
    background-color: transparent;
}

.services-details-search-form button span::before {
    position: relative;
    display: inline-block;
    line-height: 65px;
    font-weight: 700;
}



.services-details-category {
    position: relative;
    display: block;
}

.services-details-category-list {
    position: relative;
    display: block;
}

.services-details-category-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.services-details-category-list li:last-child {
    margin-bottom: 0px;
}

.services-details-category-list li a {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 23px 25px 24px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.services-details-category-list li a:hover,
.services-details-category-list li a.active {
    color: #ffffff;
}

.services-details-category-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: var(--thm-base);
}

.services-details-category-list li a:hover::before,
.services-details-category-list li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.services-details-category-list li a span::before {
    position: relative;
    display: inline-block;
    float: right;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-category-list li a:hover span::before,
.services-details-category-list li a.active span::before {
    color: #ffffff;
}

.services-details-button-box {
    position: relative;
    display: block;
}

.services-details-button-box .btn-one {
    position: relative;
    display: block;
}

.services-details-button-box .btn-one a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    background: #ffffff;
    padding: 18px 25px 19px;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-button-box .btn-one a:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.services-details-button-box .btn-one a span::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-button-box .btn-one a:hover span::before {
    color: #ffffff;
}

.services-details-button-box .btn-one.btn-one--two {
    position: relative;
    display: block;
    margin-top: 20px;
}


.services-details-contact-box {
    position: relative;
    display: block;
    background: var(--thm-black);
}

.services-details-contact-box .title {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.services-details-contact-box .title h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

.services-details-contact-box p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.services-details-contact-box .number {
    position: relative;
    display: block;
    margin-top: 33px;
}

.services-details-contact-box .number a {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-contact-box .number a:hover {
    color: var(--thm-base);
}

.services-details-contact-box .number a span::before {
    position: relative;
    display: inline-block;
    top: 6px;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
    padding-right: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-contact-box .number a:hover span::before {
    color: var(--thm-base);
}


/***
=============================================
    Project One Sec Three
=============================================
***/
.project-one-sec--three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

.project-one-sec--three .row {
    margin-left: -15px;
    margin-right: -15px;
}

.project-one-sec--three .row [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
}

.project-one-sec--three .project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

/***
=============================================
    Protfolio Details
=============================================
***/
.protfolio-details {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

.protfolio-details__content {
    position: relative;
    display: block;
}

.protfolio-details__content-img1 {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    overflow: hidden;
    margin-bottom: 33px;
}

.protfolio-details__content-img1 img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.protfolio-details__content-img1:hover img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.protfolio-details__content-text1 {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.protfolio-details__content-text1 p {
    margin: 0;
}

.protfolio-details__content-text2 {
    position: relative;
    display: block;
}

.protfolio-details__content-text2 p {
    margin: 0;
}

.protfolio-details__content-img2 {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    overflow: hidden;
    margin-top: 62px;
}

.protfolio-details__content-img2 img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.protfolio-details__content-img2:hover img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.protfolio-details__content-img2 .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}





.protfolio-details__content-img2 .icon a {
    position: relative;
    display: inline-block;
    width: 75px;
    height: 75px;
    line-height: 75px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    background: var(--thm-base);
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.protfolio-details__content-img2 .icon a:hover {
    background: var(--thm-black);
}

.protfolio-details__content-img2 .icon a::before {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid rgba(255, 255, 255, .31);
    border-radius: 50%;
    content: "";
}

.protfolio-details__content-text3 {
    position: relative;
    display: block;
    margin-top: 32px;
}

.protfolio-details__content-text3 p {
    margin: 0;
}

.protfolio-details__content-img3 {
    position: relative;
    display: block;
    margin-top: 62px;
    margin-bottom: 32px;
}

.protfolio-details__content-img3-single {
    position: relative;
    display: block;
    overflow: hidden;
}

.protfolio-details__content-img3-single img {
    width: 100%;
    height: 100%;
}

.protfolio-details__content-text4 {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.protfolio-details__content-text4 p {
    margin: 0;
}

.protfolio-details__content-text5 {
    position: relative;
    display: block;
}

.protfolio-details__content-text5 p {
    margin: 0;
}



.protfolio-details__sidebar {
    position: relative;
    display: block;
    padding-left: 40px;
}

.protfolio-details__sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.protfolio-details__sidebar-single .title {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.protfolio-details__sidebar-single .title h2 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

.protfolio-details-category {
    position: relative;
    display: block;
    background: #f2f2f2;
    padding: 42px 40px 50px;
}

.protfolio-details-category-list {
    position: relative;
    display: block;
}

.protfolio-details-category-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.protfolio-details-category-list li:last-child {
    margin-bottom: 0px;
}

.protfolio-details-category-list li a {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 23px 25px 24px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.protfolio-details-category-list li a:hover,
.protfolio-details-category-list li a.active {
    color: #ffffff;
}

.protfolio-details-category-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: var(--thm-base);
}

.protfolio-details-category-list li a:hover::before,
.protfolio-details-category-list li a.active::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.protfolio-details-category-list li a span::before {
    position: relative;
    display: inline-block;
    float: right;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.protfolio-details-category-list li a:hover span::before,
.protfolio-details-category-list li a.active span::before {
    color: #ffffff;
}

.protfolio-details-ads-banner {
    position: relative;
    display: block;
}

.protfolio-details-ads-banner-img {
    position: relative;
    display: block;
}

.protfolio-details-ads-banner-img img {
    width: 100%;
}

.protfolio-details-ads-banner-img2 {
    position: absolute;
    top: 18px;
    left: 40px;
    bottom: 18px;
    right: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.protfolio-details-tags {
    position: relative;
    display: block;
    margin-top: -8px;
}

.protfolio-details-tags-list {
    position: relative;
    display: block;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.protfolio-details-tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 7.5px 0px;
    margin-bottom: 15px;
}

.protfolio-details-tags-list li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
    background: #f2f2f2;
    padding: 10px 35px 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.protfolio-details-tags-list li a:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.protfolio-details-newsletter {
    position: relative;
    display: block;
    margin-top: -23px;
}

.protfolio-details-newsletter .newsletter-box {
    position: relative;
    display: block;
}

.protfolio-details-newsletter .newsletter-form {
    position: relative;
    display: block;
}

.protfolio-details-newsletter .newsletter-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid #e7eaeb;
    color: var(--thm-gray);
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    outline: none;
}

.protfolio-details-newsletter .newsletter-form input::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input:-moz-placeholder {
    color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input::-moz-placeholder {
    color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form input:-ms-input-placeholder {
    color: var(--thm-gray);
}

.protfolio-details-newsletter .newsletter-form button {
    position: relative;
    margin-top: 20px;
}

.protfolio-details-newsletter .newsletter-form button.thm-btn {
    padding: 18px 45px 17px;
    border-radius: 40px;
}


/***
=============================================
    Team One Sec Two
=============================================
***/
.team-one-sec--two {
    position: relative;
    display: block;
}

.team-one-sec--two .team-one__single-img .content-box {
    left: 20px;
    bottom: 30px;
}

.team-one-sec--two .team-one__single-img .content-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-one-sec--two .team-one__single-img .content-box span {
    font-size: 14px;
    line-height: 24px;
}


/***
=============================================
    Blog One Sec Two Blog
=============================================
***/
.blog-one-sec--two--blog {
    position: relative;
    display: block;
}

.blog-one-sec--two--blog.blog-one-sec--two .blog-one__single-content .inner-content .btn-box .thm-btn {
    border-radius: 5px;
}


/***
=====================================================
    Blog Details
=====================================================
***/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

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

.blog-details__img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    overflow: hidden;
}

.blog-details__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.blog-details__img:hover img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.blog-details__date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--thm-base);
    text-align: center;
    padding: 15px 25px;
}

.blog-details__date p {
    color: #ffffff;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.blog-details__date p span {
    color: #ffffff;
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.blog-details__content {
    position: relative;
    display: block;
    margin-top: 27px;
}

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

.blog-details__meta li+li {
    margin-left: 20px;
}

.blog-details__meta li a {
    font-size: 15px;
    color: var(--thm-base);
}

.blog-details__meta li a i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 15px;
    padding-right: 2px;
}

.blog-details__meta li a span {
    position: relative;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    margin-left: 6px;
}

.blog-details__meta li a span:hover {
    color: var(--thm-base);
}

.blog-details__title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 17px;
}

.blog-details__text-1 {
    margin: 0;
}

.blog-details__text-2 {
    margin: 0;
    padding-top: 19px;
}

.blog-details__content-two {
    position: relative;
    display: block;
    margin-top: 67px;
}

.blog-details__content-two-img {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    overflow: hidden;
}

.blog-details__content-two-img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.blog-details__content-two-img:hover img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.blog-details__content-two-details {
    position: relative;
    display: block;
    margin-top: 26px;
}

.blog-details__content-two-title {
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.blog-details__content-two-text-1 {
    margin: 0;
}

.blog-details__content-two-text-2 {
    margin: 0;
    padding-top: 20px;
}

.blog-details__content-two-points {
    position: relative;
    display: block;
    margin-top: 29px;
}

.blog-details__content-two-points li {
    position: relative;
    display: block;
    padding-left: 24px;
}

.blog-details__content-two-points li:before {
    position: absolute;
    top: 10px;
    left: 0;
    height: 10px;
    width: 10px;
    background-color: #bfc2c3;
    border-radius: 50%;
    content: "";
}

.blog-details__content-two-points li+li {
    margin-top: 17px;
}

.blog-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: 47px 0 40px;
}

.blog-details__bottom p {
    margin: 0;
}

.blog-details__tags a {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 14px;
    letter-spacing: 0.035em;
    font-weight: 400;
    text-transform: capitalize;
    background-color: #ffffff;
    border: 1px solid #dcdfe2;
    padding: 6px 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__tags a:hover {
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
    color: #ffffff;
}

.blog-details__tags a+a {
    margin-left: 6px;
}

.blog-details__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.blog-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);
    font-size: 15px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.blog-details__social-list a:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}

.blog-details__social-list a+a {
    margin-left: 10px;
}

.blog-details__social-list a:hover:before {
    transform: scaleX(1);
}

.author-one {
    background-color: #f2f2f2;
    padding: 28px 30px 28px;
    display: -webkit-box;
    display: flex;
    margin-bottom: 51px;
}

.author-one .inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.author-one__image {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-one__image img {
    width: 100%;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px
}

.author-one__content p {
    margin: 0;
}

.author-one__content {
    position: relative;
    display: block;
}

.author-one__content ul {
    position: relative;
    display: block;
    margin-top: 16px;
}

.author-one__content ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.author-one__content ul li:last-child {
    margin-right: 0px;
}

.author-one__content ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.author-one__content ul li a:hover {
    color: var(--thm-base);
}


/***
=====================================================
    Comments
=====================================================
***/
.comment-one {
    position: relative;
    display: block;
}

.comment-one__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 31px;
}

.comment-one__single {
    position: relative;
    display: -webkit-box;
    display: flex;
    align-items: center;
    margin-bottom: 53px;
}

.comment-one__image {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-one__image img {
    width: auto;
}

.comment-one__content {
    position: relative;
    margin-left: 30px;
    flex: 1;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 22px;
    margin-bottom: 11px;
    font-weight: 500;
}

.comment-one__content p {
    margin: 0;
    margin-bottom: 13px;
}

.comment-one__content span {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

.comment-one__btn {
    position: relative;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding-left: 16px;
}

.comment-one__btn:hover {
    color: var(--thm-black);
}


.comment-form {
    position: relative;
    display: block;
}

.comment-form__title {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 40px;
}

.comment-one__form {
    position: relative;
    display: block;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #dcdfe2;
    color: #999999;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.comment-form__input-box textarea {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    border: 1px solid #dcdfe2;
    outline: none;
    color: #999999;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 3px;
    padding: 12px 20px 20px;
    font-family: var(--thm-font);
    resize: none;
    height: 200px;
}

.comment-form__btn-box {
    position: relative;
    display: block;
    padding-top: 2px;
}

.comment-form__btn {
    position: relative;
    outline: none;
    border-radius: 40px;
    padding: 19px 45px 17px;
}


/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
    padding-left: 40px;
}

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

.sidebar__title {
    margin: 0;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    padding: 50px 40px 50px;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 3px;
    border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-gray);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
    background-color: var(--thm-base);
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
    background-color: var(--thm-black);
    color: #ffffff;
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    padding: 42px 40px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__category-list li+li {
    position: relative;
    margin-top: 15px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    padding: 17px 25px 18px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.sidebar__category-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--thm-base);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
    transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
    color: #ffffff;
}

.sidebar__category-list li.active a {
    background-color: var(--thm-base);
    color: #ffffff;
}

.sidebar__category-list li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    right: 0;
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 600;
    background-color: #dcdde0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 42px 40px 42px;
    background-color: #f2f2f2;
}

.sidebar__post-box {
    position: relative;
    display: block;
}

.sidebar__post-single {
    position: relative;
    display: block;
}

.sidebar__post-single+.sidebar__post-single {
    margin-top: 27px;
}

.sidebar-post__img {
    position: relative;
    display: block;
    background: var(--thm-black);
    overflow: hidden;
}

.sidebar-post__img::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 100%;
    background-color: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
}

.sidebar-post__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
    position: relative;
    margin-top: 18px;
}

.sidebar__post-content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.sidebar__post-content-box h3 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
    color: var(--thm-base);
}


.sidebar__support {
    position: relative;
    display: block;
    text-align: center;
    padding: 77px 40px 90px;
    z-index: 1;
}

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

.sidebar__support-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(9, 16, 37, 0.9);
    content: "";
    z-index: -2;
}

.sidebar__suppot-title {
    color: #ffffff;
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
}

.sidebar__suppot-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    padding-top: 25px;
    padding-bottom: 33px;
}

.sidebar__support-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__support-btn-box .thm-btn {
    border: 0;
    border-radius: 40px;
    padding: 18px 40px 17px;
}


.sidebar__tags {
    position: relative;
    display: block;
    background-color: #f2f2f2;
    padding: 35px 40px 35px;
    overflow: hidden;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 7.5px 0px;
    margin-bottom: 15px;
}

.sidebar__tags-list li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
    padding: 6px 35px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
    color: #ffffff;
    background: var(--thm-base);
}


/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
    position: relative;
    display: block;
    padding: 120px 0px 108px;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 560px;
    width: 100%;
}


/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
}

.contact-page__content {
    position: relative;
    display: block;
}

.contact-page__content .title {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.contact-page__content .title h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact-page__content-single {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.contact-page__content-single-inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.contact-page__content-single-inner .icon-box {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--thm-base);
    font-size: 50px;
}


.contact-page__content-single-inner .content-box {
    position: relative;
    display: block;
}

.contact-page__content-single-inner .content-box h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-page__content-single-inner .content-box p {
    color: #5f6167;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}


.contact-page__content-single-inner .content-box .number1 {
    margin: 0px;
    margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .number1 a {
    color: #5f6167;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number1 a:hover {
    color: var(--thm-base);
}


.contact-page__content-single-inner .content-box .number2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .number2 a {
    color: #5f6167;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .number2 a:hover {
    color: var(--thm-base);
}

.contact-page__content-single-inner .content-box .email1 {
    margin: 0px;
    margin-bottom: 1px;
}

.contact-page__content-single-inner .content-box .email1 a {
    color: #5f6167;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email1 a:hover {
    color: var(--thm-base);
}


.contact-page__content-single-inner .content-box .email2 {
    margin: 0px;
}

.contact-page__content-single-inner .content-box .email2 a {
    color: #5f6167;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page__content-single-inner .content-box .email2 a:hover {
    color: var(--thm-base);
}

.contact-page__form {
    position: relative;
    display: block;
    margin-top: 126px;
}





/*============================================================================
   Update1.0
==============================================================================*/


/***
=============================================
    Slider Three
=============================================
***/
.slider-one-sec.style3 {
    position: relative;
    display: block;
    margin-top: -40px;
}

.slider-one-sec.style3 .slider-one__single {
    position: relative;
    display: block;
    padding: 207px 0px 170px;
}

.slider-one-sec.style3 .slider-carousel.owl-carousel .owl-nav {
    display: block;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 48%;
    left: 0px;
    right: 0px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    z-index: 999;
}

.slider-one-sec.style3:hover .slider-carousel.owl-theme .owl-nav {
    opacity: 1;
    left: 40px;
    right: 40px;
    transform: scaleX(1.0) translateX(0px);
    z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-prev span,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-next span {
    display: block;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    line-height: 60px;
    font-weight: 600;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev::before,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next::before {
    display: none;
}


.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev:hover,
.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next:hover {
    color: #ffffff;
    background: transparent;
    border-color: #ffffff;
    z-index: 99;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev {
    transform: rotate(180deg);
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-prev span::before {
    position: relative;
    display: inline-block;
    top: -6px;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-nav .owl-next span::before {
    position: relative;
    display: inline-block;
    top: -6px;
}

.slider-one-sec.style3 .slider-carousel.owl-theme .owl-dots {
    display: none;
}



/***
=============================================
    Main Header Three
=============================================
***/
.main-header-three {
    position: relative;
    display: block;
}

.main-header-three__wrapper {
    position: relative;
    display: block;
}

.main-header-three__top {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 15px 1rem;
    z-index: 11;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-three__top .left {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.main-header-three__top .location-box {
    position: relative;
    display: block;
    max-width: 170px;
    width: 100%;
}

.main-header-three__top .menu-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-header-three__top .menu-box li {
    position: relative;
    display: inline-block;
    margin-right: 13px;
}

.main-header-three__top .menu-box li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__top .menu-box li a:hover {
    color: var(--thm-base);
}


.main-header-three__top .right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__top .right .title {
    position: relative;
    display: block;
}

.main-header-three__top .right .title p {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.main-header-three__top .right .social-links {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-header-three__top .right .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.main-header-three__top .right .social-links li:last-child {
    margin-right: 0;
}

.main-header-three__top .right .social-links li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-header-three__top .right .social-links li a:hover {
    color: #ffffff;
}

.main-header-three__top .right .social-links li a::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.main-header-three__top .right .social-links li a:hover::before {
    transform: scale(1);
    opacity: 1;
}


.main-header-three__middle {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 25px 0px 25px;
}

.main-header-three__middle-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-three__middle-inner .logo-box {
    position: relative;
    display: block;
}

.main-header-three__middle-inner .logo-box a {
    position: relative;
    display: inline-block;
}

.main-header-three__middle-inner .logo-box a img {
    width: 100%;
}


.main-header-three__middle .contact-info {
    position: relative;
    display: block;
}

.main-header-three__middle .contact-info ul {
    position: relative;
    display: block;
}

.main-header-three__middle .contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 25px;
    padding-right: 25px;
}

.main-header-three__middle .contact-info ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.main-header-three__middle .contact-info ul li::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(var(--thm-gray-rgb), .5);
    content: "";
}

.main-header-three__middle .contact-info ul li:last-child:before {
    display: none;
}

.main-header-three__middle .contact-info ul li .icon-box {
    position: relative;
    display: block;
}

.main-header-three__middle .contact-info ul li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 40px;
}

.main-header-three__middle .contact-info ul li .text-box {
    position: relative;
    display: block;
    margin-left: 19px;
}

.main-header-three__middle .contact-info ul li .text-box h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.main-header-three__middle .contact-info ul li .text-box p {
    margin: 0;
    line-height: 22px;
}

.main-header-three__middle .contact-info ul li .text-box p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__middle .contact-info ul li .text-box p a:hover {
    color: var(--thm-base);
}


.main-header-three__bottom {
    position: relative;
    display: block;
}

.main-header-three__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-base);
    padding: 0px 30px 0px;
    z-index: 10;
}

.main-header-three__bottom .main-menu .main-menu__list&gt;li&gt;a {
    color: #ffffff;
}

.main-header-three__bottom .main-menu .main-menu__list&gt;li.dropdown&gt;a::before {
    color: #ffffff;
}


.main-header-three__bottom .main-menu .main-menu__list&gt;li.current&gt;a,
.main-header-three__bottom .main-menu .main-menu__list&gt;li:hover&gt;a {
    color: var(--thm-black);
}

.main-header-three__bottom .main-menu .main-menu__list&gt;li.current.dropdown&gt;a::before,
.main-header-three__bottom .main-menu .main-menu__list&gt;li:hover.dropdown&gt;a::before {
    color: var(--thm-black);
}

.main-header-three__bottom .main-header-one__bottom-right .search-box {
    padding-right: 21px;
    padding-left: 22px;
}

.main-header-three__bottom .main-header-one__bottom-right .search-box::before {
    position: absolute;
    top: -26px;
    right: 0;
    bottom: -26px;
    width: 1px;
    background: rgba(255, 255, 255, .5);
    content: "";
}

.main-header-three__bottom .main-header-one__bottom-right .search-box::after {
    position: absolute;
    top: -26px;
    left: 0;
    bottom: -26px;
    width: 1px;
    background: rgba(255, 255, 255, .5);
    content: "";
}

.main-header-three__bottom .main-header-one__bottom-right .search-box a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__bottom .main-header-one__bottom-right .search-box a:hover {
    color: var(--thm-black);
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn a .count {
    top: 4px;
    right: 2px;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn {
    margin-left: 4px;
    padding-right: 19px;
}

.main-header-three__bottom .main-header-one__bottom-right .cart-btn::before {
    position: absolute;
    top: -26px;
    right: 0;
    bottom: -15px;
    width: 1px;
    background: rgba(255, 255, 255, .5);
    content: "";
}

.side-content-button-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.side-content-button-box .side-content-button {
    position: relative;
    display: block;
}

.side-content-button-box .side-content-button a.navSidebar-button {
    position: relative;
    display: inline-block;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.side-content-button-box .side-content-button a.navSidebar-button:hover .decor {
    background: var(--thm-black);
}


/***
=============================================
  Services Three
=============================================
***/
.services-three {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 90px;
    z-index: 1;
}

.services-three .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: -1;
}

.services-three .shape2 {
    position: absolute;
    top: 90px;
    right: 50px;
    z-index: -1;
}

.services-three__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 58px;
}

.services-three__top .sec-title {
    padding-bottom: 0px;
}

.services-three__top .sec-title__title {
    color: #ffffff;
}

.services-three__top .text-box {
    position: relative;
    display: block;
}

.services-three__top .text-box p {
    color: rgb(255, 255, 255, 0.7);
}

.services-three__single {
    position: relative;
    display: block;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
    margin-bottom: 30px;
    padding: 40px 40px 40px;
    z-index: 1;
}

.services-three__single__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
}

.services-three__single.active .services-three__single__bg {
    transform: scaleX(1.0) rotateX(0deg);
    opacity: 1;
}

.services-three__single:hover .services-three__single__bg {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-three__single__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-base-rgb), 0.95);
    border-radius: 10px;
    content: "";
    z-index: -2;
}

.services-three__single-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: 1;
}

.services-three__single:hover .services-three__single-icon {
    transform: rotateY(180deg);
    transition-delay: 0.3s;
}

.services-three__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__single:hover .services-three__single-icon span::before,
.services-three__single.active .services-three__single-icon span::before {
    color: #ffffff;
}

.services-three__single h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.services-three__single h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__single h3 a:hover {
    color: var(--thm-black);
}

.services-three__single p {
    color: rgba(255, 255, 255, .7);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__single:hover p,
.services-three__single.active p {
    color: #ffffff;
}

.services-three__single .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 21px;
}

.services-three__single .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-three__single:hover .btn-box a span::before,
.services-three__single.active .btn-box a span::before {
    color: #ffffff;
}

.services-three__single:hover .btn-box a:hover span::before {
    color: var(--thm-black);
}

.services-three__single .btn-box a:hover {
    color: var(--thm-black);
}



/***
=============================================
  About Three
=============================================
***/
.about-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-three__img {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 15px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
    overflow: hidden;
}

.about-three__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
}

.about-three__img .inner img {
    width: 100%;
}

.about-three__img-video {
    position: absolute;
    bottom: 70px;
    right: 70px;
    z-index: 5;
}

.about-three__img-video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    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;
}

.about-three__img-video-icon:hover {
    background-color: var(--thm-base);
    color: #ffffff;
}

.about-three__img-video-icon:before {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.6;
}

.about-three__img-video-icon:after {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background-color: var(--thm-base);
    opacity: 0.45;
}

.about-three__img-video-icon .ripple,
.about-three__img-video-icon .ripple:before,
.about-three__img-video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.about-three__img-video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-three__img-video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-three__content {
    position: relative;
    display: block;
    margin-left: 30px;
}

.about-three__content .sec-title {
    padding-bottom: 29px;
}

.about-three__content-inner {
    position: relative;
    display: block;
}

.about-three__content-inner .text1 {
    position: relative;
    display: block;
}

.about-three__content-inner .text1 p {
    margin: 0;
}

.about-three__content-inner .text2 {
    position: relative;
    display: block;
    padding-left: 15px;
    margin-top: 27px;
}

.about-three__content-inner .text2::before {
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 5px;
    width: 3px;
    background: var(--thm-base);
    content: "";
}

.about-three__content-inner .text2 h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.about-three__content-list {
    position: relative;
    display: block;
    margin-top: 27px;
}

.about-three__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.about-three__content-list li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--thm-base);
}

.about-three__content-list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
}

.about-three__content-list li .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.about-three__content-list li .text-box p {
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 700;
}

.about-three__content-btn {
    position: relative;
    display: block;
    margin-top: 24px;
}

/***
=============================================
    Project Three
=============================================
***/
.project-three {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 120px;
}

.project-three .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

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

.project-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-three__single-img::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 0%;
    right: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    background-color: var(--thm-black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.project-three__single:hover .project-three__single-img::before {
    opacity: 0.9;
}

.project-three__single-img img {
    width: 100%;
}

.project-three__single-img .icon-box {
    position: absolute;
    top: 0px;
    right: 50px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.project-three__single:hover .project-three__single-img .icon-box {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.project-three__single-img .icon-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 15px;
}

.project-three__single-img .content-box {
    position: absolute;
    left: 50px;
    bottom: 0px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.project-three__single:hover .project-three__single-img .content-box {
    bottom: 43px;
    opacity: 1;
    visibility: visible;
}

.project-three__single-img .content-box p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-three__single-img .content-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-three__single-img .content-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-three__single-img .content-box h3 a:hover {
    color: var(--thm-base);
}


/***
=============================================
   Video One
=============================================
***/
.video-one {
    position: relative;
    display: block;
    padding: 140px 0px 165px;
    z-index: 1;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.video-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.7);
    content: "";
    z-index: -2;
}

.video-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.video-one__inner .text-box {
    position: relative;
    display: block;
    margin-bottom: 81px;
}

.video-one__inner .text-box h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-one__inner .text-box p {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
}

.video-one__inner .video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__inner .video-box a {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.video-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
}

.video-one__icon::before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    content: "";
}

.video-one__inner .video-box .border-animation {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border: 1px solid var(--thm-base);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-one__inner .video-box .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-one__inner .video-box .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}


/***
=====================================================
    Counter One
=====================================================
***/
.counter-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 0px;
    z-index: 100;
}

.counter-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: -1;
}

.counter-one .container {
    max-width: 1500px;
}




.counter-one .row {
    --bs-gutter-x: 0px;
}

.counter-one__single {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 40px 0px 44px;
    padding-left: 25px;
    padding-right: 15px;
    margin-bottom: 1px;
    z-index: 1;
}



.counter-one__single::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-bottom: 2px solid var(--thm-base);
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: -1;
}

.counter-one__single:hover:before {
    transform: scaleX(1);
}


.counter-one__single-inner {
    position: relative;
    display: block;
    padding-left: 80px;
}

.counter-one__single-inner .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner .icon-box {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-one__single-inner .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    line-height: 65px;
}

.counter-one__single-inner .text-box {
    position: relative;
    display: block;
}

.counter-one__single-inner .text-box h3 {
    color: #222222;
    font-size: 35px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--thm-font-two);
}

.counter-one__letter {
    position: relative;
    display: inline-block;
    top: 5px;
    color: #222222;
    font-size: 35px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--thm-font-two);
}

.counter-one__plus {
    position: relative;
    display: inline-block;
    top: 5px;
    color: #222222;
    font-size: 35px;
    line-height: 32px;
    font-weight: 700;
    font-family: var(--thm-font-two);
}

.counter-one__text {
    margin: 0px;
    line-height: 20px;
    margin-top: 5px;
}


/***
=====================================================
Mission Vision One
=====================================================
***/
.mission-vision-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.mission-vision-one .slider-bg-slide {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.slider-bg-slide-overly::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 35, 90);
    background: linear-gradient(90deg, rgba(0, 35, 90, 1) 0%, rgba(0, 35, 90, 1) 32%, rgba(0, 35, 90, 0) 89%);
    content: "";
    z-index: 2;
}

.mission-vision-one__inner {
    position: relative;
    display: block;
    background: rgba(var(--thm-base-rgb), 1.0);
    padding: 60px 60px 60px;
    margin-right: 150px;
    margin-left: -150px;
    max-width: 900px;
    z-index: 3;
}

.mission-vision-one__single {
    position: relative;
    display: block;
    padding: 50px 40px 42px;
    background: rgba(255, 255, 255, 0.1);
}

.mission-vision-one__single .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--thm-black);
    border-radius: 50%;
    margin-bottom: 23px;
}

.mission-vision-one__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.mission-vision-one__single:hover .icon-box span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.mission-vision-one__single h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.mission-vision-one__single p {
    color: #ffffff;
}




.mission-vision-one__inner--style2 {
    background: rgba(0, 0, 0, .3);
    padding: 60px 60px 60px;
    margin-right: 0px;
    margin-left: 0px;
}

.mission-vision-one__inner--style2 .mission-vision-one__single {
    background: rgba(255, 255, 255, 0.1);
    background-color: var(--thm-base);
}






/***
=====================================================
Progress One
=====================================================
***/
.progress-one {
    position: relative;
    display: block;
    padding: 0px 0px 80px;
    border-bottom: 1px dashed #f2f3f5;
}

.progress-one__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}


.progress-one__single .progress-box {
    position: relative;
    display: block;
    line-height: 0;
}

.progress-one__single .progress-box .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.progress-one__single .progress-box .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.progress-one__single .progress-box .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-family: var(--thm-font);
}

.progress-one__single .progress-box .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 25px;
    font-weight: 600;
}


.progress-one__single .title-box {
    position: relative;
    display: block;
    padding-left: 30px;
}

.progress-one__single .title-box h4 {
    color: var(--thm-base);
    font-size: 19px;
    line-height: 29px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.progress-one__single .title-box p {
    margin: 0;
}


/***
=====================================================
Feature Four
=====================================================
***/
.feature-four {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
    z-index: 1;
}

.feature-four__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.feature-four__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.feature-four__single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.8);
    opacity: 0;
    z-index: 1;
    content: "";
}

.feature-four__single:hover .feature-four__single-img::before {
    opacity: 0.8;
}

.feature-four__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.feature-four__single:hover .feature-four__single-img img {
    transform: scale(1);
}

.feature-four__single.style2 {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.4);
    padding: 50px 35px 42px;
}

.feature-four__single-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.feature-four__single:hover .feature-four__single-icon {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.feature-four__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-four__single-content {
    position: relative;
    display: block;
}

.feature-four__single-content span {
    color: var(--thm-gray);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-four__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 24px;
}

.feature-four__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-four__single-content h2 a:hover {
    color: var(--thm-base);
}

.feature-four__single-content p {
    margin: 0;
}

/***
=====================================================
Testimonials Three
=====================================================
***/
.testimonials-three {
    position: relative;
    display: block;
    background: #f2f3f5;
    padding: 120px 0px 120px;
    z-index: 1;
    overflow: hidden;
}

.testimonials-three__img1 {
    position: absolute;
    top: 50px;
    left: 100px;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img1 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img2 {
    position: absolute;
    top: 80px;
    left: 550px;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img2 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img3 {
    position: absolute;
    top: 80px;
    right: 550px;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img3 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img4 {
    position: absolute;
    top: 50px;
    right: 100px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img4 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img5 {
    position: absolute;
    top: 150px;
    right: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(50%);
    opacity: 0.1;
    background: #000000;
}

.testimonials-three__img5 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img6 {
    position: absolute;
    top: 44%;
    left: 50px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img6 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img7 {
    position: absolute;
    bottom: 50px;
    left: 100px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img7 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img8 {
    position: absolute;
    top: 45%;
    right: 50px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img8 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__img9 {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: #000000;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-three__img9 img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonials-three__single {
    position: relative;
    display: block;
    padding-top: 50px;
}

.testimonials-three__single .quote-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}

.testimonials-three__single .quote-icon span::before {
    position: relative;
    display: inline-block;
    color: rgba(var(--thm-gray-rgb), .20);
    font-size: 40px;
}

.testimonials-three__single .img-box {
    position: absolute;
    top: 0;
    right: 55px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
}

.testimonials-three__single-inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 46px 40px 42px;
    border-radius: 10px;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
}

.testimonials-three__single-inner .title-box {
    position: relative;
    display: block;
}

.testimonials-three__single-inner .title-box h3 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.testimonials-three__single-inner .title-box span {
    color: var(--thm-base);
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
}

.testimonials-three__single-inner .text-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.testimonials-three__single-inner .text-box p {
    margin: 0;
}

.testimonials-three__single-inner .rating-box {
    position: relative;
    display: block;
    margin-top: 5px;
}

.testimonials-three__single-inner .rating-box li {
    position: relative;
    display: inline-block;
}

.testimonials-three__single-inner .rating-box li span::before {
    position: relative;
    display: inline-block;
    color: #ffaa01;
    font-size: 15px;
}



.testimonials-three__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -135px;
    right: 0;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev {
    padding: 0 !important;
    font: inherit;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(var(--thm-gray-rgb), .5);
    color: rgba(var(--thm-gray-rgb), .50);
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next i::before,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev i::before {
    font-weight: 700;
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev .left {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.testimonials-three__carousel.owl-carousel .owl-nav button.owl-next:hover,
.testimonials-three__carousel.owl-carousel .owl-nav button.owl-prev:hover {
    border: 1px solid var(--thm-base);
    color: var(--thm-base);
    background: transparent;
}



.testimonials-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonials-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonials-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}





/***
=============================================
    Pricing Plan One
=============================================
***/
.pricing-plan-one {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    background: #ffffff;
}


.pricing-plan-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    transition: all 500ms ease;
    transition-delay: 0.3s;
    z-index: 1;
}

.pricing-plan-one__single:after {
    position: absolute;
    content: "";
    left: 0;
    top: 15px;
    right: 0;
    bottom: 0;
    box-shadow: 0px 10px 50px 0px rgba(12, 21, 41, 0.15);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1;
    content: "";
}

.pricing-plan-one__single-inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 15px;
    padding: 0px 40px 50px;
}


.pricing-plan-one__single .table-header {
    position: relative;
    display: block;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--thm-base);
    z-index: 5;
}

.pricing-plan-one__single .table-header .category-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    z-index: 10;
}

.pricing-plan-one__single .table-header .category-wrapper:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 15px;
    width: 10px;
    background: var(--thm-base);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 10;
}

.pricing-plan-one__single .table-header .category-wrapper:after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    height: 15px;
    width: 10px;
    background: var(--thm-base);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 10;
}

.pricing-plan-one__single .table-header h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background: var(--thm-base);
    padding: 15px 45px;
    font-family: var(--thm-font);
    margin-bottom: 40px;
    z-index: 1;
}

.pricing-plan-one__single .table-header h2 {
    color: var(--thm-black);
    font-size: 45px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 5px;
    z-index: 5;
}

.pricing-plan-one__single .table-header p {
    color: var(--thm-gray);
}

.pricing-plan-one__single .table-content {
    position: relative;
    display: block;
    margin-top: 43px;
    z-index: 5;
}

.pricing-plan-one__single .table-content ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.pricing-plan-one__single .table-content ul li {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 29px;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 15px;
    font-family: var(--thm-font);
}

.pricing-plan-one__single .table-content ul li:last-child {
    margin-bottom: 0px;
}

.pricing-plan-one__single .table-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    background: var(--thm-base);
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.pricing-plan-one__single .table-footer {
    position: relative;
    display: block;
    margin-top: 36px;
    z-index: 5;
}

.pricing-plan-one__single .table-footer .thm-btn {
    padding: 18px 40px 17px;
}

/***
=============================================
    Blog Three
=============================================
***/
.blog-one-sec.style3 {
    position: relative;
    display: block;
}

.blog-one-sec.style3 .blog-one__single-content .date-box {
    position: absolute;
    top: -32px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 65px;
    background: var(--thm-base);
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

/***
=============================================
Faq One
=============================================
***/
.faq-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 1;
}

.faq-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.faq-one__img img {
    width: 100%;
}



.faq-one__accordion {
    position: relative;
    display: block;
}

.faq-one__accordion .sec-title {
    padding-bottom: 26px;
}

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.accordion-box .block.mb20 {
    margin-bottom: 0px;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 500ms ease;
    background: #f2f3f5;
    border-radius: 0px;
    padding-top: 23px;
    padding-left: 40px;
    padding-bottom: 22px;
    padding-right: 40px;
}

.accordion-box .block .acc-btn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 22px;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 15px;
    text-align: right;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-black);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    font-size: 20px;
    font-family: 'icomoon' !important;
    font-weight: 700;
    margin: 0px;
    content: "\e915";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 0px;
    padding-left: 40px;
    padding-bottom: 39px;
    padding-right: 40px;
    background-color: #f2f3f5;
}

.accordion-box .block .acc-content .inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 22px 30px 22px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0;
    color: var(--thm-black);
}

/***
=============================================
Cta One
=============================================
***/
.cta-one {
    position: relative;
    display: block;
    padding: 110px 0px 120px;
    z-index: 1;
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--thm-black-rgb), .8);
    content: "";
    z-index: -2;
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__inner h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 29px;
}

.cta-one__list {
    position: relative;
    display: block;
}

.cta-one__list li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    padding-left: 30px;
}

.cta-one__list li:last-child {
    margin-right: 0;
}

.cta-one__list li p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.cta-one__list li::before {
    position: absolute;
    top: 5px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    content: "";
}

.cta-one__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.cta-one__btn-box .btn-box1 {
    position: relative;
    display: block;
    margin-right: 15px;
}

.cta-one__btn-box .btn-box1 .thm-btn {
    padding: 18px 40px 17px;
}

.cta-one__btn-box .btn-box2 {
    position: relative;
    display: block;
}

.cta-one__btn-box .btn-box2 .thm-btn {
    padding: 18px 40px 17px;
}



/*** 
==================================================================
    Update 12-2-2022
==================================================================
***/


/*** 
=============================================
    Blog List Page
=============================================
***/
.blog-list-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

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

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

.blog-list__single .row {
    margin-left: 0px;
    margin-right: 0px;
}

.blog-list__single .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.blog-list__single-img {
    position: relative;
    display: block;
    background: var(--thm-black);
    overflow: hidden;
}

.blog-list__single-img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.blog-list__single:hover .blog-list__single-img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}


.blog-list__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
    padding: 36px 30px 33px;
}

.blog-list__single-content .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
}

.blog-list__single-content .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 24px;
    margin-right: 20px;
}

.blog-list__single-content .meta-info li:last-child {
    margin-right: 0px;
}

.blog-list__single-content .meta-info li span:before {
    position: relative;
    display: inline-block;
    padding-right: 6px;
    font-size: 20px;
    top: 3px;
    left: 1px;
}

.blog-list__single-content .meta-info li a {
    color: #84827c;
    font-size: 14px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-list__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 9px;
}

.blog-list__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-list__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-list__single-content p {
    margin: 0;
}

.blog-list__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.blog-list__single-content .btn-box a {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 29px;
    font-weight: 500;
    letter-spacing: 0.015em;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-list__single-content .btn-box a:hover {
    color: var(--thm-base);
}

.blog-list__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    top: 1px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-list__single-content .btn-box a:hover span::before {
    color: var(--thm-base);
}

.sidebar__blog-list {
    position: relative;
    display: block;
    padding-left: 0;
}

.blog-list__pagination {
    position: relative;
    display: block;
    padding-top: 10px;
}

.blog-list__pagination .styled-pagination li a {
    color: #ffffff;
    background: var(--thm-black);
}

.blog-list__pagination .styled-pagination li a:hover {
    background: var(--thm-base);
}

.blog-list__pagination .styled-pagination li a span::before {
    color: #ffffff;
}


/***
=============================================
    Blog Standard
=============================================
***/
.blog-standard {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
}

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

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

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

.blog-standard__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-standard__single:hover .blog-standard__single-img:before {
    opacity: 1;
}

.blog-standard__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-standard__single:hover .blog-standard__single-img img {
    transform: scale(1);
}

.blog-standard__date {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    z-index: 1;
}

.blog-standard__date::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -15px;
    z-index: -1;
    border-bottom: 20px solid rgba(255, 255, 255, .9);
    border-right: 15px solid transparent;
}

.blog-standard__date p {
    font-size: 15px;
    color: var(--thm-black);
    margin: 0;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-standard__single-content {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 25px 0px 31px;
}

.blog-standard__single-content .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
}

.blog-standard__single-content .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 24px;
    margin-right: 20px;
}

.blog-standard__single-content .meta-info li:last-child {
    margin-right: 0px;
}

.blog-standard__single-content .meta-info li span:before {
    position: relative;
    display: inline-block;
    padding-right: 6px;
    font-size: 18px;
    top: 2px;
    left: 1px;
}

.blog-standard__single-content .meta-info li a {
    color: #84827c;
    font-size: 14px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.blog-standard__single-content h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-standard__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-standard__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-standard__single-content p {
    margin: 0;
}

.blog-standard__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.blog-standard__single-content .btn-box a {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    line-height: 29px;
    font-weight: 500;
    background: var(--thm-black);
    padding: 10px 20px 10px;
    border-radius: var(--thm-bdr-radius);
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.blog-standard__single-content .btn-box a:hover {
    background: var(--thm-base);
}

.blog-standard__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding-left: 2px;
    top: 1px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-standard__video-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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;
    z-index: 5;
}

.blog-standard__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 23px;
    color: var(--thm-base);
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.blog-standard__video-icon:hover {
    background-color: var(--thm-base);
    color: #ffffff;
}

.blog-standard__video-icon:before {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    content: "";
    border-radius: 50%;
    border: 1px solid #ffffff;
    opacity: 0.7;
    z-index: 1;
}

.blog-standard__video-link .ripple,
.blog-standard__video-icon .ripple:before,
.blog-standard__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.blog-standard__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.blog-standard__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.blog-standard__left .styled-pagination {
    position: relative;
    display: block;
    margin-top: 2px;
}

.blog-standard__left .styled-pagination li a {
    color: #ffffff;
    background: var(--thm-black);
}

.blog-standard__left .styled-pagination li a:hover {
    background: var(--thm-base);
}

.blog-standard__left .styled-pagination li a span::before {
    color: #ffffff;
}

.sidebar__blog-standard {
    position: relative;
    display: block;
    padding-left: 0;
}


/***
=============================================
    Blog Grid
=============================================
***/
.blog-one-sec--two--blog.grid {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.blog-one-sec--two.grid .blog-one__single-content {
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 5;
}

.blog-one-sec--two.grid .blog-one__single-content .inner-content h2 {
    font-size: 20px;
    line-height: 30px;
}

.blog-grid__content-bg {
    position: absolute;
    top: -10px;
    left: 10px;
    right: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: .80;
}

.blog-one-sec--two.grid .blog-one__single-content .inner-content {
    padding: 23px 20px 20px;
}

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


/***
=====================================================
    Error Page
=====================================================
***/
.error-page {
    position: relative;
    display: block;
    padding: 84px 0px 120px;
    background: #ffffff;
}

.error-page__wrapper {
    position: relative;
    display: block;
}

.error-page__content {
    position: relative;
    display: block;
    margin-top: 20px;
}

.error-page__content h2 {
    color: transparent;
    -webkit-text-stroke: 4px var(--thm-black);
    font-size: 200px;
    line-height: 0.9em;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-page__content h3 {
    font-size: 60px;
    line-height: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
}

.error-page__content p {
    font-weight: 500;
    margin: 0px;
}

.error-page__content .btn-box {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 41px;
}


/***
=============================================
Team Details Top
=============================================
***/
.team-details-top {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 0px;
    z-index: 1;
}

.team-details-top__client-info {
    position: relative;
    display: block;
    background: #f1f3f8;
    padding: 35px 25px 35px;
}

.team-details-top__client-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.team-details-top__client-info .img-box img {
    width: 100%;
}

.team-details-top__client-info .content-box {
    position: relative;
    display: block;
    margin-top: 31px;
}

.team-details-top__client-info .content-box h2 {
    color: var(--thm-black);
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
}

.team-details-top__client-info .content-box span {
    color: var(--thm-black);
}

.team-details-top__client-info .content-box p {
    margin-top: 19px;
}


.team-details-top__client-info .content-box ul {
    position: relative;
    display: block;
    margin-top: 29px;
}

.team-details-top__client-info .content-box ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.team-details-top__client-info .content-box ul li:last-child {
    margin-right: 0;
}

.team-details-top__client-info .content-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover {
    background: var(--thm-base);
}

.team-details-top__client-info .content-box ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__client-info .content-box ul li a:hover span::before {
    color: #ffffff;
}

.team-details-top__content {
    position: relative;
    display: block;
    margin-top: -12px;
}

.team-details-top__content .title-box {
    position: relative;
    display: block;
    margin-bottom: 31px;
}

.team-details-top__content .title-box h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details-top__content .text-box {
    position: relative;
    display: block;
}

.team-details-top__content .text-box p {
    margin: 0;
}

.team-details-top__content-info {
    position: relative;
    display: block;
    margin-top: 24px;
}

.team-details-top__content-info-single {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.team-details-top__content-info-single ul li:last-child {
    margin-bottom: 0px;
}

.team-details-top__content-info-single ul li .title {
    position: relative;
    display: block;
    width: 95px;
}

.team-details-top__content-info-single ul li .title h5 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-details-top__content-info-single ul li .text {
    position: relative;
    display: block;
}

.team-details-top__content-info-single ul li .text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.team-details-top__content-info-single ul li .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details-top__content-info-single ul li .text p a:hover {
    color: var(--thm-base);
}

.team-details-top__content-btn {
    position: relative;
    display: block;
    margin-top: 44px;
}


/***
=============================================
Testimonials Three Testimonials
=============================================
***/
.testimonials-three--testimonials {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 90px;
}

.testimonials-three--testimonials .testimonials-three__single {
    margin-bottom: 30px;
}

/***
=============================================
Faq One Faq
=============================================
***/
.faq-one--faq {
    position: relative;
    display: block;
}

.faq-one--faq .faq-one__accordion {
    position: relative;
    display: block;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

















/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
    width: 270px;
    margin: 0;
}

#scrollbar1 .viewport {
    position: relative;
    width: 270px;
    height: 530px;
    overflow: hidden;
}

#scrollbar1 .overview {
    list-style: none;
    position: absolute;
    left: 15px;
    top: 0;
    padding: 0;
    margin: 0;
    max-width: 500px;
    width: 100%;
    height: 100%;
}

#scrollbar1 .scrollbar {
    position: absolute;
    top: 0;
    right: 0px;
    background: #e7e7e7;
    width: 4px;
}

#scrollbar1 .track {
    background: transparent;
    height: 100%;
    width: 4px;
    position: relative;
    padding: 0;
}

#scrollbar1 .thumb {
    background: #fa401b;
    background-image: none;
    height: 20px;
    width: 4px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0px;
    opacity: 1;
    z-index: 3;
}

#scrollbar1 .thumb .end {
    background: #353742 no-repeat 50% 0;
    overflow: hidden;
    height: 0px;
    width: 4px;
}

#scrollbar1 .disable {
    display: none;
}




.project-three-more-project-btn {
    position: relative;
    display: block;
    padding-top: 50px;
}
</pre></body></html>