/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.cdnfonts.com/css/museo-sans-rounded");


* {
    padding: 0;
    margin: 0;
    font-family: "Museo Sans Rounded", Helvetica;
    box-sizing: border-box;
  } 
  
:root {
    --thm-font: 'Trebuchet MS';
    --thm-font-2: 'Trebuchet MS';
    --thm-font-3: 'Trebuchet MS';
    --thm-base: #518cc7;
    --thm-base-rgb: 255, 111, 15;
    --thm-black:#393472 ;
    --thm-black-rgb: 21, 11, 92;
    --thm-gray: #4a4c59;
    --thm-gray-rgb: 74, 76, 89;
}




.bg-blue{
    background-color: #518cc7;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.text-blue{
    color: #518cc7;
}

.logo-image{
    width: 180px;
    margin-top: 20px;
    z-index: 10000000;
}


.fixed-circle {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: -100px;
    width: 400px;
    height: 400px;
    z-index: 9999999;
    pointer-events: none; /* Allow interactions with elements below the image */
  }
  
  .fixed-circle img {
    width: 100%;
    height: 100%;
    opacity: 0.7; /* Adjust the opacity to your desired value */
  }

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin: 0;
}

p {
    margin: 0;
}

.noSelect {
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list {
    list-style-type: disc;
    margin: 0;
    padding: 0;
}


dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}



::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-purple{
    background-color: #393472;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 17px;
    margin: 5px;
}

/*==============================================
   Preloader
===============================================*/
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-base);
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.preloader-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 30px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 99999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;

    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;

    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;

    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;

    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 15px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
    font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    position: absolute;
    top: 0;
    left: 0;
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.5s;
}



.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: var(--thm-black);
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid var(--thm-black);
}


/* Animation preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}


@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
    .logo-image{
        width: 100px;
        margin-top: -10px;
        z-index: 1000;
    }

    

    
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 30px;
        letter-spacing: 10px;
    }
}


/***
=============================================
    Thm Btn
=============================================
***/
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-black);
    color:white;
    font-size: 17px;
    font-weight: 200;
    /* text-transform: capitalize; */
    padding: 10px 20px 10px;
    border-radius: 5px;
    font-family: var(--thm-font-3);
    letter-spacing: 0.015em;
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 1;
    margin-right: 10px;
}

.thm-btn:hover {
    color: var(--thm-base);
}

.thm-btn:before {
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
    background: var(--thm-black);
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.thm-btn:hover:before {
    top: -30%;
}






/***
=============================================
    Section Title
=============================================
***/
.sec-title {
    position: relative;
    display: block;
    margin-top: -6px;
    padding-bottom: 47px;
}

.sec-title__title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
}

.sec-title__text {
    position: relative;
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    font-family: var(--thm-font-3);
    margin-top: 11px;
}

/***
=============================================
    Scroll To Top 
=============================================
***/
.scroll-to-top {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 70px;
    background: var(--thm-base);
    position: fixed;
    bottom: 93px;
    right: 20px;
    z-index: 99;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

.scroll-to-top i {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 70px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}


/***
=============================================
    Main Header One
=============================================
***/
.main-header {
    position: relative;
    display: block;
}

.main-menu {
    position: relative;
    z-index: 91;
    top: -20px;

}

.main-menu__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-menu__inner .left {
    display: flex;
    align-items: center;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
    font-weight: 900;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 49px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    padding-top: 42px;
    padding-bottom: 42px;
    z-index: 1;
}



.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu .main-menu__list>li.dropdown a,
.stricky-header .main-menu__list>li.dropdown a {
    padding-right: 0px;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a::before {
    position: absolute;
    right: -15px;
    font-family: 'icomoon' !important;
    content: "\e906";
    color: var(--thm-black);
    font-size: 11px;
    line-height: 30px;
    font-weight: 700;
    transition: all 500ms ease;
    z-index: 1;
}

.main-menu .main-menu__list>li.current.dropdown>a::before,
.main-menu .main-menu__list>li:hover.dropdown>a::before {
    color: var(--thm-base);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 200ms ease, visibility 200ms ease, -webkit-transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, -webkit-transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, transform 400ms ease;
    transition: opacity 200ms ease, visibility 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
    z-index: 99;
}

.main-header-two__bottom .main-menu .main-menu__list li ul {
    margin-top: 13px;
}

.stricky-header .main-menu__list li ul {
    margin-top: 0px;
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid #f7f7f7;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    position: relative;
    display: block;
    color: rgba(var(--thm-black-rgb), 0.8);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    font-family: var(--thm-font-2);
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-base);
    color: var(--thm-black);
}


.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: var(--thm-black);
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.main-menu {
    padding: 0 0px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }

}

@media (max-width: 1199px) {

    .stricky-header {
        display: none !important
    }

}


@media (min-width: 1200px) {

    .mobile-nav__buttons {
        display: none;
    }

}


@media (min-width: 1200px) {

    .main-menu .mobile-nav__toggler {
        display: none;
    }

}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 30px;
    color: var(--thm-black);
    cursor: pointer;
    transition: 500ms;
    margin-right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler {
    color: var(--thm-base);
}

.main-menu.main-menu--1--2 .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

/***
=============================================
    Mobile Nav
=============================================
***/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 200px;
    background: white;
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
    
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__content .logo-box a {
    position: absolute;
    display: inline-block;
}

.mobile-nav__content .logo-box a img {
    width: 100px;
    
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li ul {
    padding-left: 10px;
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: var(--thm-black);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a:hover {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list li a button {
    width: 28px;
    height: 28px;
    background-color: var(--thm-base);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    border-radius: 0px;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-base);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: var(--thm-black);
}

.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: 400;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.07em;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: var(--thm-black);
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-base);
}

.mobile-nav__contact li>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--thm-base);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/***
=============================================
    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.9;
    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;
    padding-right: 90px;
}

.search-popup__content .thm-btn2 {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .thm-btn2::before {
    display: none;
}

.search-popup__content .thm-btn2:hover {
    background-color: var(--thm-black);
    color: var(--thm-black);
}

.search-popup__content .thm-btn2 i::before {
    margin: 0;
    color: var(--thm-black);
}


/***
=============================================
    Main Header One
=============================================
***/
.main-header-one {
    position: relative;
    display: block;
}

.main-header-one__wrapper {
    position: relative;
    display: block;
}


.main-header-one__top {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 15px 0px 15px;
}

.main-header-one__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-one__top-address {
    position: relative;
    display: block;
}

.main-header-one__top-address ul {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-one__top-address ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-header-one__top-address ul li:last-child {
    margin-right: 0px;
}

.main-header-one__top-address ul li .icon {
    position: relative;
    display: block;
}

.main-header-one__top-address ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
}

.main-header-one__top-address ul li .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-header-one__top-address ul li .text p {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}

.main-header-one__top-social-link {
    position: relative;
    display: block;
    line-height: 0;
}

.main-header-one__top-social-link ul {
    position: relative;
    display: block;
}

.main-header-one__top-social-link ul li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.main-header-one__top-social-link ul li:last-child {
    margin-right: 0px;
}

.main-header-one__top-social-link ul li a {
    position: relative;
    display: block;
    color: #cacaca;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 255, 255, .2);
    overflow: hidden;
    z-index: 1;
}

