/*--------------------------------------------------------------

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

# Utility

# Cards

# Common

# Form

# Navigations

# Animations

# Mobile Nav

# Search Popup

# Page Header

# Google Map

# Client Carousel

--------------------------------------------------------------*/



/*--------------------------------------------------------------

# Common

--------------------------------------------------------------*/

:root {

    --thm-font: 'Jost', sans-serif;

    --thm-reey-font: 'reeyregular';

    --thm-gray: #6f6f6f;

    --thm-gray-rgb: 111, 111, 111;

    --thm-primary: #76321b;

    --thm-primary-rgb: 254, 31, 7;

    --thm-black: #0d0d0d;

    --thm-black-rgb: 13, 13, 13;

    --thm-base: #ffffff;

    --thm-base-rgb: 255, 255, 255;

    --thm-extra: #e8e8e8;

    --thm-extra-rgb: 232, 232, 232;

}









.row {

    --bs-gutter-x: 30px;

}



.gutter-y-30 {

    --bs-gutter-y: 30px;

}



body {

    font-family: var(--thm-font);

    color: var(--thm-gray);

    font-size: 18px;

    line-height: 34px;

    font-weight: 400;

}



body.locked {

    overflow: hidden;

}



a {

    color: var(--thm-gray);

}



a,

a:hover,

a:focus,

a:visited {

    text-decoration: none;

}



::placeholder {

    color: inherit;

    opacity: 1;

}



h1,

h2,

h3,

h4,

h5,

h6 {

    color: var(--thm-black);

    margin: 0;

}



dl,

ol,

ul {

    margin-top: 0;

    margin-bottom: 0;

}



::placeholder {

    color: inherit;

    opacity: 1;

}





.page-wrapper {

    position: relative;

    margin: 0 auto;

    width: 100%;

    min-width: 300px;

    overflow: hidden;

}



.container {

    padding-left: 15px;

    padding-right: 15px;

}



@media (min-width: 1200px) {

    .container {

        max-width: 1200px;

    }

}



::placeholder {

    color: inherit;

    opacity: 1;

}



.section-separator {

    border-color: var(--thm-border);

    border-width: 1px;

    margin-top: 0;

    margin-bottom: 0;

}





.thm-btn {

    position: relative;

    display: inline-block;

    vertical-align: middle;

    -webkit-appearance: none;

    outline: none !important;

    background-color: var(--thm-base);

    color: var(--thm-black);

    font-size: 16px;

    font-weight: 600;

    padding: 16px 60px 16px;

    transition: all 0.5s linear;

    overflow: hidden;

    z-index: 1;

    border: 1px solid var(--thm-primary);

}



.thm-btn:after {

    position: absolute;

    content: "";

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    width: 5px;

    background-color: var(--thm-primary);

    transition-delay: .1s;

    transition-timing-function: ease-in-out;

    transition-duration: .5s;

    transition-property: all;

    opacity: 1;

    transform-origin: bottom;

    transform-style: preserve-3d;

    z-index: -1;

}



.thm-btn:hover:after {

    width: 100%;

    opacity: 1;

}



.thm-btn:hover {

    color: var(--thm-base);

}







.section-title {

    margin-top: -8px;

    margin-bottom: 48px;

}



.section-title__tagline {

    display: inline-flex;

    color: var(--thm-gray);

    font-size: 16px;

    align-items: center;

    line-height: 30px;

    margin-bottom: 3px;

}



.section-title__tagline::before {

    content: '';

    background-color: var(--thm-primary);

    width: 3px;

    height: 15px;

    margin-right: 10px;

}



.section-title__title {

    margin: 0;

    color: var(--thm-black);

    font-size: 50px;

    line-height: 60px;

    font-weight: 400;

}



.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,

.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,

.bootstrap-select .show>.btn-light.dropdown-toggle {

    box-shadow: none !important;

    outline: none !important;

}



.bootstrap-select>.dropdown-toggle {

    box-shadow: none !important;

}



.bootstrap-select .dropdown-toggle:focus,

.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {

    outline: none !important;

}



.bootstrap-select .dropdown-menu {

    border: 0;

    padding-top: 0;

    padding-bottom: 0;

    margin-top: 0;

    z-index: 991;

    border-radius: 0;

}



.bootstrap-select .dropdown-menu>li+li>a {

    border-top: 1px solid rgba(255, 255, 255, 0.2);

}



.bootstrap-select .dropdown-menu>li.selected>a {

    background: var(--thm-primary);

    color: #fff;

}



.bootstrap-select .dropdown-menu>li>a {

    font-size: 16px;

    font-weight: 500;

    padding: 4px 20px;

    color: #ffffff;

    background: var(--thm-black);

    -webkit-transition: all 0.4s ease;

    transition: all 0.4s ease;

}



.bootstrap-select .dropdown-menu>li>a:hover {

    background: var(--thm-primary);

    color: #fff;

    cursor: pointer;

}





.preloader {

    position: fixed;

    background-color: #fff;

    background-position: center center;

    background-repeat: no-repeat;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 9991;

    display: -webkit-box;

    display: flex;

    -webkit-box-pack: center;

    justify-content: center;

    -webkit-box-align: center;

    align-items: center;

    text-align: center;

}



.preloader__image {

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

    -webkit-animation-name: flipInY;

    animation-name: flipInY;

    -webkit-animation-duration: 2s;

    animation-duration: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

}



/* scroll to top */

.scroll-to-top {

    display: inline-block;

    width: 45px;

    height: 45px;

    background: var(--thm-primary);

    position: fixed;

    bottom: 40px;

    right: 40px;

    z-index: 99;

    text-align: center;

    -webkit-transition: all 0.4s ease;

    transition: all 0.4s ease;

    display: none;

    border-radius: 50%;

    transition: all 0.4s ease;

}



.scroll-to-top i {

    color: #ffffff;

    font-size: 18px;

    line-height: 45px;

}



.scroll-to-top:hover {

    background-color: var(--thm-black);

}



.scroll-to-top:hover i {

    color: #fff;

}



/*--------------------------------------------------------------

# Navigations One

--------------------------------------------------------------*/

.main-header {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    background: transparent;

    z-index: 999;

    transition: all 500ms ease;

}



.main-menu {

    position: relative;

    padding: 0 0;

    z-index: 91;

}



.main-menu-wrapper {

    position: relative;

    display: block;

}



.main-menu-wrapper:before {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    content: "";

    height: 1px;

    background-color: rgba(var(--thm-base-rgb), .10);

}



.main-menu-wrapper:after {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    content: "";

    height: 5px;

    background-color: var(--thm-primary);

}



.main-menu-wrapper-inner {

    position: relative;

    display: block;

}



.main-menu-wrapper__left {

    position: relative;

    display: block;

    float: left;

}



.main-menu-wrapper__logo {

    position: relative;

    float: left;

    margin-right: 70px;

}



.main-menu-wrapper__main-menu {

    position: relative;

    display: block;

    float: left;

}



.main-menu-wrapper__right {

    position: relative;

    display: flex;

    float: right;

    padding: 29.5px 0;

    align-items: center;

}



.main-menu-wrapper__call {

    position: relative;

    display: flex;

    align-items: center;

    float: left;

    margin-right: 50px;

}



.main-menu-wrapper__call-icon {

    height: 50px;

    width: 50px;

    background-color: transparent;

    font-size: 24px;

    color: var(--thm-base);

    display: flex;

    align-items: center;

    justify-content: center;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    border: 1px solid var(--thm-primary);

    border-radius: 50%;

}



.main-menu-wrapper__call:hover .main-menu-wrapper__call-icon {

    background-color: var(--thm-primary);

    color: var(--thm-base);

}







.main-menu-wrapper__call-number {

    margin-left: 20px;

}



.main-menu-wrapper__call-number a {

    color: var(--thm-base);

    font-size: 16px;

    font-weight: 500;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.main-menu-wrapper__call-number a:hover {

    color: var(--thm-primary);

}



.main-menu-wrapper__call-number p {

    font-size: 14px;

    margin: 0;

    line-height: 14px;

    font-weight: 300;

    opacity: .7;

    color: var(--thm-base);

}



.main-menu-wrapper__search-box {

    position: relative;

    display: block;

    float: right;

}



.main-menu-wrapper__search-box:before {

    position: absolute;

    top: -14px;

    bottom: -11px;

    left: 0;

    content: "";

    width: 1px;

    background-color: rgba(var(--thm-base-rgb), .10);

}



.main-menu-wrapper__search {

    position: relative;

    font-size: 24px;

    color: var(--thm-base);

    width: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 500ms ease;

}



.main-menu-wrapper__search:hover {

    color: var(--thm-primary);

}



.stricky-header.main-menu {

    padding: 0 0;

    background-color: var(--thm-black);

}



.main-menu .main-menu__list,

.main-menu .main-menu__list ul,

.stricky-header .main-menu__list,

.stricky-header .main-menu__list ul {

    margin: 0;

    padding: 0;

    list-style-type: none;

    align-items: center;

    display: none;

}



@media (min-width: 1200px) {



    .main-menu .main-menu__list,

    .main-menu .main-menu__list ul,

    .stricky-header .main-menu__list,

    .stricky-header .main-menu__list ul {

        display: flex;

    }

}



.main-menu .main-menu__list>li,

.stricky-header .main-menu__list>li {

    padding-top: 38px;

    padding-bottom: 37px;

    position: relative;

}



.main-menu .main-menu__list>li+li,

.stricky-header .main-menu__list>li+li {

    margin-left: 55px;

}



.main-menu .main-menu__list>li>a,

.stricky-header .main-menu__list>li>a {

    font-size: 16px;

    font-weight: 500;

    display: flex;

    align-items: center;

    color: var(--thm-base);

    position: relative;

    transition: all 500ms ease;

}



.main-menu .main-menu__list>li>a::before,

.stricky-header .main-menu__list>li>a::before {

    content: '';

    height: 12px;

    width: 3px;

    border-radius: 0px;

    background-color: var(--thm-primary);

    position: absolute;

    top: 16px;

    bottom: 0;

    left: -12px;

    transition: transform 500ms ease;

    transform: scale(0) translateY(-50%);

    z-index: -1;

}



.main-menu .main-menu__list>li.current>a,

.main-menu .main-menu__list>li:hover>a,

.stricky-header .main-menu__list>li.current>a,

.stricky-header .main-menu__list>li:hover>a {

    color: var(--thm-base);

}



.main-menu .main-menu__list>li.current>a::before,

.main-menu .main-menu__list>li:hover>a::before,

.stricky-header .main-menu__list>li.current>a::before,

.stricky-header .main-menu__list>li:hover>a::before {

    transform: scale(1) translateY(-50%);

}



.main-menu .main-menu__list>li.current>a::before {

    background-color: var(--thm-primary);

}



.main-menu .main-menu__list>li:hover>a::before {

    background-color: var(--thm-primary);

}



.main-menu .main-menu__list li ul,

.stricky-header .main-menu__list li ul {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 220px;

    background-color: #fff;

    flex-direction: column;

    justify-content: flex-start;

    align-items: flex-start;

    opacity: 0;

    visibility: hidden;

    transition: 500ms ease;

    z-index: 99;

    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);

}



.main-menu .main-menu__list li:hover>ul,

.stricky-header .main-menu__list li:hover>ul {

    opacity: 1;

    visibility: visible;

}



.main-menu .main-menu__list li ul li,

.stricky-header .main-menu__list li ul li {

    flex: 1 1 100%;

    width: 100%;

    position: relative;

}



.main-menu .main-menu__list li ul li+li,

.stricky-header .main-menu__list li ul li+li {

    border-top: 1px solid RGBA(var(--thm-black), 0.1);

}



.main-menu .main-menu__list li ul li a,

.stricky-header .main-menu__list li ul li a {

    font-size: 16px;

    line-height: 30px;

    color: var(--thm-black);

    display: flex;

    padding-left: 20px;

    padding-right: 20px;

    padding-top: 10px;

    padding-bottom: 10px;

    transition: 500ms;

}



.main-menu .main-menu__list li ul li:hover>a,

.stricky-header .main-menu__list li ul li:hover>a {

    background-color: var(--thm-primary);

    color: #fff;

}



.main-menu .main-menu__list li ul li>ul,

.stricky-header .main-menu__list li ul li>ul {

    top: 0;

    left: 100%;

}



