﻿/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Roboto', sans-serif;
    --thm-gray: #677283;
    --thm-gray-rgb: 103, 114, 131;
    --thm-primary: #0aa5cd;
    --thm-primary-rgb: 10, 165, 205;
    --thm-black: #17202d;
    --thm-black-rgb: 23, 32, 45;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-border-radius: 5px;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
	font-family: var(--thm-font);
	color: #666;
	font-size: 16px;
	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;
    }
	.container-top {
        padding: 0 100px;
    }
}

::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;
	border: none;
	outline: none !important;
	background-color: #00a0e9;
	color: var(--thm-base);
	font-size: 15px;
	font-weight: 900;
	transition: 500ms;
	border-radius: 5px;
	text-transform: capitalize;
	
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.thm-btn:hover {
    background: var(--thm-black);
    color: var(--thm-base);
}

.section-title {
    margin-top: -13px;
    margin-bottom: 48px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 6px;
}

.section-title__tagline::before {
    content: '';
    background-color: var(--thm-primary);
    width: 12px;
    height: 4px;
    margin-right: 10px;
}

.section-title__title {
    margin: 0;
    font-weight: 900;
    color: #000;
    font-size: 50px;
    line-height: 60px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #00a0e9;
    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: #000;
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
	background-color: rgba(51,51,51,0.3);
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 9999;
	transition: all 500ms ease;
}

.bg {
	background-color: #666;
	
}

.main-header:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .15);
}

.main-header__top {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 2.5px 100px;
	background-color: var(--thm-black);
}

.main-header__top:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .15);
}

.main-header__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header__top-left-text {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 500;
    margin: 0;
}

.main-header__top-left-text a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-weight: 400;
    transition: all 500ms ease;
}

.main-header__top-left-text a:hover {
    color: var(--thm-primary);
}

.main-header__top-left-text a:before {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-base);
    height: 1px;
}

.main-header__top-right {
    position: relative;
    display: block;
    float: right;
}

.main-header__top-right-social-box {
    position: relative;
    display: block;
    float: left;
}

.main-header__top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 0;
}

.main-header__top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-right-social a:hover {
    color: var(--thm-primary);
}

.main-header__top-right-social a+a {
    margin-left: 15px;
}

.main-header__top-right-contact-box {
    position: relative;
    display: block;
    overflow: hidden;
    float: right;
    margin-left: 40px;
}



.main-header__top-right-contact li {
    position: relative;
    display: inline-block;
}

.main-header__top-right-contact li+li {
    margin-left: 25px;
}

.main-header__top-right-contact li a {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 700;
    transition: all 500ms ease;
}

.main-header__top-right-contact li a:hover {
    color: var(--thm-primary);
}


.main-menu {
    position: relative;
    padding: 0 100px;
    
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__logo {
	position: relative;
	float: left;
	padding-top: 20px;
	padding-bottom: 20px;
	
}

.main-menu-wrapper__logo img {
	
	width: 100%;
}





.main-menu-wrapper__main-menu {
	position: relative;
	display: block;
	float: right!important;
	
}


.main-menu-wrapper__right {
    position: relative;
    display: block;
    float: right;
    padding: 29px 0;
}

.main-menu-wrapper__search-box-cart-box {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__search-box-cart-box>a {
    position: relative;
    display: inline-block;
    padding: 14px 0px;
}

.main-menu-wrapper__search {
    font-size: 24px;
    color: var(--thm-base);
    margin-right: 30px;
    transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__cart {
    font-size: 24px;
    color: var(--thm-base);
    margin-right: 30px;
    transition: all 500ms ease;
}

.main-menu-wrapper__cart:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__btn-box {
    position: relative;
    display: block;
    float: left;
}



.main-menu-wrapper__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}


.stricky-header.main-menu {
	padding: 0 100px;
	background-color: rgba(51,51,51,0.6);
}

.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: 40px;
    padding-bottom: 35px;
    position: relative;
	margin-left: 45px;
	
	
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 45px;
	
}

.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: #FFF;
	position: relative;
	transition: all 500ms ease;
	text-transform: uppercase;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    width: 12px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    bottom: 0px;
    left: -22px;
    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: #00A0E9;
}

.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: 270px;
    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: 15px;
	text-transform: uppercase;
	line-height: 30px;
	color: #000;
	display: flex;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: 500ms;
	font-weight: 500;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: #00a0e9;
    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);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}


/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: relative;
    display: block;
}

.main-header-two__top {
    position: relative;
    display: block;
}

.main-header-two__top:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: #e9edf2;
    height: 1px;
}



.main-header-two__top-left {
    position: relative;
    display: block;
    float: left;
}



.main-header-two__top-contact li {
    position: relative;
    display: inline-block;
    padding: 2.5px 0;
}

.main-header-two__top-contact li+li {
    margin-left: 25px;
}

.main-header-two__top-contact li a {
    font-size: 14px;
    font-weight: 500;
    transition: all 500ms ease;
}

.main-header-two__top-contact li a:hover {
    color: var(--thm-primary);
}

.main-header-two__top-right {
    position: relative;
    display: block;
    float: right;
}

.main-header-two__top-right-social-box {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.main-header-two__top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 12.5px 0;
}

.main-header-two__top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-gray);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header-two__top-right-social a:hover {
    color: var(--thm-primary);
}

.main-header-two__top-right-social a+a {
    margin-left: 15px;
}

.main-header-two__top-btn-box {
    position: relative;
    display: block;
    float: right;
}

.main-header-two__top-btn {
    border-radius: 0;
    padding: 3px 30px;
}

.main-menu-two {
    padding: 0 0;
}





.main-menu-two-wrapper__logo {
    position: relative;
    display: block;
    float: left;
    padding: 38px 0;
}





.main-menu-two-wrapper__main-menu {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-left: 220px;
}

.main-menu-two .main-menu__list>li>a,
.stricky-header .main-menu-two .main-menu__list>li>a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-gray);
    position: relative;
    transition: all 500ms ease;
}

.main-menu-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;
}

.main-menu-two-wrapper__right>a {
    position: relative;
    display: inline-block;
    padding: 43px 0;
}

.main-menu-two-wrapper__avatar {
    font-size: 24px;
    color: var(--thm-black);
    margin-right: 30px;
    transition: all 500ms ease;
}

.main-menu-two-wrapper__search {
    font-size: 24px;
    color: var(--thm-black);
    margin-right: 30px;
    transition: all 500ms ease;
}

.main-menu-two-wrapper__cart {
    font-size: 24px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.main-menu-two-wrapper__avatar:hover {
    color: var(--thm-primary);
}

.main-menu-two-wrapper__search:hover {
    color: var(--thm-primary);
}

.main-menu-two-wrapper__cart:hover {
    color: var(--thm-primary);
}


.stricky-header.main-menu-two {
    padding: 0 0;
    background-color: var(--thm-base);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
}

.main-header-three__top {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
    padding: 2.5px 0;
}

.main-header-three__top-inner {
    position: relative;
    display: block;
}

.main-header-three__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header-three__top-left-text {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 500;
    margin: 0;
    line-height: 35px;
}

.main-header-three__top-left-text a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    transition: all 500ms ease;
}

.main-header-three__top-left-text a:hover {
    color: var(--thm-primary);
}

.main-header-three__top-left-text a:before {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-base);
    height: 1px;
}

.main-header-three__top-right {
    position: relative;
    display: block;
    overflow: hidden;
    float: right;
}





.main-header-three__top-right-contact li {
    position: relative;
    display: inline-block;
}

.main-header-three__top-right-contact li+li {
    margin-left: 25px;
}

.main-header-three__top-right-contact li a {
    font-size: 14px;
    color: var(--thm-base);
    font-weight: 700;
    transition: all 500ms ease;
}

.main-header-three__top-right-contact li a:hover {
    color: var(--thm-primary);
}







.main-menu-three-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-three-wrapper__logo {
    position: relative;
    display: block;
    float: left;
    padding: 38px 0;
    margin-right: 90px;
}





.main-menu-three-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}


.main-menu-three-wrapper__right {
    position: relative;
    display: block;
    float: right;
    padding: 29px 0;
}

.main-menu-three-wrapper__right-box {
    position: relative;
    display: block;
    float: left;
}

.main-menu-three-wrapper__right-box>a {
    position: relative;
    display: inline-block;
    padding: 14px 0;
}

.main-menu-three-wrapper__right-btn-box {
    position: relative;
    display: block;
    float: right;
}

.main-nenu-three__btn {
    margin-left: 30px;
}


















/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}


/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}



@-moz-keyframes service_hexagon_2 {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-o-keyframes service_hexagon_2 {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 9999;
    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: 100%;
    background-color: #000000;;
    
    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;
	background-color: #000;
}

.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;
	text-transform: uppercase;
	font-family: inherit;
	font-weight: 500;
	height: 46px;
	align-items: center;
	transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.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), .1);
	z-index: 2;
}

.main-slider .container {
    padding-top: 352px;
    padding-bottom: 337px;
}

.main-slider__content {
    position: relative;
    display: block;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 40px;
    color: var(--thm-base);
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 70px;
	text-shadow: 5px 5px 5px #333;
    line-height: 80px;
}

.main-slider p {
    font-size: 18px;
	text-shadow: 2px 2px 5px #000;
    color: #FFF;
    font-weight: 700;
    margin: 0;
    line-height: 28px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: .9;
    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 {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
    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: 100;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #ffffff;
    opacity: 1;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: var(--thm-primary);
}

.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 .icon-left-arrow {
    position: relative;
}


/*--------------------------------------------------------------
# Banner Two
--------------------------------------------------------------*/
.banner-two {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left center;
    z-index: 1;
    overflow: hidden;
    background-color: var(--thm-black);
    padding-top: 155px;
    padding-bottom: 114px;
}

.banner-two .banner-bg-slide {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-bg-slide-overly {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .70);
}

.banner-two__content {
    position: relative;
    display: block;
}

.banner-two__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-base);
    margin: 0;
    opacity: .7;
}

.banner-two__title {
    font-size: 80px;
    color: var(--thm-base);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 80px;
    margin-top: 18px;
    z-index: 2;
}

.banner-two-form {
    position: relative;
    display: block;
    margin-top: 38px;
    margin-bottom: 10px;
}

.banner-two__type-boxes {
    position: relative;
    display: block;
}

.banner-two__input-box {
    position: relative;
    float: left;
    margin-right: 10px;
}

.banner-two__input-box:last-child {
    margin-right: 0;
}

.banner-two-form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 290px !important;
}