.main-header-one__top-social-link ul li a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 50%;
    background-color: var(--thm-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.main-header-one__top-social-link ul li a:hover::before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.main-header-one__top-social-link ul li a i {
    position: relative;
    display: block;
}

.main-header-one__top-social-link ul li a i::before {
    position: relative;
    display: inline-block;
    color: #cacaca;
    font-size: 12px;
    line-height: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.main-header-one__top-social-link ul li a:hover i::before {
    color: var(--thm-black);
}

.main-header-one__bottom {
    position: relative;
    display: block;
    background: var(--thm-black);
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 100px;
    
}



.main-header-one__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu--1 {
    position: relative;
    display: block;
}

.main-header-one__bottom-right-search {
    position: relative;
    display: block;
    margin-left: 30px;
}

.main-header-one__bottom-right-search .main-menu__search {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 700;
}


.main-header-one .language-switcher {
    position: relative;
    display: block;
    margin-left: 20px;
}

.main-header-one__bottom-right-btn {
    position: relative;
    display: block;
    margin-left: 25px;
}

.stricky-header .main-header-one__bottom-right-search {
    display: none;
}

.stricky-header .language-switcher {
    display: none;
}

.stricky-header .main-header-one__bottom-right-btn {
    /* display: none; */
}

/***
=============================================
    Main Header Two
=============================================
***/
.main-header-one--two {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 99;
}

.main-header-one--two .main-header-one__bottom {
    position: relative;
    display: block;
    background: transparent;
}

.main-header-one--two .main-menu .main-menu__list>li>a,
.main-header-one--two .stricky-header .main-menu__list>li>a {
    color: var(--thm-black);
    font-weight: 900;
}

.main-header-one--two .main-menu .main-menu__list>li.current>a,
.main-header-one--two .main-menu .main-menu__list>li:hover>a,
.main-header-one--two .stricky-header .main-menu__list>li.current>a,
.main-header-one--two .stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-header-one--two .main-menu .main-menu__list>li.dropdown>a::before {
    color: var(--thm-black);
}

.main-header-one--two .main-menu .main-menu__list>li.current.dropdown>a::before,
.main-header-one--two .main-menu .main-menu__list>li:hover.dropdown>a::before {
    color: var(--thm-base);
}

.main-header-one--two .main-header-one__bottom-right-search .main-menu__search {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-one--two .main-header-one__bottom-right-search .main-menu__search:hover {
    color: var(--thm-base);
}

.main-header-one--two .main-menu .mobile-nav__toggler {
    color: var(--thm-black);
}

.main-header-one--two .main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}


.stricky-header.main-menu--2 .main-menu__list>li>a {
    color: var(--thm-black);
}

.stricky-header.main-menu--2.main-menu .main-menu__list>li.dropdown>a::before {
    color: var(--thm-black);
}

.stricky-header.main-menu--2.main-menu .main-menu__list>li.current.dropdown>a::before,
.stricky-header.main-menu--2.main-menu .main-menu__list>li:hover.dropdown>a::before {
    color: var(--thm-base);
}


.stricky-header.main-menu--2 .main-menu__list>li.current>a,
.stricky-header.main-menu--2 .main-menu__list>li:hover>a {
    color: var(--thm-black);
}


.stricky-header.main-menu--2 {
    background: rgba(193, 219, 243, 0.95);;
}



/*** 
=====================================================
	Banner One Css
=====================================================
***/
.banner-one {
    position: relative;
    display: block;
}

.vegas-animation-kenburns {
    animation: kenburns ease-out;
}

@keyframes kenburns {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.banner-one__inner {
    position: relative;
    display: block;
    padding: 137px 0px 150px;
    z-index: 1;
}

.banner-one__inner .slider-bg-slide {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.slider-bg-slide-overly {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: 0.6;
    content: "";
    z-index: -1;
}

.banner-one__content {
    position: relative;
    display: block;
    margin: auto;
}

@media screen and (min-width:970px) {
    .main-header-one__bottom-left {
        position: relative;
        display: block;
        
    }
    
    .main-header-one__bottom-left .logo {
        position: relative;
        display: inline-block;
    }
    .box {
        width: 400px;
        position: absolute;
        top: 45%;
        right: 50px;
        /* left: 50%; */
        transform: translate(-50%, -50%);
        background: white;
        padding: 40px;
        box-sizing: border-box;
      /*   box-shadow: 0px 15px 25px rgba(0, 0, 0, .5); */
        border-radius: 10px;
      }
    .left-banner-content{
        margin-top: -70px;
        margin-left: -55px;
    }

    .row-centered{
        margin-left: 10%;
    }

    
    .listing-image{
        border-radius: 10%;
    }
    .add-listing{
        justify-content: center !important;
        max-width: 50%;
    }

    .how_it_works{
        align-items: center;
        justify-content: center !important;
        margin-left: 20vw;
        margin: 20px;
        
    }

    .box .input-box .phone-number label {
        position: absolute;
        color: gray;
        top: 0;
        left: 110px;
        padding: 10px 0;
        font-size: 16px;
        pointer-events: none;
        transition: .5s;
      }
    
    
    .box .input-box .phone-number input:focus ~ label,
    .box .input-box .phone-number input:valid ~ label{
      top: -18px;
      left: 110px;
      color: #03a9f4;
      font-size: 12px;
    }


}

@media screen and (max-width:720px) {
    .main-header-one__bottom-left {
        position: relative;
        display: block;
        height: 10px;
        margin-top: -50px;

    }
    
    .main-header-one__bottom-left .logo {
        position: relative;
        display: inline-block;
    }
    .main-header-one__bottom{
        margin-top: -20px;
    }
    .left-banner-content{
        margin-top: -40px;
    }
    .banner-one__content .title h2 {
        color: #393472;
        font-size: 40px;
        font-weight: 400;
        margin-bottom: 25px;

    }
    .logo-image{
        width: 100px;
        z-index: 100000;
    }

    .btn-purple{
        background-color: #393472;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        margin-right: 5px;
    }
    
    .banner-buttons{
        left: 0;
    }

    .row-centered{
        margin-left: 20px;
        margin-right: 20px;
    }

    .listing-image{
        width: 100%;
        max-height: 13vw;
        object-fit: cover;
        border: 1px solid #ddd;
        border-radius: 12px;
        overflow-clip-margin: content-box;
    }
    .add-listing{
        justify-content: center !important;
        margin: 5px;
    }

    .how_it_works{
        justify-content: center !important;
        margin: 5px;
    }
    .no-mobile{
        display: none;
    }
    .box .input-box .phone-number label {
        position: absolute;
        color: gray;
        top: 0;
        left: 150px;
        padding: 10px 0;
        font-size: 16px;
        pointer-events: none;
        transition: .5s;
      }
    
    
    .box .input-box .phone-number input:focus ~ label,
    .box .input-box .phone-number input:valid ~ label{
      top: -18px;
      left: 150px;
      color: #03a9f4;
      font-size: 12px;
    }

    /* .mobile-justify-center{
        margin: 0 100px 0 0;
        justify-content: center;
    } */
}

@media only screen and (max-width: 767px){
    /* .mobile-justify-center{
        margin: 0 100px 0 0;
        justify-content: center;
    } */
   
    .main-header-one__bottom-left {
        position: relative;
        display: block;
        height: 10px;
        margin-top: -50px;
    }
    
    .main-header-one__bottom-left .logo {
        position: relative;
        display: inline-block;
    }
    .box .input-box .phone-number label {
        position: absolute;
        color: gray;
        top: 0;
        left: 150px;
        padding: 10px 0;
        font-size: 16px;
        pointer-events: none;
        transition: .5s;
      }
    
    
    .box .input-box .phone-number input:focus ~ label,
    .box .input-box .phone-number input:valid ~ label{
      top: -18px;
      left: 150px;
      color: #03a9f4;
      font-size: 12px;
    }
    .listing-image{
        width: 100%;
        max-height: 13vw;
        object-fit: cover;
        border: 1px solid #ddd;
        border-radius: 12px;
        overflow-clip-margin: content-box;
       
    }

    .left-banner-content{
        margin-top: -80px;
    }
    .banner-one__content .title h2 {
        font-size: calc(1rem + 4vw) !important;
        font-weight: 300;
        left: 0;
        margin-left: -10px;
        text-align: left;

    }

    .btn-purple{
        background-color: #393472;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        margin-right: 5px;
    }

   
    .row-centered{
        margin-left: 20px;
        margin-right: 20px;
    }

    .no-mobile{
        display: none;
    }
}

.banner-one__content .title {

    position: relative;
    display: block;
    margin-bottom: 12px;
    font-weight: lighter;
    margin-bottom: 25px;

}

.banner-one__content .title h2 {
    color: #393472;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 25px;

}

.banner-form{
    margin-bottom: -100px;
}

.banner-one__content .text {
    position: relative;
    display: block;
}

.banner-one__content .text p {
    color: var(--thm-black);
    letter-spacing: 0.002em;
}

.banner-one__tab-box {
    position: relative;
    display: block;
}

.banner-one__tab {
    position: relative;
    display: block;
}

.banner-one__tab-button {
    position: relative;
    display: block;
    margin: 0 auto 33px;
}

.banner-one__tab-button .tab-buttons {
    position: relative;
    display: block;
}

.banner-one__tab-button .tab-buttons li {
    position: relative;
    display: inline-block;
    background: var(--thm-black);
    cursor: pointer;
    padding: 8px 25px 8px;
    border-radius: 5px;
    margin-right: 1px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.banner-one__tab-button .tab-buttons li:last-child {
    margin-right: 0px;
}

.banner-one__tab-button .tab-buttons li:hover,
.banner-one__tab-button .tab-buttons li.active-btn {
    background: var(--thm-base);
}

.banner-one__tab-button .tab-buttons li h4 {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.banner-one__tab-button .tab-buttons li:hover h4,
.banner-one__tab-button .tab-buttons li.active-btn h4 {
    color: var(--thm-black);
}


.banner-one__tab-content-item {
    position: relative;
    display: block;
    border-radius: 5px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 0px 8px rgb(255 255 255 / 20%);
    margin-top: 10px;
}

.banner-one__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
    opacity: 1;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 1;
}

.banner-one__tab .tabs-content .tab.active-tab {
    position: relative;
    display: block;
    opacity: 1.0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    z-index: 5;
}

.banner-one__tab-content-places {
    position: relative;
    display: block;
}

.banner-one__tab-content-places-form {
    position: relative;
    display: block;
}

.banner-one__tab-content-places-form ul {
    position: relative;
    display: block;
}

.banner-one__tab-content-places-form ul li {
    position: relative;
    float: left;
    /* width: 28%; */
    padding: 0px 10px;
    /* border-right: 1px solid #dddddd; */
}

.banner-one__tab-content-places-form ul li:last-child {
    border-right: 0px;
    /* width: 5%; */
}

.banner-one__tab-content-item .comment-one__form {
    position: relative;
    display: block;
    line-height: 0px;
}

.banner-one__tab-content-item .comment-form__input-box {
    position: relative;
    display: block;
}

.banner-one__tab-content-item .comment-form__input-box .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-one__tab-content-item .comment-form__input-box .icon span::before {
    position: relative;
    display: inline-block;
    color: #999999;
    font-size: 12px;
    line-height: 20px;
}

.banner-one__tab-content-item .comment-form__input-box input[type="text"],
.banner-one__tab-content-item .comment-form__input-box input[type="email"],
.banner-one__tab-content-item .comment-form__input-box input[type="number"] {
    position: relative;
    display: block;
    /* background: var(--thm-black); */
    width: 100%;
    height: 60px;
    border: 0px solid var(--thm-black);
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.banner-one__tab-content-item .comment-form__btn-box {
    position: relative;
    display: block;
}

.banner-one__tab-content-item .comment-form__btn {
    position: relative;
    outline: none;
    padding: 15px 40px 18px;
    margin-top: 4px;
    line-height: 15px;
    border-radius: 6px;
}

.banner-one__tab-content-item .comment-form__btn span::before {
    position: relative;
    display: inline-block;
    
    font-size: 18px;
    /* top: 2px; */
}

.banner-one__tab-content-events {
    position: relative;
    display: block;
}

.banner-one__tab-content-restaurants {
    position: relative;
    display: block;
}

.banner-one__tab-content-hotels {
    position: relative;
    display: block;
}

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--thm-base);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base) none repeat scroll 0 0;
    border: 2px solid var(--thm-base);
    border-radius: 0;
    color: var(--thm-black);
    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: var(--thm-black) !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);
}


.banner-one__categories {
    position: relative;
    display: block;
    margin-top: 60px;
}

.banner-one__categories .title {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.banner-one__categories .title h4 {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

.banner-one__categories-list {
    position: relative;
    display: block;
}

.banner-one__categories-list-item {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 110px;
    background: rgba(255, 255, 255, 0.9);
    margin-right: 6px;
}

.banner-one__categories-list-item:last-child {
    margin-right: 0px;
}

.banner-one__categories-list-item .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: var(--thm-black);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.banner-one__categories-list-item .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-bottom: 2px;
}

.banner-one__categories-list-item .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 35px;
    line-height: 35px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.banner-one__categories-list-item:hover .icon span::before {
    transform: scale(0.9);
}

.banner-one__categories-list-item p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
}

.banner-one__categories-list-item p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.banner-one__categories-list-item p a:hover {
    color: var(--thm-base);
}


/*** 
=====================================================
	Banner Two Css
=====================================================
***/
.banner-one--two {
    position: relative;
    display: block;
}

.banner-one--two .banner-one__inner {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
    z-index: 1;
}

.banner-one--two__single {
    position: relative;
    display: block;
    padding: 249px 0px 340px;
}

.banner-one--two__single .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
    z-index: 1;
}

.banner-one--two .active .banner-one--two__single .image-layer {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.banner-one--two__single .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-image: -moz-linear-gradient(-88deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -webkit-linear-gradient(-88deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -ms-linear-gradient(-88deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    opacity: 0.85;
    z-index: -1;
}

.banner-one--two .banner-one__content {
    position: relative;
    display: block;
    z-index: 5;
}

.banner-one--two .banner-one__tab-box {
    position: relative;
    display: block;
    margin-top: 40px;
}

.banner-one--two .slider-carousel.owl-theme .owl-dots {
    display: none;
}

.banner-one--two .slider-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 48%;
    left: 0px;
    right: 0px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    z-index: 999;
}

.banner-one--two:hover .slider-carousel.owl-theme .owl-nav {
    opacity: 1;
    left: 40px;
    right: 40px;
    transform: scaleX(1.0) translateX(0px);
    z-index: 99;
}

.banner-one--two .slider-carousel.owl-theme .owl-prev span,
.banner-one--two .slider-carousel.owl-theme .owl-next span {
    display: block;
}

.banner-one--two .slider-carousel.owl-theme .owl-nav .owl-prev,
.banner-one--two .slider-carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    line-height: 60px;
    font-weight: 600;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99;
}


.banner-one--two .slider-carousel.owl-theme .owl-nav .owl-prev:hover,
.banner-one--two .slider-carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-black);
    background: transparent;
    border-color: var(--thm-black);
    z-index: 99;
}

/*** 
=====================================================
	Banner Three Css
=====================================================
***/
.banner-one--two--three {
    position: relative;
    display: block;
    height: 80vh; 

}

.banner-one--two--three-shape {
    /* position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;*/
    /* background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom center; */
    /* z-index: 100;
    overflow: hidden; */ 
}

.banner-one--two--three.banner-one--two .banner-one--two__single .image-layer::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    /* background-color: rgb(21, 11, 92); */
    background-image: none;
    opacity: 0.9;
    z-index: -1;
}

.banner-one--two--three .auto-container {
    max-width: 1600px;
    width: 100%;
}

.banner-one--two--three.banner-one--two .banner-one__content {
    max-width: 900px;
    width: 100%;
    z-index: 6;
}

.banner-one--two--three .banner-one__tab-content-places-form ul li {
    width: 27%;
}

.banner-one--two--three .nice-select .option {
    width: 100%;
}

.banner-one--two--three .banner-one__tab-content-places-form ul li:last-child {
    width: 19%;
}

.banner-one--two--three .banner-one__tab-content-item .comment-form__btn {
    padding: 15px 36px 18px;
}

.banner-one--two--three-img {
    position: absolute;
    bottom: 0;
    right: 170px;
    z-index: 5;
}

.banner-one--two--three .nice-select .option:last-child {
    width: 100%;
}


/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 265px 0px 167px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.75);
    z-index: -1;
}

.page-header__wrapper {
    position: relative;
    display: block;
    z-index: 2;
}

.page-header__content {
    position: relative;
    display: block;
}

.page-header__content h2 {
    color: var(--thm-black);
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.page-header__menu {
    position: relative;
    display: block;
}

.page-header__menu ul {
    position: relative;
    display: block;
}

.page-header__menu ul li {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.002em;
    padding-left: 3px;
    padding-right: 7px;
    font-family: var(--thm-font);
}

.page-header__menu ul li:first-child {
    padding-left: 0;
}

.page-header__menu ul li:last-child {
    padding-right: 0;
}

.page-header__menu ul li::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: var(--thm-black);
    transform: rotate(20deg);
    content: "";
}

.page-header__menu ul li:last-child:before {
    display: none;
}

.page-header__menu ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.002em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__menu ul li a:hover {
    color: var(--thm-base);
}


/*** 
============================================
	Categories One
============================================
***/
.categories-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 90px;
}

.categories-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}


.categories-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.categories-one__single-img::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, transparent 30%, #000000);
    z-index: 1;
}