.main-menu .main-menu__list li ul li>ul.right-align,

.stricky-header .main-menu__list li ul li>ul.right-align {

    top: 0;

    left: auto;

    right: 100%;

}



.main-menu .main-menu__list li ul li>ul ul,

.stricky-header .main-menu__list li ul li>ul ul {

    display: none;

}



.stricky-header {

    position: fixed;

    z-index: 991;

    top: 0;

    left: 0;

    background-color: #fff;

    width: 100%;

    visibility: hidden;

    transform: translateY(-120%);

    transition: transform 500ms ease, visibility 500ms ease;

    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

}



@media (max-width: 1199px) {

    .stricky-header {

        display: none !important

    }

}



.stricky-header.stricky-fixed {

    transform: translateY(0);

    visibility: visible;

}



.stricky-header .main-menu__inner {

    box-shadow: none;

    padding-right: 0;

    max-width: 1170px;

    width: 100%;

    margin: 0 auto;

}



.mobile-nav__buttons {

    display: flex;

    margin-left: auto;

    margin-right: 10px;

}



@media (min-width: 1200px) {

    .mobile-nav__buttons {

        display: none;

    }

}



.mobile-nav__buttons a {

    font-size: 20px;

    color: var(--thm-black);

    cursor: pointer;

}



.mobile-nav__buttons a+a {

    margin-left: 10px;

}



.mobile-nav__buttons a:hover {

    color: var(--thm-base);

}



.main-menu .mobile-nav__toggler {

    font-size: 20px;

    color: var(--thm-primary);

    cursor: pointer;

    transition: 500ms;

    margin-right: 20px;

}



.main-menu .mobile-nav__toggler:hover {

    color: var(--thm-base);

}



.main-menu-two .mobile-nav__toggler:hover {

    color: var(--thm-black);

}



@media (min-width: 1200px) {

    .main-menu .mobile-nav__toggler {

        display: none;

    }

}





/*--------------------------------------------------------------

# Navigations Two

--------------------------------------------------------------*/

.main-header-two {

    position: relative;

    display: block;

}



.main-menu-two {

    padding: 0 60px;

}



.main-menu-two-wrapper {

    position: relative;

    display: block;

}



.main-menu-two-wrapper__logo {

    position: relative;

    display: block;

    float: left;

    padding: 37.5px 0px;

}



.main-menu-two-wrapper__main-menu {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 79%;

    float: left;

}



.main-menu-two .main-menu__list>li>a,

.stricky-header .main-menu-two .main-menu__list>li>a {

    font-size: 16px;

    font-weight: 400;

    display: flex;

    align-items: center;

    color: var(--thm-gray);

    position: relative;

    transition: all 500ms ease;

}



.main-menu-two .main-menu__list>li.current>a,

.main-menu-two .main-menu__list>li:hover>a,

.stricky-header.main-menu-two .main-menu__list>li.current>a,

.stricky-header.main-menu-two .main-menu__list>li:hover>a {

    color: var(--thm-black);

    text-shadow: 0 0 1px currentColor;

}



.main-menu-two-wrapper__right {

    position: relative;

    display: block;

    float: right;

    padding: 42.5px 0;

}



.main-menu-two-wrapper__search-box {

    position: relative;

    display: block;

    float: left;

}



.main-menu-two-wrapper__search-box:before {

    position: absolute;

    top: -10px;

    bottom: -10px;

    right: 0;

    content: "";

    width: 1px;

    background-color: var(--thm-extra);

}



.main-menu-two-wrapper__search {

    font-size: 24px;

    color: var(--thm-black);

    display: flex;

    align-items: center;

    padding-right: 50px;

    transition: all 500ms ease;

}



.main-menu-two-wrapper__search:hover {

    color: var(--thm-primary);

}



.main-menu-two__social {

    position: relative;

    display: flex;

    float: right;

    align-items: center;

    margin-left: 50px;

    padding: 4.5px 0;

}



.main-menu-two__social a {

    font-size: 15px;

    color: var(--thm-black);

    display: flex;

    align-items: center;

    transition: all 500ms ease;

}



.main-menu-two__social a:hover {

    color: var(--thm-primary);

}



.main-menu-two__social a+a {

    margin-left: 20px;

}



.stricky-header.main-menu-two {

    padding: 0 50px;

    background-color: var(--thm-base);

}







/*--------------------------------------------------------------

# Mobile Nav

--------------------------------------------------------------*/

.mobile-nav__wrapper {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    opacity: 0;

    transform: translateX(-50%);

    transform-origin: right center;

    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;

    z-index: 999;

    visibility: hidden;

}



.mobile-nav__wrapper .container {

    padding-left: 0;

    padding-right: 0;

}



.mobile-nav__wrapper.expanded {

    opacity: 1;

    transform: translateX(0%);

    visibility: visible;

}



.mobile-nav__overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: #000000;

    opacity: 0.5;

    cursor: pointer;

}



.mobile-nav__content {

    width: 300px;

    background-color: var(--thm-black);

    z-index: 10;

    position: relative;

    height: 100%;

    overflow-y: auto;

    padding-top: 30px;

    padding-bottom: 30px;

    padding-left: 15px;

    padding-right: 15px;

}



.mobile-nav__content .thm-btn {

    padding: 8px 0;

    width: 100%;

    text-align: center;

}



.mobile-nav__content .logo-box {

    margin-bottom: 40px;

    display: flex;

}



.mobile-nav__close {

    position: absolute;

    top: 20px;

    right: 15px;

    font-size: 18px;

    color: var(--thm-text-dark);

    cursor: pointer;

}



.mobile-nav__content .main-menu__list,

.mobile-nav__content .main-menu__list ul {

    margin: 0;

    padding: 0;

    list-style-type: none;

}



.mobile-nav__content .main-menu__list ul {

    display: none;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

}



.mobile-nav__content .main-menu__list li:not(:last-child) {

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.mobile-nav__content .main-menu__list li a {

    display: flex;

    justify-content: space-between;

    line-height: 30px;

    color: #ffffff;

    font-size: 14px;

    font-family: var(--thm-font);

    font-weight: 500;

    height: 46px;

    align-items: center;

    transition: 500ms;

}



.mobile-nav__content .main-menu__list li a.expanded {

    color: var(--thm-secondary);

}



.mobile-nav__content .main-menu__list li a button {

    width: 30px;

    height: 30px;

    background-color: var(--thm-primary);

    border: none;

    outline: none;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    transform: rotate(-90deg);

    transition: transform 500ms ease;

}



.mobile-nav__content .main-menu__list li a button.expanded {

    transform: rotate(0deg);

    background-color: #fff;

    color: var(--thm-black);

}



.mobile-nav__content .main-menu__list li.cart-btn span {

    position: relative;

    top: auto;

    right: auto;

    transform: translate(0, 0);

}



.mobile-nav__content .main-menu__list li.cart-btn i {

    font-size: 16px;

}



.mobile-nav__top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

}



.mobile-nav__top .main-menu__login a {

    color: var(--thm-text-dark);

}



.mobile-nav__container {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.mobile-nav__social {

    display: flex;

    align-items: center;

}



.mobile-nav__social a {

    font-size: 16px;

    color: var(--thm-primary);

    transition: 500ms;

}



.mobile-nav__social a+a {

    margin-left: 30px;

}



.mobile-nav__social a:hover {

    color: #ffffff;

}



.mobile-nav__contact {

    margin-bottom: 0;

    margin-top: 20px;

    margin-bottom: 20px;

}



.mobile-nav__contact li {

    color: var(--thm-text-dark);

    font-size: 14px;

    font-weight: 500;

    position: relative;

    display: flex;

    align-items: center;

}



.mobile-nav__contact li+li {

    margin-top: 15px;

}



.mobile-nav__contact li a {

    color: #ffffff;

    transition: 500ms;

}



.mobile-nav__contact li a:hover {

    color: var(--thm-primary);

}



.mobile-nav__contact li>i {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background-color: var(--thm-primary);

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    font-size: 11px;

    margin-right: 10px;

    color: #fff;

}



.mobile-nav__container .main-logo,

.mobile-nav__container .topbar__buttons,

.mobile-nav__container .main-menu__language,

.mobile-nav__container .main-menu__login {

    display: none;

}



/*--------------------------------------------------------------

# Search Popup

--------------------------------------------------------------*/

.search-popup {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    z-index: 9999;

    padding-left: 20px;

    padding-right: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    transform: translateY(-110%);

    transition: transform 500ms ease, opacity 500ms ease;

}



.search-popup.active {

    transform: translateY(0%);

}



.search-popup__overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: var(--thm-black);

    opacity: 0.75;

    cursor: pointer;

}



.search-popup__content {

    width: 100%;

    max-width: 560px;

}



.search-popup__content form {

    display: flex;

    flex-wrap: wrap;

    position: relative;

    background-color: #fff;

    border-radius: 0px;

    overflow: hidden;

}



.search-popup__content form input[type="search"],

.search-popup__content form input[type="text"] {

    width: 100%;

    background-color: #fff;

    font-size: 16px;

    border: none;

    outline: none;

    height: 66px;

    padding-left: 30px;

}



.search-popup__content .thm-btn {

    padding: 0;

    width: 68px;

    height: 68px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    position: absolute;

    top: 0;

    right: -1px;

    border-radius: 0;

    background-color: var(--thm-primary);

    color: var(--thm-base);

    border: 0;

}



.search-popup__content .thm-btn:hover {

    background-color: var(--thm-black);

}



.search-popup__content .thm-btn i {

    margin: 0;

}



/*--------------------------------------------------------------

# Banner One

--------------------------------------------------------------*/

.main-slider {

    overflow: hidden;

    position: relative;

}



.main-slider .swiper-slide {

    position: relative;

    background-color: var(--thm-black);

}



.main-slider .swiper-slide .container {

    position: relative;

    z-index: 30;

}



.main-slider .image-layer {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-size: cover;

    transform: scale(1);

    transition: transform 7000ms ease;

    z-index: 1;

}



.main-slider .image-layer-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    content: "";

    background: rgba(var(--thm-black-rgb), .7);

    z-index: 2;

}



.main-slider .container {

    padding-top: 356px;

    padding-bottom: 255px;

}



.main-slider__content {

    position: relative;

    display: block;

    text-align: center;

}



.main-slider h2 {

    margin: 0;

    margin-bottom: 45px;

    color: var(--thm-base);

    font-weight: 400;

    opacity: 0;

    visibility: hidden;

    transform: translateY(120px);

    transition-delay: 1000ms;

    transition: transform 2000ms ease, opacity 2000ms ease;

    font-size: 100px;

    line-height: 100px;

    z-index: 2;

}



.main-slider .main-slider__sub-title {

    position: relative;

    display: inline-block;

    font-size: 20px;

    color: var(--thm-base);

    font-weight: 400;

    margin: 0;

    margin-bottom: 14px;

    line-height: 30px;

    opacity: 0;

    transform: translateY(100px);

    transition-delay: 2500ms;

    transition: transform 2000ms ease,

        opacity 2000ms ease,

        color 500ms ease,

        background 500ms ease;

    z-index: 2;

}



.main-slider .main-slider__sub-title:before {

    position: absolute;

    top: 7px;

    left: -13px;

    bottom: 8px;

    content: "";

    width: 3px;

    background-color: var(--thm-primary);

}



.main-slider__btn {

    background-color: transparent;

    color: var(--thm-base);

    opacity: 0;

    transform: translateY(100px);

    transition-delay: 2500ms;

    transition: transform 2000ms ease,

        opacity 2000ms ease,

        color 500ms ease,

        background 500ms ease;

    z-index: 2;

}



.main-slider .swiper-slide-active .main-slider__btn {

    visibility: visible;

    opacity: 1;

    transform: translateY(0) translateX(0);

}



.main-slider .swiper-slide-active .main-slider__sub-title {

    visibility: visible;

    opacity: .7;

    transform: translateY(0) translateX(0);

}



.main-slider .swiper-slide-active .image-layer {

    transform: scale(1.15);

}



.main-slider .swiper-slide-active h2 {

    visibility: visible;

    opacity: 1;

    transform: translateY(0) translateX(0);

}



.main-slider__nav {

    position: absolute;

    bottom: 50px;

    right: 50px;

    left: 50px;

    z-index: 1;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}





.main-slider__nav .swiper-button-next,