.banner-two-form .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.banner-two-form .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none !important;
    border-radius: var(--thm-border-radius);
    border: 1px solid #ffffff;
    background-color: #ffffff !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--thm-gray) !important;
    font-size: 16px;
    line-height: 73px;
    font-weight: 400;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;
}

.banner-two__btn {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 700;
    background-color: var(--thm-primary);
    padding: 20.5px 80px;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.banner-two__btn:hover {
    background-color: #17202d;
    color: #ffffff;
}

.banner-two__input-box button:focus {
    outline: none;
}

.banner-two_icon-boxes {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner-two__icons {
    position: relative;
    display: block;
}

.banner-two__icons li {
    position: relative;
    display: flex;
    height: 115px;
    width: 110px;
    border-radius: var(--thm-border-radius);
    text-align: center;
    align-items: center;
    justify-content: center;
    float: left;
}

.banner-two__icons li:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .10);
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.banner-two__icons li:hover:before {
    background: #17202d;
}

.banner-two__icons li+li {
    margin-left: 10px;
}

.banner-two__icons li span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    transition: all 700ms linear;
}



.banner-two__bottom-content {
    position: relative;
    display: block;
    padding-left: 342px;
}

.banner-two-__bottom-icon {
    position: absolute;
    top: -10px;
    left: 306px;
}



.banner-two__bottom-discover-more {
    position: relative;
    display: block;
    margin-top: 17px;
}

.banner-two__bottom-discover-more a {
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Banner Three
--------------------------------------------------------------*/
.banner-three {
    padding-top: 200px;
    padding-bottom: 210px;
}

.banner-bg-slide-overly-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .50);
}

.banner-three__content {
    position: relative;
    display: block;
    text-align: center;
}

.banner-three__text {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 700;
    margin: 0;
    opacity: .7;
    padding-bottom: 18px;
}

.banner-three__title {
    font-size: 80px;
    font-weight: 900;
    color: var(--thm-base);
    line-height: 88px;
}

.banner-three__form-box {
    position: relative;
    display: block;
    max-width: 945px;
    width: 100%;
    margin: 0 auto;
    padding-top: 59px;
}



.banner-three__type {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: var(--thm-border-radius);
}

.banner-three__input {
    position: relative;
    float: left;
}

.banner-three__input:before {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 1px;
    content: "";
    background-color: #d7dce4;
    z-index: 1;
}

.banner-three__input:first-child:before {
    display: none;
}

.banner-three__input-need {
    max-width: 265px;
    width: 100%;
}

.banner-three__input input[type="text"] {
    height: 75px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    padding-left: 40px;
    padding-right: 40px;
    background-color: transparent;
}

.banner-three-form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 320px !important;
}

.banner-three-form .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.banner-three-form .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none !important;
    border-radius: 0;
    border: none;
    background-color: #ffffff !important;
    margin: 0;
    padding: 0;
    padding-left: 40px;
    padding-right: 40px;
    color: var(--thm-gray) !important;
    font-size: 16px;
    line-height: 73px;
    font-weight: 400;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;
}

.banner-three__input-date {
    max-width: 360px;
    width: 100%;
}

.banner-three__search {
    position: absolute;
    top: 50%;
    right: 10px;
    bottom: 0;
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    padding: 0;
    width: 60px;
    height: 55px;
    transform: translateY(-50%);
    border-radius: var(--thm-border-radius);
    color: var(--thm-base);
    font-size: 24px;
    line-height: 60px;
    transition: all 500ms ease;
}

.banner-three__search:hover {
    background-color: var(--thm-black);
}

.banner-three__input button:focus {
    outline: none;
}

/*--------------------------------------------------------------
# Search Box
--------------------------------------------------------------*/
.search-box {
    position: relative;
    display: block;
    padding: 0 0 0;
    margin-top: -230px;
    z-index: 2;
}

.search-box__container {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    max-width: 1030px;
    width: 100%;
    padding: 60px 60px 60px;
    margin: 0 auto;
    border-radius: var(--thm-border-radius);
}

.search-box__form {
    position: relative;
    display: block;
}

.search-box__main {
    position: relative;
    display: block;
}

.search-box__input {
    position: relative;
    float: left;
    max-width: 290px;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 20px;
}





.search-box__input:nth-child(3) {
    margin-right: 0;
}

.search-box__input:nth-child(4) {
    margin-bottom: 0;
}

.search-box__input:nth-child(5) {
    margin-bottom: 0;
}

.search-box__input:nth-child(6) {
    margin-bottom: 0;
    margin-right: 0;
}

.search-box__icon-box {
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 30px;
    transform: translateY(-50%);
}

.search-box__icon-box i {
    font-size: 15px;
    color: var(--thm-gray);
}

.search-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 290px !important;

}

.search-box .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.search-box .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none !important;
    border-radius: var(--thm-border-radius);
    border: 0;
    background-color: #ffffff !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--thm-gray) !important;
    font-size: 16px;
    line-height: 75px;
    font-weight: 400;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;

}

.search-box__input input[type="text"] {
    width: 100%;
    height: 75px;
    border: none;
    outline: none;
    border-radius: var(--thm-border-radius);
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
    padding: 0 30px;
}

.search-box__btn {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 700;
    background-color: var(--thm-black);
    padding: 20.5px 90px;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.search-box__input button:focus {
    outline: none;
}

.search-box__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}


#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--thm-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-primary) none repeat scroll 0 0;
    border: 2px solid var(--thm-primary);
    border-radius: 0;
    color: var(--thm-base);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
    font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--thm-font);
}







/*--------------------------------------------------------------
# Premium Ride
--------------------------------------------------------------*/
.premium-ride {
    position: relative;
    display: block;
    padding: 120px 0 78px;
}





.premium-ride__single {
    position: relative;
    text-align: center;
    max-width: 384px;
    width: 100%;
    padding: 0 70px;
    float: left;
    margin-bottom: 30px;
}

.premium-ride__single:before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    width: 1px;
    background-color: #d7dce4;
    left: 0;
}

.premium-ride__single:first-child:before {
    display: none;
}

.premium-ride__img {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 0%;
}

.premium-ride__img:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 0%;
    background-color: rgba(var(--thm-black-rgb), .50);
    transform: scale(0);
    transition: all 500ms ease;
    z-index: 1;
}

.premium-ride__single:hover .premium-ride__img:before {
    transform: scale(1);
}

.premium-ride__img img {
    border-radius: 0%;
    width: 100%;
    transition: all 500ms ease;
}

.premium-ride__single:hover .premium-ride__img img {
    transform: scale(1.2)
}

.premium-ride__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin-top: 25px;
    margin-bottom: 16px;
}

.premium-ride__text {
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Featured One
--------------------------------------------------------------*/
.featured-one {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 100px 0 90px;
}

.featured-one .section-title {
    margin-bottom: 46px;
}

.featured-one__btn-box {
    position: relative;
    display: block;
    float: right;
    margin-top: 15px;
}



.featured-one__left {
    position: relative;
    display: block;
}

.featured-one__left-img {
	position: relative;
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
	
	z-index: 1;
		
}

.featured-one__left-img img {
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.featured-one__left-img:hover img {
    transform: scale(1.05);
}

.featured-one__left-img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 40px;
    padding-top: 32px;
    padding-bottom: 32px;
    z-index: 1;
}

.featured-one__left-img-content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), 0.90);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    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;
    z-index: -1;
    transform-origin: bottom center;
}

.featured-one__left:hover .featured-one__left-img-content:before {
    transform: scaleY(1.0);
}

.featured-one__left-img-title {
    font-size: 24px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 5px;
}

.featured-one__left-img-title a {
    color: inherit;
    transition: all 500ms ease;
}

.featured-one__left-img-title a:hover {
    color: var(--thm-primary);
}

.featured-one__left-car-price {
    font-size: 17px;
    color: var(--thm-base);
    margin: 0;
}

.featured-one__left-car-price span {
    font-size: 24px;
    color: var(--thm-primary);
    font-weight: 700;
}

.featured-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.featured-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    z-index: 1;
}

.featured-one__img:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 255px;
    background-image: -moz-linear-gradient(90deg, rgb(14, 20, 28) 0%, rgba(14, 20, 28, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(14, 20, 28) 0%, rgba(14, 20, 28, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(14, 20, 28) 0%, rgba(14, 20, 28, 0) 100%);
    border-radius: var(--thm-border-radius);
    z-index: 2;
}

.featured-one__img img {
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.featured-one__single:hover .featured-one__img img {
    transform: scale(1.05);
}

.featured-one__img-content {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    padding-top: 30px;
    padding-left: 40px;
    padding-bottom: 30px;
    z-index: 4;
}

.featured-one__img-content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), 0.90);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    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;
    z-index: -1;
}

.featured-one__single:hover .featured-one__img-content:before {
    transform: scaleY(1.0);
}



.featured-one__img-content-title {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 25px;
}

.featured-one__img-content-title a {
    color: inherit;
    transition: all 500ms ease;
}

.featured-one__img-content-title a:hover {
    color: var(--thm-primary);
}

.featured-one__img-content-car-price {
    font-size: 15px;
    color: var(--thm-base);
    margin: 0;
}

.featured-one__img-content-car-price span {
    font-size: 24px;
    color: var(--thm-primary);
    font-weight: 700;
}

/*--------------------------------------------------------------
# Explore Car
--------------------------------------------------------------*/
.explore-car {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.explore-car__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.explore-car .section-title {
    margin-bottom: 46px;
}

.explore-car__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.explore-car__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

.explore-car__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .5);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}

.explore-car__single:hover .explore-car__img:before {
    transform: scaleX(1);
}

.explore-car__img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.explore-car__single:hover .explore-car__img img {
    transform: scale(1.05);
}

.explore-car__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.explore-car__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .3);
    border-radius: 50%;
    z-index: -1;
}

.explore-car__single:hover .explore-car__icon:before {
    background-color: rgba(var(--thm-base-rgb), 1);
}

.explore-car__icon i {
    font-size: 20px;
    color: var(--thm-base);
    transition: all 500ms ease;
    opacity: .3;
}

.explore-car__single:hover .explore-car__icon i {
    opacity: 1;
    color: var(--thm-black);
}

.explore-car__content {
    position: relative;
    display: block;
    border: 1px solid #d7dce4;
    border-top: 0;
    padding: 34px 38px 28px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms ease;
}

.explore-car__single:hover .explore-car__content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.explore-car__sub-title {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 26px;
}

.explore-car__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.explore-car__title a {
    color: inherit;
    transition: all 500ms ease;
}