.categories-one__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.categories-one__single:hover .categories-one__single-img img {
    transform: scale(1);
}

.categories-one__single-img .text-box {
    position: absolute;
    left: 20px;
    bottom: 17px;
    z-index: 2;
}

.categories-one__single-img .text-box h2 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.categories-one__single-img .text-box h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.categories-one__single-img .text-box h2 a:hover {
    color: var(--thm-base);
}

.categories-one__single-img .text-box p {
    color: var(--thm-black);
    letter-spacing: 0.002em;
}

/*** 
============================================
	Place One
============================================
***/
.place-one {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 120px 0px 90px;
    margin-top: 50px;
}


.place-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.place-one__single-img {
    position: relative;
    display: block;
}

.place-one__single-img .text-box {
    position: absolute;
    left: 20px;
    bottom: -15px;
    display: inline-block;
    background: var(--thm-base);
    padding: 2px 20px 2px;
    border-radius: 5px;
    z-index: 5;
}

.place-one__single-img .text-box span {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.002;
    text-transform: capitalize;
}

.place-one__single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.place-one__single-img-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    opacity: 0.70;
    content: "";
    transform: skew(-90deg) translateY(100%);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 900ms ease 100ms;
    z-index: 1;
}

.place-one__single:hover .place-one__single-img-inner:before {
    /* transform: skew(0deg) translateY(0); */
}

.place-one__single-img-inner .icon-box {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.place-one__single-img-inner .icon-box a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-black);
    border-radius: 50%;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.place-one__single-img-inner .icon-box a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    transition-delay: 0.8s;
    opacity: 0;
    content: '';
    z-index: -1;
}

.place-one__single:hover .place-one__single-img-inner .icon-box a:before {
    transform: scale(1);
    opacity: 1;
}

.place-one__single-img-inner .icon-box a span::before {
    position: relative;
    display: inline-block;
    line-height: 40px;
    color: var(--thm-base);
    font-size: 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.place-one__single:hover .place-one__single-img-inner .icon-box a span::before {
    color: var(--thm-black);
    transition-delay: 0.8s;
}

.place-one__single-img-inner img {
    width: 100%;
    height: 150px;
    border: 0.2px solid var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.place-one__single:hover .place-one__single-img-inner img {
    transform: scale(1.2) rotate(1deg);
}

.place-one__single-content {
    position: relative;
    display: block;
    
    padding: 32px 20px 3px;
}

.place-one__single-content .top-content {
    position: relative;
    display: block;
    margin-top: -20px;
    margin-left: -20px;
    margin-bottom: 16px;
}

.place-one__single-content .top-content h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 2px;
}

.place-one__single-content .top-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.place-one__single-content .top-content h2 a:hover {
    color: var(--thm-base);
}

.place-one__single-content .top-content p {
    letter-spacing: 0.002em;
}

.place-one__single-content .top-content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.place-one__single-content .top-content-bottom .location-box {
    position: relative;
    display: flex;
    align-items: center;
}

.place-one__single-content .top-content-bottom .location-box .icon-box {
    position: relative;
    display: block;
}

.place-one__single-content .top-content-bottom .location-box .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.place-one__single-content .top-content-bottom .location-box .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.place-one__single-content .top-content-bottom .location-box .text p {
    font-size: 15px;
    line-height: 25px;
    font-family: var(--thm-font);
    text-transform: capitalize;
}

.place-one__single-content .top-content-bottom .number-box {
    position: absolute;
   margin-bottom: 17px;
   right: 0;
}

.place-one__single-content .top-content-bottom .number-box .icon {
    position: relative;
    display: block;
}

.place-one__single-content .top-content-bottom .number-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.place-one__single-content .top-content-bottom .number-box .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.place-one__single-content .top-content-bottom .number-box .text a {
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 25px;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.place-one__single-content .top-content-bottom .number-box .text a:hover {
    color: var(--thm-base);
}

.place-one__single-content .bottom-content {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 4px;
}

.place-one__single-content .bottom-content::before {
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background: #dddddd;
    content: "";
}

.place-one__single-content .bottom-content .review-box {
    position: relative;
    display: block;
}

.place-one__single-content .bottom-content .review-box li {
    position: relative;
    display: inline-block;
    color: #f1cc38;
    font-size: 15px;
    margin-right: 5px;
}

.place-one__single-content .bottom-content .review-box li:last-child {
    margin-right: 0px;
}

.place-one__single-content .bottom-content .count-box {
    position: relative;
    display: block;
    margin-left: 13px;
}

.place-one__single-content .bottom-content .count-box p {
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--thm-font-3);
}


/*** 
============================================
	Feature One
============================================
***/
.features-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 20px;
}

.features-one__single {
    position: relative;
    display: block;
    border: 1px solid #e9e9e9;
    padding: 50px 0px 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-bottom: 30px;
    z-index: 1;
}

.features-one__single:hover {
    border-color: var(--thm-black);
}

.features-one__single::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    box-shadow: 0px 0px 46px 0px rgb(0, 0, 0, 0.08);
    content: "";
    transform: scaleX(0.7) rotateX(20deg);
    transition: all 0.4s linear;
    z-index: -1;
    opacity: 0;
}

.features-one__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.features-one__single-icon {
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    background: var(--thm-black);
    box-shadow: 2.5px 4.33px 35px 0px rgb(0, 0, 0, 0.09);
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.features-one__single-icon:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.features-one__single:hover .features-one__single-icon:before {
    transform: scale(1);
    opacity: 1;
}

.features-one__single-icon span {
    position: relative;
    display: block;
}

.features-one__single-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 50px;
    line-height: 120px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.features-one__single:hover .features-one__single-icon span::before {
    color: var(--thm-black);
}

.features-one__single-title {
    position: relative;
    display: block;
    margin-top: 23px;
}

.features-one__single-title h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.features-one__single-title h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.features-one__single-title h2 a:hover {
    color: var(--thm-base);
}

/*** 
============================================
	Video One
============================================
***/
.video-one {
    position: relative;
    display: block;
    padding-bottom: 106px;
}

.video-one__inner {
    position: relative;
    display: block;
    padding: 225px 0px 255px;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    border-radius: 10px;
    z-index: 1;
}

.video-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), .52);
    border-radius: 10px;
    content: "";
    z-index: -1;
}

.video-one__inner .video-box {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* .how-it-work{
    margin-top: 100px;
} */

.justify-center{
display: flex;
align-items: center;
}
.video-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: var(--thm-base);
    background-color: var(--thm-black);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-one__video-icon:before {
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.55);
}

.video-one__video-icon:after {
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    content: "";
    border-radius: 50%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.45);
}

.video-one__video-icon .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}


/*** 
============================================
	Testimonial One
============================================
***/
.testimonial-one {
    position: relative;
    display: block;
    padding: 116px 0px 120px;
    z-index: 1;
}

.testimonial-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.testimonial-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(246, 246, 246, 0.95);
    z-index: -2;
    content: "";
}

.testimonial-one__single {
    position: relative;
    display: block;
    background: var(--thm-black);
    box-shadow: 0px 0px 40px 0px rgb(0, 0, 0, 0.06);
    padding: 40px 25px 34px 40px;
}

.testimonial-one__single-quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
}

.testimonial-one__single-quote-icon span::before {
    position: relative;
    display: inline-block;
    color: #dddddd;
    font-size: 55px;
    transform: rotate(180deg);
}

.testimonial-one__single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}

.testimonial-one__single-top .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-one__single-top .img-box img {
    width: 100%;
}

.testimonial-one__single-top .text-box {
    position: relative;
    display: block;
    margin-left: 17px;
}

.testimonial-one__single-top .text-box h2 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
}

.testimonial-one__single-top .text-box p {
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.testimonial-one__single-text {
    position: relative;
    display: block;
}

.testimonial-one__single-text p {
    font-size: 17px;
    line-height: 31px;
    font-weight: 500;
    font-family: var(--thm-font-3);
    font-style: italic;
}

.testimonial-one__single .review-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.testimonial-one__single .review-box li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
}

.testimonial-one__single .review-box li:last-child {
    margin-right: 0px;
}

.testimonial-one__single .review-box li span::before {
    position: relative;
    display: inline-block;
    color: #f1cc38;
    font-size: 15px;
}

/*** 
============================================
	Blog One
============================================
***/
.blog-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 90px;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-one__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img img {
    transform: scale(1);
}

.blog-one__single-img:before,
.blog-one__single-img:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    z-index: 1;
}

.blog-one__single:hover .blog-one__single-img::before {
    background-color: rgba(255, 255, 255, 0.2);
    right: 50%;
    left: 50%;
}

.blog-one__single:hover .blog-one__single-img::after {
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    bottom: 50%;
}

.blog-one__single-content {
    position: relative;
    display: block;
    background: var(--thm-black);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
    padding: 33px 20px 30px 20px;
}

.blog-one__single-content-tagline {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    font-family: var(--thm-font-3);
}

.blog-one__single-content h2 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-one__single-content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content h2 a:hover {
    color: var(--thm-base);
}

.blog-one__single-content .line {
    position: relative;
    display: block;
    height: 3px;
    width: 60px;
    background: var(--thm-base);
    margin-bottom: 11px;
}

.blog-one__single-content .text {
    position: relative;
    display: block;
}

.blog-one__single-content .text p {
    font-family: var(--thm-font-3);
    line-height: 31px;
}

/*** 
============================================
	Brand One
============================================
***/
.brand-one {
    position: relative;
    display: block;
    padding: 94px 0px 94px;
    z-index: 1;
}

.brand-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.brand-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--thm-black-rgb), .90);
    content: "";
    z-index: -2;
}

.brand-one .swiper-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.brand-one .swiper-slide a {
    position: relative;
    display: inline-block;
}

.brand-one .swiper-slide>a>img {
    opacity: 1;
    transition: all 0.2s ease-in-out 0.1s;
    transform: scale(1.0);
}

.brand-one .swiper-slide:hover>a>img {
    transition: all 0.8s ease-in-out 0.1s;
    transform: scale(1.05);
}


/*** 
============================================
	Footer One
============================================
***/
.footer-one {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, .45);
    background: var(--thm-base);
    z-index: 1;
}

.footer-one__top {
    position: relative;
    display: block;
    padding: 95px 0px 92px;
}

.footer-one__top-inner {
    position: relative;
    display: block;
}

.footer-widget__column {
    position: relative;
    display: block;
}


.footer-widget__title {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 22px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: 3px;
}

.footer-widget__about-logo {
    position: relative;
    display: block;
    margin-bottom: 37px;
    filter: brightness(0) invert(1) !important;
}

.footer-widget__about-logo a {
    position: relative;
    display: inline-block;
}


.footer-widget__about-contact-info {
    position: relative;
    display: block;
}

.footer-widget__about-contact-info li {
    position: relative;
    display: block;
    padding-left: 25px;
    margin-bottom: 15px;
}

.footer-widget__about-contact-info li:last-child {
    margin-bottom: 0px;
}

.footer-widget__about-contact-info li .icon {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-widget__about-contact-info li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    top: 1px;
}

.footer-widget__about-contact-info li .icon span.rotate {
    position: relative;
    display: inline-block;
    transform: rotate(100deg);
    top: 3px;
}

.footer-widget__about-contact-info li .text {
    position: relative;
    display: block;
}

.footer-widget__about-contact-info li .text p {
    color: #f8f8f9;
}

.footer-widget__about-contact-info li .text p a {
    color: #f8f8f9;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.footer-widget__about-contact-info li .text p a:hover {
    color: var(--thm-base);
}

.footer-widget__about-social-link {
    position: relative;
    display: block;
    margin-top: 47px;
}

.footer-widget__about-social-link ul {
    position: relative;
    display: block;
}


.footer-widget__about-social-link li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.footer-widget__about-social-link li:last-child {
    margin-right: 0;
}

.footer-widget__about-social-link li a {
    position: relative;
    display: inline-block;
    color: #cacaca;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    background: rgba(255, 255, 255, .2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover {
    background: var(--thm-base);
    color: var(--thm-black);
}

