@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cinzel+Decorative:wght@400;700;900&family=Gilda+Display&display=swap');

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1..5px;
    line-height: 1.95em;
    color: #ffffff;
    overflow-x: hidden !important;
    background: #1b1b1b;
}


.testimonials {
    margin-top: 50px;
    padding-bottom: 70px;
    background: #111;
}

.sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.sec-head h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.sec-head p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    aspect-ratio: 1/0.7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-item h6 {
    font-size: 14px;
    color: #aa8453;
    margin: 0;
}

.stars {
    font-size: 18px;
    color: gold;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.rooms1 .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.rooms1 .item img {
    width: 100%;
    transition: all 0.5s ease;
    aspect-ratio: 1/0.65;
    object-fit: cover;
}

/* Zoom image on hover */
.rooms1 .item:hover img {
    transform: scale(1.1);
}

/* Overlay covers full image */
.rooms1 .item .con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* content stays bottom */
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* base overlay */
    transition: background 0.4s ease-in-out;
}

/* Overlay gets slightly darker on hover */
.rooms1 .item:hover .con {
    background: rgba(0, 0, 0, 0.6);
}

/* Title */
.rooms1 .item .con h5 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 8px;
}

/* Paragraph */
.rooms1 .item .con p {
    color: #ddd;
    font-size: 14px;
    margin: 0 0 12px;
}

/* White line animation */
.rooms1 .item .line {
    height: 1px;
    width: 0;
    background: #fff;
    transition: width 0.5s ease-in-out;
}

.rooms1 .item:hover .line {
    width: 100%;
}

p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.95em;
    color: #ffffff;
    margin-bottom: 15px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gilda Display", serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.5em;
    margin: 0 0 15px 0;
    color: #1b1b1b;
}

img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 700;
    color: #1b1b1b;
}

/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: "Barlow Condensed", sans-serif;
}


table,
th,
tr,
td {
    border: 0px solid #999;
}

th,
tr,
td {
    padding: 10px;
}

.alert-success {
    background: transparent;
    color: #999;
    border: 1px solid #aa8453;
    border-radius: 30px;
}

/* Important */
.bg-position-top {
    background-position: top;
}

.bg-position-center {
    background-position: center;
}

.bg-position-bottom {
    background-position: bottom;
}

.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100%;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-gray {
    background-color: #f6f6f6;
}

.bg-white {
    background-color: #fff;
}

.bg-yellow {
    background-color: #aa8453;
}

.txt-dark {
    color: #1b1b1b;
}

.pattern {
    background-repeat: repeat;
    background-size: auto;
}

.bold {
    font-weight: 700;
}

.count {
    font-family: "Barlow Condensed", sans-serif;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    /*    left: 0;*/
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 9;
}

.v-middle2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
    z-index: 9;
}

.js .animate-box {
    opacity: 0;
}

:root {
    scroll-behavior: auto;
}

.position-relative {
    position: relative !important;
}

.bp-bottom {
    background-position: bottom;
}

.bp-top {
    background-position: top;
}

.bp-center {
    background-position: center;
}

.icon-bg {
    background: #1b1b1b !important;
}

hr {
    margin-top: 5px;
    margin-bottom: 15px;
    border: 0;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt--120 {
    margin-top: -120px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

/* list */
.list {
    position: relative;
    display: block;
}

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

.list li+li {
    margin-top: 10px;
}

.list-icon {
    display: grid;
}

.list-icon span {
    font-size: 11px;
    color: #aa8453;
    background-color: #222;
    text-align: center;
    padding: 15px;
    border-radius: 100%;
}

.list-text {
    margin-left: 15px;
}

.list-text p {
    font-size: 14px;
    margin: 0;
    color: #999;
}

/* vertical line */
.line-vr-section {
    position: relative;
    margin: -25px auto;
    border: 0;
    border-left: 1px solid;
    border-color: #aa8453;
    width: 2px;
    height: 50px;
    z-index: 10;
    opacity: 1;
}


/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1b1b1b;
    z-index: 10000009;
}

#preloader {
    display: table;
    table-layout: fixed;
}

#preloader-status {
    display: table-cell;
    vertical-align: middle;
}

.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.loader {
    position: relative;
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.loader span {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid #aa8453;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

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

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

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

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


/* ======= Owl-Theme Custom style ======= */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
    line-height: .7;
    display: block;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fff;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #aa8453;
    border: 1px solid #aa8453;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: transparent;
    border: none;
}

/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 5%;
    right: 12%;
}

.owl-prev {
    float: left;
}

.owl-next {
    float: right;
}

/* owl-theme owl-nav */
.owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}

.owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-theme .owl-prev,
.owl-theme .owl-prev {
    left: 10px !important
}

.owl-theme .owl-next {
    right: 10px !important
}

.owl-theme .owl-prev>span,
.owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.owl-theme .owl-nav [class*=owl-] {
    width: 50px;
    height: 50px;
    line-height: 45px;
    background: #aa8453;
    border-radius: 0;
    color: #1b1b1b;
    font-size: 10px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 1px solid #aa8453;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
    border-radius: 100%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #06182d;
}

.owl-theme .owl-nav {
    top: 45% !important;

}

.owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}

.owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}


/* ======= Section style ======= */
.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 35px;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.25em;
    font-weight: 700;
}

[data-overlay-dark] .section-title span,
.section-title span {
    color: #aa8453;
}

.section-title.white {
    color: #fff;
}

.section-title.black {
    color: #1b1b1b;
}

.section-subtitle {
    font-size: 10px;
    line-height: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    color: #aa8453;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.section-subtitle.white {
    color: #fff;
}


/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 115px;
    border: none;
}

.navbar .container {
    border: none;
}

.nav-scroll .container {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 9px;
    padding-left: 9px;
}

.navbar .navbar-nav .nav-link.nav-color {
    color: #1b1b1b;
}

.navbar .navbar-nav .nav-link:hover {
    color: #aa8453;
}