.explore-car__title a:hover {
    color: var(--thm-primary);
}

.explore-car__price {
    font-size: 15px;
    margin: 0;
    line-height: 30px;
}

.explore-car__price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
}

.explore-car__details {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 23px;
}

.explore-car__details li {
    position: relative;
    float: left;
    border-right: 1px solid var(--thm-base);
}

.explore-car__details li:last-child {
    border-right: 0;
}

.explore-car__details li a {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 21px;
    background-color: #e9edf2;
    display: inline-block;
    transition: all 500ms ease;
}

.explore-car__details li a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Rent Car
--------------------------------------------------------------*/
.rent-car {
    position: relative;
    display: block;
}

.rent-car__left {
    position: relative;
    display: block;
}

.rent-car__img {
    position: relative;
    display: block;
    margin-left: -362px;
}

.rent-car__img img {
    width: 100%;
    border-top-right-radius: 5px;
}

.rent-car__vid-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.rent-car__video-icon {
    position: relative;
    display: block;
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    font-size: 25px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.rent-car__video-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.rent-car__video-icon:before {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}



.rent-car__video-icon .ripple,
.rent-car__video-icon .ripple:before,
.rent-car__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    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;
}

.rent-car__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.rent-car__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

.rent-car__right {
    position: relative;
    display: block;
    margin-left: 70px;
}

.rent-car__right .section-title {
    margin-bottom: 46px;
}

.rent-car__list-box {
    position: relative;
    display: block;
}

.rent-car__list-box li {
    position: relative;
    display: block;
    padding-left: 90px;
}

.rent-car__list-box li+li {
    margin-top: 39px;
}

.rent-car__icon {
    height: 58px;
    width: 58px;
    color: var(--thm-primary);
    background-color: #e9edf2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 500ms ease;
}

.rent-car__list-box li:hover .rent-car__icon {
    background-color: var(--thm-black);
    color: var(--thm-base);
}





.rent-car__content-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 18px;
}

.rent-car__content-text {
    margin: 0;
    line-height: 32px;
}

/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/
.download {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
}

.download__content {
    position: relative;
    display: block;
    padding-top: 108px;
    padding-bottom: 120px;
}

.download__text {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    padding-bottom: 9px;
}

.download__title {
    font-size: 60px;
    font-weight: 900;
    color: var(--thm-base);
    line-height: 70px;
}

.download__btns {
    display: flex;
    align-items: center;
    margin-top: 56px;
}



.download__btn-1 a {
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-black);
    display: flex;
    align-items: center;
    background-color: var(--thm-base);
    padding: 18px 50px;
    border-radius: 5px;
    transition: all 500ms ease;
}

.download__btn-1 a:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.download__btn-1 i {
    font-size: 25px;
    margin-right: 20px;
}

.download__btn-1 i.fa-apple {
    font-size: 29px;
}

.download__btn-1 p {
    margin: 0;
    line-height: 15px;
}

.download__btn-1 p span {
    font-size: 14px;
    line-height: 24px;
}

.download__btn-2 {
    margin-left: 10px;
}

.download__screen {
    position: relative;
    display: block;
    padding-top: 128px;
}

.download__screen-image {
    position: relative;
    display: block;
    margin-left: -42px;
}

.download__screen-image img {
    width: 100%;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 120px 0 180px;
}

.about-one__img {
    position: relative;
    display: block;
}

.about-one__img:before {
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: -30px;
	width: 30px;
	content: "";
	background-color: #A5CEED;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.about-one__img img {
    width: 100%;
    border-radius: 5px;
}

.about-one__content {
    position: relative;
    display: block;
    margin-left: 70px;
}

.about-one__content .section-title {
    margin-bottom: 37px;
}

.about-one__text {
	font-weight: 500;
	line-height: 32px;
	color: #000;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}

.about-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 33px;
}



.about-one__bottom-icon span {
    font-size: 65px;
    color: var(--thm-primary);
}

.about-one__bottom-text {
    margin-left: 35px;
}

.about-one__bottom-text p {
    margin: 0;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    margin-top: -60px;
}

.brand-one__single {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.brand-one__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.05);
    content: "";
    transition: all 500ms ease;
    z-index: -1;
}

.brand-one__single:hover:before {
    background-color: var(--thm-black);
}

.brand-one__main-img {
    opacity: 1;
    transition: all 500ms ease;
}

.brand-one__single:hover .brand-one__main-img {
    opacity: 0;
}



.brand-one__main-img>a>img {
    width: 100%;
    opacity: .25;
}

.brand-one__overly {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms ease;
}

.brand-one__single:hover .brand-one__overly {
    opacity: 1;
}



.brand-one__overly>a>img {
    width: 100%;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.news-one .section-title {
    margin-bottom: 46px;
}

.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.news-one__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
    transform: scale(1);
    transition: all 500ms ease;
}

.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.9);
    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%);
    border-radius: var(--thm-border-radius);
}

.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 {
    height: 60px;
    width: 60px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 500ms ease;
    z-index: 2;
}

.news-one__date-box:hover {
    background-color: var(--thm-base);
}

.news-one__date-box p {
    font-size: 14px;
    font-weight: 700;
    color: var(--thm-base);
    margin: 0;
    line-height: 15px;
    text-align: center;
    transition: all 500ms ease;
}

.news-one__date-box:hover p {
    color: var(--thm-primary);
}

.news-one__content {
    position: relative;
    display: block;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    margin-top: -30px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px 30px 30px;
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
}

.news-one__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-one__meta li {
    position: relative;
    display: block;
    line-height: 29px;
}

.news-one__meta li+li {
    margin-left: 7px;
}

.news-one__meta li a {
    font-size: 14px;
    transition: all 500ms ease;
}

.news-one__meta li a:hover {
    color: var(--thm-primary);
}

.news-one__meta li a i {
    font-size: 12px;
    color: var(--thm-primary);
    padding-right: 2px;
}

.news-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    margin-bottom: 18px;
}

.news-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.news-one__title a:hover {
    color: var(--thm-primary);
}

.news-one__person {
    position: relative;
    display: flex;
    align-items: center;
}



.news-one__person-img img {
    border-radius: 50%;
}

.news-one__person-text {
    margin-left: 10px;
}

.news-one__person-text span {
    font-size: 14px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 36px 0;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-one__left {
    display: flex;
    align-items: center;
}



.cta-one__icon span {
    font-size: 85px;
    color: var(--thm-base);
}

.cta-one__content {
    margin-left: 40px;
}

.cta-one__content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-base);
    margin: 0;
}

.cta-one__content h2 {
    font-size: 40px;
    color: var(--thm-base);
    line-height: 50px;
    font-weight: 900;
}



.cta-one__btn {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--thm-black);
    padding: 20.5px 90px;
}

.cta-one__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
}

.site-footer-bg {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer__top {
    padding-top: 60px;
    border-bottom: 1px solid rgba(var(--thm-base-rgb), .10);
    padding-bottom: 40px;
    margin-bottom: 30px;
}









.footer-widget__about-text {
    font-weight: 500;
    color: #9ea8b6;
    margin: 0;
    padding-top: 25px;
    padding-bottom: 23px;
}



.footer-widget__about-btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.footer-widget__title {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 22px;
}

.footer-widget__explore {
    margin-right: -20px;
}

.footer-widget__explore-list-width {
    width: 179px;
}

.footer-widget__explore-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 0px;
}

.footer-widget__explore-list li+li {
    margin-top: 6px;
}

.footer-widget__explore-list li a {
    position: relative;
    color: #9ea8b6;
    font-weight: 500;
    transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover {
    padding-left: 20px;
    color: var(--thm-base);
}

.footer-widget__explore-list li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    width: 12px;
    height: 4px;
    content: "";
    background-color: var(--thm-primary);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 500ms ease;
}











.footer-widget__explore-list li a:hover:before {
    opacity: 1;
}

.footer-widget__explore-list-two {
    margin-right: 0;
}









.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(var(--thm-base-rgb), .10);
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.footer-widget__contact-list li:last-child {
    border-bottom: 0;
}

.footer-widget__contact-list li .icon span {
	font-size: 16px;
	color: #00A0E9;
	
}

.footer-widget__contact-list li .text {
    margin-left: 12px;
}

.footer-widget__contact-list li .text p {
    color: #9ea8b6;
    font-weight: 500;
    margin: 0;
}

.footer-widget__contact-list li .text p a {
    color: #9ea8b6;
    transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
    color: var(--thm-base);
}



.footer-widget__newsletter-text {
    color: #9ea8b6;
    margin: 0;
    font-weight: 500;
}



.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.footer-widget__newsletter-input-box input[type="email"] {
    height: 75px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: var(--thm-border-radius);
    font-size: 16px;
    color: var(--thm-gray);
    padding: 0 30px;
    padding-right: 60px;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    width: 60px;
}

.footer-widget__newsletter-btn i {
    font-size: 15px;
    color: var(--thm-primary);
}

.footer-widget__newsletter-input-box button:focus {
    outline: none;
}

.site-footer-bottom {
    position: relative;
    display: block;
    padding-bottom: 28px;
}

.site-footer-bottom__inner {
    position: relative;
    display: block;
    text-align: center;
}

.site-footer__social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.site-footer__social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    width: 60px;
    height: 60px;
    background-color: #0e141c;
    color: var(--thm-base);
    font-size: 18px;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__social a+a {
    margin-left: 10px;
}

.site-footer__social a:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.site-footer-bottom__copy-right {
    color: #9ea8b6;
    font-weight: 500;
    margin: 0;
}

.site-footer-bottom__copy-right a {
    color: #9ea8b6;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-bottom__copy-right a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Popular
--------------------------------------------------------------*/
.popular {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.popular .section-title {
    margin-bottom: 58px;
}

.popular__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.popular__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.popular__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .40);
    border-radius: var(--thm-border-radius);
    z-index: 1;
}

.popular__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
    transform: scale(1);
    transition: all 500ms ease;
}

.popular__single:hover .popular__img img {
    transform: scale(1.05);
}

.popular__properties {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 4px 20px;
    border-radius: var(--thm-border-radius);
    z-index: 1
}

.popular__properties:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .3);
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
    z-index: -1;
}

.popular__single:hover .popular__properties:before {
    background-color: rgba(var(--thm-black-rgb), 1);
}

.popular__properties p {
    font-size: 14px;
    color: var(--thm-base);
    margin: 0;
    font-weight: 900;
}

.popular__title-box {
    position: absolute;
    bottom: 55px;
    left: 60px;
    z-index: 2;
}