.footer-widget__about-social-link li a span::before {
    position: relative;
    display: inline-block;
    color: #cacaca;
    font-size: 15px;
    line-height: 40px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.footer-widget__about-social-link li a:hover span::before {
    color: var(--thm-black);
}

.footer-widget__about-social-link li a .first {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-widget__about-social-link li a .second {
    position: relative;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-widget__about-social-link li a:hover .first {
    transform: translateY(0);
}

.footer-widget__about-social-link li a:hover .second {
    transform: translateY(-100%);
}


.footer-widget__services {
    position: relative;
    display: block;
}

.footer-widget__services-list {
    position: relative;
    display: block;
}

.footer-widget__services-list-item {
    position: relative;
    display: block;
}

.footer-widget__services-list-item a {
    position: relative;
    display: inline-block;
    color: #f8f8f9;
    font-size: 17px;
    line-height: 41px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__services-list-item a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed var(--thm-black);
    transition: .5s;
    transform: perspective(400px) scaleX(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 2;
}

.footer-widget__services-list-item a:hover:before {
    transform: perspective(400px) scaleX(1.0);
}

.footer-widget__services-list-item a:hover {
    color: var(--thm-black);
}


.footer-widget__link {
    position: relative;
    display: block;
}

.footer-widget__link-list {
    position: relative;
    display: block;
}

.footer-widget__link-list-item {
    position: relative;
    display: block;
}

.footer-widget__link-list-item a {
    position: relative;
    display: inline-block;
    color: #f8f8f9;
    font-size: 17px;
    line-height: 41px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__link-list-item a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed var(--thm-black);
    transition: .5s;
    transform: perspective(400px) scaleX(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 2;
}

.footer-widget__link-list-item a:hover:before {
    transform: perspective(400px) scaleX(1.0);
}

.footer-widget__link-list-item a:hover {
    color: var(--thm-black);
}

.footer-widget__map {
    position: relative;
    display: block;
}

.footer-widget__map-box {
    position: relative;
    display: block;
}

.footer-widget-map__one {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    height: 180px;
}


.footer-one__bottom {
    position: relative;
    display: block;
    padding: 18px 0px 17px;
    background: #ff7518;
}

.footer-one__bottom-inner {
    position: relative;
    display: block;
}

.footer-one__bottom-text {
    position: relative;
    display: block;
}

.footer-one__bottom-text p {
    color: var(--thm-black);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-one__bottom-text p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__bottom-text p a:hover {
    color: var(--thm-black);
}



/*** 
============================================
	Features One Two
============================================
***/
.features-one--two {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
}

.features-one--two .auto-container {
    max-width: 1400px;
    width: 100%;
}

.features-one--two__inner {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 116px 0px 90px;
    margin-top: -190px;
    border-radius: 10px;
    z-index: 5;
}


/*** 
============================================
	About One
============================================
***/
.about-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 0px 0px 120px;
    overflow: hidden;
    z-index: 1;
}

.about-one .shape4 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.about-one__left {
    position: relative;
    display: block;
}

.about-one__left-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-right: 20px;
    z-index: 1;
}

.about-one__left-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.about-one__left-img:hover img {
    transform: scale(1);
}

.about-one__left-img:before,
.about-one__left-img:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    z-index: 1;
}

.about-one__left-img:hover::before {
    background-color: rgba(255, 255, 255, 0.2);
    right: 50%;
    left: 50%;
}

.about-one__left-img:hover::after {
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    bottom: 50%;
}

.about-one__left-img .shape1 {
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), 1.0);
    z-index: 2;
}

.about-one__left-img .shape2 {
    position: absolute;
    left: -120px;
    bottom: -135px;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), 0.74);
    z-index: 2;
}

.about-one__left-img .shape3 {
    position: absolute;
    left: -105px;
    bottom: -135px;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background: rgba(var(--thm-base-rgb), 0.74);
    z-index: 2;
}

.about-one__right {
    position: relative;
    display: block;
    margin-top: -10px;
}

.about-one__right-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.about-one__right-title h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}