.main-slider__nav .swiper-button-prev {

    position: relative;

    top: auto;

    left: auto;

    right: auto;

    bottom: auto;

    z-index: 1;

    width: 50px;

    height: 50px;

    font-size: 11px;

    color: var(--thm-black);

    background-color: var(--thm-base);

    opacity: 1;

    margin: 0;

    text-align: center;

    border-radius: 50%;

    font-weight: 900;

    transition: all 500ms ease;

}





.main-slider__nav .swiper-button-next:hover,

.main-slider__nav .swiper-button-prev:hover {

    color: var(--thm-black);

    background-color: var(--thm-base);

    opacity: 0.15;

}



.main-slider__nav .swiper-button-next::after,

.main-slider__nav .swiper-button-prev::after {

    display: none;

}



.main-slider__nav .swiper-button-prev {

    margin-bottom: 0px;

}



.main-slider__nav .swiper-button-prev i {

    position: relative;

    display: inline-block;

    transform: rotate(180deg);

}



.main-slider__nav .swiper-button-prev .icon-right-arrow-angle,

.main-slider__nav .swiper-button-next .icon-right-arrow-angle {

    font-weight: bold;

}



#main-slider-pagination {

    z-index: 100;

    bottom: 59px;

    left: 50%;

    width: 100%;

    max-width: 1170px;

    -webkit-transform: translate(-50%, calc(-50% + 95px));

    transform: translate(-50%, calc(0% + 0px));

    text-align: center;

}



#main-slider-pagination .swiper-pagination-bullet {

    position: relative;

    display: inline-block;

    width: 10px;

    height: 10px;

    background: var(--thm-base);

    opacity: .20;

    margin: 0px 2.5px;

    padding: 0px;

    border-radius: 50%;

    transition: all 100ms linear;

    transition-delay: 0.1s;

    border: 2px solid transparent;

}



#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {

    margin-left: 2.5px;

}



#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {

    opacity: 1;

    background-color: transparent;

    border: 2px solid var(--thm-base);

}



.main-slider__date-time {

    position: absolute;

    top: 50%;

    left: -60px;

    transform: translateY(-50%);

    z-index: 100;

}



.main-slider__date-time p {

    position: relative;

    display: block;

    font-size: 14px;

    color: var(--thm-base);

    transform: rotate(-90deg);

    margin: 0;

}



.main-slider__date-time p span {

    margin-left: 20px;

}



.main-slider__social {

    position: absolute;

    top: 50%;

    right: 50px;

    transform: translateY(-50%);

    display: flex;

    z-index: 100;

    align-items: center;

    flex-direction: column;

}



.main-slider__social a {

    font-size: 15px;

    color: var(--thm-base);

    display: flex;

    align-items: center;

    transition: all 500ms ease

}



.main-slider__social a:hover {

    color: var(--thm-primary);

}



.main-slider__social a+a {

    margin-top: 25px;

}









/*--------------------------------------------------------------

# Main Slider Two

--------------------------------------------------------------*/

.main-slider-two {

    position: relative;

    display: block;

}



.main-slider-two .container {

    padding-top: 249px;

}



.main-slider-two .main-slider__content {

    text-align: left;

}



.main-slider-two .main-slider__sub-title:before {

    display: none;

}











/*--------------------------------------------------------------

# Welcome One

--------------------------------------------------------------*/

.welcome-one {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.welcome-one__outer-img {

    position: absolute;

    top: 0;

    right: 0;

}



.welcome-one__outer-img img {

    filter: grayscale(100%);

}



.welcome-one__outer-img-overly {position: absolute;top: 0;left: 0;right: 0;bottom: 0;background-color: #76321be3;}



.welcome-one-shape-1 {

    position: absolute;

    top: 170px;

    left: 0;

    -webkit-animation-name: shapeMover;

    animation-name: shapeMover;

    -webkit-animation-duration: 9s;

    animation-duration: 9s;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

}







.welcome-one-shape-2 {

    position: absolute;

    bottom: 207px;

    left: 150px;

}



.welcome-one-shape-2 img {

    -webkit-animation: animation1 5s ease-in infinite;

    animation: animation1 5s ease-in infinite;

}



.welcome-one__left {

    position: relative;

    display: block;

    margin-right: 70px;

}



.welcome-one__left .section-title {

    margin-bottom: 39px;

}



.welcome-one__text-1 {

    color: var(--thm-black);

    margin: 0;

    padding-bottom: 34px;

}



.welcome-one__text-2 {

    margin: 0;

}



.welcome-one__points-box {

    position: relative;

    display: flex;

    justify-content: space-between;

    margin-top: 40px;

    margin-bottom: 51px;

}



.welcome-one__points li {

    display: flex;

    align-items: center;

}



.welcome-one__points li .icon {

    height: 16px;

    width: 16px;

    font-size: 9px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    color: var(--thm-primary);

    display: flex;

    align-items: center;

    justify-content: center;

}



.welcome-one__points li .text {

    margin-left: 10px;

}



.welcome-one__points li .text p {

    color: var(--thm-black);

    margin: 0;

}



.welcome-one__right {

    position: relative;

    display: block;

}



.welcome-one__img-box {

    position: relative;

    display: block;

}



.welcome-one__img {

    position: relative;

    display: block;

    overflow: hidden;

}



.welcome-one__img::before {

    position: absolute;

    top: 50%;

    left: 50%;

    display: block;

    content: '';

    width: 0;

    height: 0;

    background: rgba(255, 255, 255, .2);

    border-radius: 50%;

    -webkit-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    opacity: 0;

    z-index: 10;

}



.welcome-one__img:hover:before {

    -webkit-animation: circle .75s;

    animation: circle .75s;

}



.welcome-one__img img {

    width: 100%;

}



.welcome-one__completed {

    position: absolute;

    bottom: 0;

    left: 0;

    background-color: var(--thm-base);

    padding: 35px 60px 30px;

}



.welcome-one__completed:before {

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: var(--thm-primary);

    width: 4px;

}



.welcome-one__completed h3 {

    font-size: 36px;

    color: var(--thm-black);

    font-weight: 400;

    font-family: var(--thm-font) !important;

    line-height: 36px !important;

}



.welcome-one__completed p {

    font-size: 16px;

    color: var(--thm-primary);

    font-weight: 400;

    margin: 0;

}



/*--------------------------------------------------------------

# Services One

--------------------------------------------------------------*/

.services-one {

    position: relative;

    display: block;

    padding: 0 0 120px;

}



.services-one__box {

    position: relative;

    display: block;

}



.services-one__single {

    position: relative;

    max-width: 390px;

    width: 100%;

    float: left;

    border: 2px solid var(--thm-extra);

    padding: 60px 60px 47px;

    background-color: var(--thm-base);

    transition: all 500ms ease;

}



.services-one__single:hover {

    background-color: var(--thm-base);

    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);

    z-index: 2;

}



.services-one__single:nth-child(2) {

    border-left: 0;

}



.services-one__single:nth-child(3) {

    border-left: 0;

}



.services-one__single:nth-child(4) {

    border-top: 0;

}



.services-one__single:nth-child(5) {

    border-left: 0;

    border-top: 0;

}



.services-one__icon span {

    font-size: 65px;

    color: var(--thm-black);

    transition: all 500ms ease;

}



.services-one__single:hover .services-one__icon span {

    color: var(--thm-primary);

}



.services-one__title {

    font-size: 24px;

    font-weight: 400;

    line-height: 29px;

    margin-top: 30px;

    margin-bottom: 14px;

}



.services-one__title a {

    color: var(--thm-black);

    transition: all 500ms ease;

}



.services-one__single:hover .services-one__title a {

    color: var(--thm-primary);

}



.services-one__text {

    margin: 0;

    font-weight: 300;

}



/*--------------------------------------------------------------

# Discover World

--------------------------------------------------------------*/

.discover-world {

    position: relative;

    display: block;

}



.discover-world__container {

    position: relative;

    display: block;

    max-width: 1440px;

    width: 100%;

    padding: 0 15px;

    margin: 0 auto;

}



.discover-world__inner {

    position: relative;

    display: block;

    padding: 110px 0 120px;

    z-index: 1;

}



.discover-world-shape-1 {

    position: absolute;

    top: -183px;

    right: 225px;

    -webkit-animation-name: squareMover;

    animation-name: squareMover;

    -webkit-animation-duration: 10s;

    animation-duration: 10s;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -webkit-animation-delay: 2s;

    animation-delay: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-perspective: 100px;

    perspective: 100px;

    -webkit-transform-origin: center center;

    transform-origin: center center;

}



.discover-world-shape-2 {

    position: absolute;

    right: -95px;

    top: -90px;

    -webkit-animation-name: shapeMover;

    animation-name: shapeMover;

    -webkit-animation-duration: 9s;

    animation-duration: 9s;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    z-index: -1;

}



.discover-world-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    z-index: -1;

}



.discover-world-bg:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: rgba(var(--thm-black-rgb), .70);

    z-index: -1;

}



.discover-world__title {

    font-size: 60px;

    color: var(--thm-base);

    font-weight: 500;

    line-height: 73px;

    margin-bottom: 45px;

    text-align: center;

}



.discover-world__video-link {

    position: relative;

    display: block;

}



.discover-world__video-icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 108px;

    height: 108px;

    line-height: 108px;

    text-align: center;

    font-size: 25px;

    color: var(--thm-base);

    background-color: var(--thm-primary);

    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;

}



.discover-world__video-icon:hover {

    background-color: var(--thm-base);

    color: var(--thm-primary);

}



.discover-world__video-icon:before {

    position: absolute;

    top: -20px;

    left: -20px;

    right: -20px;

    bottom: -20px;

    content: "";

    border-radius: 50%;

    background-color: var(--thm-base);

    z-index: -1;

    opacity: 0.05;

}



.discover-world__video-link .ripple,

.discover-world__video-icon .ripple:before,

.discover-world__video-icon .ripple:after {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 150px;

    height: 150px;

    transform: translate(-50%, -50%);

    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);

    -o-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);

    box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);

    -webkit-animation: ripple 3s infinite;

    animation: ripple 3s infinite;

    border-radius: 50%;

}



.discover-world__video-icon .ripple:before {

    -webkit-animation-delay: 0.9s;

    animation-delay: 0.9s;

    content: "";

    position: absolute;

}



.discover-world__video-icon .ripple:after {

    -webkit-animation-delay: 0.6s;

    animation-delay: 0.6s;

    content: "";

    position: absolute;

}



.discover-world__running {

    position: absolute;

    bottom: -190px;

    right: 120px;

    background-color: var(--thm-primary);

    padding: 50px 72px 44px 60px;

}



.discover-world__running span {

    position: relative;

    display: inline-block;

    font-size: 65px;

    color: var(--thm-base);

    transition: all 500ms linear;

    transition-delay: 0.1s;

}



.discover-world__running:hover span {

    transform: rotateY(360deg);

}



.discover-world__running h3 {

    font-size: 30px;

    color: var(--thm-base);

    font-weight: 400;

    line-height: 32px;

    margin-top: 20px;

}



/*--------------------------------------------------------------

# We Shape

--------------------------------------------------------------*/

.we-shape {

    position: relative;

    display: block;

    background-color: var(--thm-black);

    margin-top: -120px;

}



.we-shape-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    opacity: 0.03;

}



.we-shape__top {

    position: relative;

    display: block;

    padding: 232px 0 100px;

    border-bottom: 1px solid rgba(var(--thm-base-rgb), .10);

    margin-bottom: 93px;

}



.we-shape__top-title {

    position: relative;

    display: block;

}



.we-shape__top-title h2 {

    font-size: 60px;

    color: var(--thm-base);

    font-weight: 500;

    line-height: 70px;

    margin-bottom: 46px;

}



.we-shape__top-btn {

    background-color: transparent;

    color: var(--thm-base);

}



.we-shape__bottom {

    position: relative;

    display: block;

    padding: 0 0 65px;

}



.we-shape__single {

    position: relative;

    display: flex;

    margin-bottom: 30px;

}



.we-shape__icon {

    position: relative;

    display: block;

    top: 6px;

}