.popular__title {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 40px;
}

.popular__title a {
    color: inherit;
    transition: all 500ms ease;
}

.popular__title a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Explore Rent
--------------------------------------------------------------*/
.explore-rent {
    position: relative;
    display: block;
}

.explore-rent:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: #e9edf2;
    height: 227px;
}

.explore-rent .section-title {
    margin-bottom: 58px;
}



.explore-rent__carousel.owl-carousel .owl-stage-outer {
    margin-right: -360px;
}

.explore-rent__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -155px;
    right: 0;
}

.explore-rent__carousel.owl-theme .owl-nav .owl-next {
    height: 60px;
    width: 60px;
    background: #e9edf2;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.explore-rent__carousel.owl-theme .owl-nav .owl-prev {
    height: 60px;
    width: 60px;
    background: #e9edf2;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    text-align: center;
    transform: rotate(180deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.explore-rent__carousel.owl-theme .owl-nav .owl-next:hover,
.explore-rent__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

.explore-rent__carousel.owl-theme .owl-nav button:focus {
    outline: none;
}

.explore-rent__single {
    position: relative;
    display: block;
}

.explore-rent__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

.explore-rent__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .5);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}

.explore-rent__single:hover .explore-rent__img:before {
    transform: scaleX(1);
}

.explore-rent__img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.explore-rent__single:hover .explore-rent__img img {
    transform: scale(1.05);
}

.explore-rent__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.explore-rent__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .3);
    border-radius: 50%;
    z-index: -1;
}

.explore-rent__single:hover .explore-rent__icon:before {
    background-color: rgba(var(--thm-base-rgb), 1);
}

.explore-rent__icon i {
    font-size: 20px;
    color: var(--thm-base);
    transition: all 500ms ease;
    opacity: .3;
}

.explore-rent__single:hover .explore-rent__icon i {
    opacity: 1;
    color: var(--thm-black);
}

.explore-rent__content {
    position: relative;
    display: block;
    border: 2px solid #d7dce4;
    border-top: 0;
    padding: 34px 38px 28px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: rgb(255, 255, 255);
    transition: all 500ms ease;
}

.explore-rent__sub-title {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 26px;
}

.explore-rent__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.explore-rent__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.explore-rent__title a:hover {
    color: var(--thm-primary);
}

.explore-rent__price {
    font-size: 15px;
    margin: 0;
    line-height: 30px;
}

.explore-rent__price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
}

.explore-rent__details {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 23px;
}

.explore-rent__details li {
    position: relative;
    float: left;
    border-right: 1px solid var(--thm-base);
}

.explore-rent__details li:last-child {
    border-right: 0;
}

.explore-rent__details li a {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 29px;
    background-color: #e9edf2;
    display: inline-block;
    transition: all 500ms ease;
}

.explore-rent__details li a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 120px 0 90px;
}



.why-choose-one__right-text-box {
    position: relative;
    display: block;
    margin-top: 26px;
}

.why-choose-one__right-text {
    font-weight: 500;
    margin: 0;
}

.why-choose-one__single {
    position: relative;
    display: flex;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    align-items: center;
    padding: 37.5px 40px;
    margin-bottom: 30px;
}

.why-choose-one__icon {
    height: 65px;
    width: 65px;
    background-color: var(--thm-primary);
    font-size: 30px;
    color: var(--thm-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-one__icon span {
    position: relative;
    display: inline-block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-one__single:hover .why-choose-one__icon span {
    transform: scale(1.2);
}

.why-choose-one__text-box {
    margin-left: 20px;
}

.why-choose-one__text-box p {
    font-size: 18px;
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Rules
--------------------------------------------------------------*/
.rules {
    position: relative;
    display: block;
    padding: 106px 0 200px;
}

.rules-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
	background-position: center top;
}

.rules-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .7);
    z-index: -1;
}

.rules__right {
	
	color: #FFF;
}

.rules__left  h3 {
	font-size: 38px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 20px;	
}


.rules__title {
    font-size: 50px;
    font-weight: 900;
    color: var(--thm-base);
    line-height: 73px;
    margin-bottom: 44px;
}

.rules__btn {
    font-size: 18px;
    font-weight: 700;
    padding: 20.5px 90px;
}

.rules__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}





.rules__list-box li {
    display: flex;
    align-items: center;
}

.rules__list-box li+li {
    margin-top: 9px;
}

.rules__list-box li .icon {
    height: 15px;
    width: 15px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 10px;
    justify-content: center;
    color: var(--thm-black);
}



.rules__list-box li .text {
    margin-left: 15px;
}

.rules__list-box li .text p {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counters-one {
	position: relative;
	display: block;
	margin-top: -120px;
	margin-bottom: 90px;
}

.counters-one__box {
    position: relative;
    display: block;
    margin: 0;
    background-color: var(--thm-black);
    padding: 120px 0 78px;
    border-radius: var(--thm-border-radius);
}

.counter-one__single {
    position: relative;
    display: inline-block;
    max-width: 284px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.counter-one__single:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 7px;
    content: "";
    width: 1px;
    background-color: rgb(255, 255, 255, .20);
}

.counter-one__single:first-child:before {
    display: none;
}



.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: var(--thm-base);
    line-height: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(1.2);
}

.counter-one__single h3 {
    font-size: 40px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 45px;
    margin-top: 17px;
    font-family: var(--thm-font) !important;
}

.counter-one__text {
    color: #9ea8b6;
    margin: 0;
    line-height: 30px;
}

.counter-one__single .odometer-formatting-mark {
    display: none;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.pricing-one__left {
    position: relative;
    display: block;
    margin-right: 92px;
}





.pricing-one__buttons .tab-btns {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.pricing-one__buttons .tab-btns li {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 900;
    background-color: #e9edf2;
    padding: 9px 30px;
    transition: all 500ms ease;
    float: left;
    cursor: pointer;
}

.pricing-one__buttons .tab-btns li.active-btn {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

.pricing-one__buttons .tab-btns li:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

.pricing-one__checks-list {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding-top: 48px;
}

.pricing-one__checks-list li {
    position: relative;
    display: block;
    padding-left: 87px;
}

.pricing-one__checks-list li+li {
    margin-top: 40px;
}

.pricing-one__checks-icon {
	position: absolute;
	top: 0;
	left: 0;
	height: 58px;
	width: 58px;
	background-color: #e9edf2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 500ms ease;
}

.pricing-one__checks-list li:hover .pricing-one__checks-icon {
    background-color: var(--thm-primary);
}

.pricing-one__checks-icon i {
    color: var(--thm-primary);
    transition: all 500ms ease;
}

.pricing-one__checks-list li:hover .pricing-one__checks-icon i {
    color: var(--thm-base);
}



.pricing-one__checks-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 12px;
}

.pricing-one__checks-text {
    font-size: 16px;
    margin: 0;
}



.pricing-one__table {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 370px;
    background-color: #e9edf2;
    width: 100%;
    text-align: center;
    padding: 55px 60px 60px;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}



.pricing-one__rate-box h2 {
    font-size: 46px;
    color: var(--thm-black);
    font-weight: 400;
    transition: all 500ms ease;
}

.pricing-one__rate-box span {
    font-size: 12px;
    font-weight: 500;
}

.pricing-one__rate-box .pricing-one__dolar {
    font-size: 30px;
    position: relative;
    top: -15px;
}

.pricing-one__details-box {
    border-top: 1px solid rgba(255, 255, 255, 1);
    padding: 32px 0 28px;
    margin: 28px 0 0px;
    transition: all 500ms ease;
}

.pricing-one__details-title {
    font-size: 20px;
    color: var(--thm-black);
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 32px;
}

.pricing-one__details-box ul {
    margin-bottom: 0;
}

.pricing-one__details-box ul li {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    transition: all 500ms ease;
}

.pricing-one__details-box ul li+li {
    margin-top: 6px;
}



.pricing-one__btn {
    font-size: 18px;
    background-color: var(--thm-black);
    color: var(--thm-base);
    font-weight: 700;
    padding: 20.5px 60px;
}

.pricing-one__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.pricing-one__table-box {
    position: relative;
    display: block;
}

.pricing-one__table-box-single {
    position: relative;
    max-width: 370px;
    width: 100%;
}



.pricing-one__table-box .pr-content .pr-tab {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 1;
    z-index: 1;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transform: scale(0.9, 0.9) translateX(250px);
    -ms-transform: scale(0.9, 0.9) translateX(250px);
    -o-transform: scale(0.8, 0.9) translateX(250px);
    -moz-transform: scale(0.9, 0.9) translateX(250px);
    transform: scale(0.9, 0.9) translateX(250px);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab {
    position: relative;
    z-index: 5;
    -webkit-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    -moz-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
}


.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__table {
    background-color: var(--thm-primary);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__rate-box h2 {
    color: var(--thm-base);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__details-box {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__details-title {
    color: var(--thm-base);
}

.pricing-one__table-box .pr-content .pr-tab.active-tab .pricing-one__details-box ul li {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 2;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 330px 0 119px;
    margin-top: -237px;
}

.brand-two .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-two .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-two .swiper-slide img:hover {
    opacity: 0.7;
}

/*--------------------------------------------------------------
# Gallery One
--------------------------------------------------------------*/
.gallery-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 2;
}

.gallery-one__container-box {
    position: relative;
    display: block;
    max-width: 1660px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}



.gallery-one__single {
    position: relative;
    display: block;
}

.gallery-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.gallery-one__img-box:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(var(--thm-primary-rgb), 0.1);
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    -o-transform: translateY(-101%);
    -moz-transform: translateY(-101%);
    transform: translateY(-101%);
    border-radius: var(--thm-border-radius);
    z-index: 1;
}

.gallery-one__single:hover .gallery-one__img-box:before {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.gallery-one__img-box img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: var(--thm-border-radius);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.gallery-one__single:hover .gallery-one__img-box img {
    transform: scale(1.05);
}

.gallery-one__hover-content-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    z-index: 2;
}



.gallery-plus {
    position: relative;
}

.gallery-plus::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;
}

.gallery-plus::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%);
}

.gallery-one__hover-content-box i:hover {
    color: var(--thm-black);
}

.gallery-one__single:hover .gallery-one__hover-content-box {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition: all 500ms ease 500ms;
    -webkit-transition: all 500ms ease 500ms;
    -ms-transition: all 500ms ease 500ms;
    -o-transition: all 500ms ease 500ms;
}

/*--------------------------------------------------------------
# Types
--------------------------------------------------------------*/
.types {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.types__container {
    position: relative;
    display: block;
    max-width: 1650px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.types .section-title {
    margin-bottom: 59px;
}



.types__single {
    position: relative;
    display: block;
}

.types__img {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    overflow: hidden;
    z-index: 1;
}

.types__img:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 365px;
    background-image: -moz-linear-gradient(90deg, rgb(40, 47, 68) 0%, rgba(40, 47, 68, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(40, 47, 68) 0%, rgba(40, 47, 68, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(40, 47, 68) 0%, rgba(40, 47, 68, 0) 100%);
    z-index: 2;

}






.types__img img {
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
    transform: scale(1);
}

.types__single:hover .types__img img {
    transform: scale(1.05);
}

.types__img-title-box {
    position: absolute;
    bottom: 40px;
    left: 36px;
    z-index: 3;
}

.types__img-title {
    font-size: 20px;
    color: var(--thm-base);
    line-height: 30px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Explore Machine
--------------------------------------------------------------*/
.explore-machine {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.explore-machine .section-title {
    margin-bottom: 58px;
}

.explore-machine__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.explore-machine__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

.explore-machine__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .5);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}

.explore-machine__single:hover .explore-machine__img:before {
    transform: scaleX(1);
}

.explore-machine__img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.explore-machine__single:hover .explore-machine__img img {
    transform: scale(1.05);
}

.explore-machine__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.explore-machine__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .3);
    border-radius: 50%;
    z-index: -1;
}

.explore-machine__single:hover .explore-machine__icon:before {
    background-color: rgba(var(--thm-base-rgb), 1);
}

.explore-machine__icon i {
    font-size: 20px;
    color: var(--thm-base);
    transition: all 500ms ease;
    opacity: .3;
}

.explore-machine__single:hover .explore-machine__icon i {
    opacity: 1;
    color: var(--thm-black);
}

.explore-machine__content {
    position: relative;
    display: block;
    border: 2px solid #d7dce4;
    border-top: 0;
    padding: 34px 38px 28px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms ease;
}

.explore-machine__single:hover .explore-machine__content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.explore-machine__sub-title {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 26px;
}

.explore-machine__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.explore-machine__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.explore-machine__title a:hover {
    color: var(--thm-primary);
}

.explore-machine__price {
    font-size: 15px;
    margin: 0;
    line-height: 30px;
}

.explore-machine__price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
}

.explore-machine__details {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 23px;
}

.explore-machine__details li {
    position: relative;
    float: left;
    border-right: 1px solid var(--thm-base);
}

.explore-machine__details li:last-child {
    border-right: 0;
}

.explore-machine__details li a {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 29px;
    background-color: #e9edf2;
    display: inline-block;
    transition: all 500ms ease;
}

.explore-machine__details li a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.why-choose-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.why-choose-two-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(var(--thm-black-rgb), 0.9);
}