.about-one__right-text1 {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.about-one__right-text1 p {
    margin: 0;
}

.about-one__right-text2 {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.about-one__right-text2 p {
    margin: 0px;
}

.about-one__right-text3 {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__right-text3-icon {
    position: relative;
    display: block;
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.about-one__right-text3-icon span::before {
    position: relative;
    display: inline-block;
    line-height: 75px;
    color: var(--thm-black);
    font-size: 30px;
    text-align: center;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-one__right-text3:hover .about-one__right-text3-icon span::before {
    transform: scale(0.9);
}

.about-one__right-text3-content {
    position: relative;
    flex: 1;
    margin-left: 20px;
}

.about-one__right-text3-content h2 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-one__right-text3-content p {
    margin: 0;
}

.about-one__right-text4 {
    position: relative;
    display: block;
    margin-top: 29px;
}

.about-one__right-text4 p {
    margin: 0;
}

.about-one__right-btn {
    position: relative;
    display: block;
    margin-top: 53px;
}


/*** 
============================================
	Team One
============================================
***/
.team-one {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-one__single-img img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.team-one__single:hover .team-one__single-img img {
    transform: scale(1.05);
}

.team-one__single-img {
    position: relative;
    display: block;
    z-index: 1;
}

.team-one__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(-149deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    background-image: -webkit-linear-gradient(-149deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    background-image: -ms-linear-gradient(-149deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    opacity: 0;
    transform: scaleX(0.7);
    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;
}

.team-one__single:hover .team-one__single-img:before {
    opacity: 0.81;
    transform: scaleX(1.0);
}

.team-one__single-img .social-link {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.team-one__single-img .social-link li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.team-one__single-img .social-link li:last-child {
    margin-right: 0px;
}

.team-one__single-img .social-link li a {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--thm-black);
    text-align: center;
    z-index: 1;
}

.team-one__single-img .social-link li a::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.team-one__single-img .social-link li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.team-one__single-img .social-link li a span::before {
    position: relative;
    display: inline-block;
    color: #646464;
    font-size: 15px;
    line-height: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-img .social-link li a:hover span::before {
    color: var(--thm-black);
}

.team-one__content {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 30px 5px 27px;
    box-shadow: 0px 0px 49px 1px rgb(0, 0, 0, 0.2);
}

.team-one__content h2 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
}

.team-one__content h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.team-one__content h2 a:hover {
    color: var(--thm-base);
}

.team-one__content span {
    position: relative;
    letter-spacing: 0.002em;
}


.team-one__single-img .social-link li a.fb {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 300ms ease;
}

.team-one__single:hover .team-one__single-img .social-link li a.fb {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 200ms;
}

.team-one__single-img .social-link li a.ims {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 400ms ease;
}

.team-one__single:hover .team-one__single-img .social-link li a.ims {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 300ms;
}

.team-one__single-img .social-link li a.tw {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__single-img .social-link li a.tw {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 400ms;
}

.team-one__single-img .social-link li a.gp {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 600ms ease;
}

.team-one__single:hover .team-one__single-img .social-link li a.gp {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}



/*** 
============================================
	Categories One Two
============================================
***/
.categories-one--two {
    position: relative;
    display: block;
    background: #f6f6f6;
}


/*** 
============================================
	Slogan One
============================================
***/
.slogon-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.slogon-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.slogon-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.7;
    content: "";
    z-index: -2;
}

.slogon-one__inner {
    position: relative;
    display: block;
}

.slogon-one__inner h5 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slogon-one__inner h2 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

.slogon-one__inner .video-button {
    position: relative;
    display: inline-block;
    margin-top: 51px;
}

.slogon-one__inner .video-button .video-btn {
    position: relative;
    display: inline-block;
    background: var(--thm-black);
    padding: 13px 40px 15px;
    border-radius: 5px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.slogon-one__inner .video-button .video-btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.slogon-one__inner .video-button .video-btn .txt {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.slogon-one__inner .video-button .video-btn i {
    font-size: 15px;
    color: var(--thm-base);
    padding-right: 5px;
    transition: all 500ms ease;
}

.slogon-one__inner .video-button .video-btn:hover i {
    color: var(--thm-black);
}






/*** 
============================================
	Counter One
============================================
***/
.counter-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 90px;
}

.counter-one__single {
    position: relative;
    display: block;
    background: var(--thm-black);
    box-shadow: 0px 0px 16px 0px rgb(0, 0, 0, 0.05);
    padding: 32px 30px 33px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.counter-one__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scaleX(0.7) rotateX(20deg);
    transition: all 0.4s linear;
    opacity: 0;
    z-index: -1;
}

.counter-one__single:hover .counter-one__single-bg {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.counter-one__single-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(-171deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    background-image: -webkit-linear-gradient(-171deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    background-image: -ms-linear-gradient(-171deg, rgb(21, 11, 92) 0%, rgb(255, 111, 15) 100%);
    opacity: 0.80;
    content: "";
    z-index: -2;
}

.counter-one__single-top {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
}

.counter-one__single-top::before {
    position: absolute;
    left: -30px;
    bottom: 0;
    right: -30px;
    height: 1px;
    background: #f5f5f5;
    content: "";
}

.counter-one__single-top .counter-box {
    position: relative;
    display: block;
}

.counter-one__single-top .counter-box h3 {
    color: var(--thm-base);
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: -0.015em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__single-top .counter-box h3 {
    color: var(--thm-black);
}

.counter-one__letter {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 40px;
    line-height: 33px;
    font-weight: 500;
    top: 8px;
    margin-left: -3px;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__letter {
    color: var(--thm-black);
}

.counter-one__plus {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__plus {
    color: var(--thm-black);
}

.counter-one .odometer.odometer-auto-theme,
.counter-one .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 45px;
}

.counter-one .odometer-formatting-mark {
    display: none;
}

.counter-one__single-top .title {
    position: relative;
    display: block;
    margin-left: 35px;
}

.counter-one__single-top .title h3 {
    color: #222222;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__single-top .title h3 {
    color: var(--thm-black);
}

.counter-one__single-bottom {
    position: relative;
    display: block;
    margin-top: 19px;
}

.counter-one__single-bottom p {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.015em;
    font-family: var(--thm-font-3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__single-bottom p {
    color: var(--thm-black);
}


/*** 
============================================
	Brand One Two
============================================
***/
.brand-one--two {
    position: relative;
    display: block;
}

.brand-one--two .brand-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -moz-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -webkit-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -ms-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    opacity: 0.92;
    content: "";
    z-index: -2;
}

/*** 
============================================
	Footer One Two
============================================
***/
.footer-one--two {
    position: relative;
    display: block;
}

.footer-one--two::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -webkit-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    background-image: -ms-linear-gradient(-7deg, rgb(21, 11, 92) 0%, rgb(225, 110, 34) 100%);
    opacity: 0.94;
    content: "";
}


/*** 
============================================
	About One Two
============================================
***/
.about-one--two {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

/*** 
============================================
	Video One Two
============================================
***/
.video-one--two {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
}

/*** 
============================================
	Team One Two
============================================
***/
.team-one--two {
    position: relative;
    display: block;
    z-index: 1;
}

.team-one--two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 445px;
    z-index: -1;
}

.team-one--two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    content: "";
    z-index: -2;
}


/***
=============================================
    Contact One
=============================================
***/
.contact-one {
    position: relative;
    display: block;
    background: white;
    padding: 0px 0px 90px;
}

.contact-one__form {
    position: relative;
    display: block;
    margin-top: -9px;
}

.contact-one__form-text {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.contact-one__form-text h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-one__form-text p {
    margin: 0;
}

.contact-one__form .comment-one__form {
    position: relative;
    display: block;
}

.contact-one__form .comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-one__form .comment-form__input-box input[type="text"],
.contact-one__form .comment-form__input-box input[type="email"] {
    position: relative;
    display: block;
    background: white;
    width: 100%;
    height: 50px;
    border: 1px solid #dddddd;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    outline: none;
}

.contact-one__form .comment-form__input-box textarea {
    width: 100%;
    height: 169px;
    border: 1px solid #dddddd;
    outline: none;
    color: var(--thm-gray);
    font-size: 17px;
    font-weight: 400;
    text-transform: none;
    border-radius: 5px;
    padding: 7px 20px 20px;
    font-family: var(--thm-font);
    resize: none;
}


.contact-one__form .comment-form__btn {
    position: relative;
    outline: none;
    margin-top: -8px;
}

.contact-one__content {
    position: relative;
    display: block;
}


.contact-one__content-single {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
    padding: 23px 40px 22px;
    margin-bottom: 30px;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover {
    border-color: var(--thm-base);
}

.contact-one__content-single::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* background: var(--thm-base); */
    opacity: 0;
    transform: scaleX(0.7);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    content: "";
    z-index: -1;
}

.contact-one__content-single:hover::before {
    opacity: 1;
    transform: scaleX(1.0);
}

.contact-one__content-single-inner {
    position: relative;
    display: block;
    padding-left: 100px;
}

.contact-one__content-single-inner .icon-box {
    position: absolute;
    top: 7px;
    left: 0;
    color: var(--thm-base);
    font-size: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .icon-box {
    color: var(--thm-black);
}

.contact-one__content-single-inner .content-box {
    position: relative;
    display: block;
}

.contact-one__content-single-inner .content-box h2 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box h2 {
    color: var(--thm-black);
}


.contact-one__content-single-inner .content-box p {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box p {
    color: var(--thm-black);
}

.contact-one__content-single-inner .content-box .number1 {
    margin: 0px;
}

.contact-one__content-single-inner .content-box .number1 a {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box .number1 a {
    color: var(--thm-black);
}

.contact-one__content-single-inner .content-box .number2 {
    margin: 0px;
}

.contact-one__content-single-inner .content-box .number2 a {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box .number2 a {
    color: var(--thm-black);
}

.contact-one__content-single-inner .content-box .email1 {
    margin: 0px;
}

.contact-one__content-single-inner .content-box .email1 a {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box .email1 a {
    color: var(--thm-black);
}

.contact-one__content-single-inner .content-box .email2 {
    margin: 0px;
}

.contact-one__content-single-inner .content-box .email2 a {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__content-single:hover .contact-one__content-single-inner .content-box .email2 a {
    color: var(--thm-black);
}

/***
=============================================
    About One About
=============================================
***/
.about-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

/***
=============================================
    Counter One About
=============================================
***/
.counter-one--about {
    position: relative;
    display: block;
    background: #f6f6f6;
}

/***
=============================================
    Counter One About
=============================================
***/
.features-one--categories {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
}

/***
=====================================================
    Team Details
=====================================================
***/
.team-details {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 120px;
}

.team-details__img {
    position: relative;
    display: block;
}

.team-details__img img {
    width: 100%;
}


.team-details__content {
    position: relative;
    display: block;
    max-width: 565px;
    width: 100%;
}

.team-details__content .title {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.team-details__content .title h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details__content .name {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.team-details__content .name h6 {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.team-details__content .name h6 span {
    color: var(--thm-base);
    font-weight: 600;
    letter-spacing: 0.015em;
}

.team-details__content .text {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.team-details__content .text p {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: var(--thm-font);
    margin: 0;
}

.team-details__content .text p span {
    color: var(--thm-base);
    font-weight: 600;
    letter-spacing: 0.015em;
}


.team-details__content .text2 {
    position: relative;
    display: block;
}

.team-details__content .text2 p {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: var(--thm-font);
    margin: 0;
}


.team-details__content .number {
    position: relative;
    display: block;
    margin-bottom: 20px;
    margin-top: 15px;
}

.team-details__content .number p {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.015em;
}

.team-details__content .number p span {
    color: var(--thm-base);
    font-weight: 600;
    letter-spacing: 0.015em;
}

.team-details__content .number p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details__content .number p a:hover {
    color: var(--thm-base);
}


.team-details__content .social-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.team-details__content .social-icon .title {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.team-details__content .social-icon .title h6 {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: 0.015em;
    font-family: var(--thm-font);
}

.team-details__content .social-icon ul {
    position: relative;
    display: block;
}

.team-details__content .social-icon ul li {
    position: relative;
    display: inline-block;
    padding-left: 25px;
}

.team-details__content .social-icon ul li a {
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-details__content .social-icon ul li a:hover {
    color: var(--thm-base);
}


.team-details__bottom {
    position: relative;
    display: block;
    margin-top: 43px;
}

.team-details__bottom-inner {
    position: relative;
    display: block;
}

.team-details__bottom-inner .text1 {
    position: relative;
    display: block;
}

.team-details__bottom-inner .text1 p {
    font-size: 17px;
    line-height: 27px;
}

.team-details__bottom-inner .text2 {
    position: relative;
    display: block;
    margin-top: 5px;
}

.team-details__bottom-inner .text2 p {
    font-size: 17px;
    line-height: 27px;
}



/***
=====================================================
Blog Single
=====================================================
***/
.blog-single {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.blog-single__left {
    position: relative;
    display: block;
}

.blog-single__left .blog-one__single-content {
    position: relative;
    display: block;
    background: var(--thm-black);
    box-shadow: none;
    padding: 75px 30px 40px 30px;
    border: 1px solid #ededed;
}

.blog-single__left .blog-one__single-content-meta-box {
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
    background: #faf6f6;
    padding-left: 25px;
}


.blog-one__single-content-meta-box ul {
    position: relative;
    display: block;
}

.blog-one__single-content-meta-box ul li {
    position: relative;
    display: inline-block;
    padding-left: 9px;
    padding-right: 13px;
}

.blog-one__single-content-meta-box ul li::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: #d7d7d7;
    content: "";
}

.blog-one__single-content-meta-box ul li:last-child:before {
    display: none;
}

.blog-one__single-content-meta-box ul li:last-child:last-child {
    padding-right: 0px;
}

.blog-one__single-content-meta-box ul li:first-child {
    padding-left: 0px;
}

.blog-one__single-content-meta-box ul li:nth-child(2)::before {
    display: none;
}

.blog-one__single-content-meta-box ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__single-content-meta-box ul li .inner .icon {
    position: relative;
    display: block;
}

.blog-one__single-content-meta-box ul li .inner .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    top: 3px;
}


.blog-one__single-content-meta-box ul li .inner .text {
    position: relative;
    display: block;
    padding-left: 7px;
}

.blog-one__single-content-meta-box ul li .inner .text a {
    color: rgba(var(--thm-black-rgb), .88);
    font-size: 14px;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content-meta-box ul li .inner .text a:hover {
    color: var(--thm-base);
}

.blog-one__single-content-meta-box .btn-box {
    position: relative;
    display: block;
    margin-right: -1px;
}

.blog-one__single-content-meta-box .btn-box a {
    position: relative;
    display: inline-block;
    background: var(--thm-black);
    padding: 11px 20px 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__single-content-meta-box .btn-box a:hover {
    background: var(--thm-base);
}

.blog-one__single-content-meta-box .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
}


.blog-single__left .blog-one__single-content h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    padding-top: 20px;
}

.blog-single__left .blog-one__single-content .text p {
    font-family: var(--thm-font-2);
    line-height: 31px;
}


.blog-single__text1 {
    position: relative;
    display: block;
}

.blog-single__text1 .text1 {
    position: relative;
    margin-top: 20px;
}

.blog-single__text1 .text1 {
    position: relative;
    margin-bottom: 30px;
}


.blog-single__text2 {
    position: relative;
    display: block;
    margin-top: 25px;
}

.blog-single__text2 .title {
    position: relative;
    display: block;
}

.blog-single__text2 .title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    padding-top: 0px;
    margin-bottom: 22px;
}

.blog-single__text2 .text1 {
    position: relative;
    margin-bottom: 20px;
}

.blog-single__text2 .text2 {
    position: relative;
}

.blog-single__img1 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-single__img1 img {
    width: 100%;
}

.blog-single__text3 {
    position: relative;
    display: block;
    margin-top: 55px;
}

.blog-single__text3 .title {
    position: relative;
    display: block;
}

.blog-single__text3 .title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    padding-top: 0px;
    margin-bottom: 17px;
}

.blog-single__text3 .text1 {
    position: relative;
    color: var(--thm-black);
}

.blog-single__text3 ul {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-single__text3 ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 15px;
}

.blog-single__text3 ul li:last-child {
    margin-bottom: 0px;
}

.blog-single__text3 ul li .round-box {
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--thm-base);
    border-radius: 50%;
}

.blog-single__text3 ul li .text-box {
    position: relative;
    display: block;
}

.blog-single__text3 ul li .text-box p {
    position: relative;
    display: block;
}

.blog-single__tags-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 65px;
}

.blog-single__tags-box .title {
    position: relative;
    display: block;
}

.blog-single__tags-box .title h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.blog-single__tags-list {
    position: relative;
    display: block;
    padding: 0;
    padding-left: 10px;
}

.blog-single__tags-list li {
    position: relative;
    display: inline-block;
}

.blog-single__tags-list li a {
    position: relative;
    display: inline-block;
    background-color: rgba(var(--thm-gray-rgb), 0.05);
    color: var(--thm-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 15px 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-single__tags-list li a:hover {
    color: var(--thm-black);
    background: var(--thm-base);
}

.author {
    position: relative;
    display: block;
    background-color: rgba(var(--thm-gray-rgb), 0.05);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 155px;
    padding-right: 25px;
    margin-top: 50px;
}

.author__img {
    position: absolute;
    width: 110px;
    top: 49px;
    left: 25px;
}

.author__img img {
    width: 100%;
    border-radius: 50%;
}

.author__content {
    position: relative;
    display: block;
}

.author__content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.author__content p {
    font-size: 18px;
    color: var(--thm-black);
    line-height: 32px;
    font-weight: 600;
    padding: 18px 0 20px;
    font-family: var(--thm-font-2);
}

.author__social {
    position: relative;
    display: flex;
    align-items: center;
}

.author__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background: var(--thm-black);
    font-size: 15px;
    color: #161616;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.author__social a:hover {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.author__social a+a {
    margin-left: 10px;
}

.back-news {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 65px;
    margin-bottom: 86px;
}

.back-news__left {
    position: relative;
    display: flex;
    align-items: center;
}

.back-news__left:before {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 0;
    height: 1px;
    width: 250px;
    background-color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.back-news__left:hover:before {
    background-color: var(--thm-base);
}

.back-news__left .back-news__arrow span::before {
    position: relative;
    display: inline-block;
}

.back-news__arrow {
    position: relative;
    display: block;
}

.back-news__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--thm-black);
    width: 40px;
    height: 68px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.back-news__arrow a:before {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.back-news__left:hover .back-news__arrow a:before {
    background-color: var(--thm-base);
}

.back-news__content {
    margin-left: 20px;
}

.back-news__content p {
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 600;
    font-family: var(--thm-font);
    line-height: 34px;
}

.back-news__right {
    position: relative;
    display: flex;
    align-items: center;
}

.back-news__right:before {
    content: "";
    position: absolute;
    bottom: -21px;
    right: 0;
    height: 1px;
    width: 250px;
    background-color: rgba(var(--thm-gray-rgb), 0.1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.back-news__right:hover:before {
    background-color: var(--thm-base);
}

.back-news__right .back-news__content {
    margin-left: 0;
    margin-right: 45px;
}

.back-news__right .back-news__arrow a:before {
    background-color: rgba(var(--thm-gray-rgb), 0.1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.back-news__right .back-news__arrow a {
    color: #000000;
}

.back-news__right:hover .back-news__arrow a {
    color: var(--thm-black);
}

.back-news__right:hover .back-news__arrow a:before {
    background-color: var(--thm-base);
}


.blog-single__bottom {
    position: relative;
    display: block;
}

.comment-one {
    position: relative;
    display: block;
    background: rgba(var(--thm-gray-rgb), 0.05);
    padding: 45px 40px 40px;
    margin-bottom: 40px;
}

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.comment-one__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.comment-one__single--two {
    margin-left: 60px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.comment-one__content {
    position: relative;
    margin-left: 20px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 19px;
}

.comment-one__content span {
    display: block;
    color: var(--thm-base);
    font-size: 15px;
    line-height: 24px;
}

.comment-one__content p {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
}

.comment-one__btn {
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    padding: 0px 20px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(var(--thm-gray-rgb), 0.05);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-one__btn:hover {
    background-color: var(--thm-base);
    color: var(--thm-black);
}

.comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
}

.comment-one__image img {
    border-radius: 50%;
}


.blog-single__left .comment-form {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 40px 30px 40px;
    box-shadow: 0px 0px 49px 1px rgb(0 0 0 / 2%);
    border: 1px solid #e5e7f2;
}

.blog-single__left .comment-form .comment-form__title {
    margin-bottom: 23px;
}

.blog-single__left .comment-one__form .row {
    --bs-gutter-x: 20px;
}

.blog-single__left .comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.blog-single__left .comment-form__input-box input[type="text"],
.blog-single__left .comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: 1px solid rgba(var(--thm-black-rgb), .1);
    background-color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--thm-black-rgb), .60);
    display: block;
    border-radius: 0px;
    font-family: var(--thm-font);
}

.blog-single__left .comment-form__input-box textarea {
    font-size: 16px;
    color: rgba(var(--thm-black-rgb), .60);
    height: 220px;
    width: 100%;
    padding: 25px 25px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    border-radius: 0px;
    border: 1px solid rgba(var(--thm-black-rgb), .1);
}

.blog-single__left .comment-form__input-box.text-message-box {
    margin-bottom: 10px;
}

.blog-single__left .comment-form__btn.thm-btn {
    border: none;
    font-size: 16px;
    color: var(--thm-black);
    background-color: var(--thm-base);
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-single__left .comment-form__btn.thm-btn::before {
    background: var(--thm-black);
}



/***
=====================================================
Sidebar
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
    margin-left: 10px;
}

.sidebar__single+.sidebar__single {
    margin-top: 40px;
}

.sidebar__single .title {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 18px;
}

.sidebar__single .title::before {
    position: absolute;
    left: -30px;
    bottom: 0;
    right: -30px;
    border-bottom: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    content: "";
}

.sidebar__single .title h2 {
    color: var(--thm-black);
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

.sidebar__search {
    position: relative;
    display: block;
    padding: 25px 30px 25px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-black);
    color: rgba(var(--thm-gray-rgb), 0.5);
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    height: 65px;
    width: 100%;
    padding-right: 70px;
    border-radius: 0;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form :-ms-input-placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form ::placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form :-ms-input-placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: rgba(var(--thm-gray-rgb), 0.5);
}

.sidebar__search-form button[type="submit"] {
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 60px;
    outline: none;
    border: none;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
    background-color: var(--thm-black);
}

.sidebar__category {
    position: relative;
    display: block;
    padding: 39px 30px 35px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li {
    position: relative;
    display: block;
}

.sidebar__category-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 1px;
    background: rgba(var(--thm-gray-rgb), 0.2);
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(1);
    margin-left: -25px;
    z-index: 2;
}

.sidebar__category-list li+li {
    margin-top: 10px;
}

.sidebar__category-list li a {
    position: relative;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    padding: 7px 0px 6px;
}

.sidebar__category-list li:hover a {
    color: var(--thm-base);
}


.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    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;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--thm-font);
    padding: 0px 0px 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__category-list li:hover a span {
    color: var(--thm-base);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 37px 30px 55px 30px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__post-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-list li+li {
    border-top: 1px solid #e2e4e3;
    margin-top: 30px;
    padding-top: 30px;
}

.sidebar__post-image {
    position: relative;
    display: block;
    margin-right: 20px;
}

.sidebar__post-image>img {
    width: 90px;
}

.sidebar__post-content {
    position: relative;
    display: block;
    line-height: 0;
}

.sidebar__post-content h3 {
    font-size: 16px;
    margin: 0;
    line-height: 28px;
    margin-bottom: 5px;
}

.sidebar__post-content h3 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.sidebar__post-list li .sidebar__post-content h3 a:hover {
    color: var(--thm-base);
}

.sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--thm-black-rgb), 0.8);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.sidebar__post-content-meta i {
    position: relative;
    display: inline-block;
    color: rgba(var(--thm-black-rgb), 0.8);
    font-size: 15px;
    padding-right: 1px;
    top: 2px;
}

.sidebar__tags {
    position: relative;
    display: block;
    padding: 37px 30px 50px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-top: -10px;
}

.sidebar__tags-list a {
    font-size: 16px;
    color: rgba(var(--thm-black-rgb), 1.0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: rgba(var(--thm-gray-rgb), 0.1);
    display: inline-block;
    padding: 3px 14px 3px;
    margin-left: 5px;
    font-weight: 400;
    line-height: 30px;
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

.sidebar__tags-list a:hover {
    color: var(--thm-black);
    background: var(--thm-base);
}


.sidebar__sign-up {
    position: relative;
    display: block;
}

.sidebar__sign-up-box {
    position: relative;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 30px 70px;
    z-index: 1;
}

.sidebar__sign-up-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), .5);
    content: "";
    z-index: -1;
}

.sidebar__sign-up-box-inner {
    position: relative;
    display: block;
    z-index: 5;
}

.sidebar__sign-up-box-inner p {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

.sidebar__sign-up-box-inner .btn-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.sidebar__sign-up-box-inner .btn-box .thm-btn {
    padding: 7px 25px 7px;
    font-size: 14px;
    font-weight: 700;
}



/***
=============================================
    Error Page
=============================================
***/
.error-page {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 85px 0px 120px;
}

.error-page__inner {
    position: relative;
    display: block;
}

.error-page__img {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.error-page__img img {
    width: auto;
}

.error-page__content {
    position: relative;
    display: block;
}

.error-page__content p {
    font-weight: 500;
}

.error-page__content .btn-box {
    position: relative;
    display: block;
    margin-top: 27px;
}


/***
=============================================
    Contact Page
=============================================
***/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

/*** 
=============================================
    Google Map
=============================================
***/
.google-map {
    position: relative;
    display: block;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 605px;
    width: 100%;
}

/*** 
=============================================
    Listings One Wrap
=============================================
***/
.listings_one_wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.listings_one_wrap .container-full-width {
    position: relative;
    width: 100%;
}

.header_three_wrap.listings__page {
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 30px 0px rgb(0, 0, 0, 0.07);
}

.listings__one__content {
    position: relative;
    display: block;
    width: 100%;
    padding: 120px 60px 120px;
    z-index: 10;
    background-color: #fff;
}

.listings_one_content_left {
    position: relative;
    display: block;
}

.listings_one_content_left_form {
    position: relative;
    display: block;
}

.listings_one_content_left_form .input_box {
    margin-bottom: 20px;
}

.listings_one_content_left_form .input_box input[type="text"] {
    height: 60px;
    width: 100%;
    border: none;
    color: rgba(var(--thm-gray-rgb), 0.4);
    background: white;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
}


.listings_one_content_left_form .input_box .nice-select {
    height: 60px;
    width: 100%;
    border: 1px solid red;
    color: rgba(var(--thm-gray-rgb), 0.4);
    background: white;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.listings_one_content_left_form .input_box .nice-select.open:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.listings_one_content_left_form .input_box .nice-select:after {
    right: 20px;
}

.filter_by_tags {
    position: relative;
    display: block;
    margin-top: 42px;
}

.filter_by_tags h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 24px;
}

.single_tags_check__box+.single_tags_check__box {
    margin-top: 10px;
}

.single_tags_check__box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    cursor: pointer;
}

.single_tags_check__box input[type="checkbox"] {
    display: none;
}

.single_tags_check__box input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.5);
    cursor: pointer;
    border-radius: 50%;
    transition: all 300ms ease;
}

.single_tags_check__box label span:before {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    content: "";
    background: rgba(var(--thm-gray-rgb), 0.5);
    border-radius: 50%;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.single_tags_check__box input[type="checkbox"]:checked+label span {
    border-color: rgba(var(--thm-gray-rgb), 0.5);
}

.single_tags_check__box input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}

.listings_one_wrap-btn {
    position: relative;
    display: block;
    margin-top: 27px;
}

.listings_one_wrap-btn .thm-btn {
    position: relative;
    display: inline-block;
    padding: 12px 40px 12px;
}

.listings_one_wrap-btn a span::before {
    position: relative;
    display: inline-block;
    font-size: 17px;
    margin-right: 5px;
    top: 2px;
}

.shop-grid-page-top-info .right-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    line-height: 48px;
    background: var(--thm-black);
    border: 1px solid rgba(var(--thm-gray-rgb), 0.5) !important;
    font-family: var(--thm-font);
    border-radius: 0px;
    color: #888888;
    font-size: 14px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 0px;
}

.listings_one_wrap .filter_inner_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
}

.listings_one_wrap .filter_inner_content .left {
    position: relative;
    display: flex;
    align-items: center;
}

.listings_one_wrap .filter_inner_content .left .left_icon {
    position: relative;
    display: block;
}

.listings_one_wrap .filter_inner_content .left .left_icon a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--thm-black);
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    border-radius: 0%;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 48px;
    text-align: center;
    transition: all 300ms ease 100ms;
}

.listings_one_wrap .filter_inner_content .left .left_icon a+a {
    margin-left: 1px;
}

.listings_one_wrap .filter_inner_content .left .left_icon a:hover {
    color: var(--thm-black);
    background: var(--thm-base);
}

.listings_one_wrap .filter_inner_content .left .left_text {
    position: relative;
    display: block;
    margin-left: 35px;
}

.listings_one_wrap .filter_inner_content .left .left_text h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.listings_one_wrap .filter_inner_content .right {
    position: relative;
    display: block;
}

.listings_one_wrap .filter_inner_content .shorting {
    position: relative;
    display: block;
}

.listings_one_wrap .filter_inner_content .shorting .select-box {
    width: 250px;
}

.listings_one_wrap .filter_inner_content .shorting .nice-select {
    position: relative;
    display: block;
    height: 50px;
    line-height: 48px;
    background: var(--thm-black);
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1) !important;
    font-family: var(--thm-font);
    border-radius: 0px;
    padding: 0 20px;
    color: rgba(var(--thm-gray-rgb), 0.4);
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 0px;
    background: var(--thm-black);
}

.listings__one__map {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    background: #ddd;
    height: 100%;

}

.listings__one__map .google-map {
    width: 100%;
    height: 100%;
    border: none;
}

/*** 
=============================================
    Listings Two
=============================================
***/
.listings_one_wrap--two {
    position: relative;
    display: block;
}

.place-one__single--two {
    position: relative;
    display: block;
    min-height: 300px;
}

.place-one__single--two .row {
    margin-left: 0px;
    margin-right: 0px;
}

.place-one__single--two .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.place-one__single--two .place-one__single-img-inner img {
    width: 100%;
    height: 300px;
}

.place-one__single--two .place-one__single-img .text-box {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: auto;
}

.place-one__single--two .place-one__single-content {
    min-height: 300px;
    padding: 41px 20px 3px;
}

.place-one__single--two .place-one__single-content .top-content {
    margin-bottom: 11px;
}

.place-one__single--two .place-one__single-content .bottom-content {
    padding-top: 19px;
}

.place-one__single--two .place-one__single-content .top-content h2 {
    margin-bottom: 7px;
}

.place-one__single--two .place-one__single-content .top-content-bottom {
    margin-top: 9px;
}

.place-one__single--two .facilities-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 43px;
}

.place-one__single--two .facilities-box .title {
    position: relative;
    display: block;
}

.place-one__single--two .facilities-box .title p {
    font-size: 14px;
    font-weight: 700;
}

.place-one__single--two .facilities-box__links {
    position: relative;
    display: block;
    margin-left: 15px;
}

.place-one__single--two .facilities-box__links li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.place-one__single--two .facilities-box__links li:last-child {
    margin-right: 0px;
}

.place-one__single--two .facilities-box__links li a {
    position: relative;
    display: block;
}

.place-one__single--two .facilities-box__links li a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.place-one__single--two .facilities-box__links li a:hover span::before {
    color: var(--thm-base);
}


/***
=====================================================
  Styled Pagination
=====================================================
***/
.listings_three-page .styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: rgba(var(--thm-gray-rgb), 0.2);
    color: var(--thm-black);
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    text-align: center;
    text-transform: none;
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li a:hover {
    color: var(--thm-black);
    background: var(--thm-base);

}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: var(--thm-black);
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: var(--thm-black);
    line-height: 50px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--thm-black);
}


/***
=====================================================
  Listings One Wrap Listings Three
=====================================================
***/
.listings_one_wrap--listings-three {
    position: relative;
    display: block;
}

.listings_one_wrap--listings-three .listings__one__content {
    position: relative;
    display: block;
    width: 100%;
    padding: 120px 60px 90px;
    float: none;
}

/*** 
=============================================
    Listings Details Page
=============================================
***/
.listings-details-page {
    position: relative;
    display: block;
    background: white;
    padding: 120px 0px 120px;
}

.listings-details-page__content {
    position: relative;
    display: block;
}

.listings-details-page__content-img1 {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.listings-details-page__content-img1 img {
    width: 100%;
}

.listings-details-page__content-text-box1 {
    position: relative;
    display: block;
    padding: 40px 30px 50px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.listings-details-page__content-text-box1 h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 23px;
}

.listings-details-page__content-text-box1 .text1 {
    position: relative;
    margin-bottom: 20px;
}

.listings-details-page__content-text-box1 .text2 {
    position: relative;
}

.listings-details-page__content-text-box1 .btn-box {
    position: relative;
    display: block;
    margin-top: 22px;
}

.listings-details-page__content-text-box1 .btn-box .thm-btn {
    padding: 11px 25px 11px;
    font-size: 15px;
    font-weight: 600;
}



.listings-details-page__content-listing-features {
    position: relative;
    display: block;
    padding: 40px 30px 20px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
    margin-top: 20px;
}

.listings-details-page__content-listing-features h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 31px;
}

.listings-details-page__content-listing-features ul {
    position: relative;
    display: block;
}

.listings-details-page__content-listing-features ul li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 30px;
}

.listings-details-page__content-listing-features ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.listings-details-page__content-listing-features ul li .inner .icon {
    position: relative;
    display: block;
}

.listings-details-page__content-listing-features ul li .inner .icon a {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--thm-black);
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.listings-details-page__content-listing-features ul li:hover .inner .icon a {
    background: var(--thm-base);
}

.listings-details-page__content-listing-features ul li .inner .icon a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.listings-details-page__content-listing-features ul li:hover .inner .icon a span::before {
    color: var(--thm-black);
}

.listings-details-page__content-listing-features ul li .inner .text {
    position: relative;
    display: block;
    margin-left: 8px;
}

.listings-details-page__content-listing-features ul li .inner .text a {
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.listings-details-page__content-listing-features ul li:hover .inner .text a {
    color: var(--thm-base);
}

.listings-details-page__content-gallery {
    position: relative;
    display: block;
    padding: 40px 30px 50px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
    margin-top: 20px;
}

.listings-details-page__content-gallery h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 31px;
}

.listings-details-page__content-gallery-single {
    position: relative;
    display: block;
}

.listings-details-page__content-gallery-single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.listings-details-page__content-gallery-single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.listings-details-page__content-gallery-single:hover .listings-details-page__content-gallery-single-img::before {
    opacity: 1;
    opacity: 1;
}

.listings-details-page__content-gallery-single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.listings-details-page__content-gallery-single:hover .listings-details-page__content-gallery-single-img img {
    transform: scale(1);
}

.listings-details-page__content-gallery-single-img-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 700ms ease;
    z-index: 5;
}

.listings-details-page__content-gallery-single:hover .listings-details-page__content-gallery-single-img-link {
    transform: scale(1);
    opacity: 1;
    transition-delay: 500ms;
}

.listings-details-page__content-gallery-single-img-link a {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--thm-black);
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.listings-details-page__content-gallery-single-img-link a:hover {
    background: var(--thm-base);
}

.listings-details-page__content-gallery-single-img-link a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 35px;
}

.listings-details-page__content-gallery--carousel.owl-theme .owl-nav {
    position: absolute;
    top: 46%;
    left: 10px;
    right: 10px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transform: scaleX(1.0) translateX(0px);
    z-index: 999;
}

.listings-details-page__content-gallery--carousel.owl-theme .owl-prev span,
.listings-details-page__content-gallery--carousel.owl-theme .owl-next span {
    display: block;
}

.listings-details-page__content-gallery--carousel.owl-theme .owl-nav .owl-prev,
.listings-details-page__content-gallery--carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    background: var(--thm-black);
    border: none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 15px;
    line-height: 35px;
    font-weight: 600;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99;
}


.listings-details-page__content-gallery--carousel.owl-theme .owl-nav .owl-prev:hover,
.listings-details-page__content-gallery--carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-black);
    background: var(--thm-base);
    z-index: 99;
}

.review_and_progress_bar {
    position: relative;
    display: block;
    padding: 50px 30px 50px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
    margin-top: 20px;
}

.review_and_progress_bar .review_box {
    background: white;
    position: relative;
    text-align: center;
    padding: 42px 15px 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
}

.review_box .review_box_details {
    position: relative;
    display: block;
}

.review_box .review_box_details h2 {
    color: var(--thm-black);
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review_box .review_box_details .review-count {
    margin-bottom: 6px;
}

.review_box .review_box_details .review-count a {
    font-size: 20px;
    color: var(--thm-base);
}

.review_box .review_box_details .review-count a.clr-gray {
    color: var(--thm-gray);
}

.review_box .review_box_details p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
}


.progress_bar {
    position: relative;
    display: block;
    padding: 0px 60px 0px 0px;
    margin-top: 42px;
}

.progress-levels {
    position: relative;
    display: block;
}

.progress-levels .progress-box {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.progress-box.marb {
    margin-bottom: 0;
}

.progress-levels .progress-box .text {
    position: relative;
    color: var(--thm-black);
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.progress-levels .progress-box.last-child {
    margin-bottom: 0;
}

.progress-levels .progress-box .inner {
    position: relative;
    display: block;
}

.progress-levels .progress-box .bar {
    position: relative;
    display: block;
}

.progress-levels .progress-box .bar .bar-innner {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--thm-black);
    border-radius: 10px;
}

.progress-levels .progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 5px;
    border-radius: 10px;
    background: var(--thm-base);
    transition: all 2000ms ease 300ms;
}

.progress-levels .progress-box .bar .bar-innner .skill-percent {
    position: absolute;
    top: -16px;
    right: -48px;
    width: 40px;
    height: 25px;
    display: block;
    text-align: center;
    padding: 0;
    z-index: 1;
}

.progress-levels .progress-box .inner .count-text {
    position: relative;
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    float: none;
}

.progress-levels .progress-box .inner .percent {
    position: relative;
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    float: none;
    margin-left: -2px;
}


.listings-details-page__content-comment {
    position: relative;
    display: block;
    padding: 42px 30px 40px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
    margin-top: 20px;
    margin-bottom: 20px;
}

.listings-details-page__content-comment .reviews-box {
    position: absolute;
    top: 0;
    right: 0;
}

.listings-details-page__content-comment .reviews-box li {
    position: relative;
    display: inline-block;
}

.listings-details-page__content-comment .reviews-box li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
}

.listings-details-page__content-form {
    position: relative;
    display: block;
    background: white;
    padding: 40px 30px 50px;
    box-shadow: 0px 0px 49px 1px rgb(0 0 0 / 2%);
    border: 1px solid #e5e7f2;
    margin-top: 0px;
}

.listings-details-page__content-form .comment-form__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 31px;
}

.listings-details-page__content-form .comment-one__form .row {
    --bs-gutter-x: 20px;
}

.listings-details-page__content-form .comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.listings-details-page__content-form .comment-form__input-box input[type="text"],
.listings-details-page__content-form .comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: 1px solid rgba(var(--thm-black-rgb), .1);
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--thm-black-rgb), .60);
    display: block;
    border-radius: 0px;
    font-family: var(--thm-font);
}

.listings-details-page__content-form .comment-form__input-box textarea {
    font-size: 16px;
    color: rgba(var(--thm-black-rgb), .60);
    height: 220px;
    width: 100%;
    background-color: white;
    padding: 25px 25px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    border-radius: 0px;
    border: 1px solid rgba(var(--thm-black-rgb), .1);
}

.listings-details-page__content-form .comment-form__input-box.text-message-box {
    margin-bottom: 10px;
}

.listings-details-page__content-form .comment-form__btn.thm-btn {
    border: none;
    font-size: 16px;
    color: var(--thm-black);
    background-color: var(--thm-base);
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listings-details-page__content-form .comment-form__btn.thm-btn::before {
    background: var(--thm-black);
}



/***
=============================================
   Listings Details Page Sidebar
=============================================
***/
.listings-details-page__sidebar {
    position: relative;
    display: block;
}

.listings-details-page__sidebar-single+.listings-details-page__sidebar-single {
    margin-top: 40px;
}

.listings-details-page__sidebar-single .title {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 18px;
}

.listings-details-page__sidebar-single .title::before {
    position: absolute;
    left: -30px;
    bottom: 0;
    right: -30px;
    border-bottom: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    content: "";
}

.listings-details-page__sidebar-single .title h2 {
    color: var(--thm-black);
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}


.sidebar__working-hours {
    position: relative;
    display: block;
    padding: 39px 30px 35px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__working-hours-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__working-hours-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-gray-rgb), 0.1);
}

.sidebar__working-hours-list li:last-child {
    border-bottom: none;
}

.sidebar__working-hours-list li+li {
    margin-top: 10px;
}

.sidebar__working-hours-list li a {
    position: relative;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    padding: 2px 0px 11px;
}

.sidebar__working-hours-list li:hover a {
    color: var(--thm-base);
}

.sidebar__working-hours-list li a span {
    position: absolute;
    top: 42%;
    right: 0px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    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;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--thm-font);
    padding: 0px 0px 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__working-hours-list li:hover a span {
    color: var(--thm-base);
}


.sidebar__location-contacts {
    position: relative;
    display: block;
    padding: 39px 30px 55px;
    border: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    background: rgba(var(--thm-gray-rgb), 0.05);
}

.sidebar__location-contacts-google-map {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.sidebar__location-contacts-map {
    position: relative;
    display: block;
    height: 250px;
}

.sidebar__location-contacts-list {
    position: relative;
    display: block;
}

.sidebar__location-contacts-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-gray-rgb), 0.1);
    margin-top: 14px;
    padding-bottom: 13px;
}

.sidebar__location-contacts-list li:last-child {
    border-bottom: none;
}

.sidebar__location-contacts-list li p {
    font-size: 15px;
}

.sidebar__location-contacts-list li p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__location-contacts-list li p a:hover {
    color: var(--thm-base);
}

.sidebar__location-contacts-list li p i::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--thm-base);
    padding-right: 1px;
    top: 1px;
}