.we-shape__icon span {

    font-size: 65px;

    color: var(--thm-primary);

    position: relative;

    display: inline-block;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.we-shape__single:hover .we-shape__icon span {

    transform: scale(1.2);

    color: var(--thm-base);

}



.we-shape__content {

    margin-left: 30px;

}



.we-shape__content h4 {

    font-size: 20px;

    color: var(--thm-base);

    font-weight: 500;

    line-height: 30px;

    margin-bottom: 12px;

}



.we-shape__content p {

    font-size: 16px;

    color: var(--thm-base);

    opacity: .7;

    margin: 0;

    line-height: 30px;

}



/*--------------------------------------------------------------

# Grow And Experience

--------------------------------------------------------------*/

.grow-and-experience {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.grow-and-experience-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    filter: grayscale(100%);

}



.grow-and-experience-bg-overly {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgb(246, 246, 246);

    opacity: 0.9;

}



.grow-and-experience__left {

    position: relative;

    display: block;

    margin-right: 80px;

}



.grow-and-experience__left .section-title {

    margin-bottom: 28px;

}



.grow-and-experience__text {

    margin: 0;

    font-weight: 300;

    margin-bottom: 39px;

}



.grow-and-experience__progress {

    display: flex;

    align-items: center;

    line-height: 0;

}



.grow-and-experience__progress-wrap {

    display: grid;

    grid-template-columns: 1fr;

    grid-gap: 20px;

}



@media (min-width: 768px) {

    .grow-and-experience__progress-wrap {

        grid-template-columns: repeat(2, 249px);

    }

}



.grow-and-experience__progress-box {

    position: relative;

    display: inline-block;

}



.grow-and-experience__progress-box canvas {

    transform: rotate(90deg);

}



.grow-and-experience__progress-box span {

    position: absolute;

    top: 50%;

    left: 50%;

    display: block;

    transform: translateY(-50%) translateX(-50%);

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    color: var(--thm-gray);

}



.grow-and-experience__progress h3 {

    margin: 0;

    font-size: 20px;

    line-height: 30px;

    font-weight: 400;

    color: var(--thm-black);

    width: 120px;

    margin-left: 20px;

}



.faq-one-accrodion .accrodion {

    position: relative;

    display: block;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    border-radius: 0;

    background-color: var(--thm-base);

    border: 1px solid transparent;

}



.faq-one-accrodion .accrodion.active {

    border: 1px solid var(--thm-extra);

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);

}



.faq-one-accrodion .accrodion:before {

    position: absolute;

    bottom: -1px;

    left: -1px;

    right: -1px;

    height: 10px;

    content: "";

    background-color: var(--thm-primary);

    transform: scaleX(0);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    z-index: 1;

}



.faq-one-accrodion .accrodion.active:before {

    transform: scaleX(1);

}



.faq-one-accrodion .accrodion-title {

    position: relative;

    display: block;

    cursor: pointer;

    padding: 26px 40px 26px;

    padding-right: 27px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

    border-bottom: 1px solid transparent;

}