.why-choose-two-bg.jarallax div div {
    filter: grayscale(100%);
}



.why-choose-two .section-title__tagline {
    color: #9ea8b6;
}

.why-choose-two .section-title__title {
    color: var(--thm-base);
}

.why-choose-right__text-box {
    position: relative;
    display: block;
    margin-top: 26px;
}

.why-choose-right__text {
    color: #9ea8b6;
    margin: 0;
}

.why-choose-two__single {
    position: relative;
    display: block;
    border: 1px solid #3c4450;
    border-radius: var(--thm-border-radius);
    padding: 42px 50px 41px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.why-choose-two__single:hover {
    background-color: var(--thm-base);
    border: 1px solid transparent;
}

.why-choose-two__title {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 36px;
    transition: all 500ms ease;
}

.why-choose-two__single:hover .why-choose-two__title {
    color: var(--thm-black);
}



.why-choose-two__icon span {
    font-size: 65px;
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-two__img-box {
    position: relative;
    display: block;
    margin-right: -100px;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
}

.about-two__right-content {
    position: relative;
    display: block;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding-top: 107px;
    padding-bottom: 108px;
    padding-left: 120px;
    margin-left: -100px;
    padding-right: 127px;
    top: 76px;
}

.about-two__right-content .section-title {
    margin-bottom: 36px;
}

.about-two__right-content .section-title__title {
    font-size: 50px;
    line-height: 60px;
}

.about-two__text {
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px -1px 0px 0px rgb(215 220 228);
    padding: 118px 0 119px;
    margin-top: 0;
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials-one {
    position: relative;
    display: block;
    padding: 120px 0 60px;
    background-color: #e9edf2;
}

.testimonials-one:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-base);
    height: 410px;
}

.testimonials-one .section-title {
    margin-bottom: 59px;
}



.testimonials-one__carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 60px;
}

.testimonials-one__single {
    position: relative;
    display: block;
    text-align: center;
}

.testimonials-one__img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    width: 230px !important;
    height: 230px !important;
    margin: 0 auto 30px;
}

.testimonials-one__img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.testimonials-one__content {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    padding: 38px 60px 41px;
    transition: all 500ms ease;
}

.testimonials-one__single:hover .testimonials-one__content {
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

.testimonials-one__content:before {
    position: absolute;
    top: -20px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    height: 20px;
    width: 69px;
    content: "";
    background-image: url(../images/testimonials-one-shape-1.png);
    background-repeat: no-repeat;
}

.testimonials-one__text {
    font-size: 20px;
    margin: 0;
    line-height: 40px;
}



.testimonials-one__client-name {
    font-size: 24px;
    color: var(--thm-primary);
    font-weight: 700;
    line-height: 34px;
    margin-top: 30px;
}

.testimonials-one__client-title {
    color: var(--thm-black);
    margin: 0;
    line-height: 26px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 200px 0 129px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(var(--thm-black-rgb), .55);
    z-index: 1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}

.thm-breadcrumb {
    padding-top: 3px;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 18px;
    font-weight: 700;
    opacity: .7;
}

.thm-breadcrumb li+li {
    margin-left: 8px;
}

.thm-breadcrumb li a {
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--thm-primary);
}



.page-header__inner h2 {
    font-size: 60px;
    color: var(--thm-base);
    line-height: 74px;
    font-weight: 900;
}

/*News Page*/
.news-page {
    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%;
    border-radius: var(--thm-border-radius);
}

.news-details__date-box {
    height: 60px;
    width: 60px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 500ms ease;
    z-index: 2;
}

.news-details__date-box:hover {
    background-color: var(--thm-base);
}

.news-details__date-box p {
    font-size: 14px;
    font-weight: 700;
    color: var(--thm-base);
    margin: 0;
    line-height: 15px;
    text-align: center;
    transition: all 500ms ease;
}

.news-details__date-box:hover p {
    color: var(--thm-primary);
}

.news-details__content {
    position: relative;
    display: block;
    margin-top: 31px;
}

.news-details__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-details__meta li {
    position: relative;
    display: block;
}

.news-details__meta li+li {
    margin-left: 7px;
}

.news-details__meta li a {
    font-size: 14px;
    transition: all 500ms ease;
}

.news-details__meta li a:hover {
    color: var(--thm-primary);
}

.news-details__meta li a i {
    font-size: 13px;
    color: var(--thm-primary);
    padding-right: 2px;
}

.news-details__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 24px;
}

.news-details__text-one {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    padding-bottom: 33px;
}

.news-details__text-two {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.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;
    border-top: 1px solid #d7dce4;
    padding: 30px 0 30px;
    margin-top: 51px;
}

.news-details__bottom p {
    margin: 0;
}



.news-details__tags span {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 18px;
}

.news-details__tags a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__tags a:hover {
    color: var(--thm-primary);
}

.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-gray);
    background-color: #e9edf2;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__social-list a+a {
    margin-left: 10px;
}

.news-details__social-list a:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

/* author */

.author-one {
    background-color: #e9edf2;
    padding: 60px 60px 60px;
    display: -webkit-box;
    display: flex;
    margin-bottom: 54px;
    border-radius: var(--thm-border-radius);
}

.author-two {
	background-color: #e9edf2;
	margin-bottom: 54px;
	border-radius: var(--thm-border-radius);
	margin-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	width: 100%;
	position: relative;
	padding-top: 20px;
	padding-bottom: 5px;
	color: #666;
	font-size: 16px;
}





.author-one__content {
    margin-left: 40px;
    margin-top: -8px;
}

.author-one__content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding-bottom: 19px;
}

.author-one__content p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    margin-top: 13px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 51px;
}

.comment-one__single {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid #d7dce4;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.comment-one__content {
    position: relative;
    margin-left: 40px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 700;
    margin-bottom: 45px;
}

.comment-one__content h3 span {
    font-size: 14px;
    color: var(--thm-primary);
}

.comment-one__content p {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.comment-one__btn {
    font-size: 14px;
    color: #ffffff;
    line-height: 40px;
    padding: 1px 20px;
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
}

.comment-one__btn:hover {
    background: var(--thm-black);
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-form .comment-form__title {
    margin-top: -6px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: none;
    background: #e9edf2;
    padding: 0 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
}

.comment-form__input-box textarea {
    font-size: 16px;
    color: var(--thm-gray);
    height: 215px;
    width: 100%;
    background: #e9edf2;
    padding: 20px 30px 30px;
    border: none;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
    font-weight: 400;
}

.comment-form__btn {
	font-size: 18px;
	font-weight: 500;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 5px;
	padding-left: 30px;
}

.comment-form__btn:hover {
    background: var(--thm-black);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 23px;
    font-weight: 900;
}

.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: 90px;
    border-radius: var(--thm-border-radius);
    width: 100%;
    padding-right: 100px;
}

.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-gray);
    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: 16px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 80px;
    outline: none;
    border: none;
    padding: 0;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 45px 20px 20px;
    background-color: #e9edf2;
    border-radius: var(--thm-border-radius);
}

.sidebar__post .sidebar__title {
    padding-left: 30px;
    margin-bottom: 0;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 21px;
    padding-bottom: 21px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: var(--thm-border-radius);
}

.sidebar__post-list li:hover {
    background-color: #ffffff;
    border-radius: var(--thm-border-radius);
}

.sidebar__post-list li+li {
    margin-top: 0px;
}

.sidebar__post-image {
    margin-right: 30px;
}

.sidebar__post-image>img {
    width: 70px;
    border-radius: var(--thm-border-radius);
}

.sidebar__post-content h3 {
    color: var(--thm-black);
    font-size: 18px;
    margin: 0;
    line-height: 28px;
    font-weight: 400;
}