.sidebar__location-contacts-list li p span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-weight: 600;
    width: 70px;
}

.sidebar__location-contacts-social-links {
    position: relative;
    display: block;
    margin-top: 8px;
}

.sidebar__location-contacts-social-links li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.sidebar__location-contacts-social-links li:last-child {
    margin-right: 0px;
}

.sidebar__location-contacts-social-links li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    background: white;
    border-radius: 3px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__location-contacts-social-links li a:hover {
    background: var(--thm-base);
}

.sidebar__location-contacts-social-links li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 30px;
}

.sidebar__location-contacts-social-links li a span::before {
    color: var(--thm-black);
}

.mt-30{
    margin-top: 50px;
}

.m-10{
    margin-top: 10px;
    margin-left: 10PX;
}
.zindex300{
    z-index: 300;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt--40 {
    margin-top: -40px !important;
}









































/***
=============================================
    Tiny Scrollbar
=============================================
***/
#scrollbar1 {
    width: 270px;
    margin: 0;
}

#scrollbar1 .viewport {
    position: relative;
    width: 270px;
    height: 530px;
    overflow: hidden;
}

#scrollbar1 .overview {
    list-style: none;
    position: absolute;
    left: 15px;
    top: 0;
    padding: 0;
    margin: 0;
    max-width: 500px;
    width: 100%;
    height: 100%;
}