.faq-one-accrodion .accrodion-title h4 {

    margin: 0;

    font-size: 18px;

    font-weight: 400;

    line-height: 28px;

    color: var(--thm-black);

    position: relative;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.faq-one-accrodion .accrodion+.accrodion {

    margin-top: 20px;

}



.faq-one-accrodion .accrodion.active .accrodion-title {

    background-color: var(--thm-base);

}



.faq-one-accrodion .accrodion.active .accrodion-title h4 {

    color: var(--thm-black);

}



.faq-one-accrodion .accrodion-title h4::before {

    content: "\f106";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    font-size: 17px;

    color: var(--thm-black);

    ;

    position: absolute;

    top: 50%;

    right: 0;

    height: 35px;

    width: 35px;

    border-radius: 50%;

    text-align: center;

    display: flex;

    justify-content: center;

    align-items: center;

    -webkit-transform: translateY(-50%);

    transform: translateY(-50%);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.faq-one-accrodion .accrodion.active .accrodion-title h4::before {

    content: "\f107";

    color: var(--thm-primary);

    ;

    height: 35px;

    width: 35px;

    border-radius: 50%;

    text-align: center;

    display: flex;

    justify-content: center;

    align-items: center;

}



.faq-one-accrodion .accrodion-content {

    position: relative;

    padding: 0px 40px 40px;

}



.faq-one-accrodion .accrodion.active .accrodion-content {

    background-color: var(--thm-base);

}



.faq-one-accrodion .accrodion-content p {

    margin: 0;

    font-size: 16px;

    font-weight: 500;

    line-height: 30px;

}



/*--------------------------------------------------------------

# Three Boxes

--------------------------------------------------------------*/

.three-boxes {

    position: relative;

    display: block;

    padding: 120px 0 90px;

}



.three-boxes__single {

    position: relative;

    display: block;

    margin-bottom: 30px;

}



.three-boxes__img {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1

}



.three-boxes__img:before {

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    margin: 10px;

    background-color: rgba(var(--thm-black-rgb), 0.8);

    position: absolute;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;

    visibility: hidden;

    opacity: 0;

    transform: translateY(-30%);

    content: "";

    z-index: 1;

}



.three-boxes__single:hover .three-boxes__img:before {

    visibility: visible;

    transform: translateY(0%);

    opacity: 1;

}



.three-boxes__img img {

    width: 100%;

    transition: transform 500ms ease;

    transform: scale(1);

}



.three-boxes__single:hover .three-boxes__img img {

    transform: scale(1.05);

}



.three-boxes__content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translateY(-50%) translateX(-50%);

    text-align: center;

    z-index: 2;

}



.three-boxes__content h3 {

    font-size: 30px;

    color: var(--thm-base);

    font-weight: 500;

    line-height: 36px;

}



/*--------------------------------------------------------------

# Inspire

--------------------------------------------------------------*/

.inspire {

    position: relative;

    display: block;

    z-index: 1;

}



.inspire__container {

    position: relative;

    display: block;

    max-width: 1410px;

    width: 100%;

    margin: 0 auto;

    padding: 120px 0 120px;

}



.inspire-bg {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    z-index: -1;

}



.inspire-bg-overly {position: absolute;top: 0;bottom: 0;left: 0;right: 0;content: "";background-color: #76321be3;z-index: -1;}



.inspire-bg.jarallax div div {

    filter: grayscale(100%);

}



.inspire__left {

    position: relative;

    display: block;

    margin-right: 82px;

}



.inspire__carousel {

    position: relative;

    display: block;

}



.inspire__single {

    position: relative;

    display: block;

}



.inspire__quote {

    position: relative;

    display: block;

    margin-bottom: 16px;

}



.inspire__quote span {

    font-size: 75px;

    color: var(--thm-base);

}



.inspire__text {

    font-size: 30px;

    color: var(--thm-base);

    line-height: 50px;

    margin: 0;

}



.inspire__client-info {

    position: relative;

    display: block;

    margin-top: 32px;

}



.inspire__clinet-name {

    font-size: 34px;

    color: var(--thm-base);

    font-weight: 400;

    line-height: 44px;

    margin-bottom: 12px;

}



.inspire__clinet-title {

    font-size: 16px;

    color: var(--thm-base);

    line-height: 26px;

    margin: 0;

}



.inspire__right {

    position: relative;

    display: block;

}



.inspire__counter {

    position: relative;

    display: block;

}



.inspire__counter li {

    position: relative;

    display: flex;

    align-items: center;

    padding-left: 50px;

    padding-top: 35px;

    padding-bottom: 40px;

    z-index: 1;

}



.inspire__counter li:before {position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: "";background-color: #76321ba1;z-index: -1;}



.inspire__counter li+li {

    margin-top: 2px;

}



.inspire__icon {

    display: flex;

    align-items: center;

    position: relative;

    top: 4px;

}



.inspire__icon span {

    position: relative;

    display: inline-block;

    font-size: 65px;

    color: var(--thm-base);

    transition: all 500ms ease;

}



.inspire__counter li:hover .inspire__icon span {

    transform: rotateY(180deg);

}



.inspire__content {

    margin-left: 30px;

}



.inspire__content h2 {

    font-size: 40px;

    color: var(--thm-base);

    font-weight: 400;

    line-height: 40px !important;

    font-family: var(--thm-font) !important;

}



.inspire__content p {

    font-size: 16px;

    color: var(--thm-base);

    margin: 0;

    line-height: 18px;

}



.inspire__content .odometer-formatting-mark {

    display: none;

}



/*--------------------------------------------------------------

# Inspire

--------------------------------------------------------------*/

.project-one {

    position: relative;

    display: block;

    padding: 120px 0 170px;

}



.project-one:before {

    position: absolute;

    top: -120px;

    left: 0;

    right: 0;

    content: "";

    height: 580px;

    background-color: #f6f6f6;

    z-index: -1;

}



.project-one .container {

    max-width: 1000px;

}



.project-one__carousel {

    position: relative;

    display: block;

}



.project-one__carousel.owl-carousel .owl-stage-outer {

    overflow: visible;

    padding: 0px 0px 0px;

}



.project-one__carousel.owl-carousel .owl-dots {

    position: absolute;

    bottom: -50px;

    right: 0px;

    left: 0;

    margin: 0 !important;

    display: flex;

    align-items: center;

    justify-content: center;

}



.project-one__carousel.owl-carousel .owl-dots .owl-dot {

    position: relative;

    display: inline-block;

    width: 10px;

    height: 10px;

    background: var(--thm-black);

    opacity: .20;

    margin: 0px 2.5px;

    padding: 0px;

    border-radius: 50%;

    transition: all 100ms linear;

    transition-delay: 0.1s;

    border: 2px solid transparent;

}



.project-one__carousel.owl-carousel .owl-dot.active {

    opacity: 1;

    background-color: transparent;

    border: 2px solid var(--thm-primary);

}



.project-one__carousel.owl-carousel .owl-dot:focus {

    outline: none;

}



.project-one__carousel.owl-carousel .owl-dots .owl-dot span {

    display: none;

}



.project-one__single {

    position: relative;

    display: block;

}



.project-one__img {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1;

}



.project-one__img:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: rgba(var(--thm-black-rgb), .30);

    transform: scale(1, 0);

    transition: transform 500ms ease;

    transform-origin: top center;

    z-index: 1;

}



.project-one__single:hover .project-one__img:before {

    transform: scale(1, 1);

    transform-origin: bottom center;

}



.project-one__img img {

    width: 100%;

    transform: scale(1);

    transition: transform 500ms ease;

}



.project-one__single:hover .project-one__img img {

    transform: scale(1.05);

}



.project-one__content {

    position: absolute;

    bottom: 0;

    left: 0;

    background-color: var(--thm-base);

    padding-top: 36px;

    padding-bottom: 36px;

    padding-left: 50px;

    padding-right: 100px;

    z-index: 2;

}



.project-one__content:before {

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    width: 0%;

    content: "";

    background-color: var(--thm-primary);

    z-index: -1;

    transform: translateY(100%);

    transition: all 500ms ease;

}



.project-one__single:hover .project-one__content:before {

    transform: translateY(0);

    width: 100%;

}



.project-one__tagline {

    font-size: 12px;

    color: var(--thm-gray);

    font-weight: 300;

    line-height: 22px;

    transition: all 500ms ease;

}



.project-one__single:hover .project-one__tagline {

    color: var(--thm-base);

}



.project-one__tagline span {

    padding-right: 3px;

    padding-left: 3px;

}



.project-one__tilte {

    font-size: 24px;

    line-height: 34px;

    font-weight: 400;

}



.project-one__tilte>a {

    color: var(--thm-black);

    transition: all 500ms ease;

}



.project-one__tilte>a:hover {

    color: var(--thm-base);

}



.project-one__single:hover .project-one__tilte>a {

    color: var(--thm-base);

}



.project-one__arrow {

    position: absolute;

    top: 0;

    right: 0;

}



.project-one__arrow>a {

    height: 40px;

    width: 40px;

    background-color: #f3f3f3;

    color: var(--thm-black);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;

    transition: all 500ms ease;

}



.project-one__arrow>a .icon-right-arrow-angle {

    font-weight: bold;

}



.project-one__single:hover .project-one__arrow>a {

    background-color: var(--thm-black);

    color: var(--thm-base);

}



/*--------------------------------------------------------------

# Brand One

--------------------------------------------------------------*/

.brand-one {

    position: relative;

    display: block;

}



.brand-one__inner {

    position: relative;

    display: block;

    border-top: 1px solid var(--thm-extra);

    padding: 98px 0 99px;

}



.brand-one .swiper-slide {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

}



.brand-one .swiper-slide img {

    -webkit-transition: 500ms;

    transition: 500ms;

    opacity: 0.3;

    max-width: 100%;

}



.brand-one .swiper-slide img:hover {

    opacity: 1;

}



/*--------------------------------------------------------------

# Google Map

--------------------------------------------------------------*/

.google-map {

    position: relative;

    display: block;

}



.google-map__one {

    position: relative;

    display: block;

    border: none;

    height: 550px;

    width: 100%;

}



/*--------------------------------------------------------------

# News One

--------------------------------------------------------------*/

.news-one {

    position: relative;

    display: block;

    padding: 120px 0 60px;

}



.news-one__single {

    position: relative;

    display: block;

    margin-bottom: 30px;

}



.news-one__img {

    position: relative;

    display: block;

    overflow: hidden;

}



.news-one__img img {

    width: 100%;

    transition: all 500ms ease;

    transform: scale(1);

}



.news-one__single:hover .news-one__img img {

    transform: scale(1.05);

}



.news-one__img>a {

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgba(var(--thm-black-rgb), 0.4);

    position: absolute;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    color: var(--thm-base);

    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;

    visibility: hidden;

    opacity: 0;

    transform: translateY(-30%);

}



.news-one__img>a>span {

    position: relative;

}



.news-one__img>a>span::before {

    content: '';

    width: 20px;

    height: 2px;

    background-color: var(--thm-base);

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    transition: all 500ms ease;

}



.news-one__img>a>span::after {

    content: '';

    transition: all 500ms ease;

    width: 2px;

    height: 20px;

    background-color: var(--thm-base);

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}



.news-one__img>a:hover>span::before,

.news-one__img>a:hover>span::after {

    background-color: var(--thm-primary);

}



.news-one__single:hover .news-one__img>a {

    visibility: visible;

    transform: translateY(0%);

    opacity: 1;

}



.news-one__date-box {

    position: absolute;

    bottom: 0;

    left: 50px;

    background-color: var(--thm-base);

    padding: 7px 20px 6px;

}



.news-one__date-box p {

    font-size: 12px;

    margin: 0;

    line-height: 22px;

}



.news-one__content {

    position: relative;

    display: block;

    padding: 20px 50px 50px;

    border: 1px solid var(--thm-extra);

    border-top: 0;

}



.news-one__content:before {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    content: "";

    background-color: var(--thm-extra);

    height: 11px;

}



.news-one__meta {

    display: flex;

    -webkit-box-align: center;

    align-items: center;

    margin: 0;

}



.news-one__meta li {

    font-size: 12px;

    color: var(--thm-gray);

    font-weight: 400;

}



.news-one__meta li+li {

    margin-left: 12px;

}



.news-one__meta li a {

    color: var(--thm-gray);

    transition: all 500ms ease;

}



.news-one__meta li a:hover {

    color: var(--thm-primary);

}



.news-one__meta li a i {

    color: var(--thm-primary);

}



.news-one__title {

    font-size: 24px;

    font-weight: 500;

    line-height: 34px;

}



.news-one__title a {

    color: var(--thm-black);

    transition: all 500ms ease;

}



.news-one__title a:hover {

    color: var(--thm-primary);

}



.news-one__read-more {

    position: relative;

    display: block;

    background-color: var(--thm-primary);

    margin-top: -11px;

    transform: scaleY(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    -webkit-transition: all 0.4s linear;

    -o-transition: all 0.4s linear;

    transition: all 0.4s linear;

    transform-origin: top center;

    z-index: 2;

}



.news-one__single:hover .news-one__read-more {

    transform: scaleY(1.0);

}



.news-one__read-more>a {

    display: block;

    font-size: 14px;

    font-weight: 500;

    color: var(--thm-base);

    padding-left: 50px;

    padding-top: 3px;

    padding-bottom: 3px;

}



.news-one__read-more>a>i {

    font-size: 15px;

    margin-left: 15px;

    position: relative;

    top: 2px;

}



/*--------------------------------------------------------------

# News Two

--------------------------------------------------------------*/

.news-two {

    padding-bottom: 90px;

}



.news-two .news-one__content:before {

    width: 100%;

    transition: all 500ms ease;

}



.news-two .news-one__single:hover .news-one__content:before {

    width: 0%;

}



/*--------------------------------------------------------------

# Site Footer

--------------------------------------------------------------*/

.site-footer {

    position: relative;

    display: block;

}



.site-footer-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

    filter: grayscale(100%);

    z-index: -1;

}



.site-footer-bg-overly {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgba(var(--thm-black-rgb), .9);

    z-index: -1;

}



.site-footer__top {

    position: relative;

    display: block;

    margin-bottom: 91px;

}



.site-footer__call-and-social {

    position: relative;

    display: flex;

    align-items: center;

    padding-top: 70px;

}



.site-footer__call {

    margin-right: 40px;

}



.site-footer__call p {

    font-size: 24px;

    color: #9e9e9e;

    margin: 0;

    font-weight: 300;

}



.site-footer__call p a {

    color: var(--thm-base);

    font-weight: 400;

    transition: all 500ms ease;

}



.site-footer__call p a:hover {

    color: var(--thm-primary);

}



.site-footer__social {

    display: flex;

    align-items: center;

}



.site-footer__social a {

    position: relative;

    height: 40px;

    width: 40px;

    font-size: 14px;

    border: 1px solid #404040;

    color: #9e9e9e;

    display: flex;

    align-items: center;

    justify-content: center;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    z-index: 1;

}



.site-footer__social a:hover {

    color: var(--thm-primary);

    border: 1px solid transparent;

}



.site-footer__social a:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: var(--thm-base);

    transform: scale(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);

    z-index: -1;

}



.site-footer__social a:hover:before {

    transform: scaleX(1.0);

}



.site-footer__social a+a {

    margin-left: 10px;

}



.footer-widget__title {

    font-size: 22px;

    color: var(--thm-base);

    line-height: 32px;

    margin-bottom: 30px;

}



.footer-widget__contact-text {

    font-size: 16px;

    color: #9e9e9e;

    line-height: 34px;

    margin: 0;

}



.footer-widget__contact-phone-and-email {

    font-size: 16px;

    font-weight: 500;

    line-height: 34px;

}



.footer-widget__contact-email {

    color: var(--thm-base);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.footer-widget__contact-email:hover {

    color: var(--thm-primary);

}



.footer-widget__contact-phone {

    color: var(--thm-base);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.footer-widget__contact-phone:hover {

    color: var(--thm-primary);

}



.footer-widget__links {

    position: relative;

    display: block;

    margin-right: 38px;

}



.footer-widget__links-list {

    position: relative;

    display: block;

    float: left;

}



.footer-widget__links-list li a {

    position: relative;

    display: inline-block;

    font-size: 16px;

    color: #9e9e9e;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.footer-widget__links-list li a:hover {

    color: var(--thm-base);

}



.footer-widget__links-list li a:before {

    position: absolute;

    top: 11px;

    bottom: 11px;

    left: -10px;

    content: "";

    width: 3px;

    background-color: var(--thm-primary);

    transition: transform 500ms ease;

    transform: scale(0);

}



.footer-widget__links-list li a:hover:before {

    transform: scale(1);

}



.footer-widget__links-list-two {

    float: right;

}



.footer-widget__newsletter-form {

    position: relative;

    display: block;

    margin-top: -17px;

}



.footer-widget__newsletter-input-box {

    position: relative;

    display: block;

}



.footer-widget__newsletter-input-box:before {

    position: absolute;

    bottom: -3px;

    left: 0;

    right: 0;

    content: "";

    height: 3px;

    background-color: rgba(var(--thm-base-rgb), .20);

    border-radius: 0;

}



.footer-widget__newsletter-input-box input[type="email"] {

    font-size: 16px;

    color: #9e9e9e;

    font-weight: 400;

    height: 70px;

    width: 100%;

    background: transparent;

    border: none;

    border-radius: 0;

    padding-right: 60px;

    outline: none;

}



.footer-widget__newsletter-btn {

    position: absolute;

    top: 50%;

    right: 0;

    height: 70px;

    width: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: transparent;

    border: 0;

    opacity: 0;

    transform: translateY(-50%);

    transition: all 500ms ease;

    padding: 0;

}



.footer-widget__newsletter-bottom {

    display: flex;

    align-items: center;

    margin-top: 25px;

}



.footer-widget__newsletter-bottom-icon {

    height: 18px;

    width: 18px;

    border: 1px solid rgba(var(--thm-base-rgb), .20);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.footer-widget__newsletter-bottom-icon i {

    font-size: 8px;

    color: #9e9e9e;

}



.footer-widget__newsletter-bottom-text {

    margin-left: 10px;

}



.footer-widget__newsletter-bottom-text p {

    font-size: 16px;

    margin: 0;

    color: #9e9e9e;

    font-weight: 400;

}



.site-footer__copy-right {

    position: relative;

    display: block;

    padding: 60px 0 52px;

}



.site-footer__copy-right-inner {

    position: relative;

    display: block;

}



.site-footer__copy-right-text {

    font-size: 16px;

    color: #9e9e9e;

    margin: 0;

}



.site-footer__copy-right-text a {

    color: #9e9e9e;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.site-footer__copy-right-text a:hover {

    color: var(--thm-base);

}



/*--------------------------------------------------------------

# Get To Know

--------------------------------------------------------------*/

.get-to-know {

    position: relative;

    display: block;

    padding: 0 0 120px;

}



.get-to-know-shape-1 {

    position: absolute;

    top: 115px;

    right: 200px;

    -webkit-animation-name: squareMover;

    animation-name: squareMover;

    -webkit-animation-duration: 10s;

    animation-duration: 10s;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -webkit-animation-delay: 2s;

    animation-delay: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-perspective: 100px;

    perspective: 100px;

    -webkit-transform-origin: center center;

    transform-origin: center center;

}



.get-to-know-shape-2 {

    position: absolute;

    bottom: 145px;

    right: 125px;

}



.get-to-know-shape-2 img {

    -webkit-animation: animation1 5s ease-in infinite;

    animation: animation1 5s ease-in infinite;

}



.get-to-know__left {

    position: relative;

    display: block;

}



.get-to-know__img-box {

    position: relative;

    display: block;

    margin-left: -362px;

    margin-right: 321px;

}



.get-to-know__img {

    position: relative;

    display: block;

}



.get-to-know__img img {

    width: 100%;

}



.get-to-know__content {

    position: absolute;

    right: -300px;

    top: 0;

    max-width: 300px;

    width: 100%;

    background-color: var(--thm-primary);

    padding-top: 60px;

    padding-bottom: 60px;

    padding-left: 58px;

    padding-right: 56px;

}



.get-to-know__icon span {

    position: relative;

    display: inline-block;

    font-size: 65px;

    color: var(--thm-base);

    transition: all 500ms linear;

    transition-delay: 0.1s;

}



.get-to-know__content:hover .get-to-know__icon span {

    transform: rotateY(180deg);

}



.get-to-know__text-1 {

    font-size: 30px;

    color: var(--thm-base);

    margin: 0;

    line-height: 40px;

    padding-top: 23px;

    padding-bottom: 42px;

}



.get-to-know__text-2 {

    color: var(--thm-base);

    margin: 0;

    padding-bottom: 123px;

}



.get-to-know__btn {

    border: 1px solid var(--thm-base);

    background-color: var(--thm-primary);

    padding: 11px 40px 11px;

    color: var(--thm-base);

}



.get-to-know__btn:after {

    background-color: var(--thm-base);

}



.get-to-know__btn:hover {

    color: var(--thm-primary);

}



.get-to-know__right {

    position: relative;

    display: block;

    padding-top: 120px;

    margin-left: 70px;

}



.get-to-know__right .section-title {

    margin-bottom: 29px;

}



.get-to-know__right-text-1 {

    color: var(--thm-black);

    font-weight: 500;

    margin: 0;

}



.get-to-know__right-text-2 {

    margin: 0;

    padding-top: 33px;

    padding-bottom: 39px;

}



.get-to-know__points {

    position: relative;

    display: flex;

    align-items: center;

    margin-bottom: 58px;

}



.get-to-know__points li {

    display: flex;

    align-items: center;

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0, .07);

    padding: 11px 25px 10px;

}



.get-to-know__points li+li {

    margin-left: 25px;

}



.get-to-know__points li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.get-to-know__points li .text {

    margin-left: 10px;

}



.get-to-know__points li .text p {

    font-size: 16px;

    font-weight: 500;

    color: var(--thm-black);

    margin: 0;

}



.get-to-know__founder {

    font-size: 30px;

    color: var(--thm-primary);

    font-family: var(--thm-reey-font);

    line-height: 40px;

    font-weight: 400;

}



.get-to-know__founder span {

    font-size: 18px;

    color: var(--thm-black);

    font-family: var(--thm-font);

}



/*--------------------------------------------------------------

# Discover World Two

--------------------------------------------------------------*/

.discover-world-two {

    position: relative;

    display: block;

    padding: 110px 0 120px;

}



.discover-world-two-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    z-index: -1;

}



.discover-world-two-bg:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: rgba(var(--thm-black-rgb), .70);

    z-index: -1;

}



/*--------------------------------------------------------------

# Project Two

--------------------------------------------------------------*/

.project-two {

    position: relative;

    display: block;

    padding: 120px 0 90px;

    z-index: 1;

}



.project-two:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    content: "";

    height: 410px;

    background-color: #f6f6f6;

    z-index: -1;

}