.sidebar__post-content .sidebar__post-content_meta {
    color: var(--thm-gray);
    font-size: 12px;
    display: block;
    font-weight: 600;
}

.sidebar__post-content .sidebar__post-content_meta i {
    margin-right: 5px;
    color: var(--thm-primary);
}

.sidebar__post-content h3 {
    text-transform: unset;
}

.sidebar__post-content h3 span {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-primary);
    margin: 0;
    padding-bottom: 4px;
    display: block;
}

.sidebar__post-content h3 a {
    font-size: 16px;
    color: var(--thm-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
}

.sidebar__post-list li:hover .sidebar__post-content h3 a {
    color: var(--thm-black);
}

.sidebar__category {
    position: relative;
    display: block;
    background: #e9edf2;
    padding: 46px 20px 34px;
    border-radius: var(--thm-border-radius);
}

.sidebar__category .sidebar__title {
    padding-left: 30px;
    margin-bottom: 12px;
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li+li {
    margin-top: 3px;
}

.sidebar__category-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 30px;
    border-radius: var(--thm-border-radius);
    font-weight: 500;
}

.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-black);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: #e9edf2;
    padding: 30px 30px 30px;
    border-radius: var(--thm-border-radius);
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-list a {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
    margin-left: 5px;
}



.sidebar__tags-list a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__left .section-title {
    margin-bottom: 38px;
}

.contact-page__text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.contact-page__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 48px
}

.contact-page__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-gray);
    background-color: #e9edf2;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__social-list a+a {
    margin-left: 10px;
}

.contact-page__social-list a:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
    position: relative;
    display: block;
    z-index: 2;
}

.contact-info__single {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    text-align: center;
    padding: 85px 0 53px;
    margin-bottom: 80px;
}

.contact-info__icon {
    height: 100px;
    width: 100px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 500ms ease;
}

.contact-info__single:hover .contact-info__icon {
    background-color: var(--thm-black);
}





.contact-info__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.contact-info__details p {
    margin: 0;
}

.contact-info__details a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.contact-info__details a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    margin-top: 140px;
    z-index: 1;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-page__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-page__img {
    position: relative;
    display: block;
}

.about-page__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
}

.about-page__right {
    position: relative;
    display: block;
}

.about-page__right .section-title {
    margin-bottom: 36px;
}

.about-page__text {
	font-weight: 500;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 40px;
	margin-left: 0;
	line-height: 30px;
}

.about-page__list-box {
    position: relative;
    display: block;
    padding-top: 25px;
    padding-bottom: 41px;
}

.about-page__list-box li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-page__list-box li .icon {
    height: 15px;
    width: 15px;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.about-page__list-box li .text {
    margin-left: 10px;
}

.about-page__list-box li .text p {
    margin: 0;
    font-weight: 500;
}

.about-page__btn {
	font-size: 16px;
	font-weight: 700;
	padding-top: 10.5px;
	padding-right: 20px;
	padding-bottom: 10.5px;
	padding-left: 20px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.team-one .section-title {
    margin-bottom: 46px;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.team-one__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
    transform: scale(1);
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.05);
}

.team-one__content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 25px;
}

.team-one__name {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
}

.team-one__title {
    font-weight: 500;
}

.team-one__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

.team-one__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-gray);
    background-color: #e9edf2;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__social-list a+a {
    margin-left: 10px;
}

.team-one__social-list a:hover {
    background: var(--thm-primary);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Three Steps
--------------------------------------------------------------*/
.three-steps {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 120px 0 145px;
}

.three-steps__inner {
    position: relative;
    display: block;
    counter-reset: count;
}

.three-steps__single {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 20px 20px 0px rgb(0, 0, 0, .03);
    padding: 60px 60px 50px;
    margin-bottom: 30px;
}

.three-steps__counter-box {
    position: relative;
    display: block;
    height: 65px;
    width: 65px;
    background-color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 500ms ease;
}

.three-steps__counter-box:before {
    position: absolute;
    height: 65px;
    width: 65px;
    line-height: 65px;
    text-align: center;
    color: var(--thm-base);
    font-size: 18px;
    border-radius: 50%;
    font-weight: 500;
    counter-increment: count;
    content: "0"counter(count);
}

.three-steps__single:hover .three-steps__counter-box {
    background-color: var(--thm-black);
}

.three-steps__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.three-steps__text {
    font-weight: 500;
    margin: 0;
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
    position: relative;
    display: block;
    margin-top: -115px;
}

.video-two__img {
    position: relative;
    display: block;
}

.video-two__img img {
    width: 100%;
    border-radius: var(--thm-border-radius);
}

.video-two__vid-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.video-two__video-icon {
    position: relative;
    display: block;
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    font-size: 25px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-two__video-icon:before {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(23, 32, 45, 0.2);
    border-radius: 50%;
}

.video-two__video-icon .ripple,
.video-two__video-icon .ripple:before,
.video-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

/*How It Works Brand*/
.how-it-works-brand {
    background-color: var(--thm-base);
    padding-top: 118px;
    margin-top: 0;
    border-bottom: 1px solid #d7dce4;
}

/*How It Works About*/
.how-it-works-about {
    background-color: var(--thm-base);
    padding-bottom: 120px;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
    display: block;
    padding: 71px 0 120px;
}

.error-page__inner {
    position: relative;
    display: block;
    text-align: center;
}

.error-page__title {
    font-size: 350px;
    font-weight: 400;
    line-height: 352px;
    color: var(--thm-primary);
    letter-spacing: 0.1em;
}

.error-page__tagline {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 21px;
}

.error-page__text {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.error-page__form {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
    margin: 54px auto 20px;
}

.error-page__form-input {
    position: relative;
    display: block;
}



.error-page__form input[type="search"] {
    height: 75px;
    max-width: 555px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #e9edf2;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: var(--thm-border-radius);
}

.error-page__form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-black);
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;
    width: 50px;
    outline: none;
    border: none;
}

.error-page__btn {
    font-size: 18px;
    font-weight: 700;
    padding: 20.5px 70px;
}

.error-page__btn:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
## Listing Top
--------------------------------------------------------------*/
.main-header-listing-page {
    position: relative;
    background-color: var(--thm-black);
}

.main-header-listing-page:before {
    display: none;
}

.listing-top {
    position: relative;
    display: block;
    border-bottom: 1px solid #d7dce4;
    padding: 37.5px 0;
}

.listing-top__container {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 100px 0;
    overflow: hidden;
}

.listing-top__left {
    position: relative;
    display: block;
    float: left;
}



.listing-top__menu li {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-weight: 500;
}

.listing-top__menu li+li {
    margin-left: 12px;
}

.listing-top__menu li a {
    color: var(--thm-gray);
    font-weight: 500;
}



.listing-top__right {
    position: relative;
    display: block;
    float: right;
}

.listing-top__map-show-hide {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.listing-top__map-show-hide-text {
    margin-right: 10px;
}

.listing-top__map-show-hide-text p {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    margin: 0;
}

.listing-top__map-show-hide-text p span {
    color: var(--thm-black);
}



.listing-top__map-show-hide-icon-box {
    width: 23px;
    height: 13px;
    position: relative;
    display: block;
    border-radius: 30px;
    background-color: #e9edf2;
    border: 1px solid #d7dce4;
}

.listing-top__map-show-hide-icon-box:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: 0;
    width: 13px;
    height: 13px;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transition: all 500ms ease;
}

.listing-top__map-show-hide.hidden .listing-top__map-show-hide-icon-box:before {
    left: calc(100% - 12px);
}








/*--------------------------------------------------------------
## Listing
--------------------------------------------------------------*/
.listing {
    position: relative;
    display: block;
    overflow: hidden;
}

.listing-container {
    position: relative;
    display: block;
    width: 100%;
}

.listing__content {
    position: relative;
    display: block;
    width: 55%;
    padding: 100px 100px 120px;
    float: left;
    z-index: 10;
}







.listing__search-form .row {
    --bs-gutter-x: 20px;
}

.listing__search-input {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.listing__search-input input[type="text"] {
    height: 75px;
    width: 100%;
    border-radius: var(--thm-border-radius);
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
    padding: 0 30px;
    background-color: #e9edf2;
}

.listing__search-form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100%;
}

.listing__search-form .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.listing__search-form .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none;
    border-radius: var(--thm-border-radius);
    border: 0;
    background-color: #e9edf2;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 75px;
    font-weight: 400;
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;
}

.min-price-input {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.min-price-input input[type="text"] {
    height: 75px;
    width: 100%;
    border-radius: var(--thm-border-radius);
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
    padding: 0 30px;
    background-color: #e9edf2;
}

.linsting__btn {
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-weight: 700;
    padding: 20.5px 133px;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.linsting__btn:hover {
    background-color: var(--thm-black);
}

.listing__search-form button:focus {
    outline: none;
}

.listing__filter {
    position: relative;
    display: block;
}

.listing__filter-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d7dce4;
    padding-top: 50px;
    margin-top: 50px;
}



.listing__filter-icon {
    display: flex;
    align-items: center;
}

.listing__filter-icon a {
    font-size: 20px;
    color: #e9edf2;
}

.listing__filter-icon a.active {
    color: var(--thm-primary);
}

.listing__filter-icon a.list-icon {
    margin-left: 15px;
}

.listing__filter-right {
    position: relative;
    display: block;
}

.listing__filter-shorting-box {
    position: relative;
    display: flex;
    align-items: center;
}

.listing__filter-shorting-box-text {
    margin-right: 20px;
}

.listing__filter-shorting-box-text p {
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
}



.listing__filter-shorting-input .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 295px !important;
}

.listing__filter-shorting-input .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.listing__filter-shorting-input .bootstrap-select>.dropdown-toggle {
    height: 65px;
    outline: none !important;
    border-radius: var(--thm-border-radius);
    border: 0;
    background-color: #e9edf2 !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--thm-gray) !important;
    font-size: 16px;
    line-height: 65px;
    font-weight: 400;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;
}

.listing__list-box {
    position: relative;
    display: block;
    margin-top: 50px;
}

.listing__list-box-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.listing__list-box-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

.listing__list-box-img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.listing__list-box-single:hover .listing__list-box-img img {
    transform: scale(1.05);
}

.listing__list-box__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.listing__list-box__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .3);
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
}

.listing__list-box-single:hover .listing__list-box__icon:before {
    background-color: rgba(var(--thm-base-rgb), 1);
}

.listing__list-box__icon i {
    font-size: 20px;
    color: var(--thm-base);
    transition: all 500ms ease;
    opacity: .3;
}