#scrollbar1 .scrollbar {
    position: absolute;
    top: 0;
    right: 0px;
    background: #e7e7e7;
    width: 4px;
}

#scrollbar1 .track {
    background: transparent;
    height: 100%;
    width: 4px;
    position: relative;
    padding: 0;
}

#scrollbar1 .thumb {
    background: #fa401b;
    background-image: none;
    height: 20px;
    width: 4px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0px;
    opacity: 1;
    z-index: 3;
}

#scrollbar1 .thumb .end {
    background: #353742 no-repeat 50% 0;
    overflow: hidden;
    height: 0px;
    width: 4px;
}

#scrollbar1 .disable {
    display: none;
}


@media (min-width: 221px) and (max-width: 479.95px){
.icon-shape1 {
    width: 60px !important;
    height: 60px !important;
    font-size: 36px;
}
}
.rounded-circle {
    border-radius: 50% !important;
}

.icon-shape1 {
    background-color: #00acee;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 40px;
}
.icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-shape1.rent {
    background-color: #ee8f00;
}
.icon-shape1.save {
    background-color: #3055b8;
}

.info_circles p {
    color: #555;
    line-height: 24px;
}
.ps-5 {
    padding-left: 2rem !important;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.float-right{
    float: right;
    right: 0;
}

.ps-2 {
    padding-left: 0.5rem !important;
}
.pe-2 {
    padding-right: 0.5rem !important;
}



input[type="datetime-local" i] {
    align-items: center;
    display: inline-flex;
    font-family: monospace;
    padding-inline-start: 1px;
    cursor: default;
    overflow: hidden;
    padding: 0px;
}

.rounded-50 {
    border-radius: 50px !important;
    background-color: var(--thm-black);
}

.text-bold{
    font-weight: bolder;
}

.select1_2, .dropdwn {
    padding: 5px 0px 5px 5px !important;
    font-size: 17px;
    overflow: visible;
    /* width: 100% !important; */
    color: #333;
    font-family: 'Nunito', "sans-serif" !important;
    cursor: pointer;
}

.select2_2, .dropdwn {
    padding: 13px 0px 13px 10px !important;
    background-color: #f4f4f4;
    line-height: 20px !important;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    width: 100% !important;
    color: #333;
    font-family: 'Nunito', "sans-serif" !important;
    cursor: pointer;
}
select {
    word-wrap: normal;
    height: 3.4375rem;
}

.form-control-xm{
    display: block;
    width: 100%;
    padding: 13px 0px 13px 10px !important;
    background-color: #f4f4f4;
    line-height: 20px !important;
    border: 1px solid #ccc;
    border-radius: 8px;
    /* font-weight: 600; */
    font-size: 17px;
    width: 100% !important;
    color: #333;
    font-family: 'Nunito', "sans-serif" !important;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.kyc_uploaded {
    border: 1px solid #ccc;
    padding: 20px 20px 30px 20px;
    border-radius: 8px;
    background-color: rgba(54, 150, 59, 0.15);
}

.kyc_not_uploaded {
    border: 1px solid #ccc;
    padding: 20px 20px 30px 20px;
    border-radius: 8px;
    background-color: rgba(195, 66, 31, 0.15);
}

.profile_pics3 img {
    height: 140px;
    width: 140px;
    border: 2px solid #888;
    cursor: pointer;
    border-radius: 100px;
    padding: 6px;
    /* text-transform: lowercase; */
}

.rounded-circle {
    border-radius: 50% !important;
}

.icon-shape3 {
    width: 35px;
    height: 35px;
    color: #25913d;
    font-size: 1.6em;
    border: 3px solid #25913d;
    border-radius: 30px;
    position: relative;
    top: -3px;
}
.icon-danger {
    width: 35px;
    height: 35px;
    color: red;
    font-size: 1.6em;
    border: 3px solid red;
    border-radius: 30px;
    position: relative;
    top: -3px;
}
.icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.box{
    padding: 20px 10px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .details-container {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    padding-top: 5px;
  }
  
  .details-table {
    width: 100%;
    background-color: #FFF;
    margin: 5px;
  }
  
  .title {
    font-weight: bold;
  }
  
  .iconSettings, tr.shown td.details-control:before, td.details-control:before {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
  }
  
  td.details-control {
    cursor: pointer;
    text-align: center;
  }
  td.details-control:before {
    content: "+";
  }
  
  tr.shown td.details-control:before {
    content: "−";
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 900px){
.login-content {
    justify-content: center;
}
}
.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
@media (max-width: 767px){
.mt-xs-30 {
    margin-top: 30px !important;
}
}

.circle {
    width: 100%;
    height: 600px;
    background: url(../images/circle.png) no-repeat;
    position: absolute;
    background-position: 120% -70px;
    z-index: -1;
}


.wave {
    position: fixed;
    left: 0;
    height: 100%;
    z-index: 1;
}

.img-fluid{
    z-index: 10;
    margin-top: 50px;
    
}

@media screen and (max-width: 900px){
    .wave {
        display: none;
    }
}

.float-right-top{
    float: right;
    margin-right: 50px;
    margin-top: -40px;
}

.font-40{
    font-size: 40px;

}

.input-div > div > input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    color: #555;
    font-family: 'poppins', sans-serif;
}

.login-content .input-div.one {
    margin-top: 0;
}
.login-content .input-div {
    position: relative;
    display: grid;
    grid-template-columns: 6% 95%;
    margin: 28px 0 28px 0;
    padding: 7px 0 2px 0;
    border-bottom: 1.5px solid #ccc;
}

.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.input-div:before {
    right: 50%;
}
.input-div:before, .input-div:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #393472;
    transition: .4s;
}
.input-div:after {
    left: 50%;
}
.input-div:before, .input-div:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #393472;
    transition: .4s;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans');

.main-container {
  width: 100%;
  height: 100vh;
 background: white;
  transition: 0.4s linear;
  right: 0;
}



.box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: purple;
  text-align: center;
  margin: auto;
}