.project-two__carousel.owl-carousel .owl-stage-outer {

    margin-right: -360px;

    padding-bottom: 30px;

}



.project-two__carousel.owl-theme .owl-nav {

    position: absolute;

    top: -125px;

    right: 0;

}



.project-two__carousel.owl-theme .owl-nav .owl-next {

    height: 50px;

    width: 50px;

    background: var(--thm-base);

    border-radius: 50%;

    color: var(--thm-black);

    font-size: 12px;

    text-align: center;

    margin: 0;

    margin-left: 5px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.project-two__carousel.owl-theme .owl-nav .owl-prev {

    height: 50px;

    width: 50px;

    background: var(--thm-base);

    border-radius: 50%;

    color: var(--thm-black);

    font-size: 12px;

    text-align: center;

    margin: 0;

    margin-right: 5px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.project-two__carousel.owl-theme .owl-nav .owl-prev span {

    position: relative;

    display: inline-block;

    transform: rotate(180deg);

}



.project-two__carousel.owl-theme .owl-nav .owl-prev .icon-right-arrow-angle,

.project-two__carousel.owl-theme .owl-nav .owl-next .icon-right-arrow-angle {

    font-weight: bold;

}



.project-two__carousel.owl-theme .owl-nav .owl-next:hover,

.project-two__carousel.owl-theme .owl-nav .owl-prev:hover {

    color: var(--thm-base);

    background: var(--thm-primary);

}



/*--------------------------------------------------------------

# Brand Two

--------------------------------------------------------------*/

.brand-two {

    position: relative;

    display: block;

    padding: 0 0 120px;

}



.brand-two__inner {

    position: relative;

    display: block;

    border-bottom: 1px solid var(--thm-extra);

    padding-bottom: 112px;

}



.brand-two__left {

    position: relative;

    display: block;

}



.brand-two__left .section-title {

    margin-bottom: 28px;

}



.brand-two__text {

    margin: 0;

    font-weight: 300;

}



.brand-two__points {

    position: relative;

    display: flex;

    align-items: center;

    margin-top: 30px;

}



.brand-two__points li {

    position: relative;

    display: flex;

    align-items: center;

}



.brand-two__points li+li {

    margin-left: 40px;

}



.brand-two__points li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.brand-two__points li .text {

    margin-left: 10px;

}



.brand-two__points li .text p {

    font-size: 16px;

    color: var(--thm-black);

    margin: 0;

}



.brand-two__right {

    position: relative;

    display: block;

    margin-left: -30px;

}



.brand-two__list {

    position: relative;

    display: block;

    overflow: hidden;

}



.brand-two__list li {

    position: relative;

    float: left;

}



.brand-two__list li:before {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    content: "";

    background-color: var(--thm-extra);

    width: 1px;

}



.brand-two__list li:nth-child(1):before {

    display: none;

}



.brand-two__list li:nth-child(4):before {

    display: none;

}



.brand-two__list li:after {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    content: "";

    background-color: var(--thm-extra);

    height: 1px;

}



.brand-two__list li:nth-child(4):after {

    display: none;

}



.brand-two__list li:nth-child(5):after {

    display: none;

}



.brand-two__list li:nth-child(6):after {

    display: none;

}



.brand-two__list li a img {

    -webkit-transition: 500ms;

    transition: 500ms;

    opacity: 0.2;

}



.brand-two__list li:hover a img {

    opacity: 1;

}



/*--------------------------------------------------------------

# Team One

--------------------------------------------------------------*/

.team-one {

    position: relative;

    display: block;

    padding: 0 0 90px;

}



.team-one__single {

    position: relative;

    display: block;

    margin-bottom: 30px;

}



.team-one__img {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1;

}



.team-one__img:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: rgba(var(--thm-black-rgb), .30);

    width: 0%;

    transform: translateY(100%);

    transition: all 500ms ease;

    z-index: 1;

}



.team-one__single:hover .team-one__img:before {

    transform: translateY(0);

    width: 100%;

}



.team-one__img img {

    width: 100%;

    transform: scale(1);

    transition: all 500ms ease;

}



.team-one__single:hover .team-one__img img {

    transform: scale(1.05);

}



.team-one__social {

    position: absolute;

    display: flex;

    flex-direction: column;

    left: 0;

    bottom: 0;

    background-color: var(--thm-base);

    padding: 40px 12px;

    transform: scaleY(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    -webkit-transition: all 0.4s linear;

    -o-transition: all 0.4s linear;

    transition: all 0.4s linear;

    transform-origin: bottom center;

    z-index: 3;

}



.team-one__single:hover .team-one__social {

    transform: scaleY(1.0);

}



.team-one__social a {

    font-size: 15px;

    color: var(--thm-black);

    position: relative;

    transform: rotate(-90deg);

    display: flex;

    align-items: center;

    transition: all 500ms ease;

}



.team-one__social a:hover {

    color: var(--thm-primary);

}



.team-one__social a+a {

    margin-top: 20px;

}



.team-one__content {

    position: relative;

    display: block;

    text-align: center;

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);

    padding: 24px 0 24px;

}



.team-one__content:before {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 4px;

    background-color: var(--thm-primary);

    content: "";

    width: 0%;

    opacity: 0;

    transition: all 500ms ease;

}



.team-one__single:hover .team-one__content:before {

    width: 100%;

    opacity: 1;

}



.team-one__name {

    font-size: 20px;

    font-weight: 400;

    line-height: 28px;

}



.team-one__title {

    font-size: 14px;

    margin: 0;

    line-height: 24px;

}



/*--------------------------------------------------------------

# Testimonial One

--------------------------------------------------------------*/

.testimonial-one {

    position: relative;

    display: block;

    background-color: #f6f6f6;

    padding: 120px 0 0;

}



.testimonial-one-shape {

    position: absolute;

    top: -89px;

    right: 90px;

    -webkit-animation-name: squareMover;

    animation-name: squareMover;

    -webkit-animation-duration: 10s;

    animation-duration: 10s;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -webkit-animation-delay: 2s;

    animation-delay: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-perspective: 100px;

    perspective: 100px;

    -webkit-transform-origin: center center;

    transform-origin: center center;

}



.testimonial-one__carousel {

    position: relative;

    display: block;

}



.testimonial-one__carousel.owl-carousel .owl-stage-outer {

    padding-top: 45px;

}



.testimonial-one__single {

    position: relative;

    display: block;

    text-align: center;

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);

    padding: 77px 60px 37px;

    z-index: 3;

}



.testimonial-one__single:before {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 4px;

    background-color: var(--thm-primary);

    content: "";

    width: 0%;

    opacity: 0;

    transition: all 500ms ease;

}



.testimonial-one__single:hover:before {

    width: 100%;

    opacity: 1;

}



.testimonial-one__img {

    position: absolute;

    top: -45px;

    left: 0;

    right: 0;

}



.testimonial-one__img img {

    width: auto !important;

    margin: 0 auto;

}



.testimonial-one__text {

    font-size: 20px;

    margin: 0;

    line-height: 36px;

}



.testimonial-one__client-name {

    color: var(--thm-black);

    margin: 0;

    font-weight: 500;

    padding-top: 18px;

    padding-bottom: 13px;

}



.testimonial-one__quote span {

    font-size: 65px;

    color: var(--thm-primary);

}



/*--------------------------------------------------------------

# The Only

--------------------------------------------------------------*/

.the-only {

    position: relative;

    display: block;

    padding: 240px 0 120px;

    background-color: var(--thm-black);

    margin-top: -120px;

}



.the-only-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    opacity: 0.03;

}



.the-only__knowledge {

    position: relative;

    display: block;

    background-color: var(--thm-primary);

    padding: 44px 50px 28px;

}



.the-only__knowledge h3 {

    font-size: 24px;

    color: var(--thm-base);

    line-height: 34px;

    font-weight: 400;

    margin-bottom: 25px;

}



.the-only__knowledge a {

    font-size: 14px;

    color: var(--thm-base);

    display: inline-block;

    font-weight: 500;

}



.the-only__scale-your-business {

    position: relative;

    display: block;

    margin-top: 63px;

    margin-left: 35px;

    margin-right: -14px;

}



.the-only__scale-your-business p {

    font-size: 24px;

    margin: 0;

    line-height: 40px;

    color: var(--thm-base);

}



.the-only__text-box {

    position: relative;

    display: block;

    margin-top: 50px;

    margin-left: 33px;

    margin-right: -30px;

}



.the-only__text-box p {

    color: #9e9e9e;

    font-weight: 300;

    margin: 0;

}



.the-only__points-box {

    position: relative;

    display: block;

    margin-top: 50px;

    margin-left: 32px;

}



.the-only__points {

    position: relative;

    display: block;

}



.the-only__points li {

    position: relative;

    display: flex;

    align-items: center;

}



.the-only__points li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.the-only__points li .text {

    margin-left: 20px;

}



.the-only__points li .text p {

    color: var(--thm-base);

    margin: 0;

}



/*--------------------------------------------------------------

# CTA One

--------------------------------------------------------------*/

.cta-one {

    position: relative;

    display: block;

    padding: 0 0 120px;

}



.cta-one__inner {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background-color: #f6f6f6;

    padding: 92px 0;

    padding-left: 100px;

}



.cta-one__inner:before {

    position: absolute;

    top: 0;

    bottom: 0;

    right: -10000000px;

    content: "";

    background-color: #f6f6f6;

    left: 0;

    z-index: -1;

}



.cta-one__inner:after {

    position: absolute;

    top: 0;

    bottom: 0;

    content: "";

    background-color: var(--thm-primary);

    left: 0;

    width: 20px;

}



.cta-one__title {

    font-size: 40px;

    font-weight: 400;

    line-height: 50px;

}



.cta-one__btn {

    border: 1px solid var(--thm-black);

    background-color: transparent;

}



.cta-one__btn:after {

    background-color: var(--thm-black);

}



/*--------------------------------------------------------------

# Page Header

--------------------------------------------------------------*/

.page-header {

    position: relative;

    display: block;

    padding: 226px 0 127px;

    background-repeat: no-repeat;

    background-size: cover;

}



.page-header:before {

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    content: "";

    background: rgba(var(--thm-black-rgb), .70);

}



.page-header__inner {

    position: relative;

    display: block;

    text-align: center;

}



.page-header__inner h2 {

    font-size: 50px;

    color: var(--thm-base);

    line-height: 52px;

    font-weight: 400;

    margin-top: 9px;

}



.thm-breadcrumb {

    padding-top: 5px;

}