.listing__list-box-single:hover .listing__list-box__icon i {
    opacity: 1;
    color: var(--thm-black);
}

.listing__list-box-content {
    position: relative;
    display: block;
    border: 1px solid #d7dce4;
    border-top: 0;
    padding: 34px 40px 28px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms ease;
}

.listing__list-box-single:hover .listing__list-box-content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.listing__list-box-sub-title {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 26px;
}

.listing__list-box-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.listing__list-box-price {
    font-size: 15px;
    margin: 0;
    line-height: 30px;
}

.listing__list-box-price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
}

.listing__list-box-details {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 23px;
}

.listing__list-box-details li {
    position: relative;
    float: left;
    border-right: 1px solid var(--thm-base);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 22px;
    background-color: #e9edf2;
}

.listing__list-box-details li:last-child {
    border-right: 0;
}

.listing__pagination-box {
    position: relative;
    display: block;
    margin-top: 20px;
}



.listing__pagination li {
    position: relative;
    display: inline-block;
}

.listing__pagination li+li {
    margin-left: 5px;
}

.listing__pagination li a {
    height: 40px;
    width: 40px;
    display: flex;
    background-color: #e9edf2;
    color: var(--thm-gray);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.listing__pagination li a:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}







.listing__map {
    display: block;
    width: 45%;
    background: #ddd;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    float: right;
}

.listing__map.hidden {
    width: 0%;
}

.listing__content.hidden {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

@media(min-width: 992px) {
    .listing__content.hidden .listing__list-box .col-xl-6 {
        width: 33.33%;
    }
}

.listing-google-map {
    height: 100%;
    width: 100%;
    border: none;
}

/*--------------------------------------------------------------
# Listing Details
--------------------------------------------------------------*/
.listing-details {
    position: relative;
    display: block;
    padding-top: 120px;
}

.listing-details__left {
    position: relative;
    display: block;
}

.listing-details__gallery {
    position: relative;
    display: block;
}

.listing-details__gallery-content-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}



.listing-details__gallery-sliding-img>img {
    width: 100%;
    border-radius: var(--thm-border-radius);
}

.listing-details__thumb-box {
    position: relative;
    display: block;
}

.listing-details__thumb-box li {
    position: relative;
    float: left;
}

.listing-details__thumb-box li+li {
    margin-left: 30px;
}





.listing-details__img-holder>img {
    width: 170px;
    border-radius: var(--thm-border-radius);
}

.listing-details__gallery .bx-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

.listing-details__gallery .bx-wrapper .bx-viewport {
    box-shadow: none;
    border: 0px solid;
    left: 0px;
    background: transparent;
    transform: translatez(0);
}

.listing-details__gallery .bx-wrapper .bx-loading {
    min-height: 0;
    background: none;
    height: 100%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.listing-details__desc {
    position: relative;
    display: block;
    margin-top: 42px;
}

.listing-details__title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 20px;
}

.listing-details__text-1 {
    font-weight: 500;
    margin: 0;
    padding-bottom: 33px;
}

.listing-details__text-2 {
    font-weight: 500;
    margin: 0;
}


.listing-details__features {
    position: relative;
    display: block;
    border-top: 1px solid #d7dce4;
    padding-top: 40px;
    margin-top: 10px;
    border-bottom: 1px solid #d7dce4;
    margin-bottom: 50px;
    padding-bottom: 40px;
}



.listing-details__features-list li {
    display: flex;
    align-items: center;
}

.listing-details__features-list li+li {
    margin-top: 6px;
}

.listing-details__features-list li .icon {
	width: 25px;
	/* [disabled]background-color: var(--thm-primary); */
	border-radius: 50%;
	font-size: 8px;
	color: var(--thm-base);
	display: flex;
	align-items: center;
	justify-content: center;
}



.listing-details__features-list li .text {
    margin-left: 10px;
}

.listing-details__features-list li .text p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.listing-details__store-policies {
    position: relative;
    display: block;
    border-bottom: 1px solid #d7dce4;
    padding-bottom: 44px;
    margin-bottom: 52px;
}

.listing-details__store-policies-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 36px;
}





.listing-details__store-policies-text {
    font-size: 18px;
    margin: 0;
    line-height: 43px
}



.listing-details__location {
    position: relative;
    display: block;
}

.listing-details__location-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}



.listing-details__location-top-left h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
}



.listing-details__location-top-right p {
    font-weight: 500;
    margin: 0;
}



.listing-details__location-map-box {
    position: relative;
    display: block;
    width: 100%;
    height: 395px;
    border-radius: var(--thm-border-radius);
}



.listing-details__start-booking {
    position: relative;
    display: block;
    margin-top: 52px;
}

.listing-details__start-booking-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 50px;
}

.listing-details__start-booking-wrapper {
    position: relative;
    display: block;
    border: 1px solid #d7dce4;
    border-radius: var(--thm-border-radius);
}



.listing-details__start-booking-box .tab-btns {
    position: relative;
    display: block;
    z-index: 1;
    margin: 0;
}

.listing-details__start-booking-box .tab-btns .tab-btn {
    position: relative;
    float: left;
    text-align: center;
}

.listing-details__start-booking-box .tab-btns .tab-btn span {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    margin: 0;
    padding: 20.5px 50px;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 500;
    transition: all 500ms ease;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.listing-details__start-booking-box .tab-btns .tab-btn.active-btn span,
.listing-details__start-booking-box .tab-btns .tab-btn:hover span {
    background-color: #e9edf2
}



.listing-details__start-booking-box .tabs-content {
    position: relative;
    display: block;
    padding: 0;
}

.listing-details__start-booking-box .tabs-content .tab {
    position: relative;
    padding: 0px;
    display: none;
}

.listing-details__start-booking-box .tabs-content .tab.active-tab {
    display: block;
}

.listing-details__start-booking-content {
    position: relative;
    display: block;
    background-color: #e9edf2;
    padding: 40px 50px 50px;
}



.listing-details__start-booking-form {
    position: relative;
    display: block;
}

.listing-details__start-booking-input {
    position: relative;
    max-width: 324px;
    width: 100%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}



.listing-details__start-booking-input:nth-child(2) {
    margin-right: 0px;
}



.listing-details__start-booking-input:nth-child(4) {
    margin-right: 0px;
}



.listing-details__start-booking-input:nth-child(6) {
    margin-right: 0px;
}

.listing-details__start-booking-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100%;

}

.listing-details__start-booking-form .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.listing-details__start-booking-form .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none !important;
    border-radius: var(--thm-border-radius);
    border: 0;
    background-color: #ffffff !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--thm-gray) !important;
    font-size: 16px;
    line-height: 75px;
    font-weight: 400;
    box-shadow: none !important;
    background-position: right 25.75px center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
}

.listing-details__start-booking-input input[type="text"] {
    width: 100%;
    height: 75px;
    border: none;
    outline: none;
    border-radius: var(--thm-border-radius);
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 400;
    padding: 0 30px;
}

.listing-details__start-bookin-icon-box {
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 30px;
    transform: translateY(-50%);
}

.listing-details__start-bookin-icon-box i {
    font-size: 15px;
    color: var(--thm-gray);
}

.listing-details__dirver-baby-price-box {
    position: relative;
    display: block;
    max-width: 325px;
    width: 100%;
    margin-top: -4px;
}

.listing-details__dirver-baby-price-box-single {
    position: relative;
    display: block;
}

.listing-details__dirver-baby-price-box-single+.listing-details__dirver-baby-price-box-single {
    margin-top: 11px;
}

.listing-details__dirver-baby-price-left {
    position: relative;
    display: block;
    float: left;
}

.listing-details__dirver-baby-price-left input[type="checkbox"] {
    display: none;
}

.listing-details__dirver-baby-price-left label {
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-black);
    position: relative;
    display: inline-block;
    padding-left: 35px;
    cursor: pointer;
}

.listing-details__dirver-baby-price-left input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: var(--thm-base);
    cursor: pointer;
    border-radius: 50%;
    transition: all 300ms ease;
}

.listing-details__dirver-baby-price-left label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: var(--thm-base);
    font-size: 10px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    font-weight: 900;
    background-color: transparent;
    transition: all 300ms ease;
}

.listing-details__dirver-baby-price-left input[type="checkbox"]:checked+label span {
    background: var(--thm-primary);
}

.listing-details__dirver-baby-price-left input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.listing-details__dirver-baby-price-right {
    position: relative;
    display: block;
    float: right;
}

.listing-details__dirver-baby-price-right p {
    font-weight: 500;
    margin: 0;
}

.listing-details__start-booking-btn {
    font-size: 18px;
    color: var(--thm-base);
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    padding: 20.5px 98px;
    font-weight: 700;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
    margin-top: 15px;
}

.listing-details__start-booking-btn:hover {
    background-color: var(--thm-black);
}

.listing-details__calendar {
    margin-top: 60px;
    margin-bottom: 60px;
}

.listing-details__calendar .ui-widget-content {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(215, 220, 228);
    border-radius: 0;
    max-width: 540px;
    width: 100%;
    padding: 0;
}


.listing-details__calendar .ui-datepicker .ui-datepicker-title {
    font-size: 30px;
    color: var(--thm-primary);
    font-family: var(--thm-font);
    font-weight: 400;
}


.listing-details__calendar .ui-widget-header {
    background-image: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgb(215, 220, 228);
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 0.7em 0;
}

.listing-details__calendar .ui-datepicker th {
    font-size: 16px;
    color: var(--thm-black);
    font-weight: 500;
    border: 1px solid rgb(215, 220, 228);
    border-top: 0;
    font-family: var(--thm-font);
}

.listing-details__calendar .ui-datepicker tbody tr:not(:last-child) {
    border-bottom: 1px solid rgb(215, 220, 228);
}

.listing-details__calendar .ui-datepicker td {
    color: #677283;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--thm-font);
    padding: 0;
    background-color: #fff;
}

.listing-details__calendar .ui-datepicker td a {
    background-color: transparent !important;
    border: 0 !important;
    border-right: 1px solid rgb(215, 220, 228) !important;
    padding: 1.2em;
}

.listing-details__calendar .ui-datepicker td a.ui-state-active {
    background-color: var(--thm-black) !important;
    color: #fff !important;
}

.listing-details__calendar .ui-datepicker .ui-datepicker-prev,
.listing-details__calendar .ui-datepicker .ui-datepicker-next {
    top: 22px;
}

.listing-details__calendar .ui-datepicker .ui-datepicker-prev {
    left: 15px;
}

.listing-details__calendar .ui-datepicker .ui-datepicker-next {
    right: 15px;
}