.box p {
  margin-bottom: 0;

}

.box img {
    margin: 0 100px 10px 100px;
    
  
  }

.box p:nth-child(even) {
  margin-top: 0;
}

.box a {
  color: var(--thm-black);
  font-size: 14px;
  text-decoration: none;
}

.box .input-box {
  position: relative;
}

.box .input-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--thm-black);
  border: 1px solid #fff;
  border: none;
  border-bottom-style: solid;
  outline: none;
  letter-spacing: 1px;
  background: transparent;
}
.box .input-box select {
    width: 100%;
    padding: 10px 10px;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--thm-black);
    border: 1px solid #fff;
    border: none;
    border-bottom-style: solid;
    outline: none;
    letter-spacing: 1px;
    background: transparent;
  }

.box .input-box label {
  position: absolute;
  color: gray;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  pointer-events: none;
  transition: .5s;
}

.box .input-box input:focus ~ label,
.box .input-box input:valid ~ label{
  top: -18px;
  left: 0;
  color: #03a9f4;
  font-size: 12px;
}





.box input[type=submit] {
  background: transparent;
  border: none;
  outline: none;
  background: #03a9f4;
  color: purple;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

#logged-in {
  width: 100%;
  height: auto;
  text-align: center;
  margin: auto;
  position: absolute;
  top: 50px;
  display: none;
}

.login-true {
  opacity: 0;
}

.btn-login {
    display: block;
    width: 100%;
    height: 58px;
    border-radius: 50px;
    outline: none;
    border: none;
    background-color: #393472;
    /* background-image: linear-gradient(to right, #32be8f, #393472, #32be8f); */
    background-size: 200%;
    font-size: 1.05rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

.main-container img {
    height: 60px;
}

.login-caption {
    font-weight: bolder !important;
    color: #558ec7;
    margin: 0 100px 0 100px;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.m-0 {
    margin: 0px !important;
    text-align:center ;
}
.slide_signup, .slide_signin, .slide_forgot {
    color: #393472;
    cursor: pointer;
    position: relative;
    z-index: 9;
    /* background-color: red; */
    display: inline-block;
}
p.switch1 {
    display: block;
    text-align: left;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
    position: relative;
    left: 0;
    top: 22px;
}

.switch {
    position: relative;
    display: inline-block !important;
    width: 38px !important;
    height: 21px !important;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
input[type="checkbox" i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border: initial;
}

input:checked + .slider {
    background-color: #524ba0;
}

.slider.round {
    border-radius: 34px;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
font.fs {
    font-size: 14px !important;
    color: #555;
}

.pull-right{
    float: right;
}

.bold{
    font-weight: bold;
}

.text-purple{
    color: var(--thm-black);
}

.logo{
    height: 60px;
    z-index: 500;
    margin-bottom: 50px;
}
.bold-600{
    font-weight: 600;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round:before {
    border-radius: 50%;
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: -6px;
    bottom: 2.4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.logo-sm{
    height: 40px !important;
}

.phone-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .country-code {
    flex: 1;
    margin-right: 10px;
  }
  
  #country-code {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    padding: 5px;
  }
  
  .phone-number {
    flex: 2;
  }
  
  input[type="tel"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
  }

  .ml-25{
    margin-left: 25px;
  }

  .bg-gray-300 {
    background-color: #dee2e6 !important;
    margin: 0 !important;
}

.ml-100{
    margin-left: 100px;
}

.container4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px;
  }
  
  .column1, .column2, .column3 {
    width: 30%;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  select, input[type="text"] {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: none;
  }
  
  button {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background-color: #53BBF4;
    color: white;
    margin-right: 10px;
  }
  
  button:hover {
    cursor: pointer;
    background-color: #338ACF;
  }

.image-preview {
    display: flex;
    flex-wrap: wrap;
}
.image-preview img {
    width: 150px;
    height: 150px;
    margin: 5px;
    border-radius: 10px;
}


.img-preview {
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 10px;
}


.content{
   margin-top: 200px;
   margin-left: 35px;
   margin-right: 25px;
   margin-bottom: 350px;
}
.deposit{
    float: right;
    margin-top: -80px;
}


.rating {
    border: none;
    float: left;
  }
  
  .rating > label {
    color: #90A0A3;
    float: right;
  }
  
  .rating > label:before {
    margin: 5px;
    font-size: 2em;
    font-family: FontAwesome;
    content: "\f005";
    display: inline-block;
  }
  
  .rating > input {
    display: none;
  }
  
  .rating > input:checked ~ label,
  .rating:not(:checked) > label:hover,
  .rating:not(:checked) > label:hover ~ label {
    color: #F79426;
  }
  
  .rating > input:checked + label:hover,
  .rating > input:checked ~ label:hover,
  .rating > label:hover ~ input:checked ~ label,
  .rating > input:checked ~ label:hover ~ label {
    color: #FECE31;
  }

  .unavailable_period {
    color: red;
  }

  .info {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
    background-color: #d0dde5;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
  }
  
  .info i {
    font-size: 16px;
    margin-right: 5px;
  }
  
  .info span {
    font-size: 10px;
  }

  input[type="text_"] {
    border: 1px solid #333;
    padding: 10px;
    font-size: 16px;
  }

  /* Style for the payment options */
  .payment-options {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .payment-options label {
    display: flex;
    align-items: center;
  }
  
  .payment-options input[type="radio"] {
    margin-right: 2px;
  }
  
  .payment-options img {
    height: 40px;
  }
  /* Style for the button */
  .wallet-box {
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px;
  }
  
  .wallet-box label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
  }
  
  .wallet-box .balance {
    font-size: 24px;
    margin-top: 20px;
    color: #0077be;
    font-weight: bold;
  }


  .desktop-only {
    display: block;
  }
  
  @media only screen and (max-width: 767px) {
    .desktop-only {
      display: none !important;
    }
  }
  
 
  
  /* Footer styling */
footer {
    background-color: #518cc7;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Footer layer 1 styling */
  .footer-layer-1 {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-layer-1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  
  .footer-layer-1 li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .footer-layer-1 li:last-child {
    margin-right: 0;
  }
  
  .footer-layer-1 a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
  }
  
  /* Footer layer 2 styling */
  .footer-layer-2 {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
  
  .footer-layer-2 p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
  }
  
  .footer-layer-2 form {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-layer-2 input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 60%;
    margin-right: 10px;
  }
  .footer-layer-2 input[type="text"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 20%;
    margin-right: 10px;
  }
  
  .footer-layer-2 button[type="submit"] {
    background-color: #fff;
    color: #518cc7;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
  }
  
  /* Footer layer 3 styling */
  .footer-layer-3 {
    flex-basis: 100%;
    text-align: center;
  }
  
  .footer-layer-3 p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
  }
  
  .app-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .app-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 30px;
    font-weight: bold;
  }
  
  .logo {
    margin-top: 20px;
  }
  
  .logo img {
    width: 50%;
    max-width: 200px;
  }
  

  .category-home{
    margin-left: 25px;
    margin-top:10px;
    font-size: small !important;
    color: gray !important;
  }

  .text-gray{
    color: gray;
  }


  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #518cc7;
    margin-top: 20px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #393472;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Show the tab content */
.tabcontent.active {
    display: block;
}

.faq-side-item{
    font-size: 16px;
    display: block;
    padding: 10px;
    background: #eee;
    border-radius: 0.5rem;
    line-height: 23px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin-bottom: 8px;
}



.modal{
    z-index: 99999;
}



.text-black{
    color:black;
}

@media only screen and (min-width: 768px) {
    .no-desktop {
      display: none;
    }

    .margin-review{
        margin-top:50px
    }
  }

  .payment-modal{
    background-color: transparent !important;
}


@media (max-width: 768px) {
    .banner-one--two__single .image-layer {
        height: 75vh;
    }

    .payment-modal{
        background: url(../images/bg9.jpg) no-repeat;
    }
}


#overlay{	
    position: fixed;
    top: 0;
    z-index: 3000;
    width: 115%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
    background-size: cover;
    margin-left: -330px;
  }
  .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
  }

  .confirmation-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #4CAF50; /* Green background color */
    color: white;
    text-align: center;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}