.thm-breadcrumb li {

    position: relative;

    display: inline-block;

    color: var(--thm-base);

    font-size: 16px;

    font-weight: 400;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.thm-breadcrumb li+li {

    margin-left: 5px;

}



.thm-breadcrumb li a {

    color: var(--thm-base);

    font-size: 16px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.thm-breadcrumb li:hover {

    color: var(--thm-primary);

}



.thm-breadcrumb li:hover a {

    color: var(--thm-primary);

}



/*Services Three*/

.services-three {

    padding-top: 120px;

}



/*Services Page The Only*/

.services-page-the-only {

    padding-top: 120px;

    margin-top: 0;

}



/*Services Page Brand*/



.services-page__brand .brand-two__inner {

    border-bottom: 0;

    padding-bottom: 0;

}



/*--------------------------------------------------------------

# Services Details

--------------------------------------------------------------*/

.service-details {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.service-details__sidebar {

    position: relative;

    display: block;

}



.service-details__sidebar-service {

    position: relative;

    display: block;

    background: #f6f6f6;

    padding: 48px 30px 23px;

}



.service-details__sidebar-title {

    font-size: 20px;

    font-weight: 400;

    padding-left: 20px;

    margin-bottom: 18px;

}



.service-details__sidebar-service-list {

    margin: 0;

}



.service-details__sidebar-service-list li+li {

    margin-top: 2px;

}



.service-details__sidebar-service-list li a {

    color: var(--thm-gray);

    font-size: 18px;

    font-weight: 400;

    position: relative;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    display: block;

    background: none;

    padding: 16px 20px;

}



.service-details__sidebar-service-list li a:hover {

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);

    color: var(--thm-black);

}



.service-details__sidebar-service-list li a span {

    position: absolute;

    top: 50%;

    right: 20px;

    transform: translateY(-50%);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    color: var(--thm-black);

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

}



.service-details__sidebar-service-list li a span.icon-right-arrow-angle {

    font-weight: bold;

}



.service-details__sidebar-service-list li a:hover span {

    color: var(--thm-primary);

}



.service-details__need-help {

    position: relative;

    display: block;

    padding: 60px 60px 49px;

    margin-top: 30px;

    text-align: center;

    z-index: 1;

}



.service-details__need-help-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    filter: grayscale(100%);

    z-index: -1;

}



.service-details__need-help-bg-overly {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: rgba(var(--thm-primary-rgb), .90);

    z-index: -1;

}



.service-details__need-help-icon {

    height: 85px;

    width: 85px;

    background-color: var(--thm-black);

    color: var(--thm-base);

    font-size: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    margin: 0 auto 30px;

    transition: all 500ms ease;

}



.service-details__need-help-icon:hover {

    background-color: var(--thm-base);

    color: var(--thm-primary);

}



.service-details__need-help-title {

    font-size: 34px;

    color: var(--thm-base);

    font-weight: 400;

    line-height: 46px;

    font-family: var(--thm-reey-font);

}



.service-details__need-help-contact {

    position: relative;

    display: block;

    margin-top: 27px;

}



.service-details__need-help-contact p {

    font-size: 16px;

    color: var(--thm-base);

    margin: 0;

    line-height: 18px;

}



.service-details__need-help-contact a {

    font-size: 24px;

    color: var(--thm-base);

}



.service-details__right {

    position: relative;

    display: block;

}



.service-details__img {

    position: relative;

    display: block;

}



.service-details__img img {

    width: 100%;

}



.service-details__content {

    position: relative;

    display: block;

    margin-top: 22px;

}



.service-details__title {

    font-size: 24px;

    font-weight: 400;

    line-height: 34px;

    margin-bottom: 37px;

}



.service-details__text {

    font-weight: 300;

    margin: 0;

}



.service-details__benefits {

    position: relative;

    display: block;

    margin-top: 51px;

    margin-bottom: 60px;

}



.service-details__benefits-img {

    position: relative;

    display: block;

}



.service-details__benefits-img img {

    width: 100%;

}



.service-details__benefits-title {

    font-size: 26px;

    font-weight: 400;

    line-height: 36px;

    margin-bottom: 26px;

    margin-top: -8px;

}



.service-details__benefits-text {

    font-size: 18px;

    margin: 0;

}



.service-details__benefits-list {

    position: relative;

    display: block;

    margin-top: 33px;

}



.service-details__benefits-list li {

    position: relative;

    display: flex;

    align-items: center;

}



.service-details__benefits-list li+li {

    margin-top: 6px;

}



.service-details__benefits-list li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.service-details__benefits-list li .text {

    margin-left: 10px;

}



.service-details__benefits-list li .text p {

    font-size: 18px;

    color: var(--thm-black);

    font-weight: 400;

    margin: 0;

}



.service-details__faq .faq-one-accrodion .accrodion {

    background-color: #f6f6f6;

}



/*--------------------------------------------------------------

# Project Page

--------------------------------------------------------------*/

.project-page {

    position: relative;

    display: block;

    padding: 108px 0 90px;

}



.project-filter {

    position: relative;

    display: block;

    text-align: center;

    margin-bottom: 60px;

}



.project-filter.style1 li {

    position: relative;

    display: inline-block;

    vertical-align: middle;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.project-filter.style1 li .filter-text {

    position: relative;

    display: inline-block;

    padding-left: 15px;

    color: var(--thm-gray);

    font-size: 18px;

    font-weight: 400;

    display: block;

    cursor: pointer;

    transition: all 0.4s ease;

}



.project-filter.style1 li .filter-text:before {

    position: absolute;

    top: 8px;

    left: 2px;

    bottom: 10px;

    content: "";

    background: var(--thm-primary);

    width: 3px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    border-radius: 0;

    transform: scale(0);

}



.project-filter.style1 li .filter-text:hover:before,

.project-filter.style1 li.active .filter-text:before {

    transform: scale(1.0);

}



.project-filter.style1 li:hover .filter-text,

.project-filter.style1 li.active .filter-text {

    color: var(--thm-primary);

}



.project-filter.style1 li .count {

    color: var(--thm-black);

    font-size: 12px;

    line-height: 26px;

    font-weight: 500;

    display: inline-block;

    padding: 0 0;

    opacity: 0;

    -webkit-transition: all 0.4s ease;

    transition: all 0.4s ease;

    position: relative;

    top: -4px;

}



.project-filter.style1 li:hover .count,

.project-filter.style1 li.active .count {

    color: var(--thm-primary);

    opacity: 1;

}



.project-filter.style1 li+li {

    margin-left: 4px;

}



.project-page .project-one__single {

    margin-bottom: 30px;

}



/*--------------------------------------------------------------

# Project Details

--------------------------------------------------------------*/

.project-details {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.project-details__img {

    position: relative;

    display: block;

}



.project-details__img img {

    width: 100%;

}



.project-details__info {

    position: absolute;

    bottom: 0;

    left: 0;

    background-color: var(--thm-base);

    padding: 54px 60px;

}



.project-details__info-list {

    position: relative;

    display: flex;

    align-items: center;

}



.project-details__info-list li+li {

    margin-left: 105px;

}



.project-details__info-client {

    font-size: 18px;

    color: var(--thm-gray);

    font-weight: 400;

    margin-bottom: 2px;

}



.project-details__info-name {

    font-size: 16px;

    color: var(--thm-black);

    margin: 0;

}



.project-details__content {

    position: relative;

    display: block;

    margin-top: 33px;

}



.project-details__title {

    font-size: 30px;

    font-weight: 400;

    margin-bottom: 37px;

}



.project-details__text-1 {

    margin: 0;

    font-weight: 300;

    padding-bottom: 34px;

}



.project-details__text-2 {

    margin: 0;

    font-weight: 300;

    padding-bottom: 37px;

}



.project-details__points {

    position: relative;

    display: block;

}



.project-details__points li {

    position: relative;

    display: flex;

    align-items: center;

}



.project-details__points li+li {

    margin-top: 6px;

}



.project-details__points li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.project-details__points li .text {

    margin-left: 10px;

}



.project-details__points li .text p {

    font-size: 20px;

    color: var(--thm-black);

    margin: 0;

    line-height: 30px;

}



.project-details__pagination-box {

    position: relative;

    display: block;

    text-align: center;

    border-top: 1px solid var(--thm-extra);

    border-bottom: 1px solid var(--thm-extra);

    padding: 50px 0;

    margin-top: 113px;

}



.project-details__pagination li {

    display: inline-block;

}



.project-details__pagination li.next {

    float: left;

    position: relative;

}



.project-details__pagination li a {

    font-size: 18px;

    color: var(--thm-black);

    font-weight: 400;

    display: flex;

    align-items: center;

    transition: all 500ms ease;

}



.project-details__pagination li a:hover {

    color: var(--thm-primary);

}



.project-details__pagination li.next i {

    position: relative;

    display: inline-block;

    margin-right: 10px;

    font-size: 10px;

    transform: rotate(180deg);

}



.project-details__pagination li.previous {

    position: relative;

    float: right;

}



.project-details__pagination li.previous i {

    margin-left: 10px;

    font-size: 10px;

}



.project-details__pagination li.next .icon-right-arrow-angle,

.project-details__pagination li.previous .icon-right-arrow-angle {

    font-weight: bold;

}



/*--------------------------------------------------------------

# Similar Work

--------------------------------------------------------------*/

.simialr-work {

    position: relative;

    display: block;

    padding: 0 0 90px;

}



.simialr-work .project-one__single {

    margin-bottom: 30px;

}



/*--------------------------------------------------------------

# Grow And Experience

--------------------------------------------------------------*/

.grow-and-experience-two {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.grow-and-experience-two__left {

    position: relative;

    display: block;

    margin-right: 70px;

}



.grow-and-experience-two__left .section-title {

    margin-bottom: 28px;

}



.grow-and-experience-two__text {

    margin: 0;

    font-weight: 300;

    margin-bottom: 30px;

}



.grow-and-experience-two__list {

    position: relative;

    display: block;

    margin-bottom: 39px;

}



.grow-and-experience-two__list li {

    position: relative;

    display: flex;

    align-items: center;

}



.grow-and-experience-two__list li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.grow-and-experience-two__list li .text {

    margin-left: 10px;

}



.grow-and-experience-two__list li .text p {

    margin: 0;

    color: var(--thm-black);

}



.grow-and-experience-two__btn {

    border: 1px solid var(--thm-black);

    background-color: transparent;

}



.grow-and-experience-two__btn:after {

    background-color: var(--thm-black);

}



.grow-and-experience-two__right {

    position: relative;

    display: block;

    margin-left: -26px;

}



.grow-and-experience-two__images {

    position: relative;

    display: block;

    overflow: hidden;

}



.grow-and-experience-two__images li {

    position: relative;

    display: block;

    float: left;

}



.grow-and-experience-two__images li+li {

    margin-left: 12px;

}



/*--------------------------------------------------------------

# About Page Discover World Two

--------------------------------------------------------------*/

.about-page-discover-world-two {

    padding-bottom: 240px;

}



/*--------------------------------------------------------------

# About Page Inspire

--------------------------------------------------------------*/

.about-page-inspire {

    margin-top: -120px;

}



/*--------------------------------------------------------------

# About Page Team

--------------------------------------------------------------*/

.about-page-team {

    padding-top: 120px;

}



/*--------------------------------------------------------------

# News Details

--------------------------------------------------------------*/

.news-details {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.news-details__left {

    position: relative;

    display: block;

}



.news-details__img {

    position: relative;

    display: block;

}



.news-details__img img {

    width: 100%;

}



.news-details__date-box {

    position: absolute;

    bottom: 0;

    left: 50px;

    background-color: var(--thm-base);

    padding: 7px 20px 6px;

}



.news-details__date-box p {

    font-size: 12px;

    margin: 0;

    line-height: 22px;

}



.news-details__content {

    position: relative;

    display: block;

    margin-top: 20px;

}



.news-details__meta {

    display: flex;

    -webkit-box-align: center;

    align-items: center;

    margin: 0;

}



.news-details__meta li {

    font-size: 12px;

    color: var(--thm-gray);

    font-weight: 400;

}



.news-details__meta li+li {

    margin-left: 12px;

}



.news-details__meta li a {

    color: var(--thm-gray);

    transition: all 500ms ease;

}



.news-details__meta li a:hover {

    color: var(--thm-primary);

}



.news-details__meta li a i {

    color: var(--thm-primary);

}



.news-details__title {

    font-size: 36px;

    font-weight: 400;

    line-height: 42px;

    margin-bottom: 21px;

}



.news-details__text-1 {

    margin: 0;

    font-weight: 300;

}



.news-details__text-2 {

    margin: 0;

    font-weight: 300;

    padding-top: 35px;

    padding-bottom: 35px;

}



.news-details__text-3 {

    margin: 0;

    font-weight: 300;

}





.news-details__bottom {

    display: -webkit-box;

    display: flex;

    -webkit-box-align: center;

    align-items: center;

    -webkit-box-pack: justify;

    justify-content: space-between;

    flex-wrap: wrap;

    padding: 30px 0 30px;

    margin-top: 51px;

    border-top: 1px solid var(--thm-extra);

}



.news-details__bottom p {

    margin: 0;

}



.news-details__tags span {

    color: var(--thm-black);

    font-weight: 500;

    font-size: 18px;

    margin-right: 16px;

}



.news-details__tags-btn {

    position: relative;

    color: var(--thm-black);

    font-size: 14px;

    font-weight: 500;

    background-color: transparent;

    display: inline-block;

    padding: 2px 30px;

    border: 1px solid var(--thm-black);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.news-details__tags-btn:after {

    background-color: var(--thm-black);

}



.news-details__tags a+a {

    margin-left: 6px;

}



.news-details__social-list {

    display: -webkit-box;

    display: flex;

    -webkit-box-align: center;

    align-items: center;

}



.news-details__social-list a {

    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: 18px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.news-details__social-list a+a {

    margin-left: 30px;

}



.news-details__social-list a:hover {

    color: var(--thm-primary);

}





/* author */

.author-one {

    background-color: #f6f6f6;

    padding: 60px 60px 60px;

    display: -webkit-box;

    display: flex;

    margin-bottom: 53px;

}



.author-one__image img {

    border-radius: var(--thm-border-radius);

}



.author-one__content {

    margin-left: 35px;

}



.author-one__content h3 {

    font-size: 20px;

    line-height: 30px;

    font-weight: 400;

}



.author-one__content p {

    margin: 0;

    margin-top: 21px;

    font-size: 16px;

}



/*--------------------------------------------------------------

## Comments

--------------------------------------------------------------*/



.comment-one__title,

.comment-form__title {

    margin: 0;

    color: var(--thm-black);

    font-size: 30px;

    font-weight: 400;

    margin-bottom: 53px;

}



.comment-one__single {

    display: -webkit-box;

    display: flex;

    border-bottom: 1px solid var(--thm-extra);

    padding-bottom: 60px;

    margin-bottom: 58px;

}



.comment-one__content {

    position: relative;

    margin-left: 45px;

}



.comment-one__content h3 {

    margin: 0;

    font-size: 20px;

    color: var(--thm-black);

    font-weight: 400;

    margin-bottom: 25px;

}



.comment-one__content p {

    font-size: 16px;

    margin: 0;

}



.comment-one__btn {

    position: absolute;

    top: 0;

    right: 0;

    color: var(--thm-black);

    font-size: 14px;

    font-weight: 500;

    background-color: transparent;

    display: inline-block;

    padding: 2px 30px;

    border: 1px solid var(--thm-black);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.comment-one__btn:after {

    background-color: var(--thm-black);

}



.comment-one__image img {

    border-radius: 50%;

}



.comment-form .comment-form__title {

    margin-top: -5px;

}



.comment-one__form .row {

    --bs-gutter-x: 20px;

}



.comment-form__input-box {

    position: relative;

    display: block;

}



.comment-form__input-box input[type="text"],

.comment-form__input-box input[type="email"] {

    height: 68px;

    width: 100%;

    border: none;

    background: #f6f6f6;

    padding-left: 30px;

    padding-right: 30px;

    margin-bottom: 20px;

    border-radius: 0px;

    outline: none;

    font-size: 14px;

    color: var(--thm-gray);

    font-weight: 400;

    display: block;

}



.comment-form__input-box textarea {

    font-size: 14px;

    color: var(--thm-gray);

    font-weight: 400;

    height: 195px;

    width: 100%;

    background: #f6f6f6;

    padding: 20px 30px 30px;

    border: none;

    border-radius: 0px;

    outline: none;

    margin-bottom: 10px;

}



/*--------------------------------------------------------------

# Sidebar

--------------------------------------------------------------*/



@media (max-width: 991px) {

    .sidebar {

        margin-top: 50px;

    }

}



.sidebar__single+.sidebar__single {

    margin-top: 30px;

}



.sidebar__title {

    margin: 0;

    font-size: 20px;

    font-weight: 500;

    margin-bottom: 16px;

}



.sidebar__search {

    position: relative;

    display: block;

}



.sidebar__search-form {

    position: relative;

}



.sidebar__search-form input[type="search"] {

    display: block;

    border: none;

    outline: none;

    background-color: var(--thm-primary);

    color: var(--thm-base);

    font-size: 16px;

    font-weight: 500;

    padding-left: 50px;

    height: 75px;

    border-radius: 0;

    width: 100%;

    padding-right: 80px;

}



.sidebar__search-form ::-webkit-input-placeholder {

    color: var(--thm-base);

    opacity: 1;

}



.sidebar__search-form ::-moz-placeholder {

    color: var(--thm-base);

    opacity: 1;

}



.sidebar__search-form :-ms-input-placeholder {

    color: var(--thm-base);

    opacity: 1;

}



.sidebar__search-form ::-ms-input-placeholder {

    color: var(--thm-base);

    opacity: 1;

}



.sidebar__search-form ::placeholder {

    color: var(--thm-base);

    opacity: 1;

}



.sidebar__search-form :-ms-input-placeholder {

    color: var(--thm-base);

}



.sidebar__search-form ::-ms-input-placeholder {

    color: var(--thm-base);

}



.sidebar__search-form button[type="submit"] {

    background-color: transparent;

    color: var(--thm-base);

    font-size: 22px;

    position: absolute;

    top: 0;

    right: 18px;

    bottom: 0;

    width: 60px;

    outline: none;

    border: none;

    display: flex;

    align-items: center;

}



.sidebar__post {

    position: relative;

    display: block;

    padding: 45px 50px 43px;

    background-color: #f6f6f6;

}



.sidebar__post-list {

    margin: 0;

}



.sidebar__post-list li {

    display: -webkit-box;

    display: flex;

    -webkit-box-align: center;

    align-items: center;

}



.sidebar__post-list li+li {

    margin-top: 19px;

}



.sidebar__post-image {

    margin-right: 20px;

}



.sidebar__post-image>img {

    width: 60px;

}



.sidebar__post-content h3 {

    font-size: 18px;

    font-weight: 500;

    margin: 0;

    line-height: 26px;

}



.sidebar__post-content_meta {

    font-size: 12px;

    font-weight: 400;

    color: var(--thm-gray);

    display: block;

}



.sidebar__post-content_meta i {

    font-size: 12px;

    color: var(--thm-primary);

    padding-right: 4px;

}



.sidebar__post-content h3 a {

    color: var(--thm-black);

    transition: all 500ms ease;

}



.sidebar__post-list li:hover .sidebar__post-content h3 a {

    color: var(--thm-primary);

}



.sidebar__category {

    position: relative;

    display: block;

    background: #f6f6f6;

    padding: 45px 30px 36px;

}



.sidebar__category .sidebar__title {

    padding-left: 20px;

    margin-bottom: 13px;

}



.sidebar__category-list {

    margin: 0;

}



.sidebar__category-list li+li {

    margin-top: 9px;

}



.sidebar__category-list li a {

    color: var(--thm-gray);

    font-size: 16px;

    font-weight: 400;

    position: relative;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    display: block;

    background: none;

    padding: 3px 20px;

}



.sidebar__category-list li a:hover {

    background-color: rgb(255, 255, 255);

    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);

    color: var(--thm-gray);

}



.sidebar__category-list li a span {

    position: absolute;

    top: 50%;

    right: 20px;

    transform: translateY(-50%);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    color: var(--thm-black);

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

}



.sidebar__category-list li a span.icon-right-arrow-angle {

    font-weight: bold;

}



.sidebar__category-list li a:hover span {

    color: var(--thm-primary);

}



.sidebar__tags {

    position: relative;

    display: block;

    background: #f6f6f6;

    padding: 47px 45px 50px;

}



.sidebar__tags .sidebar__title {

    margin-left: 5px;

    margin-bottom: 24px;

}



.sidebar__tags-list {

    margin-top: -10px;

}



.sidebar__tags-btn {

    position: relative;

    color: var(--thm-black);

    font-size: 14px;

    font-weight: 500;

    background-color: transparent;

    display: inline-block;

    padding: 2px 30px;

    border: 1px solid var(--thm-black);

    margin-left: 5px;

    margin-top: 10px;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}



.sidebar__tags-btn:after {

    background-color: var(--thm-black);

}



.sidebar__tags-list a+a {

    margin-left: 5px;

    margin-top: 10px;

}



/*--------------------------------------------------------------

# Contact Page

--------------------------------------------------------------*/

.contact-page {

    position: relative;

    display: block;

    padding: 120px 0 120px;

}



.contact-page__left {

    position: relative;

    display: block;

}



.contact-page__left .section-title {

    margin-bottom: 28px;

}



.contact-page__text {

    font-weight: 300;

    margin: 0;

}



.contact-page__points {

    position: relative;

    display: block;

    padding-top: 35px;

    padding-bottom: 41px;

}



.contact-page__points li {

    position: relative;

    display: flex;

    align-items: center;

}



.contact-page__points li .icon {

    height: 16px;

    width: 16px;

    border: 2px solid var(--thm-primary);

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--thm-primary);

}



.contact-page__points li .text {

    margin-left: 10px;

}



.contact-page__points li .text p {

    font-size: 16px;

    margin: 0;

}



.contact-page__social {

    display: flex;

    align-items: center;

}



.contact-page__social a {

    position: relative;

    height: 40px;

    width: 40px;

    font-size: 14px;

    border: 1px solid var(--thm-extra);

    color: var(--thm-black);

    background-color: var(--thm-base);

    display: flex;

    align-items: center;

    justify-content: center;

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

    z-index: 1;

}



.contact-page__social a:hover {

    color: var(--thm-base);

    border: 1px solid transparent;

}



.contact-page__social a:before {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    content: "";

    background-color: var(--thm-primary);

    transform: scale(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);

    z-index: -1;

}



.contact-page__social a:hover:before {

    transform: scaleX(1.0);

}



.contact-page__social a+a {

    margin-left: 10px;

}



/*--------------------------------------------------------------

# Information

--------------------------------------------------------------*/

.information {

    position: relative;

    display: block;

}



.information .row {

    --bs-gutter-x: 0px;

}



.information__single {

    position: relative;

    display: flex;

    align-items: center;

    border: 1px solid var(--thm-extra);

    padding-top: 77px;

    padding-bottom: 77px;

}



.information__icon {

    position: relative;

    font-size: 65px;

    color: var(--thm-primary);

    display: flex;

    align-items: center;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.information__single:hover .information__icon {

    transform: scale(1.2);

    color: var(--thm-black);

}



.information__text {

    margin-left: 30px;

}



.information__text p {

    font-size: 20px;

    font-weight: 300;

    margin: 0;

    line-height: 35px;

}



.information__text h4 {

    font-size: 20px;

    font-weight: 300;

    color: var(--thm-gray);

    line-height: 35px;

}



.information__number-1 {

    transition: all 500ms ease;

}



.information__single:hover .information__number-1 {

    color: var(--thm-primary);

}



.information__number-2 {

    transition: all 500ms ease;

}



.information__single:hover .information__number-2 {

    color: var(--thm-primary);

}



.information__mail-1 {

    transition: all 500ms ease;

}



.information__single:hover .information__mail-1 {

    color: var(--thm-primary);

}



.information__mail-2 {

    transition: all 500ms ease;

}



.information__single:hover .information__mail-2 {

    color: var(--thm-primary);

}



.information__single-1 {

    border-left: 0;

    border-bottom: 0;

}



.information__single-2 {

    border-left: 0;

    border-bottom: 0;

    padding-left: 78px;

}



.information__single-3 {

    border-left: 0;

    border-bottom: 0;

    border-right: 0;

    padding-left: 105px;

}



/*--------------------------------------------------------------

# Contact Page Google Map

--------------------------------------------------------------*/

.contact-page-google-map {

    position: relative;

    display: block;

}



.contact-page-google-map__one {

    position: relative;

    display: block;

    border: none;

    height: 560px;

    width: 100%;

}



/*--------------------------------------------------------------

# News Page

--------------------------------------------------------------*/

.news-page {

    padding-bottom: 90px;

}



.news-page .news-one__single {

    margin-bottom: 0px;

    transform: translateY(0);

    transition: all 500ms ease;

}



.news-page .news-one__single:hover {

    transform: translateY(-30px);

}