.listing-details__calendar .ui-datepicker .ui-datepicker-prev::after {
    content: '\f104';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: var(--thm-black);
}

.listing-details__calendar .ui-datepicker .ui-datepicker-prev .ui-icon {
    background-image: none;
    margin: 0;
}


.listing-details__calendar .ui-datepicker .ui-datepicker-next::after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: var(--thm-black);
}

.listing-details__calendar .ui-datepicker .ui-datepicker-next .ui-icon {
    background-image: none;
    margin: 0;
}

.listing-details__calendar .ui-datepicker td:last-child a {
    border-right: 0 !important;
}

.listing-details__calendar table {
    margin-bottom: 0;
}



.listing-details__tag-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 20px;
}

.listing-details__tag-list {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-details__tag-list a {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    padding: 4px 30px;
    background-color: #e9edf2;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.listing-details__tag-list a+a {
    margin-left: 10px;
}

.listing-details__tag-list a:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.listing-details__reviews-box {
    position: relative;
    display: block;
    margin-top: 52px;
}

.listing-details__reviews-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 50px;
}

.listing-details__reviews-single {
    position: relative;
    display: flex;
    border-bottom: 1px solid #d7dce4;
    padding-bottom: 55px;
    margin-bottom: 60px;
}



.listing-details__reviews-img img {
    width: 165px;
    border-radius: 50%;
}

.listing-details__reviews-content {
    margin-left: 40px;
}

.listing-details__reviews-content-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}



.listing-details__reviews-content-top-title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
}

.listing-details__reviews-content-top-rating {
    margin-left: 5px;
}



.listing-details__reviews-content-top-rating-box li {
    position: relative;
    display: inline-block;
}

.listing-details__reviews-content-top-rating-box li i {
    font-size: 15px;
    color: var(--thm-primary);
}

.listing-details__reviews-content-text {
    font-weight: 500;
    margin: 0;
}

.listing-details__add-review {
    position: relative;
    display: block;
    margin-top: -8px;
}

.listing-details__add-review-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
}

.listing-details__add-review-rating {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.listing-details__add-review-rating li {
    position: relative;
    display: inline-block;
}

.listing-details__add-review-rating li i {
    font-size: 15px;
    color: var(--thm-primary);
}



.listing-details__add-review-form .row {
    --bs-gutter-x: 20px;
}

.listing-details__add-review-input-box {
    position: relative;
    display: block;
}

.listing-details__add-review-input-box input[type="text"],
.listing-details__add-review-input-box input[type="email"] {
    height: 75px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #e9edf2;
    border-radius: var(--thm-border-radius);
    padding: 0 30px;
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 20px;
}

.listing-details__add-review-input-box textarea {
    height: 215px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #e9edf2;
    border-radius: var(--thm-border-radius);
    padding: 25px 30px 30px;
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 10px;
}

.listing-details__add-review-btn {
    font-size: 18px;
    font-weight: 700;
    padding: 20.5px 60px;
}



.listing-deails__right-title {
    font-size: 33px;
    font-weight: 700;
    margin-top: -7px;
}

.listing-deails__right-rating {
    position: relative;
    display: block;
    margin-top: 3px;
    margin-bottom: 10px;
}

.listing-deails__right-rating li {
    position: relative;
    display: inline-block;
}

.listing-deails__right-rating li i {
    font-size: 15px;
    color: var(--thm-primary);
}

.listing-details__right-price-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.listing-details__right-price-icon {
    height: 45px;
    width: 45px;
    background-color: #e9edf2;
    color: var(--thm-primary);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.listing-details__right-price-text {
    margin-left: 10px;
}

.listing-details__right-price-text p {
    font-size: 15px;
    margin: 0;
}



.listing-details__contact-info-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-primary);
    border-radius: var(--thm-border-radius);
    color: var(--thm-base);
    padding: 16px 0;
    transition: all 500ms ease;
}

.listing-details__contact-info-phone:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.listing-details__contact-info-phone .icon {
    display: flex;
    align-items: center;
}

.listing-details__contact-info-phone span {
    font-size: 31px;
}

.listing-details__contact-info-phone .text {
    margin-left: 20px;
}

.listing-details__contact-info-phone .text>h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-base);
}

.listing-details__contact-info-phone .text>p {
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}

.listing-details__contact-info-message {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--thm-border-radius);
    color: var(--thm-black);
    padding: 19px 0;
    transition: all 500ms ease;
    border: 1px solid var(--thm-primary);
    margin-top: 20px;
    margin-bottom: 20px;
}

.listing-details__contact-info-message:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
    border: 1px solid transparent;
}

.listing-details__contact-info-message .icon {
    display: flex;
    align-items: center;
}

.listing-details__contact-info-message .icon span {
    font-size: 35px;
}

.listing-details__contact-info-message .text {
    margin-left: 20px;
}

.listing-details__contact-info-message .text p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}



.listing-details__share-report-favorite-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-details__share-report-favorite-btn a {
    color: var(--thm-gray);
    font-size: 12px;
    font-weight: 500;
    padding: 0 20px;
    background-color: #e9edf2;
    border-radius: var(--thm-border-radius);
    transition: all 500ms ease;
}

.listing-details__share-report-favorite-btn a+a {
    margin-left: 20px;
}

.listing-details__share-report-favorite-btn a i {
    margin-right: 5px;
}

.listing-details__share-report-favorite-btn a:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.listing-details__features-box {
	position: relative;
	display: block;
	background-color: #e9edf2;
	padding: 20px 30px 20px;
	border-radius: var(--thm-border-radius);
	/* [disabled]margin-top: 30px; */
}

.listing-details__features-box-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing-details__features-box-single+.listing-details__features-box-single {
    margin-top: 8px;
}



.listing-details__features-box-left p {
    font-weight: 500;
    margin: 0;
}



.listing-details__features-box-right span {
    font-weight: 500;
    color: var(--thm-black);
}

.listing-details__author {
    position: relative;
    display: block;
    border: 1px solid #d7dce4;
    border-radius: var(--thm-border-radius);
    padding: 20px 20px 20px;
    margin-top: 30px;
}

.listing-details__author-img {
    position: relative;
    display: block;
}

.listing-details__author-img img {
	width: 100%;
	border-radius: var(--thm-border-radius);
}

.listing-details__author-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 10px;
}



.listing-details__author-details-name h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}





.listing-details__author-details-rating li {
    position: relative;
    display: inline-block;
}

.listing-details__author-details-rating li i {
    font-size: 15px;
    color: var(--thm-primary);
}





.listing-details__author-contact-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-details__author-contact-list li+li {
    margin-top: 4px;
}



.listing-details__author-contact-list li .icon i {
    font-size: 15px;
    color: var(--thm-primary);
}

.listing-details__author-contact-list li .text {
    margin-left: 10px;
}

.listing-details__author-contact-list li .text p {
    margin: 0;
}

.listing-details__author-contact-list li .text p a {
    color: var(--thm-gray);
    font-weight: 500;
    transition: all 500ms ease;
}

.listing-details__author-contact-list li .text p a:hover {
    color: var(--thm-primary);
}

.listing-details__author-social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-top: 1px solid #d7dce4;
    padding-top: 30px;
    margin-top: 20px;
}

.listing-details__author-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-gray);
    background-color: #e9edf2;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-details__author-social-list a+a {
    margin-left: 10px;
}

.listing-details__author-social-list a:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.listing-details__ask-question {
    position: relative;
    display: block;
    margin-top: 30px;
}

.listing-details__ask-question-btn {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--thm-black);
    display: block;
    text-align: center;
    color: var(--thm-base);
    border-radius: var(--thm-border-radius);
    padding: 20.5px 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-details__ask-question-btn:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Similar Listings
--------------------------------------------------------------*/
.similar-listings {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}



.similar-listings__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.similar-listings__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

.similar-listings__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .5);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: 1;
}

.similar-listings__single:hover .similar-listings__img:before {
    transform: scaleX(1);
}

.similar-listings__img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 500ms ease;
    transform: scale(1);
}

.similar-listings__single:hover .similar-listings__img img {
    transform: scale(1.05);
}

.similar-listings__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.similar-listings__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-base-rgb), .3);
    border-radius: 50%;
    z-index: -1;
}

.similar-listings__single:hover .similar-listings__icon:before {
    background-color: rgba(var(--thm-base-rgb), 1);
}

.similar-listings__icon i {
    font-size: 20px;
    color: var(--thm-base);
    transition: all 500ms ease;
    opacity: .3;
}

.similar-listings__single:hover .similar-listings__icon i {
    opacity: 1;
    color: var(--thm-black);
}

.similar-listings__content {
    position: relative;
    display: block;
    border: 1px solid #d7dce4;
    border-top: 0;
    padding: 34px 38px 28px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms ease;
}

.similar-listings__single:hover .similar-listings__content {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.similar-listings__sub-title {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    line-height: 26px;
}

.similar-listings__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.similar-listings__price {
    font-size: 15px;
    margin: 0;
    line-height: 30px;
}

.similar-listings__price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
}

.similar-listings__details {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 23px;
}

.similar-listings__details li {
    position: relative;
    float: left;
    border-right: 1px solid var(--thm-base);
}

.similar-listings__details li:last-child {
    border-right: 0;
}

.similar-listings__details li a {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 21px;
    background-color: #e9edf2;
    display: inline-block;
    transition: all 500ms ease;
}

.similar-listings__details li a:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Listings Details Top
--------------------------------------------------------------*/
.listing-details-top {
    position: relative;
    display: block;
    border-bottom: 1px solid #d7dce4;
    padding: 37.5px 0;
}

.listing-details-top__menu {
    position: relative;
    display: block;
    overflow: hidden;
}

.listing-details-top__menu li {
    position: relative;
    float: left;
}

.listing-details-top__menu li+li {
    margin-left: 12px;
}

.listing-details-top__menu li a {
    font-weight: 500;
    color: var(--thm-gray);
}



.listing-details-top__menu li.active a {
    color: var(--thm-black);
}

table {
	border-collapse: collapse;
	width: 100%;
    max-width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #fff;
	font-size: 15px;
	line-height: 1.5;
	overflow:scroll;
	
}

th, td {
	padding: 4px;
	border: 1px solid #C5C5C5;	
}

tr:hover {
	background-color: #e9edf2;
}
.line-boder {
	position: relative;
	padding: 20px 30px 30px;
	border: 1px solid #e9edf2;
	background-color: #e9edf2;
}

.boder-bg {
	background-color: #e9edf2;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