.navbar .navbar-nav .nav-link:hover i {
    color: #aa8453;
}

.navbar .navbar-nav .active {
    color: #aa8453 !important;
}

.navbar .navbar-nav .active i {
    color: #aa8453;
}

.nav-scroll {
    background: #222;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
}

.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #fff;
}

.nav-scroll .navbar-nav .nav-link {
    color: #fff;
}

.nav-scroll .navbar-nav .active {
    color: #aa8453;
}

.logo-wrapper {
    float: left;
}

.logo div {
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 5px;
    color: #fff;
    margin: 0;
    line-height: 15px;
}

.logo .t-gold {
    font-family: "Cinzel Decorative", serif;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: 40px;
    font-weight: 400;
    color: #aa8453;
    line-height: normal;
}

@media (max-width: 768px) {
    .logo div {
        font-size: 20px;

    }

    h1.title {
        font-size: 30px;
        letter-spacing: 10px !important;
    }

    .logo .t-gold {
        font-size: 30px;
    }

    .logo-wrapper {
        padding: 0 10px !important;
    }

    nav.navbar {
        height: auto;
    }
}

.star-rating {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.9em;
    margin-right: 0.9em;
    margin-bottom: 2em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 0.3em solid transparent;
    font-size: 15px;
}

.star-rating:after {
    transform: rotate(35deg) !important;
}

.star-rating:before,
.star-rating:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
}

.sub-title {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 3px;
}

.title {
    color: #fff;
    font-family: "Cinzel Decorative", serif;
    text-transform: lowercase;
    font-size: 40px;
    letter-spacing: 15px !important;
    font-weight: 400 !important;
}

.btn-1 {
    font-weight: 400;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 13px 22px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.btn-1:hover {
    color: #fff;
    border: 1px solid #ab8a62;
    background: #ab8a62;
}

.ab-center {
    width: 100%;

    z-index: 9;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: #fff;
}

.nav-scroll .dropdown .nav-link i {
    color: #999;
}

.nav-scroll .navbar-nav .active i {
    color: #aa8453;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 7px 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    position: relative;
    background-color: transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}

.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
    color: #fff;
}

.navbar .dropdown-menu .dropdown:hover>.dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #aa8453;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-menu {}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}

/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}

.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* navbar-right */
.navbar .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .navbar-right .wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-left: 20px;
}

.navbar .navbar-right .wrap .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #aa8453;
}

.navbar .navbar-right .wrap .icon:hover {
    background-color: #aa8453;
    color: #1b1b1b;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.navbar .navbar-right .wrap .text {
    margin-left: 10px;
    top: 3px;
    position: relative;
}

.navbar .navbar-right .wrap .text p {
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 12px;
    color: #fff;
    margin-bottom: 4px;
}

.navbar .navbar-right .wrap .text h5 {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 5px;
}

.navbar .navbar-right .wrap .text h5 a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.navbar .navbar-right .wrap .text h5 a:hover {
    color: #aa8453;
}

.nav-scroll .navbar-right .wrap .text p,
.nav-scroll .navbar-right .wrap .text h5,
.nav-scroll .navbar-right .wrap .text h5 a {
    color: #fff;
}

/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 200px;
        padding: 15px 25px;
        border-radius: 20px;
        border: 0;
        background-color: #222;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 0px;
        padding-bottom: 0px;
        height: 85px;
    }

    .nav-scroll {
        background: #222;
    }

    .logo-wrapper {
        float: left;
        padding: 28.5px 15px;
    }

    .nav-scroll .logo-wrapper {
        padding: 28.5px 15px;
        background-color: transparent;
    }

    .nav-scroll .logo-img {
        width: 130px;
    }

    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }

    .nav-scroll .logo {}

    .logo-img {
        margin-bottom: 0px;
        width: 130px;
        padding: 0;
    }

    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }

    .navbar button:hover {
        background: transparent;
    }

    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link {
        color: #fff;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: #aa8453 !important;
    }

    .navbar .dropdown-menu .dropdown-item {
        color: #fff;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }

    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 300;
    }

    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 10px;
    }

    .navbar .dropdown-submenu:hover>.dropdown-toggle::after {
        transform: rotate(0deg);
    }

    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }

    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #222;
        box-shadow: none;
    }

    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }

    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar .navbar-nav {
        padding: 20px;
    }

    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #222;
        text-align: left;
    }

    .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }

    .nav-scroll .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }

    .nav-scroll .dropdown .nav-link.active i {
        color: #aa8453;
    }

    .navbar .dropdown-menu .dropdown-item i {
        color: #fff;
    }

    .navbar .navbar-right {
        display: none;
    }
}


/* ======= Header style ======= */
.header {
    height: 100vh;
    overflow: hidden;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h6 {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 0px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.header .caption h1 {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid;
}

.header .caption h1 span {
    color: #aa8453;
}

.header .caption h2 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.25em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid;
}

.header .caption h2 span {
    color: #aa8453;
}

.header .caption h5 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 10px 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.header .caption h5 span {
    display: inline-block;
    font-weight: 700;
    font-size: 21px;
    color: #aa8453;
    margin-left: 20px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.header .caption h5 span i {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.header .caption .button-1,
.header .caption .button-2 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.header .car-features {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

/* ======= Slider style ======= */
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}

.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.slider-fade .item .caption {
    z-index: 9;

    position: relative;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

/* owl-theme owl-dots */
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 4vh;
    width: 100%;
}

.slider-fade .owl-theme .owl-dots .owl-dot span {
    border: 1px solid #fff;
}

.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span {
    background: #aa8453;
    border: 1px solid #aa8453;
}

/* owl-theme owl-nav */
.slider-fade .owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}

.slider-fade .owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider-fade .owl-theme .owl-prev,
.slider-fade .owl-theme .owl-prev {
    left: 10px !important
}

.slider-fade .owl-theme .owl-next {
    right: 10px !important
}

.slider-fade .owl-theme .owl-prev>span,
.slider-fade .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.slider-fade .owl-theme .owl-nav [class*=owl-] {
    width: 50px;
    height: 50px;
    line-height: 43px;
    background: #aa8453;
    border-radius: 100%;
    color: #1b1b1b;
    font-size: 10px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 1px solid #aa8453;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.slider-fade .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #1b1b1b;
}

.slider-fade .owl-theme .owl-nav {
    top: 40% !important;
}

.slider-fade .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}

.slider-fade .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .slider-fade .owl-theme .owl-nav {
        display: none;
    }
}


/* ======= Slider style (Inner Page Slider) ======= */
.slider .owl-item {
    height: 100vh;
    position: relative;
}

.slider .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.slider .item .caption {
    z-index: 9;
}

/* owl-dots for slider */
.slider .owl-theme .owl-dots {
    position: absolute;
    /* width: 100%; */
    bottom: 5%;
    left: 12%;
}


/* ======= Parallax Header style ======= */
.parallax-header {
    min-height: 100vh;
    background-position: center;
}

.parallax-header.full-height {
    min-height: 100vh;
    background-position: center;
}

.parallax-header .caption {
    position: relative;
}

.parallax-header[data-overlay-dark] h6,
.parallax-header h6 {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.parallax-header[data-overlay-dark] h1,
.parallax-header h1 {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid;
}

.parallax-header h5 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 15px 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.parallax-header h5 span {
    display: inline-block;
    font-weight: 700;
    font-size: 21px;
    color: #aa8453;
    margin-left: 20px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.parallax-header h5 span i {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.parallax-header[data-overlay-dark] p,
.parallax-header p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

.parallax-header .button-1,
.parallax-header .button-2 {
    font-size: 14px;
}


/* ===== Kenburns SlideShow style ===== */
.kenburns-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}

.kenburns-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #1b1b1b;
}

.kenburns-inner {
    position: relative;
    z-index: 15;
}

.kenburns-inner .caption {
    position: relative;
}

.kenburns-inner .caption h6 {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.kenburns-inner .caption h1 {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid;
}

.kenburns-inner .caption h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 15px 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.kenburns-inner .caption h5 span {
    display: inline-block;
    font-weight: 700;
    font-size: 21px;
    color: #aa8453;
    margin-left: 20px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.kenburns-inner .caption h5 span i {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.kenburns-inner .caption[data-overlay-dark] p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

#kenburnsSliderContainer .vegas-overlay {
    outline: none;
}

@media screen and (max-width: 767px) {
    .kenburns-inner .caption h6 {
        font-size: 12px;
    }

    .kenburns-inner .caption h1 {
        font-size: 42px;
    }

    .kenburns-inner .caption {
        text-align: center;
    }
}


/* =======  Video Background style  ======= */
.video-fullscreen-wrap {
    height: 100vh;
    overflow: hidden;
}

.video-fullscreen-video {
    height: 100%;
}

.video-fullscreen-wrap video {
    width: 100vw;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-fullscreen-wrap .video-fullscreen-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
}

.video-lauch-wrapper {
    border: none;
    background: none;
    width: 100%;
    padding: 0;
}

.position-relative {
    position: relative !important;
}

.video-fullscreen-wrap h6 {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.video-fullscreen-wrap h1 {
    position: relative;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    line-height: 1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    display: inline-grid;
}

.video-fullscreen-wrap h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 15px 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-fullscreen-wrap h5 span {
    display: inline-block;
    font-weight: 700;
    font-size: 21px;
    color: #aa8453;
    margin-left: 20px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-fullscreen-wrap h5 span i {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-fullscreen-wrap[data-overlay-dark] p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

.video-fullscreen-wrap .button-1,
.video-fullscreen-wrap .button-2 {
    font-size: 14px;
}


/* ======= Banner Header style ======= */
.banner-header {
    height: 70vh;
    background-position: center;
}

.banner-header.middle-height {
    min-height: 80vh;
}

.banner-header.full-height {
    min-height: 100vh;
}

.banner-header[data-overlay-dark] h6,
.banner-header h6 {
    font-size: 10px;
    line-height: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    color: #aa8453;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.banner-header h1 {
    font-size: 42px;
    color: #1b1b1b;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
}

.banner-header h1 span {
    color: #aa8453;
}

.banner-header p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
    color: #1b1b1b;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.banner-header .post-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-header .post-wrapper a {
    color: #aa8453;
    font-size: 14px;
    font-weight: 300;
}

.banner-header .post-wrapper .divider {
    width: 20px;
    height: 1px;
    margin-right: 15px;
    margin-left: 15px;
    background-color: #aa8453;
}

@media screen and (max-width: 991px) {
    .banner-header h1 {
        font-size: 42px;
    }
}



/* owl nav */
.owl-item.active .item .con {
    visibility: visible;
    opacity: 1;
}

/* double button */
.btn-double {
    position: relative;
    text-align: center;
    margin: 10px 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.btn-double:before {
    content: attr(data-grouptype);
    color: #fff;
    font-weight: 300;
    display: block;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #333;
    position: absolute;
    left: 50%;
    top: 15px;
    margin-left: -28px;
    line-height: 28px;
    text-align: center
}

.btn-double>a+a {
    margin-left: 0px;
}

.btn-double>a {
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    transition: color .3s ease;
}

.btn-double>a span {
    font-size: 17px;
    margin-right: 2px;
}

.btn-double>a:nth-of-type(1) {
    background: #aa8453;
    color: #1b1b1b;
    border-radius: 30px 0 0 30px;
    padding: 15px 27px;
}

.btn-double>a:nth-of-type(1):hover {
    background: #fff;
    color: #1b1b1b;
}

.btn-double>a:nth-of-type(2) {
    background: #aa8453;
    color: #1b1b1b;
    border-radius: 0 30px 30px 0;
    padding: 15px 27px;
}

.btn-double>a:nth-of-type(2):hover {
    background: #fff;
    color: #1b1b1b;
}


/* ======= Services Box style ======= */
.services-box {
    position: relative;
}

.services-box .container {
    position: relative;
    z-index: 2;
}

.services-box .item {
    background: #222;
    padding: 40px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.services-box .item.active {
    background: #aa8453;
}

.services-box .item:hover {
    background: #aa8453;
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.services-box .item h5 {
    font-size: 21px;
    color: #fff;
}

.services-box .item.active h5 {
    color: #1b1b1b
}

.services-box .item:hover h5 {
    color: #1b1b1b;
    -webkit-transition: .5s;
    transition: .5s;
}

.services-box .item p {
    color: #999;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

.services-box .item.active p {
    color: #1b1b1b;
}

.services-box .item:hover p {
    color: #1b1b1b;
}

.services-box .item span {
    font-size: 21px;
    color: #aa8453;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #333;
    border-radius: 100%;
    text-align: center;
}

.services-box .item.active span {
    color: #aa8453;
    background: #1b1b1b;
}

.services-box .item:hover span {
    color: #fff;
    background: #1b1b1b;
}

.services-box .item i {
    font-size: 17px;
    font-weight: 700;
    color: #aa8453;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #333;
    border-radius: 100%;
    text-align: center;
    font-style: normal;
}

.services-box .item.active i {
    color: #aa8453;
    background: #1b1b1b;
}

.services-box .item:hover i {
    color: #fff;
    background: #1b1b1b;
}

.services-box .item .numb {
    font-size: 120px;
    position: absolute;
    bottom: -25px;
    right: -10px;
    color: rgba(0, 0, 0, 0.3);
    opacity: .2;
}

.services-box .item.active .numb {
    color: rgba(255, 255, 255, 0.5);
}

.services-box .item:hover .numb {
    color: rgba(255, 255, 255, 0.5);
}


/* ======= Services 1 style ======= */
.services1 {
    position: relative;
    overflow: hidden;
}

.services1 .item {
    position: relative;
    padding: 50px 40px 0 40px;
    border-radius: 20px 20px 20px 0;
    background: #222;
    z-index: 2;
    margin-bottom: 15px;
}

.services1 .item .text h5 {
    border-radius: 20px;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
}

.services1 .item .text p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: #999;
    margin-bottom: 20px;
}

.services1 .item .numb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.services1 .item .numb .number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #222;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.services1 .item:hover .numb .number {
    background: #aa8453;
    color: #1b1b1b;
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
}

.services1 .item .numb .numb-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: #1b1b1b;
    height: 90px;
    width: 90px;
}

.services1 .item .numb .numb-curv .shap-left-top {
    position: absolute;
    top: -23px;
    left: -4px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.services1 .item .numb .numb-curv .shap-left-top svg {
    width: 24px;
    height: 20px;
}

.services1 .item .numb .numb-curv .shap-right-bottom {
    position: absolute;
    bottom: -2px;
    right: -22px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.services1 .item .numb .numb-curv .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}

.services1 p span {
    background-color: #333;
    color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    align-items: middle;
    margin-right: 10px;
    font-size: 10px;
}


/* ======= Services 2 style ======= */
.services2 {
    position: relative;
}

.services2 .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.services2 .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.services2 .item:hover img {
    transform: scale(1.05);
}

.services2 .item .title {
    position: absolute;
    bottom: 0px;
    padding: 30px 15px 30px 110px;
    width: 100%;
    text-align: right;
}

.services2 .item .title h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
    text-align: left;
}

.services2 .item .curv-butn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 40px 0 0;
}

.services2 .item .curv-butn .vid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    color: #fff;
}

/* show and hidden class */
.services2 .item .curv-butn .icon {
    font-size: 15px;
    font-weight: 700;
    font-style: normal;

}

.services2 .item .curv-butn .br-left-top {
    position: absolute;
    top: -24px;
    left: -1px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.services2 .item .curv-butn .br-left-top svg {
    width: 24px;
    height: 24px;
}

.services2 .item .curv-butn .br-right-bottom {
    position: absolute;
    bottom: -1px;
    right: -24px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.services2 .item .curv-butn .br-right-bottom svg {
    width: 24px;
    height: 24px;
}

.services2 .item .curv-butn .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    border: 1px solid #aa8453;
    background: transparent;
    border-radius: 100%;
}

.services2 .item:hover .curv-butn .icon {
    background-color: #aa8453;
    color: #1b1b1b;
    border-radius: 100%;
}


/* ======= Service Details style ======= */
.service-details {
    position: relative;
}

.service-details h3 {
    color: #fff;
    font-size: 21px;
}

.service-details .sidebar-page {
    position: relative;
    display: block;
    padding: 0;
    background: #222;
    border-radius: 20px;
    margin-top: -215.5px;
    z-index: 9;
}

.service-details .sidebar-page .title {
    position: relative;
    background-color: #aa8453;
    padding: 35px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.service-details .sidebar-page .title h4 {
    font-size: 21px;
    line-height: 1.2em;
    color: #1b1b1b;
    margin: 0;
}

.service-details .sidebar-page .title h4>span {
    margin-bottom: 0;
    font-size: 14px;
    color: #1b1b1b;
    font-weight: 400;
}

.service-details .sidebar-page .item {
    padding: 40px 30px;
}

.service-details .sidebar-page .item .features {
    grid-template-columns: 50% 50%;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-details .sidebar-page .item .features span {
    color: #fff;
}

.service-details .sidebar-page .item .features span i {
    color: #aa8453;
    margin-right: 15px;
    font-size: 11px;
}

.service-details .sidebar-page .item .features p {
    margin-bottom: 0px;
    color: #fff;
    text-align: right;
}

.service-details .sidebar-page .item .features:hover span i,
.service-details .sidebar-page .item .features.active span i {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.service-details .sidebar-page .item .features:hover,
.service-details .sidebar-page .item .features.active {
    background: #aa8453;
    color: #1b1b1b;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border-radius: 15px;
}

.service-details .sidebar-page .item .features:hover span i,
.service-details .sidebar-page .item .features.active span i {
    color: #1b1b1b;
}

.service-details .sidebar-page .item .features:hover span,
.service-details .sidebar-page .item .features.active span {
    color: #1b1b1b;
}


/* ======= Process style ======= */
.process {
    position: relative;
    overflow: hidden;
}

.process .item {
    position: relative;
    padding: 60px 40px 0 40px;
    border-radius: 20px 20px 20px 0;
    background: #222;
    z-index: 2
}

.process .item .text h5 {
    border-radius: 20px;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
}

.process .item .text p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: #999;
    margin-bottom: 20px;
}

.process .item .numb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.process .item .numb .number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #222;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border: 1px solid #222;
}

.process .item .numb .numb-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: #1b1b1b;
}

.process .item .numb .numb-curv .shap-left-top {
    position: absolute;
    top: -23px;
    left: -4px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.process .item .numb .numb-curv .shap-left-top svg {
    width: 24px;
    height: 20px;
}

.process .item .numb .numb-curv .shap-right-bottom {
    position: absolute;
    bottom: -2px;
    right: -22px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.process .item .numb .numb-curv .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}

.process p span {
    background-color: #333;
    color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    align-items: middle;
    margin-right: 10px;
    font-size: 10px;
}


/* ======= Process Number style  ======= */
.process-number {
    position: relative;
}

.process-number .item {
    position: relative;
    background-color: #aa8453;
    padding: 60px 0 60px 30px;
    border-radius: 20px;
    border: none;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    overflow: hidden;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    z-index: 1;
}

.process-number .item:hover {
    background-color: #fff;
    transform: translateY(-20px);
}

.process-number .item .con {
    position: relative;
    padding-right: 60px;
}

.process-number .item .con .no {
    position: absolute;
    font-size: 240px;
    font-weight: 900;
    color: #1b1b1b;
    text-align: right;
    top: -40px;
    width: 100%;
    line-height: 1;
    right: -20px;
}

.process-number .item .con h5 {
    font-size: 21px;
    color: #1b1b1b;
}

.process-number .item .con p {
    color: #222;
    margin-bottom: 0px;
}

.process-number .item:hover .con .no {
    color: rgba(0, 0, 0, 0.1);
    opacity: .5;
}

.process-number .item:hover .con h5 {
    color: #1b1b1b;
}

.process-number .item:hover .con p {
    color: #222;
}


/* ======= Testimonials style ======= */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials .item {
    position: relative;
    padding: 40px 40px 0px;
    border-radius: 20px 20px 20px 0;
    background: #222;
}

.testimonials .item .stars {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    border-radius: 0 0 0 20px;
    color: #aa8453;
    background: #1b1b1b;
}

.testimonials .item .stars i {
    font-size: 10px;
}

.testimonials .item .stars .shap-left-top {
    position: absolute;
    top: -2px;
    left: -20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.testimonials .item .stars .shap-left-top svg {
    width: 24px;
    height: 24px;
}

.testimonials .item .stars .shap-right-bottom {
    position: absolute;
    bottom: -25px;
    right: -2px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.testimonials .item .stars .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}

.testimonials .item i.fa-quote-left {
    color: #aa8453;
    font-size: 45px;
    margin-bottom: 10px;
}

.testimonials .item .text h5 {
    border-radius: 20px;
    font-family: "Barlow Condensed", sans-serif;
    color: #aa8453;
    font-weight: 700;
    font-size: 14px;
}

.testimonials .item .text p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: #999;
    margin-bottom: 15px;
}

.testimonials .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.testimonials .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .item .info .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonials .item .info h6 {
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials .item .info p {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5em;
    color: #999;
    margin-bottom: 0;
}

.testimonials .item .img-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: #1b1b1b;
}

.testimonials .item .img-curv .shap-left-top {
    position: absolute;
    top: -23px;
    left: -4px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.testimonials .item .img-curv .shap-left-top svg {
    width: 24px;
    height: 20px;
}

.testimonials .item .img-curv .shap-right-bottom {
    position: absolute;
    bottom: -2px;
    right: -22px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.testimonials .item .img-curv .shap-right-bottom svg {
    width: 24px;
    height: 24px;
}



/* ======= Price style  ======= */
.price .item {
    padding: 60px 45px;
    border-radius: 20px;
    background: #222;
    position: relative;
    overflow: hidden;
}

.price .item h3 {
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
}

.price .item h3 span {
    font-weight: 300;
    font-size: 10px;
    display: block;
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.price .item p {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    margin-bottom: 0;
}

.price .item ul {
    margin: 0;
    padding-left: 15px;
}

.price .item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price .item li:after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
}

.price .item .dot-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.price .item .dot-list li:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    background: #aa8453;
}

.price .item .dot-list li:last-of-type {
    margin-bottom: 0;
}

/* arrow */
.price .item .rmore {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1b1b1b;
    padding: 15px;
    border-radius: 0 0 0 45px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    opacity: 0;
}

.price .item .rmore .arrow {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid #aa8453;
    background: #aa8453;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    font-size: 21px;
    color: #1b1b1b;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
}

.price .item .rmore .arrow span {
    color: #1b1b1b;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    align-self: flex-start;
    margin-right: 2px;
}

/* arrow hover */
.price .item:hover .rmore {
    opacity: 1;
    top: 0px;
    right: 0px;
}

.price .item .rmore:hover .arrow {
    border: 1px solid #fff;
    background: #fff;
    color: #1b1b1b;
}

.price .item .rmore:hover .arrow span {
    color: #1b1b1b;
}

/* active */
.price .item .rmore.active {
    opacity: 1;
    top: 0px;
    right: 0px;
}

.price .item .rmore .arrow.active {
    background: #aa8453;
}

.price .item .rmore .arrow.active i {
    color: #1b1b1b;
}

/* border */
.price .item .rmore .br-left-top {
    position: absolute;
    top: 0;
    left: -20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    line-height: 1;
}

.price .item .rmore .br-left-top svg {
    width: 20px;
    height: 20px;
}

.price .item .rmore .br-right-bottom {
    position: absolute;
    bottom: -20px;
    right: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    line-height: 1;
}

.price .item .rmore .br-right-bottom svg {
    width: 20px;
    height: 20px;
}


/* ======= Clients style ======= */
.clients {
    background: #222;
}

.clients .owl-carousel {
    margin: 20px 0;
}

.clients .clients-logo {
    opacity: 1;
    line-height: 0;
}

.clients .clients-logo:hover {
    opacity: 1;
}

.clients img {
    -webkit-filter: none;
    filter: none;
}

.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* pagination */
.pagination-wrap {
    padding: 0;
    margin: 0;
}

.pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}

.pagination-wrap li a {
    background: #222;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    border: 1px solid #222;
    border-radius: 100%;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.pagination-wrap li a i {
    font-size: 11px;
}

.pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background: #aa8453;
    border: 1px solid #aa8453;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}

.pagination-wrap li a.active {
    background-color: #aa8453;
    border: 1px solid #aa8453;
    color: #1b1b1b;
}

@media screen and (max-width: 768px) {
    .pagination-wrap {
        padding: 0;
        margin: 0;
        text-align: center;
    }
}

/* prev/next post */
.post-prev-next {
    padding: 45px 0;
    border: none;
    border-top: 1px solid #222;
    background-color: #222;
}

@media (max-width: 576px) {
    .post-prev-next {
        text-align: center;
    }

    .post-prev-next-left {
        margin-bottom: 10px;
    }
}

.post-prev-next a {
    display: inline-block;
    font-size: 14px;
    color: #999;
    line-height: 1em;
}

.post-prev-next a i {
    font-size: 28px;
    color: #aa8453;
}

.post-prev-next a i:hover,
.post-prev-next a:hover {
    color: #aa8453;
}

.post-prev-next .post-prev-next-left a i {
    margin-right: 5px;
    font-size: 13px;
}

.post-prev-next .post-prev-next-right a i {
    font-size: 13px;
    margin-left: 0;
    margin-left: 5px;
}


/* ======= Contact style ======= */
.contact p {
    color: #999;
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact p b {
    color: #1b1b1b;
    font-weight: 700;
}

.contact h5 {
    color: #fff;
    font-size: 21px;
    text-align: center;
    margin-bottom: 20px;
}

.contact .con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #999;
    text-decoration: none;
}

.contact .con .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 100%;
    border: 1px solid #aa8453;
    text-align: center;
    background: transparent;
    font-size: 21px;
    color: #fff;
}

.contact .con .icon .img {
    border-radius: 0;
    border: 1px solid #aa8453;
}

.contact .con .icon img {
    background: transparent;
    padding: 13px;
}

.contact .con .text {
    color: #999;
    line-height: 1.5em;
}


.google-map {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    height: 340px;
    overflow: hidden;
    border-radius: 20px;
}


/* ======= Contact Box style ======= */
.contact-box {
    position: relative;
    margin-bottom: 0px;
    margin-top: -100px;
}

.contact-box .container {
    position: relative;
    z-index: 2;
}

.contact-box .item {
    background: #222;
    padding: 60px 30px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.contact-box .item.active {
    background: #aa8453;
}

.contact-box .item:hover {
    background: #aa8453;
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;

}

.contact-box .item h5 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 0px;
}

.contact-box .item.active h5 {
    color: #1b1b1b
}

.contact-box .item:hover h5 {
    color: #1b1b1b;
    -webkit-transition: .5s;
    transition: .5s;
}

.contact-box .item p {
    color: #999;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

.contact-box .item.active p {
    color: #1b1b1b;
}

.contact-box .item:hover p {
    color: #1b1b1b;
}

.contact-box .item span {
    font-size: 35px;
    color: #aa8453;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}

.contact-box .item.active span {
    color: #1b1b1b;
}

.contact-box .item:hover span {
    color: #1b1b1b;
}

.contact-box .item i.numb {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: rgba(255, 255, 255, 0.1);
    opacity: .2;
}

.contact-box .item.active i.numb {
    color: rgba(0, 0, 0, 0.2);
}

.contact-box .item:hover .numb {
    color: rgba(0, 0, 0, 0.2);
}


/* bottom fade */
.bottom-fade {
    width: 100%;
    top: 41%;
    height: 60%;
    float: left;
    position: absolute;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

/* ======= Button style ======= */
/* button 1 */
.button-1 {
    display: inline-block;
    height: auto;
    padding: 14px 42px;
    border: 1px solid #aa8453;
    border-radius: 30px;
    background: #aa8453;
    color: #1b1b1b;
    font-weight: 300;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

[data-overlay-dark] .button-1 span,
.button-1 span {
    font-size: 10px;
    margin-left: 5px;
    color: #1b1b1b;
}

[data-overlay-dark] .button-1 i,
.button-1 i {
    font-style: normal;
    font-size: 14px;
    padding-right: 5px;
    color: #1b1b1b;
}

.button-1:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}

.button-1:hover span {
    color: #1b1b1b;
}

/* button 2 */
.button-2 {
    display: inline-block;
    height: auto;
    padding: 14px 42px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: transparent;
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

[data-overlay-dark] .button-2 span,
.button-2 span {
    font-size: 10px;
    margin-left: 5px;
    color: #fff;
}

[data-overlay-dark] .button-2 i,
.button-2 i {
    font-style: normal;
    font-size: 14px;
    padding-right: 5px;
    color: #fff;
}

.button-2:hover {
    border: 1px solid #aa8453;
    background-color: #aa8453;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}

.button-2:hover i,
.button-2:hover span {
    color: #1b1b1b;
}

/* button 3 */
.button-3 {
    display: inline-block;
    height: auto;
    padding: 14px 42px;
    border: 1px solid #1b1b1b;
    border-radius: 30px;
    background-color: #1b1b1b;
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

[data-overlay-dark] .button-3 span,
.button-3 span {
    font-size: 14px;
    margin-left: 5px;
    color: #fff;
}

.button-3:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #1b1b1b;
    transform: translate3d(0px, -6px, 0.01px);
}

.button-3:hover span {
    color: #1b1b1b;
}


/* ======= LetsTalk style ======= */
.lets-talk {
    position: relative;
}

.lets-talk .wrap {
    position: relative;
    background: #fff;
    padding: 45px 30px;
    overflow: hidden;
    z-index: 1;
}

.lets-talk[data-overlay-dark] h6,
.lets-talk h6 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    color: #aa8453;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 6px;
}

.lets-talk[data-overlay-dark] h5,
.lets-talk h5 {
    font-size: 35px;
    color: #fff;
    line-height: 1em;
}

.lets-talk[data-overlay-dark] p,
.lets-talk p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5em;
}


/* ======= App style ======= */
.app {
    position: relative;
}

.app .item {
    background: #aa8453;
    border-radius: 20px;
    padding: 60px 60px 0px 60px;
}

.app .item[data-overlay-dark] h6,
.app .item h6 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    color: #1b1b1b;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 6px;
}

.app .item[data-overlay-dark] h5,
.app .item h3 {
    font-size: 35px;
    color: #1b1b1b;
    line-height: 1.2em;
}

.app .item[data-overlay-dark] p,
.app .item p {
    font-size: 14px;
    color: #1b1b1b;
    line-height: 1.5em;
}

.app .item img {
    position: relative;
    display: block;
}

@media screen and (max-width: 991px) {
    .app .item {
        padding: 30px 30px 0px 30px;
    }
}


/* ======= Footer style ======= */
.footer {
    background-color: #1b1b1b;
}

.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;

}

.footer-logo h2 span {
    color: #aa8453;
}

.footer .widget .widget-title {
    font-size: 21px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

/* first footer */
.first-footer {
    padding: 90px 0 0 0;
}

/* footer icon */
.icon-footer {
    width: 60px;
    max-height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: #aa8453;
    color: #1b1b1b;
    font-size: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #aa8453;
    border-radius: 100%;
}

.icon-footer i {
    width: 100%;
    text-align: center;
}

/* footer link */
.links.dark {
    background-color: transparent;
    border: 1px solid #222;
    box-shadow: none;
    border-radius: 0px;
}

.links.dark.footer-contact-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
}

.footer-contact-links-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1032px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-contact-links-divider {
    width: 1px;
    min-height: 100%;
    margin-right: 20px;
    margin-left: 20px;
    background-color: #222;
}

.footer-contact-link-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b1b1b;
    text-decoration: none;
}

.image-wrapper.footer-contact-link-icon {
    margin-right: 15px;
}

.footer-contact-link-wrapper h6 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
}

.footer-contact-link-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0px;
}

/* second footer */
.second-footer {
    border-bottom: 1px solid #222;
}

.second-footer .widget-area .widget {
    padding: 45px 0;
}

.second-footer .widget-area .widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* usefull links */
.footer .usful-links ul {
    margin: 0;
    padding: 0;
}

.footer .usful-links ul li {
    margin-bottom: 5px;
}

.footer .usful-links ul li:hover {
    color: #aa8453;
}

.footer .usful-links ul li i {
    font-size: 7px;
    margin-right: 3px;
}

.footer .usful-links ul li a {
    font-size: 18px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 15px;
}

.footer .usful-links ul li a:after {
    width: 6px;
    height: 6px;
    content: "";
    background: #aa8453;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
}

.footer .usful-links ul li a:hover {
    color: #aa8453;
}

/* bottom footer */
.copyright {
    padding-top: 40px;
    padding-bottom: 40px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.copyright p a {
    background: linear-gradient(to bottom, #aa8453 0%, #aa8453 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 1px;
    color: #fff;
    text-decoration: none;
    transition: background-size .2s;
}

.copyright p a:hover {
    color: #fff;
}

/* social icons */
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    background: transparent;
    color: #fff;
    font-weight: 300;
    border-radius: 0;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border: 1px solid #aa8453;
    border-radius: 100%;
}

.social-icons li:hover {
    background: #aa8453;
    color: #1b1b1b;
}

/* newsletter */
.widget-newsletter {
    position: relative;
}

.widget-newsletter input {
    height: 60px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #fff;
    outline: none;
    padding: 0 90px 0 20px;
    border: 1px solid #aa8453;
    border-radius: 30px;
}

.widget-newsletter button {
    height: 50px;
    width: 50px;
    border: none;
    background: #aa8453;
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    outline: none;
    padding: 0px 16px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 100%;
    line-height: 55px;
    outline: none;
    transform: rotate(0);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}

.widget-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.widget-newsletter:hover button {
    background: #fff;
    color: #1b1b1b;
    outline: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}

@media screen and (max-width: 767px) {
    .footer-contact-links-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-contact-links-divider {
        width: auto;
        min-height: 1px;
        margin: 20px 0px;
    }
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e627';
    text-align: center;
    line-height: 55px;
    font-size: 10px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #aa8453;
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap::after {
    color: #aa8453;
}

.progress-wrap svg.progress-circle path {
    stroke: #aa8453;
}


/* ======= Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }

    .header .caption h1 {
        font-size: 42px;
    }

    .header .caption h2 {
        font-size: 42px;
    }

    .kenburns-inner .caption h1 {
        font-size: 42px;
    }

    .banner-header h6 {
        font-size: 10px;
    }

    .parallax-header h6 {
        font-size: 10px;
    }

    .parallax-header[data-overlay-dark] h1,
    .parallax-header h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 35px;
    }

    .section-subtitle {
        font-size: 10px;
    }

    .section-subtitle {
        font-size: 10px;
    }

    .process .item h5 {
        font-size: 21px;
    }

    .video-fullscreen-wrap h6 {
        font-size: 12px;
    }

    .video-fullscreen-wrap h1 {
        font-size: 42px;
    }

    .footer .widget .widget-title {
        font-size: 21px;
    }

    .not-found h1 {
        font-size: 150px;
        line-height: 150px;
    }

    .footer-bottom .footer-social {
        float: left;
    }

    .form1.brdr {
        border-radius: 20px;
    }

    .car-details .sidebar-car {
        margin-top: 30px;
    }

    .blog2 .post-cont {
        padding: 30px 15px;
    }
}


/* ======= Overlay Effect Bg image style ======= */
[data-overlay-dark] {
    position: relative;
}

[data-overlay-dark] .container {
    position: relative;
    z-index: 2;
}

[data-overlay-dark]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: #000;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}

[data-overlay-dark] p {
    color: #999;
}

[data-overlay-dark="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before {
    opacity: 1;
}


/* ======= Modal Popup style ======= */
.modal-content {
    position: relative;
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: #aa8453;
    border: none;
    padding: 25px 30px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.modal-body {
    background: #1b1b1b;
    padding: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.modal-body .booking-box {
    margin-bottom: 0;
}

.modal-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1b1b1b;
}

.modal-body .input1_inner input {
    position: relative;
    z-index: 99999;
}

.modal-header .btn-close:focus,
.modal-header .btn-close:active {
    outline: none;
    box-shadow: none;
}

    :root {
            --gold: #B8860B;
            --dark-gold: #aa8453;
            --input-bg: #1E1E1E;
            --form-bg: #181818;
        }

        .form-container {
            background-color: var(--form-bg);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1), 0 0 80px rgba(0, 0, 0, 0.5) inset;
            border: 2px solid transparent;
            background-clip: padding-box;
            border-image: linear-gradient(145deg, var(--dark-gold), var(--gold), #2a2a2a) 1;
        }

        .form-title {
            color: var(--gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .title-separator {
            height: 2px;
            width: 80px;
            background-image: linear-gradient(to right, var(--dark-gold), var(--gold));
            margin: 0 auto 2rem;
        }

        .switch-wrapper {
            background-color: var(--input-bg);
            border: 1px solid #333;
            border-radius: 50rem;
            padding: 0.25rem;
        }

        .switch-wrapper input[type="radio"] {
            display: none;
        }

        .switch-wrapper .switch-label {
            transition: color 0.3s ease;
            z-index: 10;
        }

        .switch-wrapper .switch-bg {
            background-image: linear-gradient(to right, var(--dark-gold), var(--gold));
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border-radius: 50rem;
            width: 50%;
            height: calc(100% - 0.5rem);
            top: 0.25rem;
            left: 0.25rem;
        }

        .switch-wrapper input[type="radio"]:checked+.switch-label {
            color: #121212;
            font-weight: 600;
            text-transform: uppercase;
        }

        #hour:checked~.switch-bg {
            transform: translateX(0%);
        }

        #round:checked~.switch-bg {
            transform: translateX(calc(100% - 0.5rem));
        }

        /* RE-ENGINEERED INPUT FIELD STYLES */
        .input-group {
            position: relative;
        }

        /* The fake border created with a pseudo-element */
        .input-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid #333;
            border-radius: 0.375rem;
            /* Bootstrap's default radius */
            pointer-events: none;
            /* Allows clicks to pass through to the input */
            transition: border-color 0.3s, box-shadow 0.3s;
            z-index: 1;
            /* Layer behind everything else */
        }

        /* The actual input field - now borderless */
        .form-control {
            background-color: var(--input-bg);
            border: none;
            /* The border is now handled by the pseudo-element */
            color: #E0E0E0;
            padding-left: 3rem;
            position: relative;
            z-index: 2;
            /* Ensure input is above the fake border */
        }

        .form-control:focus {
            outline: none;
            box-shadow: none;
            /* Shadow is now on the pseudo-element */
            background-color: transparent;
            color: #E0E0E0;
        }

        /* Style the fake border on focus */
        .input-group:focus-within::before {
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .input-icon {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 1rem;
            color: #555;
            transition: color 0.3s;
            z-index: 3;
            /* Icon must be above the input field */
        }

        .input-group:focus-within .input-icon {
            color: var(--gold);
        }

        .floating-label {
            position: absolute;
            top: 50%;
            left: 3rem;
            transform: translateY(-50%);
            color: white;
            pointer-events: none;
            transition: all 0.2s ease-out;
            background-color: var(--input-bg);
            padding: 0 0.25rem;
            z-index: 2;
            /* Above the border but below icon/floated label */
        }

        .form-control:focus~.floating-label,
        .form-control:not(:placeholder-shown)~.floating-label {
            top: 0;
            left: 0.75rem;
            font-size: 0.75rem;
            color: var(--gold);
            background-color: var(--form-bg);
            /* This creates the "cut-out" effect */
            z-index: 3;
            /* Label must be on top of everything when floated */
        }

        textarea.form-control {
            padding-left: 1rem;
        }

        textarea.form-control~.floating-label {
            left: 1rem;
        }

        .submit-btn {
            background-image: linear-gradient(to right, var(--dark-gold), var(--gold));
            color: black;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
            border: none;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            color: black;
        }    
/* recommendation */
.rec-card {
    border: 1px solid var(--dark-gold);
    margin-bottom: 1rem;
}
.rec-card .image-frame{
    overflow: hidden;
}
.rec-card img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.rec-card .body{
    display: flex;
    flex-direction: row;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.rec-card .body h4{
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
}
.rec-card .body a button{
     font-family: "Barlow Condensed", sans-serif;
     text-transform: uppercase;
     letter-spacing: 1px;
padding: 5px 10px;
background-color: #aa8453;
color: #fff;
border: 1px solid var(--dark-gold);

}