@charset "UTF-8";
/* 
**********************************************/
@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=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Dynalight&display=swap");

@import url("animate.css");
@import url("jquery-ui.css");
@import url("swiper.min.css");
@import url("jquery.fancybox.min.css");
@import url("linear.css");
@import url("fontawesome-free.css");
@import url("fontawesome.css");
@import url("flaticon.css");
@import url("tm-bs-mp.css");
@import url("tm-utility-classes.css");
:root {
    --theme-color-light: #ffffff;
    --theme-color-white: #ffffff;
    --theme-color-white-rgb: 255, 255, 255;
    --theme-color7-rgb: 91 197 236;
    --theme-color-dark: #121212;
    --theme-color-dark2: #222222;
    --theme-color-gray: #f6f6f6;
    --theme-color-black: #000;
    --theme-color-black-rgb: 0, 0, 0;
    --theme-color1: #8f6f2b;
    --theme-color1-rgb: 170, 132, 83;
    --theme-color2: #fdece3;
    --theme-color3: #faf7f2;
    --theme-color4: #cab293;
    --theme-color5: #cb935d;
    --theme-color6: #69910a;
    --theme-color7: #5bc5ec;
    --theme-color8: #03203f;
    --theme-color9: #62c3c9;
    --theme-color10: #61ce70;
    --bg-theme-color1: var(--theme-color1);
    --bg-theme-color2: var(--theme-color2);
    --bg-theme-color3: var(--theme-color3);
    --bg-theme-color4: var(--theme-color4);
    --gradient-1: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.32) 100%);
    --gradient-2: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    --gradient-3: linear-gradient(275.66deg, rgba(0, 0, 0, 0.95) 5.7%, #1a1a1a 45.93%);
    --text-color: #666666;
    --text-color9: #999999;
    --headings-color: #121212;
    --review-color: #ffc737;
    --link-color: var(--headings-color);
    --link-hover-color: var(--headings-color);
    --title-font: "Playfair Display", serif;
    --title-font2: "Gilda Display", serif;
    --text-font: "Open Sans", serif;
    --text-font2: "Barlow Condensed", serif;
    --text-font3: "Dynalight", cursive;
    --text-font4: "Barlow", sans-serif;
    --body-font-size: 16px;
    --body-line-height: 1.75;
    --body-font-weight: 400;
    --line-height-heading-h1: 1.2em;
    --line-height-heading: 1.2;
    --line-height-heading-small: 1.35em;
    --h1-font-size: 72px;
    --h2-font-size: 50px;
    --h3-font-size: 36px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 20px;
    --h1-font-weight: 400;
    --h2-font-weight: 400;
    --h3-font-weight: 400;
    --h4-font-weight: 400;
    --h5-font-weight: 400;
    --h6-font-weight: 400;
    --sec-title-subtitle-font-size: 14px;
    --sec-title-subtitle-color: var(--theme-color1);
    --sec-title-subtitle-font-family: var(--text-font);
    --sec-title-subtitle-font-weight: 400;
    --sec-title-subtitle-line-height: 28px;
    --sec-title-color: var(--headings-color);
    --sec-title-font-size: var(--h2-font-size);
    --sec-title-font-family: var(--title-font);
    --sec-title-font-weight: var(--h2-font-weight);
    --theme-light-background: #f2f3f5;
    --theme-light-background-text-color: var(--headings-color);
    --theme-black: #131313;
    --container-width: 1200px;
    --small-container-width: 1000px;
    --large-container-width: 1580px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
    background: var(--theme-color-dark);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--theme-color-dark);
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}

::-webkit-input-placeholder {
    color: #7c858c;
}

::-moz-input-placeholder {
    color: #7c858c;
}

::-ms-input-placeholder {
    color: #7c858c;
}

body {
    background-color: #fff;
    background-attachment: fixed;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    counter-reset: my-sec-counter;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

p,
.text {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--headings-color);
    font-family: var(--title-font);
    line-height: var(--line-height-heading-);
    position: relative;
}
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small,
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
    color: var(--headings-color);
    font-weight: normal;
    line-height: 1;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    color: inherit;
    font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--line-height-heading-h1);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--line-height-heading);
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--line-height-heading);
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
    line-height: var(--line-height-heading-small);
    letter-spacing: 0.15px;
}

h5 {
    font-size: var(--h5-font-size);
    font-weight: var(--h5-font-weight);
    line-height: var(--line-height-heading-small);
}

h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
    margin-bottom: 0;
}

p {
    margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
    text-decoration: underline;
}

/* -------- other ---------- */
a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: var(--body-font-weight);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}
a b,
a strong {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a img {
    border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
    margin-bottom: 10px;
}

ol,
ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

b,
strong {
    color: #333;
    font-weight: var(--body-font-weight-bold);
}

iframe {
    border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
    width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

section > .container,
section > .container-fluid {
    padding-top: var(--container-pt);
    padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: var(--container-width);
    }
}
.gx-25 {
    --bs-gutter-x: 25px;
}

/*=== Default Form ===*/
.form-control,
.input-text {
    height: calc(2.25rem + 27px);
    padding: 14px 30px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    width: 100%;
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control::placeholder,
.input-text::placeholder {
    color: #686a6f;
    opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
    color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
    color: #686a6f;
}

textarea.form-control {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

/* -------- Dark Theme Styling ---------- */
.dark-layout {
    background-color: var(--theme-color-dark) !important;
    --sec-title-color: var(--theme-color-light);
}
.dark-layout .sticky-header .main-menu .navigation > li > a,
.dark-layout h1,
.dark-layout h2,
.dark-layout h3,
.dark-layout h4,
.dark-layout h5,
.dark-layout h6 {
    color: var(--theme-color-light);
}
.dark-layout .preloader {
    background-color: var(--theme-color-dark);
}
.dark-layout .preloader:after {
    background-image: url(../images/logo.png);
}
.dark-layout .sticky-header {
    background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/*** 

====================================================================
Reset
====================================================================

***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
    overflow: hidden;
    resize: none;
}

button {
    outline: none !important;
    cursor: pointer;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

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

figure.image {
    margin-bottom: 0;
}

.title a {
    color: inherit;
}

.color1 {
    color: var(--theme-color1);
}

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

.large-container {
    position: static;
    max-width: var(--large-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.small-container {
    position: static;
    max-width: var(--small-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern-1 {
    background-image: url(../images/icons/pattern-1.html);
}

.text-theme-color1 {
    color: var(--theme-color1);
}

.bg-theme-color1 {
    background-color: var(--theme-color1);
}

.text-theme-color2 {
    color: var(--theme-color2);
}

.bg-theme-color2 {
    background-color: var(--theme-color2);
}

/*=======================
    Preloader
    =======================*/
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
}
.preloader:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    margin-left: -75px;
    margin-top: -30px;
    height: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: pulse 1s infinite linear;
    animation: pulse 1s infinite linear;
    background-image: url(../images/favicon.png);
    content: "";
}
.preloader:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    color: var(--theme-color-dark);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--title-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    content: "Loading";
    -webkit-transition: none;
    transition: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: var();
    text-align: center;
    cursor: pointer;
    background-color: var(--theme-color-white);
    z-index: 100;
    display: none;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-wrapper-style {
    margin-top: 30px;
}
@media (max-width: 1799.98px) {
    .page-wrapper-style {
        margin-top: 15px;
    }
}

/*======================
    Tabs Box
    ======================*/
.tabs-box {
    position: relative;
}
.tabs-box .tab {
    display: none;
}
.tabs-box .tab.active-tab {
    display: block;
}

/*=======================
    List Styles
    =======================*/
.list-style-one {
    position: relative;
}
.list-style-one li {
    position: relative;
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-color);
    margin-right: 50px;
    margin-bottom: 7px;
    padding-left: 22px;
}
.list-style-one li .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-color1);
}

/*=======================
    List Styles
    =======================*/
.list-style-two {
    margin-top: 28px;
}
.list-style-two li {
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}
.list-style-two li .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-color1);
}

/*===========================
    Social Icons Styles
    ============================*/
.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.social-icon-one li {
    position: relative;
    margin-left: 20px;
}
.social-icon-one li:first-child {
    margin-left: 0;
}
.social-icon-one li a {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 30px;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-one li a:hover {
    color: var(--theme-color1);
}

/*======================
    Play Buttons
    ======================*/
.play-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.play-btn .icon {
    position: relative;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--theme-color1);
    background-color: var(--theme-color-light);
    border: 1px solid var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.play-btn .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 25px;
    text-transform: capitalize;
    padding-left: 30px;
    margin-left: -10px;
    color: var(--theme-color2);
    background: var(--theme-color-gray);
    border-radius: 0px 22px 22px 0px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.play-btn:hover .icon {
    background-color: var(--bg-theme-color1);
    color: var(--theme-color-light);
}
.play-btn:hover .title {
    background-color: var(--bg-theme-color2);
    color: var(--theme-color-light);
}

/*======================
    Media Play Button 
    ======================*/
.play-now {
    position: relative;
    display: block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.play-now .icon {
    position: relative;
    display: inline-block;
    height: 85px;
    width: 85px;
    text-align: center;
    line-height: 85px;
    background-color: #ffffff;
    color: var(--bg-theme-color2);
    z-index: 1;
    font-size: 18px;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    content: "";
}
.play-now .ripple.light {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
.play-now .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.play-now .ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
        box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
        box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
        box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
        box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    }
}
/*======================
    Carousel Navs
    ======================*/
.default-navs .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.default-navs .owl-next,
.default-navs .owl-prev {
    display: block;
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    line-height: 58px;
    color: var(--theme-color-dark);
    background: #fff;
    border: 1px solid #e3e3e3;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    margin-left: 20px;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
    border-color: var(--theme-color1);
}
.default-navs .owl-prev {
    margin-left: 0;
}

.disable-navs .owl-nav {
    display: none;
}

.disable-dots .owl-dots {
    display: none;
}

/*==========================
	Default Tabs
  ===========================*/
.default-tabs {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.default-tabs .tab-buttons {
    position: relative;
    margin-bottom: 30px;
}
.default-tabs .tab-btn {
    position: relative;
    float: left;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 35px;
    color: var(--theme-color1);
    line-height: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    margin-right: 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.default-tabs .tab-btn:last-child {
    margin-right: 0;
}
.default-tabs .tab-btn.active-btn {
    background: var(--gradient-1);
    color: #ffffff;
}
.default-tabs .tabs-content {
    position: relative;
    width: 100%;
}

.theme-btn-two {
    background-color: var(--theme-color1);
    border-radius: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1px;
    position: relative;
    padding: 5px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.theme-btn-two:hover .btn-arrow-left {
    scale: 0;
}

.theme-btn-two:hover .btn-arrow-right {
    scale: 1;
}

.theme-btn-two:hover .btn-text {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.theme-btn-two .btn-arrow-left {
    border-radius: 6px;
    width: 40px;
    height: 40px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--theme-color-white);
    left: 5px;
    right: auto;
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-two .btn-text {
    background: transparent;
    color: var(--theme-color-white);
    font-weight: 500;
    font-size: 18px;
    padding: 4px 25px 4px 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-two .btn-arrow-right {
    border-radius: 6px;
    width: 40px;
    height: 40px;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--theme-color-white);
    scale: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.order-confirmation {
    position: relative;
}
.order-confirmation .oc-top {
    position: relative;
}
.order-confirmation .oc-top .icon {
    border-radius: 50%;
    display: inline-block;
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}
.order-confirmation .oc-top .title {
    margin-bottom: 5px;
}
.order-confirmation .oc-top .subtitle {
    color: var(--theme-color-dark);
}
.order-confirmation .location-area {
    border-bottom: 1px solid var(--theme-color-gray);
}
.order-confirmation .location-area li {
    color: var(--theme-color-dark);
    display: inline-block;
    margin-right: 15px;
}
.order-confirmation .location-area li i {
    color: var(--theme-color1);
}
.order-confirmation .location-area li:last-child {
    margin-right: 0;
}

.note {
    bottom: 0;
    color: var(--theme-color-white);
    left: 0;
    padding: 10px;
    position: absolute;
    text-align: center;
    width: 100%;
}

.price-lists {
    border-bottom: 1px solid var(--theme-color2);
    padding-bottom: 10px;
}
.price-lists li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.price-lists li .text1 {
    color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.price-lists li .text {
    color: var(--text-color9);
    font-size: 14px;
}
.price-lists li .total-price {
    color: var(--theme-color-dark);
}

.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*Btn Style One*/
.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 15px 32px 18px;
    overflow: hidden;
    color: var(--theme-color1);
    border: 1px solid var(--theme-color1);
    background: #f8f5f0;
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-one i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-one:hover {
    color: #fff;
}

/*Btn Style Two*/
.btn-style-two {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color1);
    background-color: var(--theme-color1);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-two i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color-dark);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-two:hover {
    color: var(--theme-color-light);
}

/*Btn Style Three*/
.btn-style-three {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.1em;
    padding: 13px 39px 17px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color-light);
    background-color: transparent;
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-three i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-three:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-three:hover {
    border-color: var(--bg-theme-color1);
    color: var(--theme-color-light);
}

/*Btn Style Four*/
.btn-style-four {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1em;
    padding: 17px 40px;
    overflow: hidden;
    color: var(--theme-color1);
    border: 1px solid var(--theme-color1);
    background-color: transparent;
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-four i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-four:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-four:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-four:hover {
    border-color: var(--bg-theme-color1);
    color: var(--theme-color-light);
}

/*Btn Style Two*/
.btn-style-five {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color6);
    background-color: var(--theme-color6);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-five i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-five:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color-dark);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-five:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-five:hover {
    color: var(--theme-color-light);
}

/*Btn Style Two*/
.btn-style-six {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color7);
    background-color: var(--theme-color7);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-six i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-six:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color-dark);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-six:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-six:hover {
    color: var(--theme-color-light);
}

/*Btn Style Two*/
.btn-style-seven {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color8);
    background-color: var(--theme-color8);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-seven i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-seven:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-seven:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-seven:hover {
    color: var(--theme-color-light);
}

/*Btn Style Two*/
.btn-style-eight {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color1);
    background-color: var(--theme-color1);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-eight i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-eight:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color8);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-eight:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-eight:hover {
    color: var(--theme-color-light);
}

/*Btn Style Two*/
.btn-style-nine {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    padding: 16px 32px;
    overflow: hidden;
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color8);
    background-color: var(--theme-color8);
    text-transform: uppercase;
    z-index: 9;
}
.btn-style-nine i {
    position: relative;
    display: block;
    margin-left: 10px;
}
.btn-style-nine:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color9);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-nine:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.btn-style-nine:hover {
    color: var(--theme-color-light);
}

.theme-btn.small {
    padding: 10px 30px;
    line-height: 20px;
    font-size: 10px;
}

.theme-btn.large {
    padding: 20px 60px;
    line-height: 25px;
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.bounce-z {
    -webkit-animation: fa-spin 70s infinite;
    animation: fa-spin 70s infinite;
}

.reveal-left {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.reveal-left.animated {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-right {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.reveal-right.animated {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-top {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    height: 800px;
}
.reveal-top.animated {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-bottom {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.reveal-bottom.animated {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

.img-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.btn-anim {
    position: relative;
}
.btn-anim:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.btn-anim:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.anim-inactive-image {
    -webkit-animation: anim-inactive-image 10s infinite linear;
    animation: anim-inactive-image 10s infinite linear;
}

@-webkit-keyframes anim-inactive-image {
    0% {
        clip-path: inset(0 0 100% 0);
        -webkit-clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}
@keyframes anim-inactive-image {
    0% {
        clip-path: inset(0 0 100% 0);
        -webkit-clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}
.accordion-box {
    position: relative;
}
.accordion-box .block {
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}
.accordion-box .block .acc-btn {
    position: relative;
    color: var(--headings-color);
    font-family: var(--title-font);
    font-weight: var(--h4-font-weight);
    font-size: 20px;
    cursor: pointer;
    padding: 20px 30px;
    padding-right: 70px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-bottom: 1px solid #fff;
}
.accordion-box .block .acc-btn .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 30px;
    top: 50%;
    height: 35px;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 2;
    color: var(--theme-color1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
    background-color: var(--bg-theme-color1);
    color: #fff;
}
.accordion-box .block .acc-btn.active .icon {
    color: var(--text-color-bg-theme-color2);
}
.accordion-box .block .acc-btn.active .icon:before {
    content: "\f068";
}
.accordion-box .block .acc-content {
    position: relative;
    display: none;
}
.accordion-box .block .acc-content .content {
    position: relative;
    padding: 25px 30px;
}
.accordion-box .block .acc-content .content .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #808287;
    margin-bottom: 0;
}
.accordion-box .block .acc-content.current {
    display: block;
}

.room-booking-tab {
    position: relative;
}
.room-booking-tab .tab-lists {
    border: none;
    gap: 15px;
}
.room-booking-tab .tab-lists .tab-item {
    border: 1px solid rgba(var(--theme-color-black-rgb), 0.2);
    border-radius: 50px;
    color: var(--theme-color-dark);
    cursor: pointer;
    font-family: var(--text-font2);
    font-size: 24px;
    font-weight: normal;
    margin-right: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    padding: 7px 20px 7px 7px;
    position: relative;
    z-index: 9;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.room-booking-tab .tab-lists .tab-item:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.room-booking-tab .tab-lists .tab-item.active {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
@media (max-width: 575.98px) {
    .room-booking-tab .tab-lists .tab-item {
        padding-right: 30px;
    }
    .reveal-top {
        height: 300px;
    }
    .reveal-top img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
.room-booking-tab .tab-lists .tab-item:hover {
    color: var(--theme-color-white);
}
.room-booking-tab .tab-lists .tab-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.room-booking-content .tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    -webkit-transform: translateX(10px) scaleX(0);
    transform: translateX(10px) scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.room-booking-content .tab-content.active {
    opacity: 1;
    height: auto;
    visibility: visible;
    -webkit-transform: translate(0) scaleX(1);
    transform: translate(0) scaleX(1);
}

/*** 

====================================================================
  Search Popup
====================================================================

***/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.search-popup .search-back-drop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--theme-color-dark);
    opacity: 0.95;
}
.search-popup .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 26px;
    color: var(--theme-color-light);
    z-index: 3;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .search-inner {
    position: relative;
    display: block;
    top: 40%;
    height: auto;
    z-index: 1;
    width: calc(100% - 60px);
    max-width: 800px;
    margin: auto;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-popup .form-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.search-popup .form-group input[type="search"],
.search-popup .form-group input[type="text"] {
    position: relative;
    display: block;
    line-height: 20px;
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid #e1e6dc;
    padding: 15px 20px;
    color: #707070;
    background: #ffffff;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .form-group input[type="search"]:focus,
.search-popup .form-group input[type="text"]:focus {
    border-color: var(--border-theme-color2);
}
.search-popup .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    color: var(--theme-color-dark);
    line-height: 40px;
    border-radius: 5px;
    font-weight: normal;
    background: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.search-popup .form-group button:hover {
    color: var(--theme-color-dark);
}
.search-popup textarea::-webkit-input-placeholder,
.search-popup input::-webkit-input-placeholder {
    color: inherit;
}
.search-popup textarea::-moz-placeholder,
.search-popup input::-moz-placeholder {
    color: inherit;
}
.search-popup textarea:-ms-input-placeholder,
.search-popup input:-ms-input-placeholder {
    color: inherit;
}
.search-popup textarea::-ms-input-placeholder,
.search-popup input::-ms-input-placeholder {
    color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
    color: inherit;
}

.moblie-search-active .search-popup {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: 0%;
}
.moblie-search-active .search-popup .search-inner {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

/*** 

====================================================================
Main Header
====================================================================

***/
.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
}

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
}

.header-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-top .header-top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 0 10px;
}
.header-top .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-top .top-left .info-list {
    color: #ffffff;
    font-size: 14px;
}
.header-top .top-left .info-list span {
    color: #b5cf2b;
    font-size: 14px;
    font-weight: 600;
}
.header-top .top-center {
    margin-left: auto;
    margin-right: auto;
}
.header-top .top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-top .top-right button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    background: transparent;
}
.header-top .top-right button span,
.header-top .top-right button img {
    margin-right: 10px;
    display: inline-block;
}
.header-top .top-right button span {
    font-size: 20px;
}
.header-top .top-right button.login-btn {
    margin-left: 72px;
}
.header-top .top-right button.login-btn i {
    font-size: 18px;
    margin-right: 7px;
}

.main-header .header-lower {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-header .header-lower .logo-box {
    position: relative;
}

.main-header {
    width: 100%;
    z-index: 999;
}
.main-header .logo {
    position: relative;
    display: block;
}
.main-header .logo img {
    max-width: 100%;
    height: auto;
    width: 125px;
}
.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.main-menu {
    position: relative;
}
@media (max-width: 991.98px) {
    .main-menu {
        display: none;
    }
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 25px 0px;
    margin-right: 35px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
    margin-right: 0;
}
.main-menu .navigation > li > a {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--text-font);
    font-size: 14px;
    letter-spacing: 1.3px;
    line-height: 30px;
    opacity: 1;
    padding: 0;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
    opacity: 1;
    top: 100%;
    margin-top: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    visibility: visible;
}
.main-menu .navigation > li.dropdown .megamenu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    left: -300px;
    margin: 30px auto 0;
    opacity: 0;
    padding: 10px 0 0;
    position: absolute;
    right: 0;
    top: 100%;
    visibility: hidden;
    width: 1170px;
    z-index: 100;
}
@media (max-width: 1199.98px) {
    .main-menu .navigation > li.dropdown .megamenu {
        left: -220px;
        width: 1170px;
    }
}
.main-menu .navigation > li .megamenu .menu-title {
    color: var(--headings-color);
    font-family: var(--text-font);
    font-weight: 700;
}
.main-menu .navigation > li .megamenu .menu-title .badge {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
    font-size: 10px;
    font-weight: normal;
}
.main-menu .navigation > li .megamenu .menu-lists li {
    border-bottom: 1px solid #ebf1f5;
    padding: 5px 0px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.main-menu .navigation > li .megamenu .menu-lists li:hover {
    padding-left: 10px;
}
.main-menu .navigation > li .megamenu .menu-lists li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 220px;
    z-index: 100;
    padding: 10px 0 0;
    background-color: #ffffff;
    margin-top: 30px;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}
.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    line-height: 29px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
    color: var(--theme-color1);
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
    z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0px;
    margin-top: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 220px;
    z-index: 100;
    display: none;
    background-color: #ffffff;
    opacity: 0;
    padding: 10px 0 0;
    margin-top: 10px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    border-bottom: 1px solid #ebf1f5;
    width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color1);
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.main-header .outer-box .header-btn {
    display: inline-block;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
    padding: 0 5px 0 38px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #fff;
    border-radius: 50px;
    position: relative;
}
.main-header .outer-box .header-btn span {
    margin-left: 10px;
    position: relative;
    top: -2px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color1);
}
.main-header .outer-box .header-btn span i {
    color: #000;
    font-size: 22px;
    font-weight: 900;
    top: 4px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main-header .outer-box .header-btn:hover {
    background-color: var(--theme-color1);
    border-color: transparent;
}

.main-header .ui-btn-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 17px;
    position: relative;
    right: 117px;
}

.main-header .ui-btn {
    position: relative;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 26px;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-header .ui-btn:hover {
    color: var(--theme-color1);
}

.main-header .info-btn {
    position: relative;
    font-size: 16px;
    padding-left: 44px;
    color: #ffffff;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    line-height: 20px;
}
.main-header .info-btn small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--theme-color1);
}
.main-header .info-btn .icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    line-height: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 1em;
    margin-right: 20px;
    padding-right: 20px;
}
.main-header .info-btn:hover {
    color: var(--theme-color-light);
}

/*** 

====================================================================
    header-style-four
====================================================================

***/
.header-style-four {
    position: absolute;
}
.header-style-four.style-dark {
    background-color: var(--theme-color-black1);
    position: relative;
}
.header-style-four.style-dark.style-home5 .main-box {
    padding: 30px 40px;
}
@media (max-width: 991.98px) {
    .header-style-four.style-dark.style-home5 .main-box {
        padding: 30px 15px;
    }
}
.header-style-four.style-dark.style-home5 .main-box.style-two {
    border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    padding: 29px 40px 30px;
    margin-bottom: 94px;
}
@media (max-width: 1399.98px) {
    .header-style-four.style-dark.style-home5 .main-box.style-two {
        padding: 29px 15px 30px;
    }
}
@media (max-width: 1199.98px) {
    .header-style-four.style-dark.style-home5 .main-box.style-two {
        margin-bottom: 15px;
    }
}
.header-style-four.style-dark .header-top {
    background-color: #1c1c1c;
    display: block;
    padding: 0;
}
@media (max-width: 767.98px) {
    .header-style-four.style-dark .header-top {
        display: none;
    }
}
.header-style-four.style-dark .header-top .info-user {
    background-color: var(--theme-color-white);
}
.header-style-four.style-dark .header-top .inner-box {
    padding: 0;
}
.header-style-four.style-dark .header-top .inner-box .top-right .social-icon-one li a {
    color: var(--theme-color-white);
}
.header-style-four.style-dark .header-top .inner-box .top-left {
    color: var(--theme-color-white);
}
.header-style-four.style-dark .header-top .inner-box .top-left span {
    color: var(--theme-color-white);
    font-size: 16px;
    margin-right: 20px;
}
.header-style-four.style-dark .header-top .inner-box .top-left span .icon {
    background-color: rgba(var(--theme-color-white-rgb), 1);
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    color: var(--theme-color1);
    margin-right: 7px;
}
.header-style-four.style-dark .main-box {
    background-color: transparent;
    padding: 30px 36px 30px 40px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-dark .main-box {
        padding: 24px 15px;
    }
}
.header-style-four.style-dark .main-box .outer-box .ui-btn-outer {
    border-left: transparent;
}
.header-style-four.style-dark .main-box .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-left: 0;
}
.header-style-four.style-dark .mobile-nav-toggler {
    color: var(--theme-color1);
    margin-left: 35px;
}
.header-style-four.style-home13 .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-four.style-home13 .mobile-nav-toggler {
        display: block;
    }
}
.header-style-four.style-home13 .btn-style-two {
    margin-left: 15px;
    font-size: 14px;
    padding: 16px 47px;
    background-color: var(--bg-theme-color1);
}
@media (max-width: 1199.98px) {
    .header-style-four.style-home13 .btn-style-two {
        display: none;
    }
}
.header-style-four.style-home13 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-home13 .main-box .nav-outer .nav .navigation li {
    margin-right: 35px;
}
.header-style-four.style-home13 .outer-box .ui-btn-outer .ui-btn {
    font-size: 28px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-home13 .outer-box .ui-btn-outer .ui-btn {
        display: none;
    }
}
.header-style-four.style-home13 .main-box {
    padding: 15px 36px 15px 40px;
}
.header-style-four.style-home14 {
    background-color: #faf5f0;
}
.header-style-four.style-home14 .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-four.style-home14 .mobile-nav-toggler {
        display: block;
    }
}
.header-style-four.style-home14 .btn-style-two {
    margin-left: 15px;
    font-size: 14px;
    padding: 16px 47px;
    background-color: var(--bg-theme-color1);
}
@media (max-width: 1199.98px) {
    .header-style-four.style-home14 .btn-style-two {
        display: none;
    }
}
.header-style-four.style-home14 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-home14 .main-box .nav-outer .nav .navigation li {
    margin-right: 35px;
}
.header-style-four.style-home14 .outer-box .ui-btn-outer .ui-btn {
    font-size: 28px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-home14 .outer-box .ui-btn-outer .ui-btn {
        display: none;
    }
}
.header-style-four.style-home14 .main-box {
    padding: 15px 36px 15px 40px;
}
.header-style-four.style-beach {
    position: absolute;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.header-style-four.style-beach .main-box {
    background-color: transparent;
}
.header-style-four.style-beach .ui-btn-outer {
    border: none;
}
.header-style-four.style-beach .main-menu .navigation > li > a {
    color: var(--theme-color-light);
}
.header-style-four.style-beach2 .main-box {
    max-width: 1580px;
    margin: 0 auto;
    padding: 14px 0 15px;
}
.header-style-four.style-beach2 .logo img {
    max-width: 200px;
}
.header-style-four.style-beach2 .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-four.style-beach2 .mobile-nav-toggler {
        display: block;
    }
}
.header-style-four.style-beach2 .btn-style-two {
    margin-left: 15px;
    font-size: 14px;
    padding: 16px 47px;
    background-color: var(--bg-theme-color1);
}
@media (max-width: 1199.98px) {
    .header-style-four.style-beach2 .btn-style-two {
        display: none;
    }
}
.header-style-four.style-beach2 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-beach2 .main-box .nav-outer .nav .navigation li {
    margin-right: 35px;
}
.header-style-four.style-beach2 .outer-box .ui-btn-outer .ui-btn {
    font-size: 28px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-beach2 .outer-box .ui-btn-outer .ui-btn {
        display: none;
    }
}
.header-style-four.style-luxury2 .main-box {
    background-color: transparent;
    max-width: 1720px;
    margin: 0 auto;
    padding: 14px 15px 15px;
}
.header-style-four.style-luxury2 .logo img {
    max-width: 200px;
}
.header-style-four.style-luxury2 .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-four.style-luxury2 .mobile-nav-toggler {
        display: block;
    }
}
.header-style-four.style-luxury2 .btn-style-two {
    margin-left: 15px;
    font-size: 14px;
    padding: 16px 47px;
    background-color: var(--bg-theme-color1);
}
@media (max-width: 1199.98px) {
    .header-style-four.style-luxury2 .btn-style-two {
        display: none;
    }
}
.header-style-four.style-luxury2 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-luxury2 .main-box .nav-outer .nav .navigation li {
    margin-right: 35px;
}
.header-style-four.style-luxury2 .outer-box .ui-btn-outer .ui-btn {
    font-size: 28px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-luxury2 .outer-box .ui-btn-outer .ui-btn {
        display: none;
    }
}
.header-style-four.style-luxury3 {
    position: relative;
}
.header-style-four.style-luxury3 .main-box {
    padding: 14.5px 15px;
    max-width: 1720px;
    margin: 0 auto;
}
.header-style-four.style-luxury3 .outer-box .ui-btn-outer .ui-btn.search-btn {
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-luxury3 .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-luxury3 .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-nature {
    position: relative;
}
.header-style-four.style-nature .main-box {
    padding: 14.5px 15px;
    max-width: 1900px;
    margin: 0 auto;
}
.header-style-four.style-nature .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color6);
}
.header-style-four.style-nature .outer-box .ui-btn-outer .ui-btn.search-btn {
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-nature .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-nature .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-luxury4 {
    position: relative;
}
.header-style-four.style-luxury4 .main-box {
    padding: 14.5px 25px;
    margin: 0 auto;
}
.header-style-four.style-luxury4 .outer-box .ui-btn-outer .ui-btn.search-btn {
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-luxury4 .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-luxury4 .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-island {
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
}
.header-style-four.style-island .main-box .nav-outer {
    margin-left: 0;
    margin-right: 0;
}
.header-style-four.style-island .main-box .nav-outer .nav .navigation li {
    margin-right: 25px;
}
.header-style-four.style-island .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-island .logo-box {
    margin-left: -203px;
}
.header-style-four.style-island .ui-btn-outer {
    border-left: none;
}
.header-style-four.style-island .main-box {
    background-color: transparent;
    padding: 14.5px 15px;
    max-width: 1720px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-style-four.style-island .main-menu .navigation > li > a {
    color: var(--theme-color-white);
}
.header-style-four.style-island .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color9);
}
.header-style-four.style-island .main-menu .navigation > li > a::before {
    background-color: var(--theme-color9);
}
.header-style-four.style-island .outer-box .ui-btn-outer .ui-btn.search-btn {
    color: var(--theme-color-white);
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-island .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-island .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-city4 {
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
}
.header-style-four.style-city4 .main-box .nav-outer {
    margin-left: 0;
    margin-right: 0;
}
.header-style-four.style-city4 .main-box .nav-outer .nav .navigation li {
    margin-right: 25px;
}
.header-style-four.style-city4 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-city4 .logo-box {
    margin-left: -203px;
}
.header-style-four.style-city4 .ui-btn-outer {
    border-left: none;
}
.header-style-four.style-city4 .main-box {
    background-color: transparent;
    padding: 14.5px 15px;
    max-width: 1720px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-style-four.style-city4 .main-menu .navigation > li > a {
    color: var(--theme-color-white);
}
.header-style-four.style-city4 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-four.style-city4 .main-menu .navigation > li > a::before {
    background-color: var(--theme-color1);
}
.header-style-four.style-city4 .outer-box .ui-btn-outer .ui-btn.search-btn {
    color: var(--theme-color-white);
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-city4 .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-city4 .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-island2 {
    position: absolute;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0784313725);
}
.header-style-four.style-island2 .main-box .nav-outer {
    margin-left: 0;
    margin-right: 0;
}
.header-style-four.style-island2 .main-box .nav-outer .nav .navigation li {
    margin-right: 25px;
}
.header-style-four.style-island2 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-island2 .logo-box {
    margin-left: -203px;
}
.header-style-four.style-island2 .ui-btn-outer {
    border-left: none;
}
.header-style-four.style-island2 .main-box {
    background-color: transparent;
    padding: 14.5px 15px;
    max-width: 1720px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-style-four.style-island2 .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-four.style-island2 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color9);
}
.header-style-four.style-island2 .main-menu .navigation > li > a::before {
    background-color: var(--theme-color9);
}
.header-style-four.style-island2 .outer-box .ui-btn-outer .ui-btn.search-btn {
    color: var(--theme-color-black);
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-island2 .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-island2 .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-city3 {
    position: absolute;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0784313725);
}
.header-style-four.style-city3 .main-box .nav-outer {
    margin-left: 0;
    margin-right: 0;
}
.header-style-four.style-city3 .main-box .nav-outer .nav .navigation li {
    margin-right: 25px;
}
.header-style-four.style-city3 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-four.style-city3 .logo-box {
    margin-left: -203px;
}
.header-style-four.style-city3 .ui-btn-outer {
    border-left: none;
}
.header-style-four.style-city3 .main-box {
    background-color: transparent;
    padding: 14.5px 15px;
    max-width: 1720px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-style-four.style-city3 .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-four.style-city3 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-four.style-city3 .main-menu .navigation > li > a::before {
    background-color: var(--theme-color1);
}
.header-style-four.style-city3 .outer-box .ui-btn-outer .ui-btn.search-btn {
    color: var(--theme-color-black);
    font-size: 28px;
    margin-right: 15px;
}
@media (max-width: 575.98px) {
    .header-style-four.style-city3 .outer-box .ui-btn-outer .ui-btn.search-btn {
        font-size: 18px;
        margin-right: 9px;
    }
}
@media (min-width: 992px) {
    .header-style-four.style-city3 .outer-box .mobile-nav-toggler {
        display: none;
    }
}
.header-style-four.style-ocean-two {
    background-color: #eee6dd;
}
.header-style-four.style-ocean-two .main-box {
    background-color: #eee6dd;
}
@media (max-width: 575.98px) {
    .header-style-four .auto-container {
        padding: 0;
    }
}
.header-style-four .header-top {
    display: unset;
}
@media (max-width: 575.98px) {
    .header-style-four .header-top {
        display: none;
    }
}
.header-style-four .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0 11px;
}
.header-style-four .header-top .inner-box .top-left span {
    color: #adadad;
}
.header-style-four .header-top .inner-box .top-left span .icon {
    color: var(--theme-color1);
    margin-right: 18px;
}
.header-style-four .header-top .inner-box .top-right .social-icon-one li a {
    font-size: 16px;
    color: #adadad;
}
.header-style-four .header-top .social-icon-one li {
    color: #adadad;
    margin-left: 0;
    margin-right: 18px;
}
.header-style-four .header-top .social-icon-one li:last-child {
    margin-right: 0;
}
.header-style-four .header-top .info-language {
    margin-left: 30px;
}
.header-style-four .header-top .info-language .select-language {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
    padding: 15.75px 20px;
    cursor: pointer;
}
.header-style-four .header-top .info-language .select-language .icon {
    margin-left: 6px;
}
.header-style-four .header-top .info-user {
    background-color: rgba(var(--theme-color-white-rgb), 0.1);
    color: var(--theme-color1);
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}
@media (max-width: 1199.98px) {
    .header-style-four .logo img {
        max-width: 150px;
    }
}
@media (max-width: 359.98px) {
    .header-style-four .logo img {
        max-width: 120px;
    }
}
.header-style-four .main-box {
    background-color: var(--theme-color-light);
    padding: 24px 36px 24px 40px;
}
@media (max-width: 991.98px) {
    .header-style-four .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575.98px) {
    .header-style-four .main-box {
        padding: 24px 15px;
    }
}
.header-style-four .main-box .nav-outer .nav .navigation li {
    margin-right: 49px;
}
@media (max-width: 1199.98px) {
    .header-style-four .main-box .nav-outer .nav .navigation li {
        margin-right: 29px;
    }
}
.header-style-four .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-four .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-four .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-four .outer-box .ui-btn-outer {
    padding-left: 0;
    right: 0;
}
.header-style-four .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color1);
    font-size: 20px;
    margin-left: 30px;
}
@media (max-width: 1199.98px) {
    .header-style-four .outer-box .ui-btn-outer .ui-btn {
        margin-left: 15px;
    }
}
.header-style-four .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
@media (max-width: 575.98px) {
    .header-style-four .outer-box .ui-btn-outer .ui-btn.search-btn {
        margin-right: 0;
    }
}
.header-style-four .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-four .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    position: absolute;
    bottom: 0;
    right: 18px;
    height: 18px;
    width: 18px;
    line-height: 19px;
    font-size: 11px;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    text-align: center;
}
.header-style-four .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 75px;
}
@media (max-width: 575.98px) {
    .header-style-four .outer-box .search-btn {
        margin-right: 20px;
    }
}
.header-style-four .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
@media (max-width: 575.98px) {
    .header-style-four .outer-box .search-btn::before {
        right: -20px;
    }
}
.header-style-four .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-four .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-four .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-four .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
@media (max-width: 1199.98px) {
    .header-style-four .outer-box .theme-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}
@media (max-width: 991.98px) {
    .header-style-four .outer-box .theme-btn {
        font-size: 13px;
        padding: 5px 14px;
    }
}
@media (max-width: 575.98px) {
    .header-style-four .outer-box .theme-btn {
        font-size: 12px;
        padding: 3px 8px;
    }
}
.header-style-four .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-four .outer-box .header-btn:before {
    display: none;
}
.header-style-four .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-four .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-four .main-menu .navigation > li > a {
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.header-style-four .main-menu .navigation > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color1);
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-style-four .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-four .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-four .main-menu .navigation li.dropdown .dropdown-btn {
    display: inline-block;
    border: 2px;
    top: auto;
    bottom: 1px;
    right: -14px;
    width: auto;
    height: unset;
    font-size: 10px;
    color: #8f8f8f;
}
.header-style-four .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-four .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-four .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    font-size: 24px;
    color: #000;
}
.header-style-four .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
@media (max-width: 575.98px) {
    .header-style-four .sticky-header .auto-container {
        padding: 0 15px;
    }
}
.header-style-four .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-four .sticky-header .mobile-nav-toggler {
        color: var(--theme-color1);
        display: block;
    }
}
.header-style-four .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-four .sticky-header .main-menu .navigation > li.current > a,
.header-style-four .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color1);
}
.header-style-four .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-four .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-four .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-four .sticky-header .main-menu {
        display: none;
    }
}
.header-style-four .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-four .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*** 

====================================================================
    header-style-five
====================================================================

***/
.header-style-five {
    position: absolute;
}
.header-style-five.style-home3 .header-lower {
    border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    padding: 0;
}
.header-style-five.style-home3 .header-lower .main-box {
    padding: 26px 15px;
    max-width: 1750px;
}
.header-style-five.style-home3 .header-lower .main-menu .navigation > li > a {
    font-size: 16px;
    text-transform: capitalize;
}
.header-style-five.style-home6 .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color1);
}
.header-style-five.style-home6 .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color1);
}
.header-style-five.style-home6 .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-five .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .header-style-five .header-top {
        display: none;
    }
}
.header-style-five .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20.75px 15px;
    max-width: 1549px;
}
.header-style-five .header-top .inner-box .social-icon-one li {
    margin-left: 27px;
}
.header-style-five .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style-five .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style-five .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-five .header-top .inner-box .top-right span {
    color: var(--theme-color-white);
    font-size: 12px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-five .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-five .header-top .inner-box .top-right span:hover {
    color: var(--theme-color1);
}
.header-style-five .header-top .inner-box .top-right span:hover .icon {
    color: var(--theme-color1);
}
.header-style-five .header-top .inner-box .top-right span .icon {
    color: var(--theme-color1);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-five .header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-style-five .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-five .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-five .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color-white);
    font-size: 20px;
    margin-left: 30px;
}
@media (max-width: 1199.98px) {
    .header-style-five .outer-box .ui-btn-outer .ui-btn {
        margin-left: 12px;
    }
}
.header-style-five .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-five .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-five .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-five .main-box {
    background-color: transparent;
    padding: 24px 15px;
    max-width: 1549px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .header-style-five .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-five .main-box .nav-outer .nav .navigation li {
    margin-right: 49px;
}
@media (max-width: 1199.98px) {
    .header-style-five .main-box .nav-outer .nav .navigation li {
        margin-right: 35px;
    }
}
.header-style-five .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-five .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-five .main-menu .navigation > li > a {
    color: var(--theme-color-white);
    position: relative;
    text-transform: uppercase;
}
.header-style-five .main-menu .navigation > li > a:before {
    background-color: var(--theme-color1);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-five .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-five .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-five .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-five .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-five .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-five .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-five .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-five .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-five .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-five .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-five .outer-box .header-btn:before {
    display: none;
}
.header-style-five .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-five .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-five .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
}
.header-style-five .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-five .mobile-nav-toggler {
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 24px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-five .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-five .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-five .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-five .sticky-header .mobile-nav-toggler {
        color: var(--theme-color1);
        display: block;
    }
}
.header-style-five .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-five .sticky-header .main-menu .navigation > li.current > a,
.header-style-five .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style-five .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-five .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-five .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-five .sticky-header .main-menu {
        display: none;
    }
}
.header-style-five .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-five .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*** 

====================================================================
    header-style 
====================================================================

***/
.header-style14 {
    position: absolute;
}
.header-style14.style-home3 .header-lower {
    border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    padding: 0;
}
.header-style14.style-home3 .header-lower .main-box {
    padding: 26px 15px;
    max-width: 1750px;
}
.header-style14.style-home3 .header-lower .main-menu .navigation > li > a {
    font-size: 16px;
    text-transform: capitalize;
}
.header-style14.style-home6 .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color1);
}
.header-style14.style-home6 .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color1);
}
.header-style14.style-home6 .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style14 .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .header-style14 .header-top {
        display: none;
    }
}
.header-style14 .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20.75px 15px;
    max-width: 1549px;
}
.header-style14 .header-top .inner-box .social-icon-one li {
    margin-left: 27px;
}
.header-style14 .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style14 .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style14 .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style14 .header-top .inner-box .top-right span {
    color: var(--theme-color-white);
    font-size: 12px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style14 .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style14 .header-top .inner-box .top-right span:hover {
    color: var(--theme-color1);
}
.header-style14 .header-top .inner-box .top-right span:hover .icon {
    color: var(--theme-color1);
}
.header-style14 .header-top .inner-box .top-right span .icon {
    color: var(--theme-color1);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style14 .header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 1799.98px) {
    .header-style14 .header-lower {
        margin: 0 20px;
    }
}
.header-style14 .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style14 .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style14 .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color-white);
    font-size: 20px;
    margin-left: 30px;
}
.header-style14 .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style14 .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style14 .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style14 .main-box .nav-outer {
    margin-right: 0;
}
.header-style14 .main-box {
    background-color: transparent;
    padding: 24px 15px;
    max-width: 1667px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .header-style14 .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style14 .main-box .nav-outer .nav .navigation li {
    margin-right: 35px;
}
.header-style14 .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style14 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style14 .main-menu .navigation > li > a {
    color: var(--theme-color-white);
    position: relative;
    text-transform: uppercase;
}
.header-style14 .main-menu .navigation > li > a:before {
    background-color: var(--theme-color1);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style14 .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style14 .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style14 .main-menu .navigation > li.dropdown .megamenu {
    left: -570px;
}
.header-style14 .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style14 .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style14 .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style14 .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style14 .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style14 .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style14 .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style14 .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style14 .outer-box .header-btn:before {
    display: none;
}
.header-style14 .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style14 .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style14 .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style14 .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style14 .mobile-nav-toggler {
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 24px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style14 .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style14 .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style14 .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style14 .sticky-header .mobile-nav-toggler {
        color: var(--theme-color1);
        display: block;
    }
}
.header-style14 .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style14 .sticky-header .main-menu .navigation > li.current > a,
.header-style14 .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style14 .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style14 .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style14 .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style14 .sticky-header .main-menu {
        display: none;
    }
}
.header-style14 .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style14 .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*** 

====================================================================
    header-style-mountain
====================================================================

***/
.header-style-mountain {
    position: relative;
}
.header-style-mountain .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--theme-color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .header-style-mountain .header-top {
        display: none;
    }
}
.header-style-mountain .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
}
.header-style-mountain .header-top .inner-box .social-icon-one li {
    margin-left: 27px;
}
.header-style-mountain .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style-mountain .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style-mountain .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color6);
}
.header-style-mountain .header-top .inner-box .top-right span {
    color: var(--theme-color-white);
    font-size: 12px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-mountain .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-mountain .header-top .inner-box .top-right span:hover {
    color: var(--theme-color-white);
}
.header-style-mountain .header-top .inner-box .top-right span:hover .icon {
    color: var(--theme-color6);
}
.header-style-mountain .header-top .inner-box .top-right span .icon {
    color: var(--theme-color-white);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-mountain .header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-style-mountain .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-mountain .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-mountain .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color6);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-mountain .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-mountain .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-mountain .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-mountain .main-box {
    background-color: transparent;
    padding: 24px 0;
}
@media (max-width: 991.98px) {
    .header-style-mountain .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-mountain .main-box .nav-outer {
    margin-right: 0;
}
.header-style-mountain .main-box .nav-outer .nav .navigation li {
    margin-right: 36px;
}
.header-style-mountain .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-mountain .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color6);
}
.header-style-mountain .main-menu .navigation > li.dropdown .megamenu {
    width: 270px;
    left: 0;
}
.header-style-mountain .main-menu .navigation > li > a {
    color: var(--theme-color-dark);
    position: relative;
    text-transform: uppercase;
}
.header-style-mountain .main-menu .navigation > li > a:before {
    background-color: var(--theme-color-dark);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-mountain .main-menu .navigation > li > a:hover {
    color: var(--theme-color6) !important;
}
.header-style-mountain .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-mountain .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-mountain .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-mountain .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-mountain .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-mountain .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-mountain .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-mountain .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-mountain .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-mountain .outer-box .header-btn:before {
    display: none;
}
.header-style-mountain .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-mountain .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-mountain .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
    display: none;
}
.header-style-mountain .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-mountain .mobile-nav-toggler {
    color: var(--theme-color6);
    display: inline-block;
    font-size: 24px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-mountain .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-mountain .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-mountain .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-mountain .sticky-header .mobile-nav-toggler {
        color: var(--theme-color6);
        display: block;
    }
}
.header-style-mountain .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-mountain .sticky-header .main-menu .navigation > li.current > a,
.header-style-mountain .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style-mountain .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-mountain .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-mountain .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-mountain .sticky-header .main-menu {
        display: none;
    }
}
.header-style-mountain .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-mountain .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-style-mountain .contact-list-one li .title {
    color: var(--theme-color6);
}

/*** 

====================================================================
    header-style-mountain
====================================================================

***/
.header-style-mountain2 {
    position: absolute;
}
.header-style-mountain2 .main-box {
    padding: 15px 123px !important;
}
.header-style-mountain2 .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--theme-color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .header-style-mountain2 .header-top {
        display: none;
    }
}
.header-style-mountain2 .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
}
.header-style-mountain2 .header-top .inner-box .social-icon-one li {
    margin-left: 27px;
}
.header-style-mountain2 .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style-mountain2 .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style-mountain2 .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color6);
}
.header-style-mountain2 .header-top .inner-box .top-right span {
    color: var(--theme-color-white);
    font-size: 12px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-mountain2 .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-mountain2 .header-top .inner-box .top-right span:hover {
    color: var(--theme-color-white);
}
.header-style-mountain2 .header-top .inner-box .top-right span:hover .icon {
    color: var(--theme-color6);
}
.header-style-mountain2 .header-top .inner-box .top-right span .icon {
    color: var(--theme-color-white);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-mountain2 .header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-style-mountain2 .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-mountain2 .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-mountain2 .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color6);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-mountain2 .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-mountain2 .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-mountain2 .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-mountain2 .main-box {
    background-color: transparent;
    padding: 24px 0;
}
@media (max-width: 991.98px) {
    .header-style-mountain2 .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-mountain2 .main-box .nav-outer {
    margin-right: 0;
}
.header-style-mountain2 .main-box .nav-outer .nav .navigation li {
    margin-right: 36px;
}
.header-style-mountain2 .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-mountain2 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color6);
}
.header-style-mountain2 .main-menu .navigation > li.dropdown .megamenu {
    width: 270px;
    left: 0;
}
.header-style-mountain2 .main-menu .navigation > li > a {
    color: var(--theme-color-dark);
    position: relative;
    text-transform: uppercase;
}
.header-style-mountain2 .main-menu .navigation > li > a:before {
    background-color: var(--theme-color-dark);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-mountain2 .main-menu .navigation > li > a:hover {
    color: var(--theme-color6) !important;
}
.header-style-mountain2 .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-mountain2 .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-mountain2 .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-mountain2 .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-mountain2 .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-mountain2 .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-mountain2 .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-mountain2 .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-mountain2 .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-mountain2 .outer-box .header-btn:before {
    display: none;
}
.header-style-mountain2 .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-mountain2 .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-mountain2 .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
    display: none;
}
.header-style-mountain2 .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-mountain2 .mobile-nav-toggler {
    color: var(--theme-color6);
    display: inline-block;
    font-size: 24px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-mountain2 .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-mountain2 .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-mountain2 .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-mountain2 .sticky-header .mobile-nav-toggler {
        color: var(--theme-color6);
        display: block;
    }
}
.header-style-mountain2 .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-mountain2 .sticky-header .main-menu .navigation > li.current > a,
.header-style-mountain2 .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style-mountain2 .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-mountain2 .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-mountain2 .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-mountain2 .sticky-header .main-menu {
        display: none;
    }
}
.header-style-mountain2 .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-mountain2 .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-style-mountain2 .contact-list-one li .title {
    color: var(--theme-color6);
}

/*** 

====================================================================
    header-style-winter
====================================================================

***/
.header-style-winter {
    position: absolute;
}
.header-style-winter.style-light {
    position: relative;
}
.header-style-winter.style-light .header-top {
    border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .header-style-winter.style-light .header-top {
        display: none;
    }
}
.header-style-winter.style-light .header-top .inner-box {
    padding: 9.5px 0;
}
.header-style-winter.style-light .header-top .inner-box .top-left .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-dark);
}
.header-style-winter.style-light .header-top .inner-box .top-left .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-winter.style-light .header-top .inner-box .top-right span {
    color: var(--theme-color-dark);
    font-size: 14px;
    margin-left: 30px;
}
.header-style-winter.style-light .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-winter.style-light .header-top .inner-box .top-right span .icon {
    color: var(--theme-color1);
    margin-right: 12px;
}
.header-style-winter.style-light .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
@media (max-width: 575.98px) {
    .header-style-winter.style-light .main-box .nav-outer {
        margin-left: 30px;
    }
}
.header-style-winter.style-light .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter.style-light-theme {
    background-color: #f8f5f0;
    position: relative;
}
.header-style-winter.style-light-theme .main-box {
    background-color: #f8f5f0;
}
.header-style-winter.style-light-theme .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
.header-style-winter.style-light-theme .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-winter .outer-box .ui-btn-outer {
    padding-left: 0;
    right: 0;
}
.header-style-winter .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color1);
    font-size: 20px;
    margin-left: 30px;
}
@media (max-width: 767.98px) {
    .header-style-winter .outer-box .ui-btn-outer .ui-btn {
        margin-left: 20px;
    }
}
.header-style-winter .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
@media (max-width: 575.98px) {
    .header-style-winter .outer-box .ui-btn-outer .ui-btn.search-btn {
        margin-right: 0;
    }
}
.header-style-winter .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-winter .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    position: absolute;
    bottom: 0;
    right: 18px;
    height: 18px;
    width: 18px;
    line-height: 19px;
    font-size: 11px;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    text-align: center;
}
.header-style-winter .main-box {
    background-color: var(--theme-color-light);
    padding: 24px 36px 24px 40px;
    margin-top: 30px;
    border-radius: 8px;
}
@media (max-width: 991.98px) {
    .header-style-winter .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter .main-box {
        padding: 24px 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter .main-box .logo {
        margin-right: 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter .main-box .logo img {
        min-width: 100px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter .main-box .nav-outer {
        display: none;
    }
}
.header-style-winter .main-box .nav-outer .nav .navigation li {
    margin-right: 30px;
}
.header-style-winter .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-winter .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color7);
}
.header-style-winter .main-menu .navigation > li > a {
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.header-style-winter .main-menu .navigation > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color7);
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-style-winter .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-winter .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-winter .outer-box .search-btn {
    position: relative;
    background-color: unset;
    font-size: 26px;
    line-height: 1;
    margin-bottom: -3px;
    color: var(--theme-color7);
}
@media (max-width: 575.98px) {
    .header-style-winter .outer-box .search-btn {
        margin-right: 20px;
    }
}
.header-style-winter .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-winter .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: var(--theme-color7);
}
.header-style-winter .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-winter .outer-box .header-btn:before {
    display: none;
}
.header-style-winter .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-winter .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-winter .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-winter .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-winter .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    font-size: 24px;
    color: var(--theme-color7);
}
.header-style-winter .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-winter .main-box .nav-outer {
    margin-right: 30px;
}
.header-style-winter .contact-list-one li .title {
    color: var(--theme-color7);
}
.header-style-winter .sticky-header {
    background-color: var(--theme-color2);
}
.header-style-winter .sticky-header .mobile-nav-toggler {
    display: none !important;
}
.header-style-winter .sticky-header .main-menu .navigation > li.current > a,
.header-style-winter .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style-winter .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-winter .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-winter .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-style-winter .sticky-header.style-light {
    position: relative;
}
.header-style-winter .sticky-header.style-light .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
.header-style-winter .sticky-header.style-light .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter .sticky-header .header-top {
    display: unset;
}
.header-style-winter .sticky-header .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0 11px;
}
.header-style-winter .sticky-header .header-top .inner-box .top-left span {
    color: #adadad;
}
.header-style-winter .sticky-header .header-top .inner-box .top-left span .icon {
    color: var(--theme-color1);
    margin-right: 18px;
}
.header-style-winter .sticky-header .header-top .inner-box .top-right .social-icon-one li a {
    font-size: 16px;
    color: #adadad;
}
.header-style-winter .sticky-header .header-top .social-icon-one li {
    color: #adadad;
    margin-left: 0;
    margin-right: 18px;
}
.header-style-winter .sticky-header .header-top .social-icon-one li:last-child {
    margin-right: 0;
}
.header-style-winter .sticky-header .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-winter .sticky-header .outer-box .ui-btn-outer {
    padding-left: 0;
    right: 0;
}
.header-style-winter .sticky-header .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color1);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-winter .sticky-header .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-winter .sticky-header .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-winter .sticky-header .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    position: absolute;
    bottom: 0;
    right: 18px;
    height: 18px;
    width: 18px;
    line-height: 19px;
    font-size: 11px;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    text-align: center;
}
.header-style-winter .sticky-header .main-box {
    background-color: var(--theme-color-light);
    padding: 24px 36px 24px 40px;
}
@media (max-width: 991.98px) {
    .header-style-winter .sticky-header .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-winter .sticky-header .main-box .nav-outer .nav .navigation li {
    margin-right: 49px;
}
.header-style-winter .sticky-header .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-winter .sticky-header .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-winter .sticky-header .main-menu .navigation > li > a {
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.header-style-winter .sticky-header .main-menu .navigation > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-style-winter .sticky-header .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-winter .sticky-header .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-winter .sticky-header .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-winter .sticky-header .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-winter .sticky-header .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-winter .sticky-header .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-winter .sticky-header .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-winter .sticky-header .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-winter .sticky-header .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-winter .sticky-header .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-winter .sticky-header .outer-box .header-btn:before {
    display: none;
}
.header-style-winter .sticky-header .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-winter .sticky-header .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-winter .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    display: inline-block;
    border: 2px;
    top: auto;
    bottom: 1px;
    right: -14px;
    width: auto;
    height: unset;
    font-size: 10px;
    color: #8f8f8f;
}
.header-style-winter .sticky-header .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-winter .sticky-header .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    font-size: 24px;
    color: #000;
    margin-top: 3px;
}
.header-style-winter .sticky-header .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}

/*** 

====================================================================
    header-style-winter
====================================================================

***/
.header-style-winter-two {
    position: relative;
    background-color: #eef9fd;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.header-style-winter-two .btn-style-six {
    margin-left: 20px;
}
.header-style-winter-two.style-light {
    position: relative;
}
.header-style-winter-two.style-light .header-top {
    border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .header-style-winter-two.style-light .header-top {
        display: none;
    }
}
.header-style-winter-two.style-light .header-top .inner-box {
    padding: 9.5px 0;
}
.header-style-winter-two.style-light .header-top .inner-box .top-left .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-dark);
}
.header-style-winter-two.style-light .header-top .inner-box .top-left .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-winter-two.style-light .header-top .inner-box .top-right span {
    color: var(--theme-color-dark);
    font-size: 14px;
    margin-left: 30px;
}
.header-style-winter-two.style-light .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-winter-two.style-light .header-top .inner-box .top-right span .icon {
    color: var(--theme-color1);
    margin-right: 12px;
}
.header-style-winter-two.style-light .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
@media (max-width: 575.98px) {
    .header-style-winter-two.style-light .main-box .nav-outer {
        margin-left: 30px;
    }
}
.header-style-winter-two.style-light .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter-two.style-light-theme {
    background-color: #f8f5f0;
    position: relative;
}
.header-style-winter-two.style-light-theme .main-box {
    background-color: #f8f5f0;
}
.header-style-winter-two.style-light-theme .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
.header-style-winter-two.style-light-theme .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter-two .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-winter-two .outer-box .ui-btn-outer {
    padding-left: 0;
    right: 0;
}
.header-style-winter-two .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color7);
    font-size: 20px;
    margin-left: 30px;
}
@media (max-width: 767.98px) {
    .header-style-winter-two .outer-box .ui-btn-outer .ui-btn {
        margin-left: 20px;
    }
}
.header-style-winter-two .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
@media (max-width: 575.98px) {
    .header-style-winter-two .outer-box .ui-btn-outer .ui-btn.search-btn {
        margin-right: 0;
    }
}
.header-style-winter-two .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-winter-two .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    position: absolute;
    bottom: 0;
    right: 18px;
    height: 18px;
    width: 18px;
    line-height: 19px;
    font-size: 11px;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color7);
    text-align: center;
}
.header-style-winter-two .main-box {
    background-color: #eef9fd;
    padding: 24px 36px 24px 40px;
    margin-top: 0;
    border-radius: 8px;
}
@media (max-width: 991.98px) {
    .header-style-winter-two .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-two .main-box {
        padding: 24px 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-two .main-box .logo {
        margin-right: 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-two .main-box .logo img {
        min-width: 100px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-two .main-box .nav-outer {
        display: none;
    }
}
.header-style-winter-two .main-box .nav-outer .nav .navigation li {
    margin-right: 30px;
}
.header-style-winter-two .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-winter-two .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color7);
}
.header-style-winter-two .main-menu .navigation > li > a {
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.header-style-winter-two .main-menu .navigation > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color7);
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-style-winter-two .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-winter-two .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-winter-two .outer-box .search-btn {
    position: relative;
    background-color: unset;
    font-size: 26px;
    line-height: 1;
    margin-bottom: -3px;
    color: var(--theme-color7);
}
@media (max-width: 575.98px) {
    .header-style-winter-two .outer-box .search-btn {
        margin-right: 20px;
    }
}
.header-style-winter-two .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter-two .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-winter-two .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: var(--theme-color7);
}
.header-style-winter-two .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter-two .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-winter-two .outer-box .header-btn:before {
    display: none;
}
.header-style-winter-two .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-winter-two .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-winter-two .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-winter-two .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-winter-two .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    font-size: 24px;
    color: var(--theme-color7);
}
.header-style-winter-two .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-winter-two .main-box .nav-outer {
    margin-right: auto;
}
.header-style-winter-two .contact-list-one li .title {
    color: var(--theme-color7);
}
.header-style-winter-two .sticky-header .mobile-nav-toggler {
    color: var(--theme-color7);
}

/*** 

====================================================================
    header-style-winter
====================================================================

***/
.header-style-winter-five {
    position: relative;
    background-color: #fff;
    border: none;
}
.header-style-winter-five .btn-style-six {
    margin-left: 20px;
}
.header-style-winter-five.style-light {
    position: relative;
}
.header-style-winter-five.style-light .header-top {
    border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .header-style-winter-five.style-light .header-top {
        display: none;
    }
}
.header-style-winter-five.style-light .header-top .inner-box {
    padding: 9.5px 0;
}
.header-style-winter-five.style-light .header-top .inner-box .top-left .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-dark);
}
.header-style-winter-five.style-light .header-top .inner-box .top-left .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-winter-five.style-light .header-top .inner-box .top-right span {
    color: var(--theme-color-dark);
    font-size: 14px;
    margin-left: 30px;
}
.header-style-winter-five.style-light .header-top .inner-box .top-right span:first-child {
    margin-left: 0;
}
.header-style-winter-five.style-light .header-top .inner-box .top-right span .icon {
    color: var(--theme-color1);
    margin-right: 12px;
}
.header-style-winter-five.style-light .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
@media (max-width: 575.98px) {
    .header-style-winter-five.style-light .main-box .nav-outer {
        margin-left: 30px;
    }
}
.header-style-winter-five.style-light .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter-five.style-light-theme {
    background-color: #f8f5f0;
    position: relative;
}
.header-style-winter-five.style-light-theme .main-box {
    background-color: #f8f5f0;
}
.header-style-winter-five.style-light-theme .main-box .nav-outer {
    margin-left: 80px;
    margin-right: auto;
}
.header-style-winter-five.style-light-theme .mobile-nav-toggler {
    color: var(--theme-color1);
}
.header-style-winter-five .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-winter-five .outer-box .ui-btn-outer {
    padding-left: 0;
    right: 0;
}
.header-style-winter-five .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color7);
    font-size: 20px;
    margin-left: 30px;
}
@media (max-width: 767.98px) {
    .header-style-winter-five .outer-box .ui-btn-outer .ui-btn {
        margin-left: 20px;
    }
}
.header-style-winter-five .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
@media (max-width: 575.98px) {
    .header-style-winter-five .outer-box .ui-btn-outer .ui-btn.search-btn {
        margin-right: 0;
    }
}
.header-style-winter-five .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-winter-five .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    position: absolute;
    bottom: 0;
    right: 18px;
    height: 18px;
    width: 18px;
    line-height: 19px;
    font-size: 11px;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color7);
    text-align: center;
}
.header-style-winter-five .main-box {
    background-color: #fff;
    padding: 24px 36px 24px 40px;
    margin-top: 0;
    border-radius: 8px;
}
@media (max-width: 991.98px) {
    .header-style-winter-five .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-five .main-box {
        padding: 24px 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-five .main-box .logo {
        margin-right: 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-five .main-box .logo img {
        min-width: 100px;
    }
}
@media (max-width: 575.98px) {
    .header-style-winter-five .main-box .nav-outer {
        display: none;
    }
}
.header-style-winter-five .main-box .nav-outer .nav .navigation li {
    margin-right: 30px;
}
.header-style-winter-five .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-winter-five .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color7);
}
.header-style-winter-five .main-menu .navigation > li > a {
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.header-style-winter-five .main-menu .navigation > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color7);
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-style-winter-five .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-winter-five .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-winter-five .outer-box .search-btn {
    position: relative;
    background-color: unset;
    font-size: 26px;
    line-height: 1;
    margin-bottom: -3px;
    color: var(--theme-color7);
}
@media (max-width: 575.98px) {
    .header-style-winter-five .outer-box .search-btn {
        margin-right: 20px;
    }
}
.header-style-winter-five .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter-five .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-winter-five .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: var(--theme-color7);
}
.header-style-winter-five .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: var(--theme-color7);
}
.header-style-winter-five .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-winter-five .outer-box .header-btn:before {
    display: none;
}
.header-style-winter-five .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-winter-five .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-winter-five .main-menu .navigation li.dropdown .dropdown-btn {
    display: none;
}
.header-style-winter-five .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-winter-five .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    font-size: 24px;
    color: var(--theme-color7);
}
.header-style-winter-five .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-winter-five .main-box .nav-outer {
    margin-right: auto;
}
.header-style-winter-five .contact-list-one li .title {
    color: var(--theme-color7);
}
.header-style-winter-five .sticky-header .mobile-nav-toggler {
    color: var(--theme-color7);
}

/*** 

====================================================================
    header-style-three
====================================================================

***/
.header-style-three {
    position: absolute;
}
.header-style-three.style-home2 .header-top {
    padding: 9px 60px;
}
@media (max-width: 1199.98px) {
    .header-style-three.style-home2 .header-top {
        padding: 9px 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-three.style-home2 .header-top {
        padding: 9px 0;
    }
}
.header-style-three.style-home2 .header-top .inner-box .social-icon-one li {
    margin-left: 27px;
}
.header-style-three.style-home2 .header-lower {
    border-bottom: none;
    padding: 0 60px;
}
@media (max-width: 1199.98px) {
    .header-style-three.style-home2 .header-lower {
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .header-style-three.style-home2 .header-lower {
        padding: 0;
    }
}
@media (max-width: 1199.98px) {
    .header-style-three.style-home6 .header-lower {
        padding: 0 60px;
    }
}
@media (max-width: 991.98px) {
    .header-style-three.style-home6 .header-lower {
        padding: 0 15px;
    }
}
.header-style-three .header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 9px 60px;
}
@media (max-width: 991.98px) {
    .header-style-three .header-top {
        display: none;
    }
}
.header-style-three .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.header-style-three .header-top .inner-box .social-icon-one li {
    margin-left: 60px;
}
.header-style-three .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style-three .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style-three .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-three .header-top .inner-box .top-left span {
    color: var(--theme-color-white);
    font-size: 14px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-three .header-top .inner-box .top-left span:first-child {
    margin-left: 0;
}
.header-style-three .header-top .inner-box .top-left span:hover {
    color: var(--theme-color1);
}
.header-style-three .header-top .inner-box .top-left span:hover .icon {
    color: var(--theme-color1);
}
.header-style-three .header-top .inner-box .top-left span .icon {
    color: var(--theme-color-white);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-three .header-lower {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 60px;
}
@media (max-width: 1199.98px) {
    .header-style-three .header-lower {
        padding: 0 30px;
    }
}
.header-style-three .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-three .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-three .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color-white);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-three .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-three .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-three .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-three .main-box {
    background-color: transparent;
    padding: 24px 0px;
}
@media (max-width: 991.98px) {
    .header-style-three .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-three .main-box .nav-outer .nav .navigation li {
    margin-right: 49px;
}
.header-style-three .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-three .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-three .main-menu .navigation > li > a {
    color: var(--theme-color-white);
    position: relative;
    text-transform: uppercase;
}
.header-style-three .main-menu .navigation > li > a:before {
    background-color: #000000;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-three .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-three .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-three .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-three .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-three .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-three .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-three .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-three .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-three .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-three .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-three .outer-box .header-btn:before {
    display: none;
}
.header-style-three .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-three .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-three .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
}
.header-style-three .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-three .mobile-nav-toggler {
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 24px;
    margin-top: 3px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-three .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color-v2);
}
.header-style-three .sticky-header {
    background-color: var(--theme-color-v2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-three .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-three .sticky-header .mobile-nav-toggler {
        color: var(--theme-color1);
        display: block;
    }
}
.header-style-three .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-three .sticky-header .main-menu .navigation > li.current > a,
.header-style-three .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color-v2);
}
.header-style-three .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-three .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-three .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-three .sticky-header .main-menu {
        display: none;
    }
}
.header-style-three .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-three .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*** 

====================================================================
    header-style-three
====================================================================

***/
.header-style-golf {
    position: relative;
}
.header-style-golf .header-top {
    background-color: var(--theme-color-dark);
    padding: 9px 60px;
}
@media (max-width: 991.98px) {
    .header-style-golf .header-top {
        display: none;
    }
}
.header-style-golf .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.header-style-golf .header-top .inner-box .social-icon-one li {
    margin-left: 30px;
}
.header-style-golf .header-top .inner-box .social-icon-one li:first-child {
    margin-left: 0;
}
.header-style-golf .header-top .inner-box .social-icon-one li a {
    font-size: 16px;
    color: var(--theme-color-white);
}
.header-style-golf .header-top .inner-box .social-icon-one li a:hover {
    color: var(--theme-color1);
}
.header-style-golf .header-top .inner-box .top-left span {
    color: var(--theme-color-white);
    font-size: 14px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-golf .header-top .inner-box .top-left span:first-child {
    margin-left: 0;
}
.header-style-golf .header-top .inner-box .top-left span:hover {
    color: var(--theme-color1);
}
.header-style-golf .header-top .inner-box .top-left span:hover .icon {
    color: var(--theme-color1);
}
.header-style-golf .header-top .inner-box .top-left span .icon {
    color: var(--theme-color-white);
    margin-right: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.header-style-golf .header-lower {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 60px;
}
@media (max-width: 1199.98px) {
    .header-style-golf .header-lower {
        padding: 0 30px;
    }
}
.header-style-golf .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-golf .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-golf .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color-dark);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-golf .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-golf .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-golf .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-golf .main-box .nav-outer {
    margin-right: 0;
}
.header-style-golf .main-box {
    background-color: transparent;
    padding: 24px 0px;
}
@media (max-width: 991.98px) {
    .header-style-golf .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-golf .main-box .nav-outer .nav .navigation li {
    margin-right: 49px;
}
.header-style-golf .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-golf .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color1);
}
.header-style-golf .main-menu .navigation > li > a {
    color: var(--theme-color-dark);
    position: relative;
    text-transform: uppercase;
}
.header-style-golf .main-menu .navigation > li > a:before {
    background-color: #000000;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-golf .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}
.header-style-golf .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-golf .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-golf .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-golf .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-golf .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-golf .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-golf .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-golf .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-golf .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-golf .outer-box .header-btn:before {
    display: none;
}
.header-style-golf .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-golf .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-golf .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
}
.header-style-golf .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-golf .mobile-nav-toggler {
    color: var(--theme-color-dark);
    display: inline-block;
    font-size: 24px;
    margin-top: 3px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-golf .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color-v2);
}
.header-style-golf .sticky-header {
    background-color: var(--theme-color-v2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-golf .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-golf .sticky-header .mobile-nav-toggler {
        color: var(--theme-color1);
        display: block;
    }
}
.header-style-golf .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-golf .sticky-header .main-menu .navigation > li.current > a,
.header-style-golf .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color-v2);
}
.header-style-golf .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-golf .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-golf .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-golf .sticky-header .main-menu {
        display: none;
    }
}
.header-style-golf .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-golf .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*** 

====================================================================
Sticky Header
====================================================================

***/
.sticky-header {
    background: #000;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    left: 0px;
    opacity: 0;
    padding: 0px 0px;
    position: fixed;
    top: 0px;
    visibility: hidden;
    width: 100%;
    z-index: 99999;
}
.sticky-header .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sticky-header.fixed-header {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.sticky-header .logo {
    padding: 10px 0;
}
.sticky-header .logo img {
    max-height: 40px;
}
.sticky-header .nav-outer {
    background: none;
    margin-left: auto;
    position: relative;
}

.sticky-header .main-menu .navigation > li {
    margin: 0;
    margin-left: 60px;
    padding: 20px 0;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color1);
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
    display: none;
}

.header-style-two .sticky-header .main-menu .navigation > li > a {
    color: #000;
}
.header-style-two .sticky-header .main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}

@media only screen and (max-width: 1200px) {
    .header-style-one .main-box .nav-outer {
        margin-left: 70px;
        margin-right: auto;
    }
    .header-style-two .main-box .nav-outer .nav .navigation li {
        margin-right: 26px;
    }
    .header-style-two .main-box .nav-outer {
        margin-right: 40px;
    }
}
@media only screen and (max-width: 991px) {
    .header-style-one .mobile-nav-toggler,
    .header-style-two .sticky-header .mobile-nav-toggler,
    .header-style-one .sticky-header .mobile-nav-toggler {
        display: inline-block;
    }
    .header-style-two .sticky-header .main-menu,
    .header-style-one .sticky-header .main-menu {
        display: none;
    }
}
.header-style-lake2 {
    position: relative !important;
    background-color: rgba(65, 123, 43, 0.1019607843) !important;
    margin: 20px auto;
    border-radius: 20px;
    border: none;
    max-width: 1880px;
}
.header-style-lake2 .main-menu .navigation > li > a {
    color: var(--theme-color-black) !important;
}
.header-style-lake2 .header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-style-lake2 .outer-box {
    margin-left: 0;
    margin-right: 0;
}
.header-style-lake2 .outer-box .ui-btn-outer {
    border: none;
    padding-left: 0;
    right: 0;
}
.header-style-lake2 .outer-box .ui-btn-outer .ui-btn {
    color: var(--theme-color6);
    font-size: 20px;
    margin-left: 30px;
}
.header-style-lake2 .outer-box .ui-btn-outer .ui-btn.search-btn {
    margin-right: 0;
}
.header-style-lake2 .outer-box .ui-btn-outer .ui-btn.search-btn:before {
    display: none;
}
.header-style-lake2 .outer-box .ui-btn-outer .ui-btn.cart-btn .items-count {
    background-color: var(--theme-color-dark);
    border-radius: 50%;
    bottom: 0;
    color: var(--theme-color-white);
    font-size: 11px;
    height: 18px;
    line-height: 19px;
    position: absolute;
    right: 18px;
    text-align: center;
    width: 18px;
}
.header-style-lake2 .main-box {
    background-color: transparent;
    padding: 24px 0;
}
@media (max-width: 991.98px) {
    .header-style-lake2 .main-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.header-style-lake2 .main-box .nav-outer {
    margin-right: 0;
}
.header-style-lake2 .main-box .nav-outer .nav .navigation li {
    margin-right: 36px;
}
.header-style-lake2 .main-box .nav-outer .nav .navigation li:last-child {
    margin-right: 0;
}
.header-style-lake2 .main-box .nav-outer .nav .navigation li a:hover {
    color: var(--theme-color6);
}
.header-style-lake2 .main-menu .navigation > li.dropdown .megamenu {
    width: 270px;
    left: 0;
}
.header-style-lake2 .main-menu .navigation > li > a {
    color: var(--theme-color-dark);
    position: relative;
    text-transform: uppercase;
}
.header-style-lake2 .main-menu .navigation > li > a:before {
    background-color: var(--theme-color-dark);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
}
.header-style-lake2 .main-menu .navigation > li > a:hover {
    color: var(--theme-color6) !important;
}
.header-style-lake2 .main-menu .navigation > li > a:hover:before {
    width: 100%;
}
.header-style-lake2 .outer-box .search-btn {
    position: relative;
    background-color: unset;
    margin-right: 149px;
}
@media (max-width: 767.98px) {
    .header-style-lake2 .outer-box .search-btn {
        margin-right: 100px;
    }
}
.header-style-lake2 .outer-box .search-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -52px;
    width: 1px;
    height: 40px;
    background-color: #ababab;
}
.header-style-lake2 .outer-box .search-btn .flaticon-search {
    font-size: 21px;
    color: #000000;
}
.header-style-lake2 .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}
.header-style-lake2 .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}
.header-style-lake2 .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}
.header-style-lake2 .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    height: 50px;
}
.header-style-lake2 .outer-box .header-btn:before {
    display: none;
}
.header-style-lake2 .main-menu .navigation > li {
    padding: 0;
    margin-right: 58px;
}
.header-style-lake2 .main-menu .navigation > li:last-child {
    margin-right: 0;
}
.header-style-lake2 .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 1px;
    color: #8f8f8f;
    display: inline-block;
    font-size: 10px;
    height: unset;
    right: -14px;
    top: auto;
    width: auto;
    display: none;
}
.header-style-lake2 .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}
.header-style-lake2 .mobile-nav-toggler {
    color: var(--theme-color6);
    display: inline-block;
    font-size: 24px;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
}
.header-style-lake2 .main-menu .navigation > li > ul > li > a:hover {
    color: var(--theme-color2);
}
.header-style-lake2 .sticky-header {
    background-color: var(--theme-color2);
    /*.main-menu .navigation > li.current > a,*/
}
.header-style-lake2 .sticky-header .mobile-nav-toggler {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-lake2 .sticky-header .mobile-nav-toggler {
        color: var(--theme-color6);
        display: block;
    }
}
.header-style-lake2 .sticky-header .main-menu .navigation > li > a {
    color: var(--theme-color-black);
}
.header-style-lake2 .sticky-header .main-menu .navigation > li.current > a,
.header-style-lake2 .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color2);
}
.header-style-lake2 .sticky-header .main-menu .navigation > li {
    padding: 0;
}
.header-style-lake2 .sticky-header.fixed-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.header-style-lake2 .sticky-header .main-menu {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .header-style-lake2 .sticky-header .main-menu {
        display: none;
    }
}
.header-style-lake2 .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}
.header-style-lake2 .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-style-lake2 .contact-list-one li .title {
    color: var(--theme-color6);
}

.main-header.style-ocean-h01 {
    position: absolute;
    background-color: transparent;
}

/*** 

====================================================================
main-header style-beach3
====================================================================

***/
.main-header.style-beach3 {
    background-color: transparent;
    position: absolute;
}
.main-header.style-beach3 .main-box {
    background-color: transparent;
}
.main-header.style-beach3 .main-box .theme-btn {
    margin-right: 75px;
}

/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
    position: relative;
    font-size: 28px;
    line-height: 20px;
    cursor: pointer;
    color: var(--theme-color1);
    display: none;
    top: 0;
    margin-left: 30px;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
@media (max-width: 991.98px) {
    .mobile-nav-toggler {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .mobile-nav-toggler {
        margin-left: 15px;
    }
}
@media (max-width: 575.98px) {
    .mobile-nav-toggler {
        margin-left: 12px;
    }
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}
.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}
.mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
}
.mobile-menu .close-btn {
    position: relative;
    top: 0px;
    right: -5px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
    opacity: 0.5;
}
.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}
.mobile-menu .nav-logo img {
    max-height: 50px;
}
.mobile-menu .menu-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background-color: #222;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible {
    overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
    border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
    color: #ffffff;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 0px;
    width: 44px;
    z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    content: "";
    height: 24px;
    left: 0px;
    position: absolute;
    top: 10px;
    width: 1px;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > .megamenu,
.mobile-menu .navigation li > ul > li > ul {
    display: none;
}

.mobile-menu .navigation li > .megamenu .menu-title .badge {
    background-color: var(--theme-color1);
}

.mobile-menu .navigation li > .megamenu .menu-title {
    color: var(--theme-color-white);
    font-weight: 700;
}

.mobile-menu .navigation li > ul > li {
    padding-left: 20px;
}

.contact-list-one {
    padding: 30px 20px 20px;
    position: relative;
}
.contact-list-one li {
    position: relative;
    padding-left: 54px;
    min-height: 50px;
    margin-bottom: 20px;
}
.contact-list-one li .icon {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 34px;
    line-height: 50px;
    color: #ffffff;
}
.contact-list-one li .title {
    display: block;
    font-size: 12px;
    color: var(--theme-color1);
    font-weight: 400;
    text-transform: uppercase;
}
.contact-list-one li a {
    color: #fff;
}
.contact-list-one li .text {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}
.contact-list-one li .text a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-info-box {
    color: #fff;
}

.mobile-menu .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #222;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}
.mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
    color: var(--theme-color2);
}

/***

====================================================================
  Hidden Sidebar style
====================================================================

***/
.toggle-hidden-bar {
    position: relative;
}

.hidden-bar {
    position: fixed;
    right: 0;
    top: 0px;
    height: 100%;
    overflow-y: auto;
    z-index: 99999;
    max-width: 320px;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
    background: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.hidden-bar::-webkit-scrollbar {
    width: 2px;
}
.hidden-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px #cecece;
    box-shadow: inset 0 0 2px #cecece;
    border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb {
    background: #7a7a7a;
    border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb:hover {
    background: #7a7a7a;
}
.hidden-bar .inner-box {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--theme-color-dark);
    height: 100%;
}
.hidden-bar .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .upper-box .close-btn {
    position: relative;
    top: -5px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-color1);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.hidden-bar .upper-box .close-btn:hover {
    opacity: 0.5;
}
.hidden-bar .upper-box .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}
.hidden-bar .upper-box .nav-logo img {
    max-height: 40px;
}
.hidden-bar .text-box {
    position: relative;
    padding: 25px 30px 25px;
}
.hidden-bar .text-box .title {
    color: var(--theme-color-light);
}
.hidden-bar .text-box .text {
    color: var(--theme-color-light);
}

.hidden-bar-back-drop {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    visibility: hidden;
    width: 100%;
    z-index: 999;
}

.active-hidden-bar .hidden-bar {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.active-hidden-bar .hidden-bar-back-drop {
    opacity: 1;
    visibility: visible;
}

.hidden-bar .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--theme-color-dark);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}
.hidden-bar .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.hidden-bar .social-links li a:hover {
    color: var(--theme-color1);
}

/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title.white .sub-title:before {
    display: none;
}
.sec-title.white h2 {
    color: #fff;
}
.sec-title .sub-title {
    position: relative;
    color: var(--sec-title-subtitle-color);
    font-family: var(--sec-title-subtitle-font-family);
    font-size: var(--sec-title-subtitle-font-size);
    font-weight: var(--sec-title-subtitle-font-weight);
    line-height: var(--sec-title-subtitle-line-height);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 7px;
    letter-spacing: 7px;
    top: -9px;
}
@media (max-width: 575.98px) {
    .sec-title .sub-title {
        letter-spacing: 1px;
    }
}

.sec-title .sub-title.style-two:before {
    display: none;
}
.sec-title .sub-title.style-three {
    margin-left: 50px;
}
.sec-title .sub-title.style-four:before,
.sec-title .sub-title.style-four:after {
    display: none;
}
.sec-title .sub-title.style-five {
    color: var(--theme-color6);
}
.sec-title .sub-title.style-five:before,
.sec-title .sub-title.style-five:after {
    -webkit-filter: brightness(0) saturate(100%) invert(53%) sepia(48%) saturate(5138%) hue-rotate(50deg)
        brightness(94%) contrast(92%);
    filter: brightness(0) saturate(100%) invert(53%) sepia(48%) saturate(5138%) hue-rotate(50deg) brightness(94%)
        contrast(92%);
}
.sec-title .sub-title.style-six {
    color: var(--theme-color7);
}
.sec-title .sub-title.style-six:before,
.sec-title .sub-title.style-six:after {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg)
        brightness(103%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg) brightness(103%)
        contrast(85%);
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: var(--sec-title-font-size);
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
    margin-bottom: 0;
    z-index: 2;
}
@media (max-width: 1199.98px) {
    .sec-title h2 {
        font-size: 44px;
    }
}
@media (max-width: 575.98px) {
    .sec-title h2 {
        font-size: 36px;
    }
    .sec-title h2 br {
        display: none;
    }
}
.sec-title .text {
    margin-top: 24px;
}
.sec-title.light .sub-title,
.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
    color: #fff;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section12 {
    background-color: #faf5f0;
    position: relative;
}
.banner-section12 .banner-slider .banner-slide .inner-slide {
    position: relative;
}
.banner-section12 .banner-slider .banner-slide .inner-slide .inner-container {
    margin-left: 100px;
}
@media (max-width: 1199.98px) {
    .banner-section12 .banner-slider .banner-slide .inner-slide .inner-container {
        margin-left: 40px;
        margin-right: 30px;
    }
}
@media (max-width: 991.98px) {
    .banner-section12 .banner-slider .banner-slide .inner-slide .inner-container {
        margin-left: 40px;
        margin-right: 30px;
    }
}
.banner-section12 .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.banner-section12 .outer-box {
    margin: 0 35px;
    border-radius: 30px;
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .banner-section12 .outer-box {
        margin: 0 15px;
    }
}
.banner-section12 .content-column {
    padding: 400px 0 80px;
}
@media (max-width: 991.98px) {
    .banner-section12 .content-column {
        padding: 224px 0 80px;
    }
}
@media (max-width: 767.98px) {
    .banner-section12 .content-column {
        padding: 164px 0 80px;
    }
}
@media (max-width: 575.98px) {
    .banner-section12 .content-column {
        padding: 60px 0 80px;
    }
}
.banner-section12 .content-column .offer-text {
    color: var(--theme-color-light);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-family: var(--text-font);
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}
.banner-section12 .content-column .offer-text span {
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    border-radius: 30px;
    padding: 11px 18px;
    margin-right: 10px;
    letter-spacing: 1px;
}
.banner-section12 .content-column .inner-column {
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    margin-left: 0;
    position: relative;
    z-index: 3;
    padding: 61px 40px 60px 40px;
}

@media (max-width: 767.98px) {
    .banner-section12 .content-column .inner-column {
        margin-left: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section12 .content-column .inner-column {
        padding: 61px 15px 60px;
    }
}
.banner-section12 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 50px;
    line-height: 55px;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.banner-section12 .content-column .inner-column p {
    color: #fff;
    font-size: 17px;
    line-height: normal;
}

@media (max-width: 1199.98px) {
    .banner-section12 .content-column .inner-column .title {
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section12 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section12 .content-column .inner-column .title {
        font-size: 36px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section12 .content-column .inner-column .title {
        font-size: 27px;
    }
    .banner-section12 .content-column .inner-column p {
        font-size: 15px;
    }
    .about-section .image-column .inner-column::after {
        left: 200px;
    }
}
.banner-section12 .content-column .inner-column .text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section12 .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section12 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section12 .content-column .btn-box {
    margin-top: 35px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.banner-section12 .content-column .btn-box .theme-btn {
    font-size: 14px;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 11.5px 34.5px;
}
.banner-section12 .slick-slider .slick-arrow {
    background-color: var(--theme-color-white);
    color: var(--theme-color-black);
    font-size: 0;
    opacity: 1;
    position: absolute;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 60px;
    width: 60px;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section12 .slick-slider .slick-arrow:hover {
    color: var(--theme-color1);
}
.banner-section12 .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color1);
}
.banner-section12 .slick-slider .slick-arrow:before {
    color: var(--theme-color-black);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section12 .slick-slider .slick-arrow.slick-prev {
    left: auto;
    right: 60px;
}
.banner-section12 .slick-slider .slick-arrow.slick-prev:before {
    content: "\f060";
}
.banner-section12 .slick-slider .slick-arrow.slick-next {
    right: 0;
}
.banner-section12 .slick-slider .slick-arrow.slick-next:before {
    content: "\f061";
}

/*** 

====================================================================
  Banner Section Nine
====================================================================

***/
.banner-section-nine {
    position: relative;
}
.banner-section-nine .banner-slider .swiper-pagination-clickable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1170px;
    padding-bottom: 30px;
    width: 100%;
    bottom: -64px;
}
.banner-section-nine .banner-slider .swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: var(--theme-color-dark);
    outline: 1px solid var(--theme-color-white);
    outline-offset: 5px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin-right: 20px;
    opacity: 1;
}
.banner-section-nine .banner-slider .swiper-pagination-clickable .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.banner-section-nine
    .banner-slider
    .swiper-pagination-clickable
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color1);
    outline-color: var(--theme-color1);
}
.banner-section-nine .banner-slider .banner-slide.swiper-slide-active .content-column .inner-column {
    opacity: 1;
}
.banner-section-nine .banner-slider .banner-slide .inner-slide {
    position: relative;
}
.banner-section-nine .outer-box {
    max-width: 1170px;
    margin: 0 auto 41px;
}
.banner-section-nine .content-column {
    padding: 192px 0 60px 60px;
}
@media (max-width: 575.98px) {
    .banner-section-nine .content-column {
        padding: 192px 0 60px 7.5px;
    }
}
.banner-section-nine .content-column .offer-text {
    color: var(--theme-color1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-family: var(--text-font);
    margin-bottom: 17px;
    margin-left: 40px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    position: relative;
}
.banner-section-nine .content-column .offer-text:before {
    content: "";
    position: absolute;
    top: 9px;
    left: -40px;
    width: 30px;
    height: 8px;
    background-image: url(../images/icons/before.png);
    background-size: cover;
}
.banner-section-nine .content-column .inner-column {
    background-color: var(--theme-color-dark2);
    border-radius: 10px;
    position: relative;
    z-index: 3;
    padding: 31px 30px 34px 30px;
    z-index: 1;
    max-width: 310px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 767.98px) {
    .banner-section-nine .content-column .inner-column {
        padding: 31px 30px 34px;
    }
}
.banner-section-nine .content-column .inner-column:before {
    background-image: url(../images/icons/shape-20.png);
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.banner-section-nine .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 30px;
    line-height: 44px;
    letter-spacing: 0;
    margin-bottom: 0;
}
@media (max-width: 1199.98px) {
    .banner-section-nine .content-column .inner-column .title {
        line-height: 1.3;
    }
}
.banner-section-nine .content-column .inner-column .text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-nine .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-nine .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-nine .content-column .btn-box {
    margin-top: 130px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.banner-section-nine .content-column .btn-box .theme-btn {
    color: var(--theme-color-white);
    font-size: 14px;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section-nine .content-column .btn-box .theme-btn:hover {
    color: var(--theme-color1);
}
.banner-section-nine .content-column .btn-box .theme-btn:hover .icon {
    color: var(--theme-color1);
}
.banner-section-nine .content-column .btn-box .theme-btn .icon {
    font-size: 14px;
    margin-left: 12px;
    position: relative;
    top: 1px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*** 

====================================================================
  Banner Section Ten
====================================================================

***/
.banner-section-ten {
    position: relative;
    padding: 144px 0 0;
}
@media (max-width: 767.98px) {
    .banner-section-ten {
        padding: 110px 0 0;
        text-align: center;
    }
}
.banner-section-ten .bg-image img {
    min-height: 845.2px;
}
@media (max-width: 767.98px) {
    .banner-section-ten .bg-image img {
        min-height: 1205.6px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ten .bg-image img {
        min-height: 1297.4px;
    }
}
.banner-section-ten .outer-box {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 15px;
}
@media (max-width: 1199.98px) {
    .banner-section-ten .content-column {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ten .content-column {
        margin-bottom: 70px;
    }
}
.banner-section-ten .content-column .offer-text {
    color: var(--theme-color-white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-family: var(--text-font);
    letter-spacing: 7px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .banner-section-ten .content-column .offer-text {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ten .content-column .offer-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ten .content-column .offer-text .star-rating {
    color: var(--theme-color1);
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 0;
    margin-right: 10px;
}
.banner-section-ten .content-column .offer-text .star-rating i {
    margin-right: 3px;
}
.banner-section-ten .inner-column {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    padding: 146px 0 0;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-ten .inner-column {
        padding: 80px 0 0;
    }
}
.banner-section-ten .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 90px;
    margin-bottom: 30px;
    margin-top: 0;
}
@media (max-width: 1499.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 58px;
        line-height: 1.3;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 44px;
        margin-bottom: 25px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ten .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-ten .inner-column .text {
    color: var(--theme-color-white);
    font-size: 16px;
    line-height: 30px;
    margin-right: 70px;
}
@media (max-width: 1199.98px) {
    .banner-section-ten .inner-column .text {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ten .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-ten .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .banner-section-ten .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ten .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ten .btn-box .theme-btn {
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}
@media (max-width: 575.98px) {
    .banner-section-ten .btn-box .theme-btn {
        margin-bottom: 30px;
    }
}
.banner-section-ten .btn-box .contact-info {
    margin-left: 30px;
    padding-left: 64px;
    text-align: left;
}
.banner-section-ten .btn-box .contact-info .icon-box {
    color: var(--theme-color-white);
    top: -6px;
}
.banner-section-ten .btn-box .contact-info .icon-box i {
    color: var(--theme-color-white);
    font-size: 50px;
}
.banner-section-ten .btn-box .contact-info span {
    color: var(--theme-color-white);
    font-size: 14px;
    font-weight: 600;
}
.banner-section-ten .btn-box .contact-info .title {
    color: var(--theme-color-white);
}
.banner-section-ten .booking-form-column .inner-column {
    margin-left: 30px;
}
.banner-section-ten .banner-features {
    border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    margin-top: 144px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.banner-section-ten .banner-features .feature-block {
    width: 100%;
}
.banner-section-ten .banner-features .feature-block:first-child .inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.banner-section-ten .banner-features .feature-block:last-child .inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.banner-section-ten .banner-features .feature-block:last-child .inner:after {
    display: none;
}
.banner-section-ten .banner-features .feature-block .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 61px 8px 56px;
}
@media (max-width: 991.98px) {
    .banner-section-ten .banner-features .feature-block .inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ten .banner-features .feature-block .inner:after {
    background-color: rgba(var(--theme-color-white-rgb), 0.1);
    content: "";
    position: absolute;
    right: 0;
    top: 28px;
    height: 100px;
    width: 1px;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-ten .banner-features .feature-block .inner:after {
        height: 130px;
    }
}
.banner-section-ten .banner-features .feature-block .inner .icon {
    color: var(--theme-color-white);
    font-size: 36px;
    margin-right: 17px;
    line-height: 1;
    position: relative;
    top: -5px;
}
@media (max-width: 991.98px) {
    .banner-section-ten .banner-features .feature-block .inner .icon {
        margin-right: 0;
    }
}
.banner-section-ten .banner-features .feature-block .inner .title {
    color: var(--theme-color-white);
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .banner-section-ten .banner-features .feature-block .inner .title {
        font-size: 16px;
    }
}

/*** 

====================================================================
  Banner Section Ten
====================================================================

***/
.banner-section14 {
    position: relative;
}
.banner-section14 .outer-box {
    margin: 0 30px 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    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;
}
@media (max-width: 1799.98px) {
    .banner-section14 .outer-box {
        margin: 0 15px 0;
    }
}
.banner-section14 .outer-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-black);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}
.banner-section14 .outer-box .video {
    height: 972.512px;
    width: 1728.91px;
}
@media (max-width: 991.98px) {
    .banner-section14 .outer-box .video {
        height: 700px;
    }
}
.banner-section14 .outer-box .content-box {
    position: absolute;
    text-align: center;
    margin-top: -100px;
    z-index: 2;
}
@media (max-width: 575.98px) {
    .banner-section14 .outer-box .content-box {
        margin-top: 0;
    }
}
.banner-section14 .outer-box .content-box h1 {
    color: var(--theme-color-light);
    font-size: 80px;
    margin-bottom: 30px;
}
@media (max-width: 991.98px) {
    .banner-section14 .outer-box .content-box h1 {
        font-size: 50px;
    }
}
@media (max-width: 575.98px) {
    .banner-section14 .outer-box .content-box h1 {
        font-size: 30px;
    }
}
.banner-section14 .outer-box .content-box .text {
    color: var(--theme-color-light);
}
@media (max-width: 991.98px) {
    .banner-section14 .outer-box .content-box .text br {
        display: none;
    }
}
.banner-section14 .outer-box .content-box .button-box {
    margin-top: 40px;
}
.banner-section14 .outer-box .content-box .button-box .theme-btn {
    border-radius: 30px;
    border: none;
    padding: 17px 62px;
}
@media (max-width: 575.98px) {
    .banner-section14 .outer-box .content-box .button-box .theme-btn {
        padding: 14px 40px;
    }
}
.banner-section14 .outer-box .content-box .button-box .theme-btn:last-child {
    margin-left: 18px;
}
@media (max-width: 575.98px) {
    .banner-section14 .outer-box .content-box .button-box .theme-btn:last-child {
        margin-left: 0;
        margin-top: 10px;
    }
}
.banner-section14 .info-area {
    border-top: 1px solid rgba(255, 255, 255, 0.168627451);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}
@media (max-width: 575.98px) {
    .banner-section14 .info-area {
        display: none;
    }
}
.banner-section14 .info-area .info-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.168627451);
    padding: 30px 0;
}
.banner-section14 .info-area .info-box:last-child {
    border-right: none;
}
.banner-section14 .info-area .info-box .text {
    color: var(--theme-color-light);
    font-size: 16px;
    margin-bottom: 0;
}
.banner-section14 .info-area .info-box a {
    color: var(--theme-color-light);
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
}

/*** 

====================================================================
  Checkout Form Section
====================================================================

***/
.checkout-form-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.checkout-form-section.v2 {
    position: static;
    background: var(--theme-color-dark2);
}
.checkout-form-section.v2 .checkout-form {
    background: transparent;
}
.checkout-form-section.v2 .checkout-form .checkout-field {
    border-color: rgba(255, 255, 255, 0.1);
}
.checkout-form-section.v2 .checkout-form .checkout-field > h6 {
    color: #fff;
}
.checkout-form-section.v3 {
    position: static;
}
.checkout-form-section.v3 .checkout-form {
    background: var(--theme-color-white);
    -webkit-box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
    box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
    margin-top: -48px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .checkout-form-section.v3 .checkout-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.checkout-form-section.v3 .checkout-form .checkout-field {
    border-color: rgba(var(--theme-color-white-rgb), 0.1);
}
@media (max-width: 991.98px) {
    .checkout-form-section.v3 .checkout-form .checkout-field {
        padding: 14px 25px 11px 0;
        width: 100%;
    }
}
.checkout-form-section.v3 .checkout-form .checkout-field .chk-field input {
    font-size: 12px;
    color: var(--theme-color1);
    width: 260px;
    background: transparent;
    border-color: transparent;
    z-index: 99;
    position: relative;
    font-weight: 500;
}
@media (max-width: 1199.98px) {
    .checkout-form-section.v3 .checkout-form .checkout-field .chk-field input {
        width: 185px;
    }
}
@media (max-width: 991.98px) {
    .checkout-form-section.v3 .checkout-form .checkout-field .chk-field input {
        width: 100%;
    }
}
.checkout-form-section.v3 .checkout-form .checkout-field > h6 {
    color: var(--theme-color-dark);
}
.checkout-form-section.lake .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
}
.checkout-form-section.lake .checkout-form .checkout-field .chk-field i {
    color: var(--theme-color6);
}
.checkout-form-section.lake .checkout-form .checkout-field .chk-field select {
    color: var(--theme-color6);
}
.checkout-form-section .checkout-form {
    background: var(--theme-color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 15px 15px 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 907.99px) {
    .checkout-form-section .checkout-form {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.checkout-form-section .checkout-form .checkout-field {
    padding: 14px 25px 11px;
    border-right: 1px solid #f8f5f0;
}
.checkout-form-section .checkout-form .checkout-field.br-0 {
    border-right: 0;
}
.checkout-form-section .checkout-form .checkout-field > h6 {
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: -2px;
}
.checkout-form-section .checkout-form .checkout-field .chk-field {
    position: relative;
}
.checkout-form-section .checkout-form .checkout-field .chk-field input,
.checkout-form-section .checkout-form .checkout-field .chk-field select {
    font-size: 12px;
    color: var(--theme-color1);
    width: 260px;
    background: transparent;
    border-color: transparent;
    z-index: 99;
    position: relative;
}
.checkout-form-section .checkout-form .checkout-field .chk-field i {
    position: absolute;
    top: 1px;
    right: 0;
    color: var(--theme-color4);
    font-size: 16px;
}
.checkout-form-section .checkout-form .checkout-field .chk-field select option {
    font-size: 14px;
}
.checkout-form-section .checkout-form .btn-style-one {
    margin-left: auto;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 45px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    position: relative;
    border: 0;
    top: 5px;
    height: 50px;
    font-weight: 600;
    color: #fff;
}
@media (max-width: 991.98px) {
    .checkout-form-section .checkout-form .btn-style-one {
        width: 100%;
        margin-top: 15px;
    }
}
@media (max-width: 767.98px) {
    .checkout-form-section .checkout-form .btn-style-one {
        margin-top: 0;
    }
}
.checkout-form-section .checkout-form .btn-style-one:before {
    background: #000;
}

.chk-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}

.chk-field select::-ms-expand {
    display: none;
}

.chk-field input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--theme-color1);
}

.chk-field input ::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--theme-color1);
}

.chk-field input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--theme-color1);
}

.chk-field input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--theme-color4);
}

@media only screen and (max-width: 1410px) {
    .checkout-form-section .checkout-form .checkout-field .chk-field input,
    .checkout-form-section .checkout-form .checkout-field .chk-field select {
        width: 255px;
    }
}
@media only screen and (max-width: 1200px) {
    .checkout-form-section .checkout-form .checkout-field .chk-field input,
    .checkout-form-section .checkout-form .checkout-field .chk-field select {
        width: 190px;
    }
}
@media only screen and (max-width: 991px) {
    .checkout-form-section .checkout-form .checkout-field .chk-field input,
    .checkout-form-section .checkout-form .checkout-field .chk-field select {
        width: 185px;
    }
}
@media only screen and (max-width: 767px) {
    .checkout-form-section .checkout-form .btn-style-one {
        margin-left: auto;
    }
    .checkout-form-section.v2 .checkout-form .checkout-field {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 576px) {
    .checkout-form-section .checkout-form .checkout-field .chk-field input,
    .checkout-form-section .checkout-form .checkout-field .chk-field select {
        width: 100%;
    }
    .checkout-form-section .checkout-form {
        display: block;
    }
    .checkout-form-section .checkout-form .checkout-field {
        border: 0;
    }
    .checkout-form-section .checkout-form .btn-style-one {
        width: 100%;
    }
    .checkout-form-section .checkout-form .checkout-field {
        padding: 13px 0 11px;
    }
}
/*** 

====================================================================
  Checkout Form Section
====================================================================

***/
.checkout-form-section-two {
    width: 100%;
}
.checkout-form-section-two .checkout-form {
    background: var(--theme-color-white);
    -webkit-box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
    box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -66px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 907.99px) {
    .checkout-form-section-two .checkout-form {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.checkout-form-section-two .checkout-form .checkout-field {
    border-color: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    padding: 33px 25px 30px 40px;
    max-height: 132px;
    position: relative;
}
@media (max-width: 575.98px) {
    .checkout-form-section-two .checkout-form .checkout-field {
        padding: 33px 12px 30px;
    }
}
.checkout-form-section-two .checkout-form .checkout-field:first-child:before {
    display: none;
}
.checkout-form-section-two .checkout-form .checkout-field:before {
    background-image: url(../images/icons/shape-line1.png);
    content: "";
    height: 59px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2px;
}
@media (max-width: 575.98px) {
    .checkout-form-section-two .checkout-form .checkout-field:before {
        display: none;
    }
}
.checkout-form-section-two .checkout-form .checkout-field.br-0 {
    border-right: 0;
}
.checkout-form-section-two .checkout-form .checkout-field.select-field .chk-field {
    cursor: pointer;
    width: 65px;
}
.checkout-form-section-two .checkout-form .checkout-field.select-field .chk-field select {
    color: var(--theme-color1);
    cursor: pointer;
    width: 60px;
}
.checkout-form-section-two .checkout-form .checkout-field > h4 {
    margin-bottom: 9px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field {
    position: relative;
    width: 112px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input,
.checkout-form-section-two .checkout-form .checkout-field .chk-field select {
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-color-dark);
    background: transparent;
    border-color: transparent;
    width: auto;
    z-index: 99;
    position: relative;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field i {
    position: absolute;
    top: 6px;
    right: 1px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field select option {
    font-size: 14px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--theme-color1);
    opacity: 1;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input ::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--theme-color1);
    opacity: 1;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--theme-color1);
    opacity: 1;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--theme-color4);
    opacity: 1;
}
.checkout-form-section-two .checkout-form .btn-style-one {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 30px;
    background-color: var(--theme-color-dark);
    border-color: transparent;
    padding: 0;
    width: 170px;
    text-align: center;
    position: relative;
    border: 0;
    height: 132px;
    font-weight: 600;
    color: var(--theme-color-white);
}
@media only screen and (max-width: 907.99px) {
    .checkout-form-section-two .checkout-form .btn-style-one {
        height: 80px;
        width: 100%;
        margin-top: 15px;
    }
    .checkout-form-section-two .checkout-form .btn-style-one br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .checkout-form-section-two .checkout-form .btn-style-one {
        margin-top: 0;
    }
}
.checkout-form-section-two .checkout-form .btn-style-one:before {
    background: var(--theme-color1);
}

/***

====================================================================
  Banner Section Winter
====================================================================

***/
.banner-section-winter {
    position: relative;
}
.banner-section-winter .banner-slider {
    position: relative;
    min-height: 885px;
    height: 100vh;
}
@media (max-width: 1199.98px) {
    .banner-section-winter .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-winter .banner-slider .slick-list,
.banner-section-winter .banner-slider .slick-track {
    height: 100%;
}
.banner-section-winter .banner-slider .content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.banner-section-winter .banner-slider .content-box .sub-title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 60px;
    margin-bottom: 0;
    display: block;
    margin-top: 0;
}
@media (max-width: 575.98px) {
    .banner-section-winter .banner-slider .content-box .sub-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-winter .banner-slider .content-box h1 {
    color: var(--theme-color-white);
    font-family: var(--text-font3);
    font-size: 300px;
    line-height: 200px;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}
@media (max-width: 767.98px) {
    .banner-section-winter .banner-slider .content-box h1 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter .banner-slider .content-box h1 {
        font-size: 30px;
    }
}
.banner-section-winter .outer-box {
    position: relative;
    padding-top: 0;
}
.banner-section-winter .outer-box .button-box {
    position: absolute;
    bottom: -85px;
    left: calc(50% - 85px);
}
.banner-section-winter .outer-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    font-size: 40px;
    width: 170px;
    height: 170px;
    line-height: 119px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    border: 25px solid var(--theme-color-white);
    background-color: var(--theme-color7);
    position: relative;
    overflow: hidden;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/***

====================================================================
  Banner Section Winter
====================================================================

***/
.banner-section-winter-three {
    background-color: #eef9fd;
    position: relative;
}
.banner-section-winter-three .banner-slider .banner-slide .inner-slide {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-winter-three .banner-slider .banner-slide .inner-slide {
        padding: 0 20px;
    }
}
.banner-section-winter-three .bg-image {
    border-radius: 15px;
}
.banner-section-winter-three .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.banner-section-winter-three .outer-box {
    padding: 0 15px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}
.banner-section-winter-three .outer-box .info-text {
    color: transparent;
    display: inline-block;
    font-size: 160px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 15px;
    text-transform: uppercase;
    position: absolute;
    top: calc(50% + 1px);
    right: 15px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--theme-color-white-rgb), 0.9);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
@media (max-width: 1699.98px) {
    .banner-section-winter-three .outer-box .info-text {
        right: -100px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-winter-three .outer-box .info-text {
        right: -150px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-winter-three .outer-box .info-text {
        right: -200px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-winter-three .outer-box .info-text {
        font-size: 120px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter-three .outer-box .info-text {
        display: none;
    }
}
.banner-section-winter-three .content-box {
    padding: 170px 0 250px;
}
@media (max-width: 991.98px) {
    .banner-section-winter-three .content-box {
        padding: 224px 0 61px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-winter-three .content-box {
        padding: 164px 0 61px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter-three .content-box {
        padding: 60px 0 61px;
    }
}
.banner-section-winter-three .content-box .offer-text {
    color: var(--theme-color7);
    font-size: 50px;
    font-family: var(--text-font3);
    margin-bottom: 0;
    letter-spacing: 2.6px;
}
.banner-section-winter-three .content-box .inner-column {
    position: relative;
}
.banner-section-winter-three .content-box .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 80px;
    letter-spacing: 0;
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
    .banner-section-winter-three .content-box .inner-column .title {
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-winter-three .content-box .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-winter-three .content-box .inner-column .title {
        font-size: 40px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter-three .content-box .inner-column .title {
        font-size: 36px;
    }
}
.banner-section-winter-three .content-box .inner-column .text {
    color: var(--theme-color-white);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-winter-three .content-box .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-winter-three .content-box .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-winter-three .content-box .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.banner-section-winter-three .content-box .btn-box .theme-btn {
    font-size: 14px;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 15px 50px;
}
.banner-section-winter-three .slick-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    top: calc(50% - 35px);
}
.banner-section-winter-three .slick-slider .slick-arrow {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--theme-color-white);
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(50% - 125px);
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 767.98px) {
    .banner-section-winter-three .slick-slider .slick-arrow {
        display: none !important;
    }
}
.banner-section-winter-three .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color7);
    color: var(--theme-color-white);
}
.banner-section-winter-three .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.banner-section-winter-three .slick-slider .slick-arrow:before {
    color: var(--theme-color-white);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section-winter-three .slick-slider .slick-arrow.slick-prev {
    left: 45px;
    right: auto;
}
.banner-section-winter-three .slick-slider .slick-arrow.slick-prev:before {
    content: "\f060";
}
.banner-section-winter-three .slick-slider .slick-arrow.slick-next {
    right: 45px;
}
.banner-section-winter-three .slick-slider .slick-arrow.slick-next:before {
    content: "\f061";
}
.banner-section-winter-three .button-box {
    position: absolute;
    bottom: -85px;
    left: calc(50% - 85px);
}
.banner-section-winter-three .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    font-size: 40px;
    width: 170px;
    height: 170px;
    line-height: 119px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    border: 25px solid #eef9fd;
    background-color: var(--theme-color7);
    position: relative;
    overflow: hidden;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*** 

====================================================================
  Banner Section Beach
====================================================================

***/
.banner-section-beach {
    position: relative;
    padding: 220px 0 180px;
}
@media (max-width: 991.98px) {
    .banner-section-beach {
        padding: 200px 0 134px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-beach {
        padding: 180px 0 150px;
        text-align: center;
    }
}
.banner-section-beach .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: transparent;
    --background-overlay: "";
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(51%, rgba(7, 37, 67, 0.8705882353)),
        color-stop(91%, rgba(7, 37, 67, 0.6784313725))
    );
    background-image: linear-gradient(180deg, rgba(7, 37, 67, 0.8705882353) 51%, rgba(7, 37, 67, 0.6784313725) 91%);
    z-index: 1;
}
.banner-section-beach .anim-icons .image-1 {
    position: absolute;
    left: 82px;
    bottom: 0;
    pointer-events: none;
}
.banner-section-beach .content-column {
    padding: 0 15px;
}
@media (max-width: 575.98px) {
    .banner-section-beach .content-column {
        padding: 0;
    }
}
.banner-section-beach .content-column .star-rating {
    color: var(--theme-color1);
    font-size: 18px;
    margin-bottom: 8px;
}
.banner-section-beach .content-column .star-rating i {
    margin-right: 12px;
}
.banner-section-beach .content-column .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-beach .inner-column {
    background: rgba(var(--theme-color-black-rgb), 0.22);
    border: 1px solid var(--theme-color1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    max-width: 930px;
    padding: 83px 50px 89px;
    text-align: center;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-beach .inner-column {
        padding: 52px 50px 80px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-beach .inner-column {
        padding: 52px 15px 80px;
    }
}
.banner-section-beach .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 90px;
    margin-bottom: 16px;
}
@media (max-width: 1199.98px) {
    .banner-section-beach .inner-column .title {
        font-size: 60px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-beach .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-beach .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-beach .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-beach .inner-column .text {
    color: var(--theme-color-white);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 767.98px) {
    .banner-section-beach .inner-column .text {
        font-size: 14px;
    }
    .banner-section-beach .inner-column .text br {
        display: none;
    }
}
.banner-section-beach .btn-box {
    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;
    margin-top: 35px;
    z-index: 1;
}
.banner-section-beach .btn-box .theme-btn {
    font-family: var(--text-font2);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 46px;
}

/*** 

====================================================================
  Banner Section Beach
====================================================================

***/
.banner-section-beach2 {
    position: relative;
    padding: 90px 0 120px;
}
.banner-section-beach2 .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}
.banner-section-beach2 .outer-box {
    padding: 0 15px;
    max-width: 1610px;
    margin: 0 auto;
}
.banner-section-beach2 .inner-column {
    position: relative;
    padding: 0 0 140px;
}
.banner-section-beach2 .inner-column .title {
    font-family: "Gilda Display", serif;
    position: relative;
    font-size: 100px;
    font-weight: 500;
    line-height: 110px;
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
    .banner-section-beach2 .inner-column .title {
        font-size: 60px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-beach2 .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-beach2 .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-beach2 .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-beach2 .inner-column .title img {
    height: 102px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    -webkit-transition-duration: 2s;
    transition-duration: 2s;
    border-radius: 65px 65px 65px 65px;
    margin-left: 18px;
    margin-top: 3px;
    max-width: 274px;
    width: 100%;
}
.banner-section-beach2 .inner-column .text {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    max-width: 580px;
}
@media (max-width: 767.98px) {
    .banner-section-beach2 .inner-column .text {
        font-size: 14px;
    }
    .banner-section-beach2 .inner-column .text br {
        display: none;
    }
}
.banner-section-beach2 .btn-box {
    position: relative;
    margin-top: 40px;
    z-index: 1;
}
.banner-section-beach2 .btn-box .theme-btn {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
    padding: 17.8px 47px;
}

/*** 

====================================================================
  Banner Section Luxury
====================================================================

***/
.banner-section-luxury {
    position: relative;
    padding: 231px 0 187px;
}
@media (max-width: 991.98px) {
    .banner-section-luxury {
        padding: 200px 0 134px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury {
        padding: 180px 0 150px;
        text-align: center;
    }
}
.banner-section-luxury .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(var(--theme-color-black-rgb), 0.8);
    z-index: 1;
}
.banner-section-luxury .anim-icons .image-1 {
    position: absolute;
    left: 82px;
    bottom: 0;
    pointer-events: none;
}
.banner-section-luxury .content-column {
    padding: 0 15px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury .content-column {
        padding: 0;
    }
}
.banner-section-luxury .content-column .star-rating {
    color: var(--theme-color1);
    font-size: 18px;
    margin-bottom: 8px;
}
.banner-section-luxury .content-column .star-rating i {
    margin-right: 12px;
}
.banner-section-luxury .content-column .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-luxury .inner-column {
    background: rgba(34, 30, 25, 0.82);
    border: 1px solid var(--theme-color1);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    max-width: 984px;
    padding: 125px 70px 89px;
    text-align: center;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury .inner-column {
        padding: 52px 50px 80px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury .inner-column {
        padding: 52px 15px 80px;
    }
}
.banner-section-luxury .inner-column .text {
    color: rgba(68, 68, 68, 0.38);
    font-size: 150px;
    font-family: "Gilda Display", serif;
    line-height: 90px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 65px;
    width: 100%;
    min-width: 1185px;
}
.banner-section-luxury .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-family: "Gilda Display", serif;
    font-size: 90px;
    line-height: 110px;
    margin-bottom: 11px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury .inner-column .title {
        font-size: 60px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury .inner-column .title {
        font-size: 42px;
    }
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-luxury3 {
    position: relative;
}
.banner-section-luxury3 .anim-icons .image-1 {
    position: absolute;
    left: -4px;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.banner-section-luxury3 .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .outer-box {
        display: block;
    }
}
.banner-section-luxury3 .content-column {
    position: relative;
    left: 0;
    padding: 175px 122px 285px 20px;
    min-width: calc(50% + 147px);
}
@media (max-width: 1199.98px) {
    .banner-section-luxury3 .content-column {
        min-width: calc(50% + 50px);
        padding: 175px 50px 285px 20px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .content-column {
        width: 100%;
        padding: 100px 15px 150px;
    }
}
.banner-section-luxury3 .content-column .subtitle-box {
    font-family: var(--title-font2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury3 .content-column .subtitle-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-luxury3 .content-column .subtitle-box span {
    background-color: #f7f3ee;
    border-radius: 50px;
    color: #aa8453;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 28px 7px;
    margin-right: 30px;
    text-transform: uppercase;
}
@media (max-width: 575.98px) {
    .banner-section-luxury3 .content-column .subtitle-box span {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner-section-luxury3 .content-column .subtitle-box .sub-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.banner-section-luxury3 .content-column .inner-column {
    position: relative;
    z-index: 3;
    padding: 15px 15px 15px 0;
    max-width: 621px;
    margin-left: auto;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury3 .content-column .inner-column {
        padding: 0;
        max-width: 495px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .content-column .inner-column {
        text-align: center;
        margin: 0 auto;
    }
}
.banner-section-luxury3 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 74px;
    font-family: var(--title-font2);
    line-height: 97px;
    letter-spacing: 0;
    margin-bottom: 29px;
}
@media (max-width: 1749.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury3 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-luxury3 .content-column .inner-column .text {
    color: var(--text-color);
    font-family: var(--text-font4);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-luxury3 .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury3 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-luxury3 .content-column .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury3 .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-luxury3 .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}
.banner-section-luxury3 .images-column {
    width: 100%;
    position: relative;
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .images-column {
        display: none;
    }
}
.banner-section-luxury3 .images-column .inner-column {
    height: 100%;
    width: 100%;
}
.banner-section-luxury3 .images-column .inner-column .bg-image {
    position: absolute;
}
.banner-section-luxury3 .images-column .inner-column .bg-image::before {
    background-color: rgba(var(--theme-color-black-rgb), 0.18);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-section-luxury3 .checkout-form-section {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 104px;
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-luxury3 .checkout-form-section .checkout-form {
    padding: 30px 25px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
}
.banner-section-luxury3 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
}
.banner-section-luxury3 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-luxury3 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
    font-size: 14px;
}
.banner-section-luxury3 .checkout-form-section .checkout-form .theme-btn {
    background-color: var(--theme-color-dark2);
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 56px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-luxury3 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-luxury3 .checkout-form-section .checkout-form .theme-btn:before {
    background-color: var(--theme-color1);
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-luxury4 {
    position: relative;
}
.banner-section-luxury4 .outer-box {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .outer-box {
        display: block;
    }
}
.banner-section-luxury4 .content-column {
    position: relative;
}
.banner-section-luxury4 .content-column .subtitle-box {
    font-family: var(--text-font);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury4 .content-column .subtitle-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-luxury4 .content-column .subtitle-box .sub-title {
    color: #666666;
    font-family: var(--text-font);
    font-size: 14px;
    letter-spacing: 7px;
    margin-left: 10px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.banner-section-luxury4 .content-column .star-rating {
    color: var(--theme-color1);
    font-size: 14px;
    margin-bottom: 0;
}
.banner-section-luxury4 .content-column .star-rating i {
    margin-right: 0;
}
.banner-section-luxury4 .content-column .inner-column {
    background-color: #d9d0bd;
    padding: 126px 50px 155px 98px;
    position: relative;
    margin-left: auto;
    border-radius: 30px;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .content-column .inner-column {
        text-align: center;
        margin: 0 auto;
    }
}
.banner-section-luxury4 .content-column .inner-column .anim-icons img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.banner-section-luxury4 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 74px;
    font-family: var(--title-font2);
    line-height: 97px;
    letter-spacing: 0;
    margin-bottom: 29px;
}
@media (max-width: 1749.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury4 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-luxury4 .content-column .inner-column .text {
    color: var(--text-color);
    font-family: var(--text-font4);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-luxury4 .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury4 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-luxury4 .content-column .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury4 .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-luxury4 .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
    border-radius: 30px;
}
.banner-section-luxury4 .content-column .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury4 .content-column .btn-box .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-luxury4 .content-column .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-luxury4 .content-column .btn-box .video-box .video-text {
    color: var(--theme-color-black);
    font-weight: 600;
    margin-left: 15px;
}
.banner-section-luxury4 .images-column {
    position: relative;
}
.banner-section-luxury4 .images-column .inner-column {
    height: 100%;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-luxury4 .images-column .inner-column .bg-image {
    position: absolute;
}
.banner-section-luxury4 .images-column .inner-column .bg-image::before {
    background-color: rgba(var(--theme-color-black-rgb), 0.18);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-section-luxury4 .checkout-form-section {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 104px;
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-luxury4 .checkout-form-section .checkout-form {
    padding: 30px 25px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
}
.banner-section-luxury4 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
}
.banner-section-luxury4 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-luxury4 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
    font-size: 14px;
}
.banner-section-luxury4 .checkout-form-section .checkout-form .theme-btn {
    background-color: var(--theme-color-dark2);
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 56px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-luxury4 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-luxury4 .checkout-form-section .checkout-form .theme-btn:before {
    background-color: var(--theme-color1);
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-island1 {
    position: relative;
    padding: 293px 0 376px;
    overflow: hidden;
}
.banner-section-island1 .bg-image:before {
    position: absolute;
    content: "";
    background-color: var(--theme-color-black);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    opacity: 0.5;
}
.banner-section-island1 .content-column {
    position: relative;
    text-align: center;
}
.banner-section-island1 .content-column .title-box {
    font-family: var(--title-font2);
    margin-bottom: 18px;
}
.banner-section-island1 .content-column .title-box .sub-title {
    color: var(--theme-color-white);
    font-size: 36px;
    margin-bottom: 0;
}
.banner-section-island1 .content-column .inner-column {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
}
.banner-section-island1 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 110px;
    font-family: var(--title-font2);
    line-height: 120px;
    letter-spacing: 0;
    margin-bottom: 29px;
}
@media (max-width: 1749.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-island1 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-island1 .checkout-form-section {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 200px;
}
@media (max-width: 991.98px) {
    .banner-section-island1 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-island1 .checkout-form-section .checkout-form {
    padding: 30px 25px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
}
.banner-section-island1 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
}
.banner-section-island1 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-island1 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
    font-size: 14px;
}
.banner-section-island1 .checkout-form-section .checkout-form .theme-btn {
    background-color: var(--theme-color8);
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 56px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-island1 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-island1 .checkout-form-section .checkout-form .theme-btn:before {
    background-color: var(--theme-color9);
}
.banner-section-island1 .checkout-form-section .checkout-form .checkout-field .chk-field i {
    color: var(--theme-color9);
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-island2 {
    position: relative;
    padding: 293px 0 200px;
}
.banner-section-island2 .anim-icons .image-1 {
    position: absolute;
    top: 100px;
    right: 0;
}
.banner-section-island2 .anim-icons .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.banner-section-island2 .content-column {
    position: relative;
}
.banner-section-island2 .content-column .title-box {
    font-family: var(--title-font2);
    margin-bottom: 18px;
}
.banner-section-island2 .content-column .title-box .sub-title {
    color: var(--theme-color-white);
    font-size: 36px;
    margin-bottom: 0;
}
.banner-section-island2 .content-column .inner-column {
    position: relative;
    margin-bottom: 0;
    z-index: 1;
}
.banner-section-island2 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-black);
    font-family: var(--title-font2);
    font-size: 128px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 120px;
    margin-bottom: 0;
}
@media (max-width: 1749.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-island2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-island2 .content-column .inner-column .title img {
    width: 270px;
    height: 100px;
    border-radius: 50px;
    margin-top: -27px;
}
.banner-section-island2 .content-column .inner-column .text-box {
    float: right;
    margin-right: -140px;
    margin-top: -125px;
}
.banner-section-island2 .content-column .inner-column .text-box .theme-btn {
    background-color: var(--theme-color9);
    border-color: var(--theme-color9);
}
.banner-section-island2 .content-column .inner-column .text-box .theme-btn:before {
    background-color: var(--theme-color8);
}

/*** 

====================================================================
  Banner Section Golf
====================================================================

***/
.banner-section-golf {
    position: relative;
    padding: 165px 0 330px;
    margin: 0 25px;
    border-radius: 30px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .banner-section-golf {
        padding: 90px 0;
        text-align: center;
    }
}
.banner-section-golf .info-text {
    color: rgba(255, 255, 255, 0.4705882353);
    font-size: 170px;
    font-weight: 400;
    font-family: var(--title-font2);
    line-height: 1;
    position: absolute;
    text-align: center;
    margin-bottom: 0;
    bottom: 0;
    left: 250px;
}
.banner-section-golf .bg-image img {
    width: 100%;
}
.banner-section-golf .anim-icons .image-1 {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .banner-section-golf .content-column {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}
@media (max-width: 767.98px) {
    .banner-section-golf .content-column {
        margin-bottom: 70px;
    }
}
.banner-section-golf .inner-column {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    padding: 0;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-golf .inner-column {
        padding: 0;
    }
}
.banner-section-golf .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 84px;
    margin-bottom: 29px;
    margin-right: -25px;
}
@media (max-width: 1199.98px) {
    .banner-section-golf .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-golf .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-golf .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-golf .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-golf .inner-column .text {
    color: var(--theme-color-white);
    font-size: 18px;
    line-height: 30px;
    margin-right: 70px;
}
@media (max-width: 767.98px) {
    .banner-section-golf .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-golf .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .banner-section-golf .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-golf .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-golf .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
    background-color: var(--theme-color6);
    border-color: var(--theme-color6);
}
.banner-section-golf .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
@media (max-width: 575.98px) {
    .banner-section-golf .btn-box .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-golf .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color6);
    color: var(--theme-color-white);
    border: none;
}
.banner-section-golf .btn-box .video-box .video-text {
    color: var(--theme-color-white);
    font-weight: 600;
    margin-left: 15px;
}
.banner-section-golf .booking-form-column .inner-column {
    margin-left: 30px;
}

/*** 

====================================================================
banner section two luxury2-1
====================================================================

***/
.banner-section-two-luxury-2-1 {
    position: relative;
    padding: 38px 0 0;
}
.banner-section-two-luxury-2-1:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(87deg, rgba(0, 0, 0, 0.8392156863) 12%, rgba(0, 0, 0, 0.3019607843) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner-section-two-luxury-2-1 .bg-image img {
    width: 100%;
    height: 100%;
}
.banner-section-two-luxury-2-1 .content-column {
    z-index: 2;
}
.banner-section-two-luxury-2-1 .content-column .inner-column .title {
    color: var(--theme-color-white);
}
.banner-section-two-luxury-2-1 .content-column .inner-column .text {
    color: var(--theme-color-white);
    margin: 37px 0;
}
.banner-section-two-luxury-2-1 .content-column .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-section-two-luxury-2-1 .content-column .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-section-two-luxury-2-1 .content-column .btn-box .video-box .play-btn {
    margin-left: 30px;
}
.banner-section-two-luxury-2-1 .content-column .btn-box .video-box .play-btn i {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-two-luxury-2-1 .content-column .btn-box .video-box .video-text {
    margin-left: 25px;
    color: var(--theme-color-white);
}
.banner-section-two-luxury-2-1 .booking-form-column .inner-column {
    bottom: -138px;
}
.banner-section-two-luxury-2-1 .booking-form-column .inner-column:before {
    background-color: var(--theme-color-white) !important;
}
.banner-section-two-luxury-2-1 .booking-form-column .inner-column .form-submit .theme-btn {
    width: 100%;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-luxury1-3 {
    position: relative;
    padding: 120px 0 277px;
    background-color: #f6f2ed;
}
.banner-section-luxury1-3 .anim-image .image-10 {
    position: absolute;
    top: 0;
    left: 0;
}
.banner-section-luxury1-3 .anim-image .image-9 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.banner-section-luxury1-3 .anim-image .image-5 {
    position: absolute;
    left: 717px;
    top: 279px;
}
.banner-section-luxury1-3 .anim-image .image-4 {
    position: absolute;
    right: 28px;
    bottom: 28px;
}
.banner-section-luxury1-3 .anim-image .image-3 {
    position: absolute;
    right: 53px;
    top: 69px;
}
.banner-section-luxury1-3 .anim-image .image-2 {
    position: absolute;
    bottom: 39px;
    left: 39px;
}
.banner-section-luxury1-3 .anim-image .image-1 {
    position: absolute;
    left: 92px;
    bottom: 538px;
}
.banner-section-luxury1-3 .checkout-form-section-two {
    margin-top: -236px;
}
.banner-section-luxury1-3 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-3 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-luxury1-3 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-luxury1-3 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-luxury1-3 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-luxury1-3 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-luxury1-3 .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-3 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-luxury1-3 .banner-slider .slick-list,
.banner-section-luxury1-3 .banner-slider .slick-track {
    height: 100%;
}
.banner-section-luxury1-3 .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-luxury1-3 .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-luxury1-3 .banner-slider .content-box {
    padding: 95px 0 277px;
    text-align: center;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-luxury1-3 .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color1);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-luxury1-3 .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-luxury1-3 .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-luxury1-3 .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-luxury1-3 .banner-slider .content-box h1 {
    color: var(--theme-color-black);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-3 .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-luxury1-3 .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-luxury1-3 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-luxury1-3 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-luxury1-3 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-luxury1-3 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.banner-section-luxury1-3 .banner-slider .image-1 {
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-section-luxury1-3 .banner-slider .image-1:after {
    background-image: var(--gradient-2);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner-section-luxury1-3 .banner-slider .image-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-3 .banner-slider .image-1 img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-3 .banner-slider .image-1 img {
        min-height: 600px;
    }
}

/*** 

====================================================================
banner section two luxury2-1
====================================================================

***/
.banner-section-hostel-2 {
    position: relative;
    padding: 0;
}
.banner-section-hostel-2:before {
    background-color: #f7f3ee;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 65%;
}
.banner-section-hostel-2 .shape {
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner-section-hostel-2 .shape:before {
    background-image: url(../images/icons/shape-58.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 402px;
    height: 507px;
}
.banner-section-hostel-2 .shape:after {
    background-image: url(../images/icons/shape-59.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 796px;
    height: 844px;
    opacity: 0.1;
}
.banner-section-hostel-2 .content-column {
    z-index: 2;
}
.banner-section-hostel-2 .content-column .inner-column {
    text-align: center;
    padding: 117px 0 0 0;
}
.banner-section-hostel-2 .content-column .inner-column .text {
    margin: 37px 0;
}
.banner-section-hostel-2 .content-column .btn-box {
    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;
    margin-bottom: 50px;
}
.banner-section-hostel-2 .content-column .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-section-hostel-2 .content-column .btn-box .video-box .play-btn {
    margin-left: 30px;
}
.banner-section-hostel-2 .content-column .btn-box .video-box .play-btn i {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-hostel-2 .content-column .btn-box .video-box .video-text {
    margin-left: 25px;
    color: var(--theme-color-black);
}
.banner-section-hostel-2 .banner-image {
    border-radius: 30px;
    overflow: hidden;
    height: 640px;
}
.banner-section-hostel-2 .banner-image img {
    border-radius: 30px;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-luxury1-4 {
    position: relative;
    padding: 120px 0 120px;
    background-color: #f6f2ed;
}
.banner-section-luxury1-4:before {
    background-image: url(../images/icons/shape-60.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 682px;
    height: 447px;
}
.banner-section-luxury1-4.style-apartment {
    overflow: hidden;
}
.banner-section-luxury1-4.style-apartment:before {
    background-image: url(../images/banner/banner1-4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    bottom: -80px;
    right: -100px;
    left: auto;
    top: auto;
    width: 1199px;
    height: 884px;
}
.banner-section-luxury1-4 .outer-box {
    max-width: 1670px;
    margin: 0 auto;
}
.banner-section-luxury1-4 .outer-box .image-column .inner-column .image {
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-luxury1-4 .outer-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-luxury1-4 .outer-box .image-column .inner-column .image-2 {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-luxury1-4 .outer-box .image-column .inner-column .image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-luxury1-4 .anim-image .image-10 {
    position: absolute;
    top: 0;
    left: 0;
}
.banner-section-luxury1-4 .anim-image .image-9 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.banner-section-luxury1-4 .anim-image .image-5 {
    position: absolute;
    left: 717px;
    top: 279px;
}
.banner-section-luxury1-4 .anim-image .image-4 {
    position: absolute;
    right: 28px;
    bottom: 28px;
}
.banner-section-luxury1-4 .anim-image .image-3 {
    position: absolute;
    right: 53px;
    top: 69px;
}
.banner-section-luxury1-4 .anim-image .image-2 {
    position: absolute;
    bottom: 39px;
    left: 39px;
}
.banner-section-luxury1-4 .anim-image .image-1 {
    position: absolute;
    left: 92px;
    bottom: 538px;
}
.banner-section-luxury1-4 .checkout-form-section-two {
    margin-top: -236px;
}
.banner-section-luxury1-4 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-4 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-luxury1-4 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-luxury1-4 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-luxury1-4 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-luxury1-4 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-luxury1-4 .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-4 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-luxury1-4 .banner-slider .slick-list,
.banner-section-luxury1-4 .banner-slider .slick-track {
    height: 100%;
}
.banner-section-luxury1-4 .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-luxury1-4 .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-luxury1-4 .banner-slider .content-box {
    padding: 95px 0 277px;
    width: 100%;
    margin-right: 50px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-luxury1-4 .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color1);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-luxury1-4 .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-luxury1-4 .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-luxury1-4 .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-luxury1-4 .banner-slider .content-box h1 {
    color: var(--theme-color-black);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-4 .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-luxury1-4 .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-luxury1-4 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-luxury1-4 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-luxury1-4 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-luxury1-4 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.banner-section-luxury1-4 .banner-slider .image-1 {
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-section-luxury1-4 .banner-slider .image-1:after {
    background-image: var(--gradient-2);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner-section-luxury1-4 .banner-slider .image-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury1-4 .banner-slider .image-1 img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury1-4 .banner-slider .image-1 img {
        min-height: 600px;
    }
}

/*** 

====================================================================
  Banner Section Six
====================================================================

***/
.style-F5 {
    background-color: #f5f2ec !important;
}

.banner-section-spa {
    background-color: #f5f2ec;
    position: relative;
}
.banner-section-spa:before {
    background-image: url(../images/icons/bg-shape6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
}
@media (max-width: 767.98px) {
    .banner-section-spa {
        text-align: center;
    }
}
.banner-section-spa .anim-icons .image-1 {
    position: absolute;
    right: 80px;
    top: 80px;
    z-index: 1;
    pointer-events: none;
}
.banner-section-spa .anim-icons .image-2 {
    position: absolute;
    left: 100px;
    top: 75px;
    z-index: 1;
    pointer-events: none;
}
.banner-section-spa .anim-icons .image-3 {
    position: absolute;
    right: 80px;
    bottom: 100px;
    z-index: 1;
    pointer-events: none;
}
.banner-section-spa .content-column {
    padding: 100px 0 200px 100px;
    min-width: calc(50% - 173px);
    left: 0;
    position: relative;
}
.banner-section-spa .content-column .inner-column {
    position: relative;
    z-index: 3;
    padding: 15px 15px 15px 0;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-spa .content-column .inner-column {
        padding: 0;
    }
}
.banner-section-spa .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 130px;
    line-height: 130px;
    letter-spacing: 0;
    margin-bottom: 55px;
}
.banner-section-spa .content-column .inner-column .title.two {
    margin-left: 170px;
}
.banner-section-spa .content-column .inner-column .text-one {
    max-width: 300px;
    margin-bottom: 0;
    position: absolute;
    top: 55px;
    right: 0;
}
.banner-section-spa .content-column .inner-column .text-two {
    max-width: 220px;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
.banner-section-spa .content-column .inner-column .play-btn {
    position: absolute;
    top: 240px;
    left: 0;
}
.banner-section-spa .content-column .inner-column .play-btn i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-color: var(--theme-color-light);
    color: var(--theme-color-dark);
}
.banner-section-spa .content-column .btn-box .shape-ine:before {
    background-image: url(../images/icons/shape-63.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 29%;
    bottom: -70px;
    width: 107px;
    height: 109px;
}
.banner-section-spa .content-column .btn-box .theme-btn {
    position: absolute;
    right: 29%;
    bottom: 78px;
}

/*** 

====================================================================
  Banner Section Six
====================================================================

***/
.banner-section-city {
    background-color: #faf5f0;
    position: relative;
    padding: 215px 0 116px;
}
@media (max-width: 767.98px) {
    .banner-section-city {
        text-align: center;
    }
}
.banner-section-city:before {
    background-image: url(../images/icons/bg-shape9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 53px;
    z-index: 1;
}
.banner-section-city .outer-box {
    max-width: 1500px;
    margin: 0 auto;
}
.banner-section-city .content-column {
    position: relative;
}
.banner-section-city .content-column .inner-column {
    position: relative;
    text-align: right;
    z-index: 3;
}
.banner-section-city .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 128px;
    line-height: 128px;
    letter-spacing: 0;
    margin-bottom: 25px;
}
.banner-section-city .content-column .inner-column .text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
}
.banner-section-city .content-column .btn-box {
    margin-top: 43px;
    z-index: 1;
}
.banner-section-city .images-column .inner-column .image {
    margin-left: 47px;
}
.banner-section-city .images-column .inner-column .image-2 {
    margin-left: 47px;
    position: relative;
    top: -60px;
}

/*** 

====================================================================
  Banner Section Beach
====================================================================

***/
.banner-section-city3 {
    position: relative;
    padding: 184px 0 200px;
}
.banner-section-city3 .outer-box {
    padding: 0 15px;
    max-width: 1610px;
    margin: 0 auto;
}
.banner-section-city3 .content-column .inner-column {
    text-align: center;
}
.banner-section-city3 .content-column .inner-column .title-style {
    color: rgba(194, 194, 194, 0.6980392157);
    font-size: 220px;
    line-height: 1;
    font-family: var(--text-font3);
    margin-bottom: 0;
}
.banner-section-city3 .content-column .inner-column .title {
    font-size: 400px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: -180px;
}
.banner-section-city3 .content-column .inner-column .text {
    max-width: 280px;
    position: absolute;
    bottom: 58px;
    left: 58px;
    text-align: left;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-city4 {
    position: relative;
    padding: 293px 0 376px;
    overflow: hidden;
}
.banner-section-city4 .bg-image:before {
    position: absolute;
    content: "";
    background-color: var(--theme-color-black);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    opacity: 0.5;
}
.banner-section-city4 .content-column {
    position: relative;
    text-align: center;
}
.banner-section-city4 .content-column .inner-column {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
}
.banner-section-city4 .content-column .inner-column .title {
    position: relative;
    color: #b0b4b8;
    font-size: 280px;
    font-weight: 700;
    font-family: var(--text-font4);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-style: italic;
}
@media (max-width: 1749.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-city4 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-city4 .checkout-form-section .checkout-form .checkout-field {
    padding: 14px 10px 11px;
}
.banner-section-city4 .checkout-form-section {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 200px;
}
@media (max-width: 991.98px) {
    .banner-section-city4 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-city4 .checkout-form-section .outer-box {
    max-width: 1100px;
    margin: 0 auto;
}
.banner-section-city4 .checkout-form-section .checkout-form {
    background-color: rgba(189, 186, 186, 0.9490196078);
    padding: 30px 25px;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
}
.banner-section-city4 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
    color: var(--theme-color-light);
}
.banner-section-city4 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-city4 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-light);
    font-size: 14px;
}
.banner-section-city4 .checkout-form-section .checkout-form .theme-btn {
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 56px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-city4 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-city4 .checkout-form-section .checkout-form .checkout-field .chk-field i {
    color: var(--theme-color1);
}

/*** 

====================================================================
  Banner Section Luxury
====================================================================

***/
.banner-section-lake {
    position: relative;
    padding: 231px 0 187px;
}
@media (max-width: 991.98px) {
    .banner-section-lake {
        padding: 200px 0 134px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-lake {
        padding: 180px 0 150px;
        text-align: center;
    }
}
.banner-section-lake .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(var(--theme-color-black-rgb), 0.8);
    z-index: 1;
}
.banner-section-lake .content-column {
    padding: 0 15px;
}
@media (max-width: 575.98px) {
    .banner-section-lake .content-column {
        padding: 0;
    }
}
.banner-section-lake .inner-column {
    position: relative;
    margin: 0 auto;
    max-width: 984px;
    padding: 125px 70px 89px;
    text-align: center;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-lake .inner-column {
        padding: 52px 50px 80px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-lake .inner-column {
        padding: 52px 15px 80px;
    }
}
.banner-section-lake .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-family: "Gilda Display", serif;
    font-size: 170px;
    line-height: 170px;
    margin-bottom: 11px;
}
@media (max-width: 1199.98px) {
    .banner-section-lake .inner-column .title {
        font-size: 60px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-lake .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-lake .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-lake .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-lake .inner-column .title-two {
    color: var(--theme-color-white);
}

/*** 

====================================================================
  Banner Section Golf
====================================================================

***/
.banner-section-lake2 {
    position: relative;
    padding: 0;
    margin: 0 25px;
    border-radius: 30px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .banner-section-lake2 {
        padding: 90px 0;
        text-align: center;
    }
}
.banner-section-lake2 .outer-box {
    position: relative;
    margin: 0 120px;
    height: 100%;
    padding: 30px 0 530px;
}
.banner-section-lake2 .info-text {
    color: rgba(255, 255, 255, 0.4705882353);
    font-size: 170px;
    font-weight: 400;
    font-family: var(--title-font2);
    line-height: 1;
    position: absolute;
    text-align: center;
    margin-bottom: 0;
    bottom: 0;
    left: 250px;
}
.banner-section-lake2 .bg-image img {
    width: 100%;
    -webkit-mask-image: url(../images/icons/shape-64.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}
.banner-section-lake2 .anim-icons .image-1 {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .banner-section-lake2 .content-column {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}
@media (max-width: 767.98px) {
    .banner-section-lake2 .content-column {
        margin-bottom: 70px;
    }
}
.banner-section-lake2 .content-column .inner-column {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    margin-left: 60px;
    padding: 0;
}
@media (max-width: 1199.98px) {
    .banner-section-lake2 .content-column .inner-column {
        padding: 0;
    }
}
.banner-section-lake2 .content-column .inner-column .title {
    position: relative;
    font-size: 72px;
    line-height: 84px;
    margin-bottom: 29px;
    margin-right: -25px;
}
@media (max-width: 1199.98px) {
    .banner-section-lake2 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-lake2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-lake2 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-lake2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-lake2 .content-column .inner-column .text {
    font-size: 18px;
    line-height: 30px;
    margin-right: 70px;
}
@media (max-width: 767.98px) {
    .banner-section-lake2 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-lake2 .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    margin-top: 40px;
}
@media (max-width: 767.98px) {
    .banner-section-lake2 .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-lake2 .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-lake2 .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
    background-color: var(--theme-color6);
    border-color: var(--theme-color6);
}
.banner-section-lake2 .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
@media (max-width: 575.98px) {
    .banner-section-lake2 .btn-box .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-lake2 .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color6);
    color: var(--theme-color-white);
    border: none;
}
.banner-section-lake2 .btn-box .video-box .video-text {
    color: var(--theme-color-black);
    font-weight: 600;
    margin-left: 15px;
}
.banner-section-lake2 .booking-form-column {
    position: absolute;
    right: 0;
    bottom: 50px;
    top: auto;
}
.banner-section-lake2 .booking-form-column .inner-column .sec-title:before {
    background-color: var(--theme-color6);
}
.banner-section-lake2 .booking-form-column .inner-column .bk-form .form-submit button {
    background-color: var(--theme-color6);
}
.banner-section-lake2 .booking-form-column .inner-column .bk-form .form-submit button:before {
    background-color: var(--theme-color-dark);
}
.banner-section-lake2 .booking-form-column .inner-column .bk-form .frm-field i {
    color: var(--theme-color6);
}
.banner-section-lake2 .content-column .offer-text .star-rating {
    color: var(--theme-color6);
}
.banner-section-lake2 .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color6);
    border-color: var(--theme-color6);
}
.banner-section-lake2 .booking-form-column.bg-light-style .inner-column::before {
    background-color: var(--theme-color-light);
}

/*** 

====================================================================
    Banner Section Four
====================================================================

***/
.banner-section-modern3 {
    background-color: #f7f3ee;
    position: relative;
    overflow: hidden;
    padding: 150px 0 0;
}
@media (max-width: 1399.98px) {
    .banner-section-modern3 {
        padding-bottom: 0;
    }
}
.banner-section-modern3:before {
    background-image: url(../images/icons/bg-shape9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 53px;
}
.banner-section-modern3:after {
    background-image: url(../images/icons/shape-67.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 682px;
    height: 447px;
}
.banner-section-modern3 .anim-icons {
    max-width: 100%;
    pointer-events: none;
}
.banner-section-modern3 .anim-icons .img-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-section-modern3 .anim-icons .img-2 {
    position: absolute;
    top: 175px;
    right: 25px;
}
.banner-section-modern3 .anim-icons .img-3 {
    position: absolute;
    bottom: 20px;
    right: 0;
}
.banner-section-modern3 .slide-item {
    position: relative;
    min-height: 836px;
}
@media (max-width: 1399.98px) {
    .banner-section-modern3 .slide-item {
        min-height: 720px;
        padding: 30px 0 0;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-modern3 .slide-item {
        min-height: 620px;
        padding: 30px 0 0;
    }
}
@media (max-width: 991.98px) {
    .banner-section-modern3 .slide-item {
        padding: 0;
        min-height: auto;
    }
}
.banner-section-modern3 .content-box {
    position: relative;
}
.banner-section-modern3 .content-box .title {
    color: var(--headings-color);
    font-size: 180px;
    font-weight: 400;
    line-height: 84px;
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
    .banner-section-modern3 .content-box .title {
        font-size: 100px;
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-modern3 .content-box .title {
        font-size: 80px;
    }
}
.banner-section-modern3 .content-box .title-two {
    color: var(--theme-color1);
    font-family: var(--text-font3);
    font-size: 140px;
    font-weight: 300;
    line-height: 155px;
    margin-left: 50px;
    margin-bottom: 0;
    letter-spacing: 7px;
}
@media (max-width: 1199.98px) {
    .banner-section-modern3 .content-box .title-two {
        font-size: 70px;
    }
}
.banner-section-modern3 .content-box .title-three {
    margin-top: 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--title-font);
    color: var(--headings-color);
    display: block;
    position: relative;
    padding-left: 130px;
}
@media (max-width: 1199.98px) {
    .banner-section-modern3 .content-box .title-three {
        margin-top: 0;
    }
}
.banner-section-modern3 .content-box .title-three:before {
    content: "";
    position: absolute;
    width: 127px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3019607843);
    left: 0;
    top: calc(50% - 0.5px);
}
.banner-section-modern3 .content-box .play-now {
    margin-top: 40px;
    display: inline-block;
    margin-left: 180px;
}
@media (max-width: 575.98px) {
    .banner-section-modern3 .content-box .play-now {
        margin-left: 30px;
    }
}
.banner-section-modern3 .content-box .play-now i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border: 1px solid var(--theme-color-dark);
    color: var(--theme-color-dark);
    background-color: transparent;
    font-size: 20px;
}
.banner-section-modern3 .content-box .play-now i:hover {
    border: 1px solid var(--theme-color1);
    color: var(--theme-color1);
}
.banner-section-modern3 .content-box .text {
    margin-top: 30px;
    margin-left: 180px;
    margin-bottom: 0;
}
@media (max-width: 1199.98px) {
    .banner-section-modern3 .content-box .text br {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .banner-section-modern3 .content-box .text {
        margin-left: 30px;
    }
}
.banner-section-modern3 .image-column {
    position: relative;
}
.banner-section-modern3 .image-column .image-box {
    width: 607px;
    height: 633px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.banner-section-modern3 .image-column .image-box:before {
    background-image: url(../images/icons/bg-shape9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 53px;
}
.banner-section-modern3 .image-column .image-box video {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.banner-section-modern3 .image-column .shape-box img {
    position: absolute;
    z-index: 1;
}
.banner-section-modern3 .image-column .shape-box .img-1 {
    top: -80px;
    left: 60px;
}
.banner-section-modern3 .image-column .shape-box .img-2 {
    top: -80px;
    right: -55px;
    -webkit-transform: rotate(21deg);
    transform: rotate(21deg);
}
.banner-section-modern3 .image-column .shape-box .img-3 {
    bottom: -80px;
    right: -55px;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
}
.banner-section-modern3 .image-column .shape-box .img-4 {
    bottom: -80px;
    left: 80px;
    -webkit-transform: rotate(-3deg);
    transform: rotate(21deg);
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-luxury2-2 {
    position: relative;
    padding: 0 120px 120px;
}
.banner-section-luxury2-2 .bg-image1 {
    height: 780px;
    right: 0;
    width: 986px;
    left: auto;
}
.banner-section-luxury2-2 .bg-image1 img {
    -webkit-mask-image: url(../images/icons/shape-69.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.banner-section-luxury2-2 .anim-icons {
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-section-luxury2-2 .outer-box {
    max-width: 1670px;
    margin: 0 auto;
}
.banner-section-luxury2-2 .outer-box .image-column .inner-column .image {
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-luxury2-2 .outer-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-luxury2-2 .outer-box .image-column .inner-column .image-2 {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-luxury2-2 .outer-box .image-column .inner-column .image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-luxury2-2 .checkout-form-section {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
}
.banner-section-luxury2-2 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury2-2 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-luxury2-2 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-luxury2-2 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-luxury2-2 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-luxury2-2 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-luxury2-2 .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury2-2 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-luxury2-2 .banner-slider .slick-list,
.banner-section-luxury2-2 .banner-slider .slick-track {
    height: 100%;
}
.banner-section-luxury2-2 .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-luxury2-2 .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-luxury2-2 .banner-slider .banner-slide .outer-box .content-column .inner-column {
    margin-left: 45px;
}
.banner-section-luxury2-2 .banner-slider .content-box {
    padding: 95px 0 70px;
    width: 100%;
    margin-right: 50px;
}
.banner-section-luxury2-2 .banner-slider .content-box .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.banner-section-luxury2-2 .banner-slider .content-box .info-box .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    padding: 10px;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: rgba(0, 0, 0, 0.0705882353);
    margin-right: 50px;
}
.banner-section-luxury2-2 .banner-slider .content-box .info-box .info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}
.banner-section-luxury2-2 .banner-slider .content-box .info-box .info span {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--title-font2);
}
.banner-section-luxury2-2 .banner-slider .content-box .info-box .text {
    margin-top: 15px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-luxury2-2 .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color1);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
.banner-section-luxury2-2 .banner-slider .content-box .star-rating span {
    color: var(--theme-color-black);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--text-font4);
}
@media (max-width: 575.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-luxury2-2 .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-luxury2-2 .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-luxury2-2 .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-luxury2-2 .banner-slider .content-box h1 {
    color: var(--theme-color-black);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-luxury2-2 .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-luxury2-2 .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-luxury2-2 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-luxury2-2 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-luxury2-2 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-luxury2-2 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-nature {
    position: relative;
    padding: 120px 0 160px;
    margin: 0 20px;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-nature .bg-image:before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.banner-section-nature .outer-box {
    max-width: 1670px;
    margin: 0 auto;
}
.banner-section-nature .checkout-form-section-two {
    margin-top: -236px;
}
.banner-section-nature .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-nature .slick-dots {
        bottom: 40px;
    }
}
.banner-section-nature .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-nature .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-nature .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-nature .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-nature .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-nature .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-nature .banner-slider .slick-list,
.banner-section-nature .banner-slider .slick-track {
    height: 100%;
}
.banner-section-nature .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-nature .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-nature .banner-slider .content-box {
    padding: 95px 0 277px;
    width: 100%;
    margin-right: 50px;
}
@media (max-width: 1199.98px) {
    .banner-section-nature .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-nature .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-nature .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color6);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 575.98px) {
    .banner-section-nature .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-nature .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-nature .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-nature .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-nature .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-nature .banner-slider .content-box .text {
    color: var(--theme-color-light);
}
.banner-section-nature .banner-slider .content-box h1 {
    color: var(--theme-color-light);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-nature .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-nature .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-nature .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-nature .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-nature .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-nature .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-nature .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-nature .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.banner-section-nature .banner-slider .image-1 {
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-section-nature .banner-slider .image-1:after {
    background-image: var(--gradient-2);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner-section-nature .banner-slider .image-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-nature .banner-slider .image-1 img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature .banner-slider .image-1 img {
        min-height: 600px;
    }
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-lodge {
    position: relative;
    padding: 0 120px 120px;
}
.banner-section-lodge:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 596px;
    height: 328px;
    background-image: url(../images/icons/shape-72.png);
    background-repeat: no-repeat;
}
.banner-section-lodge .checkout-form-section {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.0509803922);
}
.banner-section-lodge .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-lodge .slick-dots {
        bottom: 40px;
    }
}
.banner-section-lodge .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-lodge .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-lodge .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-lodge .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-lodge .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-lodge .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-lodge .banner-slider .slick-list,
.banner-section-lodge .banner-slider .slick-track {
    height: 100%;
}
.banner-section-lodge .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-lodge .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-lodge .banner-slider .banner-slide .outer-box .content-column .inner-column {
    margin-left: 45px;
}
.banner-section-lodge .banner-slider .info-box {
    margin-left: 50px;
    margin-top: 90px;
}
.banner-section-lodge .banner-slider .info-box .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.0705882353);
}
.banner-section-lodge .banner-slider .info-box .info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}
.banner-section-lodge .banner-slider .info-box .info h4 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--title-font2);
    margin-bottom: 0;
}
.banner-section-lodge .banner-slider .info-box .text {
    margin-top: 30px;
}
.banner-section-lodge .banner-slider .content-box {
    padding: 133px 0 10px;
    width: 100%;
    margin-right: 50px;
}
@media (max-width: 1199.98px) {
    .banner-section-lodge .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-lodge .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-lodge .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color6);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
.banner-section-lodge .banner-slider .content-box .star-rating .rating-text {
    color: #7a7a7a;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 5px;
}
@media (max-width: 575.98px) {
    .banner-section-lodge .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-lodge .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-lodge .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-lodge .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-lodge .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-lodge .banner-slider .content-box h1 {
    color: var(--theme-color-black);
    font-size: 72px;
    font-weight: 400;
    line-height: 100px;
    margin-bottom: 42px;
}
@media (max-width: 991.98px) {
    .banner-section-lodge .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-lodge .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-lodge .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-lodge .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-lodge .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-lodge .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-lodge .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-lodge .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*** 

====================================================================
  Banner Section Beach
====================================================================

***/
.banner-section-modern4 {
    position: relative;
    padding: 410px 0 420px;
}
.banner-section-modern4 .bg-image {
    z-index: 1;
    top: auto;
    bottom: 0;
    height: 97%;
}
.banner-section-modern4 .outer-box {
    padding: 0 15px;
    max-width: 1610px;
    margin: 0 auto;
}
.banner-section-modern4 .content-column .inner-column {
    text-align: center;
}
.banner-section-modern4 .content-column .inner-column .title {
    font-size: 400px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: -180px;
}

.banner-section-hiking {
    position: relative;
    padding: 0 0 120px;
}
.banner-section-hiking .banner-slider {
    position: relative;
    min-height: 885px;
    height: 100vh;
}
@media (max-width: 1199.98px) {
    .banner-section-hiking .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-hiking .banner-slider .slick-list,
.banner-section-hiking .banner-slider .slick-track {
    height: 100%;
}
.banner-section-hiking .banner-slider .content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.banner-section-hiking .banner-slider .content-box .sub-title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 60px;
    margin-bottom: 0;
    display: block;
    margin-top: 0;
}
@media (max-width: 575.98px) {
    .banner-section-hiking .banner-slider .content-box .sub-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-hiking .banner-slider .content-box h1 {
    color: var(--theme-color-white);
    font-family: "Montserrat", Sans-serif;
    text-transform: uppercase;
    font-size: 300px;
    font-weight: 600;
    line-height: 200px;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}
@media (max-width: 767.98px) {
    .banner-section-hiking .banner-slider .content-box h1 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-hiking .banner-slider .content-box h1 {
        font-size: 30px;
    }
}
.banner-section-hiking .outer-box {
    position: relative;
    padding-top: 0;
}
.banner-section-hiking .outer-box .image {
    position: relative;
}
.banner-section-hiking .outer-box .image:before {
    background-image: url("../images/icons/bg-shape6.png");
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 72px;
    width: 100%;
    z-index: 1;
}
.banner-section-hiking .outer-box .image-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
}
.banner-section-hiking .outer-box .image-2 img {
    width: 100%;
    height: 100%;
}
.banner-section-hiking .outer-box .btn-box {
    position: absolute;
    bottom: 120px;
    right: 85px;
}
.banner-section-hiking .outer-box .btn-box .text {
    color: var(--theme-color-white);
    font-family: var(--text-font4);
    margin-bottom: 30px;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-nature2 {
    background-color: #faf5f0;
    position: relative;
}
.banner-section-nature2 .banner-slider .banner-slide .inner-slide {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-nature2 .banner-slider .banner-slide .inner-slide {
        padding: 0 20px;
    }
}
.banner-section-nature2 .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.banner-section-nature2 .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 182px 15px 80px;
    max-width: 1750px;
    margin: 0 auto;
}
.banner-section-nature2 .outer-box .info-text {
    color: transparent;
    display: inline-block;
    font-size: 160px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 15px;
    text-transform: uppercase;
    position: absolute;
    top: calc(50% + 1px);
    right: 15px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--theme-color-white-rgb), 0.9);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
@media (max-width: 1699.98px) {
    .banner-section-nature2 .outer-box .info-text {
        right: -100px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-nature2 .outer-box .info-text {
        right: -150px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-nature2 .outer-box .info-text {
        right: -200px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-nature2 .outer-box .info-text {
        font-size: 120px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature2 .outer-box .info-text {
        display: none;
    }
}
.banner-section-nature2 .content-column {
    padding: 324px 0 180px;
    position: relative;
    bottom: -178px;
    left: 436px;
}
@media (max-width: 991.98px) {
    .banner-section-nature2 .content-column {
        padding: 224px 0 61px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-nature2 .content-column {
        padding: 164px 0 61px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature2 .content-column {
        padding: 60px 0 61px;
    }
}
.banner-section-nature2 .content-column .offer-text {
    color: var(--theme-color-light);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-family: var(--text-font);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}
.banner-section-nature2 .content-column .offer-text span {
    display: inline-block;
    font-size: 16px;
    color: var(--theme-color-light);
    background-color: var(--theme-color6);
    border-radius: 30px;
    padding: 11px 18px;
    margin-right: 10px;
    letter-spacing: 1px;
}
@media (max-width: 991.98px) {
    .banner-section-nature2 .content-column .offer-text span {
        font-size: 14px;
        padding: 2px 7px;
    }
}
.banner-section-nature2 .content-column .inner-column {
    background-color: #222222;
    border-radius: 0;
    margin-left: 0;
    position: relative;
    z-index: 3;
    padding: 61px 40px 60px 40px;
}
@media (max-width: 767.98px) {
    .banner-section-nature2 .content-column .inner-column {
        margin-left: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature2 .content-column .inner-column {
        padding: 61px 15px 60px;
    }
}
.banner-section-nature2 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 65px;
    line-height: 80px;
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-left: 10px;
}
@media (max-width: 1199.98px) {
    .banner-section-nature2 .content-column .inner-column .title {
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-nature2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-nature2 .content-column .inner-column .title {
        font-size: 40px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-nature2 .content-column .inner-column .title {
        font-size: 36px;
    }
}
.banner-section-nature2 .content-column .inner-column .text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-nature2 .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-nature2 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-nature2 .content-column .btn-box {
    margin-top: 35px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.banner-section-nature2 .content-column .btn-box .theme-btn {
    font-size: 14px;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 11.5px 34.5px;
    background-color: transparent;
}
.banner-section-nature2 .slick-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    top: calc(50% - 95px);
}
.banner-section-nature2 .slick-slider .slick-arrow {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--theme-color-white);
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(50% - 125px);
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 767.98px) {
    .banner-section-nature2 .slick-slider .slick-arrow {
        display: none !important;
    }
}
.banner-section-nature2 .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-nature2 .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.banner-section-nature2 .slick-slider .slick-arrow:before {
    color: var(--theme-color-white);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section-nature2 .slick-slider .slick-arrow.slick-prev {
    left: 45px;
    right: auto;
}
.banner-section-nature2 .slick-slider .slick-arrow.slick-prev:before {
    content: "\f060";
}
.banner-section-nature2 .slick-slider .slick-arrow.slick-next {
    right: 45px;
}
.banner-section-nature2 .slick-slider .slick-arrow.slick-next:before {
    content: "\f061";
}

/***

====================================================================
 banner-section-hiking-l2
====================================================================

***/
.banner-section-hiking-l2 {
    position: relative;
}
.banner-section-hiking-l2 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-hiking-l2 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-hiking-l2 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-hiking-l2 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-hiking-l2 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-hiking-l2 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-hiking-l2 .banner-slider {
    position: relative;
    min-height: 900px;
    height: 100vh;
}
@media (max-width: 1199.98px) {
    .banner-section-hiking-l2 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-hiking-l2 .banner-slider .content-box {
    position: absolute;
    left: 100px;
    bottom: 100px;
}
.banner-section-hiking-l2 .banner-slider .content-box .sub-title {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding: 10px 30px 10px 30px;
    background-color: rgba(255, 255, 255, 0.1019607843);
    border-radius: 40px 40px 40px 40px;
    letter-spacing: 4px;
}
.banner-section-hiking-l2 .banner-slider .content-box .text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 37px;
}
.banner-section-hiking-l2 .banner-slider .content-box .btn {
    border-radius: 48px;
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 {
    position: relative;
    height: 100%;
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 .outer-box {
    height: 100%;
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 .outer-box .image:before {
    position: absolute;
    content: "";
    --background-overlay: "";
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0.7098039216)),
        to(rgba(0, 0, 0, 0.031372549))
    );
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7098039216) 0%, rgba(0, 0, 0, 0.031372549) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 .image {
    height: 100%;
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 .image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-hiking-l2 .banner-slider .banner-slide-v2 .image img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-hiking-l2 .banner-slider .banner-slide-v2 .image img {
        min-height: 600px;
    }
}
.banner-section-hiking-l2 .banner-slider .banner-slide-v2 .content-box .sub-title {
    font-family: var(--text-font2);
}
.banner-section-hiking-l2 .banner-slider .content-box {
    z-index: 2;
}
.banner-section-hiking-l2 .banner-slider .content-box .sub-title {
    position: relative;
    text-transform: uppercase;
    color: var(--theme-color-white);
    margin-bottom: 25px;
    display: inline-block;
    margin-top: 70px;
}
@media (max-width: 575.98px) {
    .banner-section-hiking-l2 .banner-slider .content-box .sub-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-hiking-l2 .banner-slider .content-box .sub-title::before {
    content: "";
    position: absolute;
    top: -71px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 40px;
    background-image: url(../images/resource/title-image.html);
    z-index: 99;
}
.banner-section-hiking-l2 .banner-slider .content-box h1 {
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
    .banner-section-hiking-l2 .banner-slider .content-box h1 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-hiking-l2 .banner-slider .content-box h1 {
        font-size: 30px;
    }
}
.banner-section-hiking-l2 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 48px;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-hiking-l2 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-hiking-l2 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-hiking-l2 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*** 

====================================================================
  Banner Section Beach
====================================================================

***/
.banner-section-cultural {
    position: relative;
    padding: 258px 0 230px;
}
.banner-section-cultural .bg-image:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 59px;
    background-image: url(../images/icons/bg-shape10.png);
    background-repeat: no-repeat;
    z-index: 1;
}
.banner-section-cultural .outer-box {
    padding: 0 15px;
    max-width: 1610px;
    margin: 0 auto;
}
.banner-section-cultural .content-column .inner-column {
    text-align: center;
}
.banner-section-cultural .content-column .inner-column .title {
    font-size: 128px;
    line-height: 130px;
    max-width: 890px;
    margin: 0 auto;
}
.banner-section-cultural .checkout-form-section {
    position: relative;
    margin-top: 50px;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-ocean-h01 {
    position: relative;
    background-color: #eee6dd;
    padding-top: 102px;
}
.banner-section-ocean-h01 .anim-icons .image-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}
.banner-section-ocean-h01 .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .outer-box {
        display: block;
    }
}
.banner-section-ocean-h01 .content-column {
    position: relative;
    left: 0;
    padding: 236px 122px 186px 20px;
    min-width: calc(50% + 46px);
}
@media (max-width: 1199.98px) {
    .banner-section-ocean-h01 .content-column {
        min-width: calc(50% + 50px);
        padding: 175px 50px 285px 20px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .content-column {
        width: 100%;
        padding: 100px 15px 150px;
    }
}
.banner-section-ocean-h01 .content-column .subtitle-box {
    font-family: var(--title-font2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
@media (max-width: 575.98px) {
    .banner-section-ocean-h01 .content-column .subtitle-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ocean-h01 .content-column .subtitle-box span {
    background-color: var(--theme-color1);
    border-radius: 50px;
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 28px 7px;
    margin-right: 30px;
    text-transform: uppercase;
}
@media (max-width: 575.98px) {
    .banner-section-ocean-h01 .content-column .subtitle-box span {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner-section-ocean-h01 .content-column .subtitle-box .sub-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.banner-section-ocean-h01 .content-column .inner-column {
    position: relative;
    z-index: 3;
    padding: 15px 15px 15px 0;
    max-width: 621px;
    margin-left: 130px;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-ocean-h01 .content-column .inner-column {
        padding: 0;
        max-width: 495px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .content-column .inner-column {
        text-align: center;
        margin: 0 auto;
    }
}
.banner-section-ocean-h01 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 74px;
    font-family: var(--title-font2);
    line-height: 97px;
    letter-spacing: 0;
    margin-bottom: 29px;
}
@media (max-width: 1749.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-ocean-h01 .content-column .inner-column .text {
    color: var(--text-color);
    font-family: var(--text-font4);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean-h01 .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-ocean-h01 .content-column .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ocean-h01 .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ocean-h01 .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}
.banner-section-ocean-h01 .images-column {
    width: 100%;
    position: relative;
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .images-column {
        display: none;
    }
}
.banner-section-ocean-h01 .images-column .inner-column {
    height: 100%;
    width: 100%;
    position: relative;
}
.banner-section-ocean-h01 .images-column .inner-column .image-2 {
    position: absolute;
    top: 200px;
    left: -168px;
    border-radius: 200px;
    border: 6px solid #fff;
}
.banner-section-ocean-h01 .images-column .inner-column .image-2 img {
    border-radius: 200px;
    width: 330px;
}
.banner-section-ocean-h01 .images-column .inner-column .bg-image {
    position: absolute;
}
.banner-section-ocean-h01 .images-column .inner-column .bg-image::before {
    background-color: rgba(var(--theme-color-black-rgb), 0.18);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-section-ocean-h01 .checkout-form-section {
    position: absolute;
    bottom: -70px;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-ocean-h01 .checkout-form-section .checkout-form {
    padding: 30px 25px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
}
.banner-section-ocean-h01 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
}
.banner-section-ocean-h01 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-ocean-h01 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
    font-size: 14px;
}
.banner-section-ocean-h01 .checkout-form-section .checkout-form .theme-btn {
    background-color: var(--theme-color-dark2);
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 50px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-ocean-h01 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-ocean-h01 .checkout-form-section .checkout-form .theme-btn:before {
    background-color: var(--theme-color1);
}

/*** 

====================================================================
  Banner Section Six
====================================================================

***/
.banner-section-apartment {
    background-color: var(--theme-color-light);
    position: relative;
    padding: 197px 0 0;
}
@media (max-width: 767.98px) {
    .banner-section-apartment {
        text-align: center;
    }
}
.banner-section-apartment .outer-box {
    max-width: 1660px;
    margin: 0 auto;
}
.banner-section-apartment .content-column {
    position: relative;
}
.banner-section-apartment .content-column .inner-column {
    position: relative;
    z-index: 1;
}
.banner-section-apartment .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 120px;
    line-height: 1.083em;
    letter-spacing: 0;
    margin-bottom: 70px;
}
.banner-section-apartment .content-column .inner-column .text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-section-apartment .content-column .inner-column .text-box .image-1 {
    margin-bottom: 0;
    min-width: 307px;
    min-height: 300px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 58px;
}
.banner-section-apartment .content-column .inner-column .text-box .image-1 img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.banner-section-apartment .content-column .inner-column .text-box .inner .text {
    padding-top: 0;
    margin-bottom: 45px;
}
.banner-section-apartment .images-column .inner-column {
    height: 100%;
    margin-left: 88px;
}
.banner-section-apartment .images-column .inner-column .image-2 {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.banner-section-apartment .images-column .inner-column .image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-countryside {
    position: relative;
    background-color: #f9f8f7;
}
.banner-section-countryside .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.banner-section-countryside .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .banner-section-countryside .outer-box {
        display: block;
    }
}
.banner-section-countryside .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 50px;
}
@media (max-width: 575.98px) {
    .banner-section-countryside .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-countryside .video-box .play-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-countryside .video-box .video-text {
    font-weight: 400;
    margin-left: 15px;
}
.banner-section-countryside .content-column {
    position: relative;
    left: 0;
    padding: 105px 122px 105px 20px;
    min-width: calc(50% + 45px);
}
.banner-section-countryside .content-column .subtitle-box {
    font-family: var(--title-font2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
@media (max-width: 575.98px) {
    .banner-section-countryside .content-column .subtitle-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-countryside .content-column .subtitle-box span {
    background-color: var(--theme-color1);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 28px 7px;
    margin-right: 30px;
    text-transform: uppercase;
}
@media (max-width: 575.98px) {
    .banner-section-countryside .content-column .subtitle-box span {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner-section-countryside .content-column .subtitle-box .sub-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.banner-section-countryside .content-column .inner-column {
    position: relative;
    z-index: 3;
    padding: 15px 15px 15px 0;
    max-width: 790px;
    margin-left: auto;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-countryside .content-column .inner-column {
        padding: 0;
        max-width: 495px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-countryside .content-column .inner-column {
        text-align: center;
        margin: 0 auto;
    }
}
.banner-section-countryside .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 74px;
    font-family: var(--title-font2);
    line-height: 97px;
    letter-spacing: 0;
    margin-bottom: 29px;
}
@media (max-width: 1749.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-countryside .content-column .inner-column .text {
    color: var(--text-color);
    font-family: var(--text-font4);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-countryside .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-countryside .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-countryside .content-column .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-countryside .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-countryside .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}
.banner-section-countryside .content-column .gallery-block .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 35px;
}
.banner-section-countryside .content-column .gallery-block .inner-box .image {
    width: 197px;
    height: 130px;
    overflow: hidden;
    margin-right: 20px;
}
.banner-section-countryside .content-column .gallery-block .inner-box .image img {
    width: 100%;
    height: 100%;
}
.banner-section-countryside .images-column {
    width: 100%;
    position: relative;
}
@media (max-width: 991.98px) {
    .banner-section-countryside .images-column {
        display: none;
    }
}
.banner-section-countryside .images-column .inner-column {
    height: 100%;
    width: 100%;
}
.banner-section-countryside .images-column .inner-column .bg-image {
    position: absolute;
}
.banner-section-countryside .images-column .inner-column .bg-image::before {
    background-color: rgba(var(--theme-color-black-rgb), 0.18);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*** 

====================================================================
  Banner Section
====================================================================

***/
.banner-section-countryside2 {
    position: relative;
    margin: 20px 30px 0;
    background-color: #f6f8ef;
    padding: 0;
    border-radius: 30px;
}
.banner-section-countryside2:before {
    position: absolute;
    background-image: url(../images/background/banner-countrytside2-1.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
}
.banner-section-countryside2 .outer-box {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .outer-box {
        display: block;
    }
}
.banner-section-countryside2 .content-column {
    position: relative;
}
.banner-section-countryside2 .content-column .inner-column {
    padding: 218px 50px 143px 98px;
    position: relative;
    margin-left: auto;
    border-radius: 30px;
    z-index: 1;
}
.banner-section-countryside2 .content-column .inner-column h1 img {
    width: 171px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    border-radius: 50px;
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .content-column .inner-column {
        text-align: center;
        margin: 0 auto;
    }
}
.banner-section-countryside2 .content-column .inner-column .anim-icons img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.banner-section-countryside2 .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 95px;
    font-family: var(--title-font2);
    line-height: 97px;
    letter-spacing: 0;
    margin-bottom: 133px;
}
@media (max-width: 1749.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside2 .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-countryside2 .content-column .btn-box {
    margin-top: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside2 .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-countryside2 .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
    border-radius: 0;
}
.banner-section-countryside2 .content-column .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
@media (max-width: 575.98px) {
    .banner-section-countryside2 .content-column .btn-box .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-countryside2 .content-column .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-countryside2 .content-column .btn-box .video-box .video-text {
    color: var(--theme-color-black);
    font-weight: 600;
    margin-left: 15px;
}
.banner-section-countryside2 .images-column {
    padding: 0;
    width: 50%;
    height: 100%;
}
.banner-section-countryside2 .images-column .inner-column {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.banner-section-countryside2 .images-column .inner-column .bg-image {
    width: 100%;
    height: 100%;
}
.banner-section-countryside2 .images-column .inner-column .bg-image img {
    width: 100%;
    height: 100%;
}
.banner-section-countryside2 .images-column .inner-column .info-box {
    position: absolute;
    padding: 45px 36px;
    right: 0;
    bottom: 0;
}
.banner-section-countryside2 .images-column .inner-column .info-box .text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}
.banner-section-countryside2 .checkout-form-section {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 104px;
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .checkout-form-section {
        position: relative;
        bottom: 0;
    }
}
.banner-section-countryside2 .checkout-form-section .checkout-form {
    padding: 30px 25px;
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
    box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.051);
}
.banner-section-countryside2 .checkout-form-section .checkout-form .checkout-field > h6 {
    margin-bottom: 2px;
}
.banner-section-countryside2 .checkout-form-section .checkout-form .checkout-field .chk-field select,
.banner-section-countryside2 .checkout-form-section .checkout-form .checkout-field .chk-field input {
    color: var(--theme-color-black);
    font-size: 14px;
}
.banner-section-countryside2 .checkout-form-section .checkout-form .theme-btn {
    background-color: var(--theme-color-dark2);
    font-size: 14px;
    font-family: var(--text-font4);
    font-weight: 600;
    padding: 5px 56px;
    height: auto;
    width: auto;
}
@media (max-width: 991.98px) {
    .banner-section-countryside2 .checkout-form-section .checkout-form .theme-btn {
        width: 100%;
    }
}
.banner-section-countryside2 .checkout-form-section .checkout-form .theme-btn:before {
    background-color: var(--theme-color1);
}

.banner-section-hiking {
    position: relative;
    padding: 0;
}
.banner-section-hiking .content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.banner-section-hiking .content-box .sub-title {
    position: relative;
    color: var(--theme-color-white);
    font-size: 60px;
    margin-bottom: 0;
    display: block;
    margin-top: 0;
}
@media (max-width: 575.98px) {
    .banner-section-hiking .content-box .sub-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-hiking .content-box h1 {
    color: var(--theme-color-white);
    font-family: "Montserrat", Sans-serif;
    text-transform: uppercase;
    font-size: 300px;
    font-weight: 600;
    line-height: 200px;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}
@media (max-width: 767.98px) {
    .banner-section-hiking .content-box h1 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-hiking .content-box h1 {
        font-size: 30px;
    }
}
.banner-section-hiking .content-box .marquee-style-one .marquee-group .text {
    color: var(--theme-color-white);
    font-size: 200px;
    font-weight: 400;
    text-transform: none;
    line-height: 170px;
}
.banner-section-hiking .content-box .marquee-style-one .marquee-group .text:hover {
    -webkit-text-fill-color: var(--theme-color-white);
    -webkit-text-stroke: 1px var(--theme-color-white);
}
.banner-section-hiking .content-box .marquee .text.text-style2 {
    -webkit-text-fill-color: var(--theme-color-white);
    -webkit-text-stroke: 1px var(--theme-color-white);
}
.banner-section-hiking .slider-box {
    position: absolute;
    width: 605px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    top: calc(50% - 300px);
    left: calc(50% - 302.5px);
}
.banner-section-hiking .slider-box .image-1 img {
    width: 100%;
    height: 100%;
}
.banner-section-hiking .outer-box {
    position: relative;
    padding-top: 0;
}
.banner-section-hiking .outer-box .image {
    position: relative;
}
.banner-section-hiking .outer-box .image:before {
    background-image: url("../images/icons/bg-shape6.png");
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 72px;
    width: 100%;
    z-index: 1;
}
.banner-section-hiking .outer-box .image-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
}
.banner-section-hiking .outer-box .image-2 img {
    width: 100%;
    height: 100%;
}
.banner-section-hiking .outer-box .btn-box {
    position: absolute;
    bottom: 120px;
    right: 85px;
}
.banner-section-hiking .outer-box .btn-box .text {
    color: var(--theme-color-white);
    font-family: var(--text-font4);
    margin-bottom: 30px;
}

/*** 

====================================================================
banner section two luxury2-1
====================================================================

***/
.banner-section-campground {
    position: relative;
    background-color: var(--theme-color-white);
    padding: 207px 0 0 0;
}
.banner-section-campground .outer-box {
    max-width: 1720px;
    margin: 0 auto;
}
.banner-section-campground .content-column {
    z-index: 2;
}
.banner-section-campground .content-column .inner-column .text {
    margin: 37px 0;
    max-width: 769px;
}
.banner-section-campground .content-column .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}
.banner-section-campground .content-column .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-section-campground .content-column .btn-box .video-box .play-btn {
    margin-left: 30px;
}
.banner-section-campground .content-column .btn-box .video-box .play-btn i {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-campground .content-column .btn-box .video-box .video-text {
    margin-left: 25px;
    color: var(--theme-color-black);
}
.banner-section-campground .image {
    border-radius: 30px;
    overflow: hidden;
}

/*** 

====================================================================
  Banner Section Two
====================================================================

***/
.banner-section-countryside3 {
    position: relative;
    padding: 348px 0 332px;
    background-color: #f7f3ee;
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 {
        padding: 90px 0;
        text-align: center;
    }
}
.banner-section-countryside3 .bg-image img {
    width: 100%;
    height: 100%;
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .bg-image img {
        min-height: 1205.6px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .bg-image img {
        min-height: 1297.4px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-countryside3 .content-column {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .content-column {
        margin-bottom: 70px;
    }
}
.banner-section-countryside3 .content-column .offer-text {
    color: var(--theme-color-white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--text-font2);
    letter-spacing: 0.5px;
    margin-bottom: 21px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .content-column .offer-text {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .content-column .offer-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-countryside3 .content-column .offer-text .star-rating {
    color: var(--theme-color1);
    font-size: 18px;
    margin-bottom: 5px;
}
.banner-section-countryside3 .content-column .offer-text .star-rating i {
    font-size: 30px;
}
.banner-section-countryside3 .content-column .offer-text .offer {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
    border-radius: 30px;
    display: inline-block;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 3px 5px 5px;
    margin-right: 15px;
    min-width: 100px;
    text-align: center;
    letter-spacing: 0;
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .content-column .offer-text .offer {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner-section-countryside3 .inner-column {
    position: relative;
    z-index: 3;
    margin-bottom: 150px;
    bottom: 90px;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .banner-section-countryside3 .inner-column {
        padding: 0;
    }
}
.banner-section-countryside3 .inner-column .title {
    position: relative;
    color: var(--theme-color-black);
    font-size: 72px;
    line-height: 84px;
    margin-bottom: 29px;
    margin-right: -25px;
}
@media (max-width: 1199.98px) {
    .banner-section-countryside3 .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-countryside3 .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-countryside3 .inner-column .text {
    color: var(--theme-color-white);
    font-size: 18px;
    line-height: 30px;
    margin-right: 70px;
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-countryside3 .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .banner-section-countryside3 .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-countryside3 .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}
.banner-section-countryside3 .btn-box .video-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
@media (max-width: 575.98px) {
    .banner-section-countryside3 .btn-box .video-box {
        margin-top: 15px;
        margin-left: 0;
    }
}
.banner-section-countryside3 .btn-box .video-box .play-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.banner-section-countryside3 .btn-box .video-box .video-text {
    color: var(--theme-color-black);
    font-weight: 600;
    margin-left: 15px;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-mountain-2 {
    position: relative;
    padding: 160px 0 145px;
    background-color: rgba(65, 123, 43, 0.1019607843);
}
.banner-section-mountain-2:before {
    background-image: url(../images/icons/bg-shape10.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 59px;
}
.banner-section-mountain-2 .checkout-form-section-two .checkout-form .btn-style-one {
    background-color: var(--theme-color6);
}
.banner-section-mountain-2 .checkout-form-section-two .checkout-form .btn-style-one::before {
    background-color: var(--theme-color-black);
}
.banner-section-mountain-2 .outer-box {
    max-width: 1670px;
    margin: 0 auto;
}
.banner-section-mountain-2 .outer-box .image-column .inner-column .image {
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-mountain-2 .outer-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-mountain-2 .outer-box .image-column .inner-column .image-2 {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-mountain-2 .outer-box .image-column .inner-column .image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.banner-section-mountain-2 .anim-image .image-1 {
    position: absolute;
    top: 230px;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.banner-section-mountain-2 .anim-image .image-2 {
    position: absolute;
    top: 147px;
    right: 340px;
}
.banner-section-mountain-2 .anim-image .image-3 {
    position: absolute;
    bottom: 175px;
    right: 520px;
}
.banner-section-mountain-2 .anim-image .image-4 {
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-section-mountain-2 .anim-image .image-5 {
    position: absolute;
    top: 480px;
    left: calc(50% - 120px);
}
.banner-section-mountain-2 .checkout-form-section-two {
    margin-top: -236px;
}
.banner-section-mountain-2 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-mountain-2 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-mountain-2 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-mountain-2 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-mountain-2 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-mountain-2 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-mountain-2 .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-mountain-2 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-mountain-2 .banner-slider .slick-list,
.banner-section-mountain-2 .banner-slider .slick-track {
    height: 100%;
}
.banner-section-mountain-2 .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-mountain-2 .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-mountain-2 .banner-slider .content-box {
    padding: 157px 0 277px;
    width: 100%;
    margin-right: 50px;
}
@media (max-width: 1199.98px) {
    .banner-section-mountain-2 .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-mountain-2 .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-mountain-2 .banner-slider .content-box .star-rating {
    position: relative;
    color: var(--theme-color1);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
@media (max-width: 575.98px) {
    .banner-section-mountain-2 .banner-slider .content-box .star-rating {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-mountain-2 .banner-slider .content-box .star-rating::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 302px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-mountain-2 .banner-slider .content-box .star-rating::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-mountain-2 .banner-slider .content-box .star-rating i {
    margin-right: 8px;
}
.banner-section-mountain-2 .banner-slider .content-box .star-rating i:last-child {
    margin-right: 0;
}
.banner-section-mountain-2 .banner-slider .content-box h1 {
    color: var(--theme-color-black);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-mountain-2 .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-mountain-2 .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-mountain-2 .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-mountain-2 .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-mountain-2 .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-mountain-2 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-mountain-2 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-mountain-2 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-mountain-2 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.banner-section-mountain-2 .banner-slider .image-1 {
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-section-mountain-2 .banner-slider .image-1:after {
    background-image: var(--gradient-2);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner-section-mountain-2 .banner-slider .image-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-mountain-2 .banner-slider .image-1 img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-mountain-2 .banner-slider .image-1 img {
        min-height: 600px;
    }
}
.banner-section-mountain-2 .image-column .inner-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 100px;
}
.banner-section-mountain-2 .image-column .inner-column .image-5 {
    position: relative;
    width: 344px;
    height: 616px;
    border-radius: 200px 200px 0px 200px;
    -webkit-transform: rotate(0deg);
    padding-bottom: 31px;
}
.banner-section-mountain-2 .image-column .inner-column .image-5:before {
    position: absolute;
    content: "";
    border-color: var(--theme-color6);
    border-radius: 200px 200px 0px 200px;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    width: 100%;
    height: 97%;
    z-index: -1;
    left: 7px;
    top: 8px;
}
.banner-section-mountain-2 .image-column .inner-column .image-5 img {
    height: 100%;
    width: 100%;
    border-radius: 200px 200px 0px 200px;
}
.banner-section-mountain-2 .image-column .inner-column .image-6 {
    position: relative;
    width: 344px;
    height: 616px;
    border-radius: 0px 200px 200px 200px;
    -webkit-transform: rotate(0deg);
    padding-bottom: 31px;
    top: 123px;
    right: -44px;
}
.banner-section-mountain-2 .image-column .inner-column .image-6:before {
    position: absolute;
    content: "";
    border-color: var(--theme-color6);
    border-radius: 0px 200px 200px 200px;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    width: 100%;
    height: 97%;
    z-index: -1;
    left: -13px;
    top: -17px;
}
.banner-section-mountain-2 .image-column .inner-column .image-6 img {
    height: 100%;
    width: 100%;
    border-radius: 0px 200px 200px 200px;
}

/***

====================================================================
  Banner Section
====================================================================

***/
.banner-section-winter4 {
    position: relative;
    padding: 120px 0 160px;
    margin: 0 20px;
    border-radius: 30px;
    overflow: hidden;
}
.banner-section-winter4 .bg-image:before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.banner-section-winter4 .outer-box {
    max-width: 1670px;
    margin: 0 auto;
}
.banner-section-winter4 .checkout-form-section-two {
    margin-top: -236px;
}
.banner-section-winter4 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-winter4 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-winter4 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-winter4 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-winter4 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-winter4 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-winter4 .banner-slider {
    position: relative;
}
@media (max-width: 1199.98px) {
    .banner-section-winter4 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-winter4 .banner-slider .slick-list,
.banner-section-winter4 .banner-slider .slick-track {
    height: 100%;
}
.banner-section-winter4 .banner-slider .banner-slide {
    position: relative;
    height: 100%;
}
.banner-section-winter4 .banner-slider .banner-slide .outer-box {
    height: 100%;
}
.banner-section-winter4 .banner-slider .content-box {
    padding: 95px 0 277px;
    width: 100%;
    margin-right: 50px;
    text-align: center;
}
@media (max-width: 1199.98px) {
    .banner-section-winter4 .banner-slider .content-box {
        padding: 295px 0 177px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-winter4 .banner-slider .content-box {
        padding: 195px 0 177px;
    }
}
.banner-section-winter4 .banner-slider .content-box .offer-text {
    color: var(--theme-color7);
    font-size: 50px;
    font-family: var(--text-font3);
    margin-bottom: 0;
    letter-spacing: 2.6px;
    position: relative;
}
.banner-section-winter4 .banner-slider .content-box .offer-text::before {
    content: "";
    position: absolute;
    top: -136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 365px;
    height: 303px;
    background-image: url(../images/banner/banner1-2.png);
    z-index: 99;
}
@media (max-width: 991.98px) {
    .banner-section-winter4 .banner-slider .content-box .offer-text::before {
        width: 150px;
        height: 150px;
        background-size: 90%;
        background-repeat: no-repeat;
        top: -53px;
    }
}
.banner-section-winter4 .banner-slider .content-box .offer-text i {
    margin-right: 8px;
}
.banner-section-winter4 .banner-slider .content-box .offer-text i:last-child {
    margin-right: 0;
}
.banner-section-winter4 .banner-slider .content-box .text {
    color: var(--theme-color-light);
}
.banner-section-winter4 .banner-slider .content-box h1 {
    color: var(--theme-color-light);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 42px;
}
@media (max-width: 1199.98px) {
    .banner-section-winter4 .banner-slider .content-box h1 {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .banner-section-winter4 .banner-slider .content-box h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media (max-width: 767.98px) {
    .banner-section-winter4 .banner-slider .content-box h1 {
        font-size: 42px;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter4 .banner-slider .content-box h1 {
        font-size: 36px;
    }
    .banner-section-winter4 .banner-slider .content-box h1 br {
        display: none;
    }
}
.banner-section-winter4 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    text-transform: uppercase;
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-winter4 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-winter4 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
}
.banner-section-winter4 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.banner-section-winter4 .banner-slider .image-1 {
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-section-winter4 .banner-slider .image-1:after {
    background-image: var(--gradient-2);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.banner-section-winter4 .banner-slider .image-1 img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .banner-section-winter4 .banner-slider .image-1 img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter4 .banner-slider .image-1 img {
        min-height: 600px;
    }
}

/***

====================================================================
 banner-section-winter-5
====================================================================

***/
.banner-section-winter-5 {
    position: relative;
    padding: 0;
}
.banner-section-winter-5 .outer-box {
    height: 100%;
    margin: 0 32px;
}
.banner-section-winter-5 .fa-solid.fa-chevron-right {
    margin-left: 7px;
}
.banner-section-winter-5 .slick-dots {
    bottom: 150px;
}
@media (max-width: 1199.98px) {
    .banner-section-winter-5 .slick-dots {
        bottom: 40px;
    }
}
.banner-section-winter-5 .slick-dots li button {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
}
.banner-section-winter-5 .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
}
.banner-section-winter-5 .slick-dots li.slick-active button {
    border-color: #fff;
}
.banner-section-winter-5 .slick-dots li.slick-active button:before {
    opacity: 1;
}
.banner-section-winter-5 .banner-slider {
    position: relative;
    min-height: 900px;
    height: 100vh;
}
@media (max-width: 1199.98px) {
    .banner-section-winter-5 .banner-slider {
        min-height: auto;
        height: auto;
    }
}
.banner-section-winter-5 .banner-slider .content-box {
    position: absolute;
    left: 100px;
    bottom: 100px;
}
.banner-section-winter-5 .banner-slider .content-box .sub-title {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    padding: 10px 30px 10px 30px;
    background-color: rgba(255, 255, 255, 0.1019607843);
    border-radius: 40px 40px 40px 40px;
    letter-spacing: 12px;
}
.banner-section-winter-5 .banner-slider .content-box .text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 37px;
}
.banner-section-winter-5 .banner-slider .content-box .btn {
    border-radius: 48px;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 {
    position: relative;
    height: 100%;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .outer-box {
    height: 100%;
    position: relative;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .outer-box .image {
    overflow: hidden;
    border-radius: 44px;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .outer-box .image:before {
    position: absolute;
    content: "";
    --background-overlay: "";
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0.7098039216)),
        to(rgba(0, 0, 0, 0.031372549))
    );
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7098039216) 0%, rgba(0, 0, 0, 0.031372549) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .image {
    overflow: hidden;
    max-height: 847.2px;
    max-width: 1862px;
    border-radius: 44px;
    position: relative;
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-radius: 44px;
}
@media (max-width: 1199.98px) {
    .banner-section-winter-5 .banner-slider .banner-slide-v2 .image img {
        min-height: 700px;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter-5 .banner-slider .banner-slide-v2 .image img {
        min-height: 600px;
    }
}
.banner-section-winter-5 .banner-slider .banner-slide-v2 .content-box .sub-title {
    font-family: var(--text-font2);
}
.banner-section-winter-5 .banner-slider .content-box {
    z-index: 2;
}
.banner-section-winter-5 .banner-slider .content-box .sub-title {
    position: relative;
    text-transform: uppercase;
    color: var(--theme-color-white);
    margin-bottom: 25px;
    display: inline-block;
    margin-top: 70px;
}
@media (max-width: 575.98px) {
    .banner-section-winter-5 .banner-slider .content-box .sub-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.banner-section-winter-5 .banner-slider .content-box .sub-title::before {
    content: "";
    position: absolute;
    top: -71px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
    height: 40px;
    background-image: url(../images/resource/title-image.html);
    z-index: 99;
}
.banner-section-winter-5 .banner-slider .content-box h1 {
    color: var(--theme-color-white);
    font-size: 72px;
    line-height: 85px;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
    .banner-section-winter-5 .banner-slider .content-box h1 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 15px;
    }
}
@media (max-width: 575.98px) {
    .banner-section-winter-5 .banner-slider .content-box h1 {
        font-size: 30px;
    }
}
.banner-section-winter-5 .banner-slider .content-box .btn {
    color: var(--theme-color-white);
    width: 170px;
    height: 50px;
    line-height: 50px;
    border-radius: 48px;
    padding: 0;
    border: 1px solid var(--theme-color-white);
    position: relative;
    z-index: 9;
}
.banner-section-winter-5 .banner-slider .content-box .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--theme-color7);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.banner-section-winter-5 .banner-slider .content-box .btn:hover {
    border-color: var(--bg-theme-color1);
    border-color: #fff;
}
.banner-section-winter-5 .banner-slider .content-box .btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*** 

====================================================================
banner-section-countryside3 style-beach3
====================================================================

***/
.banner-section-countryside3.style-beach3 {
    position: relative;
    padding: 348px 0 0;
    z-index: -1;
}
.banner-section-countryside3.style-beach3 .image-1 {
    position: absolute;
    top: 140px;
    left: 37px;
}
.banner-section-countryside3.style-beach3 .image-2 {
    position: absolute;
    top: 165px;
    right: 115px;
}
.banner-section-countryside3.style-beach3 .image-3 {
    position: absolute;
    top: 424px;
    right: 385px;
}
.banner-section-countryside3.style-beach3 .title {
    margin-bottom: 40px;
}
.banner-section-countryside3.style-beach3 .video-box .play-btn .icon {
    background-color: var(--theme-color8);
}
.banner-section-countryside3.style-beach3 .content-column .inner-column {
    bottom: 140px;
}

/*** 

====================================================================
  banner-section-golf2
====================================================================

***/
.banner-section-golf2 {
    position: relative;
    overflow: hidden;
    padding: 0 0 40px;
}
.banner-section-golf2 .bg-image {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 74%;
}
.banner-section-golf2 .bg-image img {
    height: 100%;
    -webkit-mask-image: url(../images/icons/shape-banner-golf2-1.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
}
.banner-section-golf2 .anim-icons {
    position: absolute;
    left: 15px;
    top: 110px;
}
.banner-section-golf2 .content-column .inner-column .content-box .inner-box {
    margin-top: 240px;
    margin-left: 165px;
    display: inline-block;
}
.banner-section-golf2 .content-column .inner-column .content-box .inner-box .title {
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--title-font2);
    display: inline-block;
}
.banner-section-golf2 .content-column .inner-column .content-box .inner-box .title img {
    width: 167px;
    height: 167px;
    margin-left: -30px;
}
.banner-section-golf2 .content-column .inner-column .content-box .inner-box .text {
    margin-bottom: 30px;
}
.banner-section-golf2 .feature-box {
    position: relative;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2117647059);
}
.banner-section-golf2 .feature-box .feature-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.banner-section-golf2 .feature-box .feature-list li:hover i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.banner-section-golf2 .feature-box .feature-list li i {
    font-size: 40px;
    position: relative;
    top: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    display: inline-block;
    color: var(--theme-color-white);
}
.banner-section-golf2 .feature-box .feature-list li span {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--title-font2);
    margin-left: 10px;
    color: var(--theme-color-white);
}

/*** 

====================================================================
  banner-section-two style-lodge2
====================================================================

***/
.banner-section-two.style-lodge2 {
    margin: 20px 30px 0;
}
.banner-section-two.style-lodge2 .bg-image {
    border-radius: 30px;
}
.banner-section-two.style-lodge2 .bg-image:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/shape-lodge2-1.png);
    width: 268px;
    height: 134px;
    top: -5px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.banner-section-two.style-lodge2 .bg-image:after {
    position: absolute;
    content: "";
    background-image: url(../images/icons/shape-lodge2-2.png);
    width: 268px;
    height: 134px;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.banner-section-two.style-lodge2 .bg-image img {
    width: 100%;
    border-radius: 30px;
}
.banner-section-two.style-lodge2 .outer-box {
    margin: 0 90px 0 165px;
}
.banner-section-two.style-lodge2 .outer-box .content-column .inner-column .star-rating span {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--text-font4);
    color: var(--theme-color-white);
    text-transform: lowercase;
    letter-spacing: 5px;
}
.banner-section-two.style-lodge2 .outer-box .content-column .inner-column .text {
    font-size: 17px;
    font-family: var(--text-font4);
}
.banner-section-two.style-lodge2 .outer-box .booking-form-column .inner-column {
    max-width: 581px;
    max-height: 565px;
}
.banner-section-two.style-lodge2 .outer-box .booking-form-column .inner-column:before {
    background-color: rgba(28, 29, 28, 0.8784313725);
}
.banner-section-two.style-lodge2 .outer-box .booking-form-column .inner-column .sec-title h3 {
    color: var(--theme-color-white);
}
.banner-section-two.style-lodge2 .outer-box .booking-form-column .inner-column .frm-field input {
    border-color: rgba(106, 147, 10, 0.3);
    background-color: transparent;
}
.banner-section-two.style-lodge2 .outer-box .booking-form-column .inner-column .frm-field select {
    border-color: rgba(106, 147, 10, 0.3);
    background-color: transparent;
}

/*** 

====================================================================
  Banner Section Six
====================================================================

***/
.banner-section-ocean {
    background-color: #eee6dd;
    position: relative;
    padding: 144px 0 169px;
}
.banner-section-ocean .bg-image {
    width: 64%;
    left: auto;
    right: 0;
}
@media (max-width: 767.98px) {
    .banner-section-ocean {
        text-align: center;
    }
}
.banner-section-ocean .anim-icons .image-1 {
    position: absolute;
    left: 13px;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.banner-section-ocean .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.banner-section-ocean .content-column {
    padding: 0;
    min-width: calc(50% - 173px);
    left: 0;
    position: relative;
}
.banner-section-ocean .content-column .inner-column {
    background-color: #000;
    margin-left: 120px;
}
.banner-section-ocean .content-column .inner-column .text.wow.fadeInUp.animated {
    color: var(--theme-color-white);
}
.banner-section-ocean .content-column .title.wow.fadeInUp.animated {
    margin-left: 0;
    color: var(--theme-color-white);
}
@media (max-width: 1199.98px) {
    .banner-section-ocean .content-column {
        min-width: calc(50% + 50px);
        padding: 167px 15px 167px 60px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean .content-column {
        padding: 100px 15px 150px;
        width: 100%;
    }
}
.banner-section-ocean .content-column .offer-text {
    color: var(--theme-color-white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-family: var(--text-font);
    margin-bottom: 8px;
    letter-spacing: 7px;
    text-transform: uppercase;
}
.banner-section-ocean .content-column .offer-text span {
    background-color: #aa8453;
    display: inline-block;
    border-radius: 64px 62px 69px;
    height: 54px;
    width: 127px;
    text-align: center;
    line-height: 55px;
    color: #fff;
    letter-spacing: 4px;
    font-size: 15px;
    margin-right: 20px;
}
@media (max-width: 991.98px) {
    .banner-section-ocean .content-column .offer-text {
        letter-spacing: 3px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean .content-column .offer-text {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ocean .content-column .offer-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
    }
}
.banner-section-ocean .content-column .offer-text .star-rating {
    color: var(--theme-color1);
    font-size: 16px;
    margin-right: 12px;
    letter-spacing: 0;
}
.banner-section-ocean .content-column .offer-text .star-rating i {
    margin-right: 0;
}
.banner-section-ocean .content-column .offer-text .offer {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
    border-radius: 30px;
    display: inline-block;
    font-family: var(--text-font);
    font-weight: 600;
    padding: 3px 5px 5px;
    margin-right: 15px;
    min-width: 100px;
    text-align: center;
    letter-spacing: 0;
}
@media (max-width: 575.98px) {
    .banner-section-ocean .content-column .offer-text .offer {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner-section-ocean .content-column .inner-column {
    position: relative;
    padding: 59px 36px 70px 70px;
    z-index: 1;
    margin-top: 105px;
}
@media (max-width: 1199.98px) {
    .banner-section-ocean .content-column .inner-column {
        padding: 0;
    }
}
.banner-section-ocean .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 72px;
    line-height: 84px;
    letter-spacing: 0;
    margin-bottom: 25px;
}
@media (max-width: 1749.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        font-size: 60px;
    }
}
@media (max-width: 1399.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        font-size: 58px;
    }
}
@media (max-width: 1199.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        margin-bottom: 25px;
        line-height: 1.3;
    }
}
@media (max-width: 991.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        font-size: 42px;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        font-size: 54px;
        line-height: 1.3;
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ocean .content-column .inner-column .title {
        font-size: 42px;
    }
}
.banner-section-ocean .content-column .inner-column .text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
}
@media (max-width: 1699.98px) {
    .banner-section-ocean .content-column .inner-column .text br {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .banner-section-ocean .content-column .inner-column .text {
        margin-right: 0;
    }
}
.banner-section-ocean .content-column .btn-box {
    margin-top: 43px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .banner-section-ocean .content-column .btn-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .banner-section-ocean .content-column .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.banner-section-ocean .content-column .btn-box .theme-btn {
    font-family: var(--text-font);
    font-weight: 600;
    padding: 16.5px 44px;
}

/*** 

====================================================================
banner-section-city2
====================================================================

***/
.banner-section-city2 {
    padding: 260px 0 180px;
}
.banner-section-city2 .content-column .inner-column .sec-title {
    margin-bottom: 40px;
}
.banner-section-city2 .content-column .inner-column .sec-title .sub-title {
    color: var(--theme-color-white);
    margin-bottom: 0;
}
.banner-section-city2 .content-column .inner-column .sec-title .sub-title:after {
    display: none;
}
.banner-section-city2 .content-column .inner-column .sec-title h1 {
    color: var(--theme-color-white);
    font-size: 80px;
    font-family: var(--title-font2);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.banner-section-city2 .content-column .inner-column .sec-title .text {
    color: var(--theme-color-white);
}
.banner-section-city2 .images-column .inner-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
}
.banner-section-city2 .images-column .inner-column .image {
    max-width: 298px;
    max-height: 198px;
    border-radius: 10%;
}
.banner-section-city2 .images-column .inner-column .image img {
    border-radius: 10px;
}

/*** 

====================================================================
		About Section
====================================================================

***/
.about-section {
    position: relative;
    padding: 146px 0 31px;
}
.about-section .info-block {
    margin-bottom: 24px;
}
@media (max-width: 575.98px) {
    .about-section {
        padding-top: 80px;
    }
}
.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.about-section .content-column .inner-column {
    position: relative;
    padding-left: 25px;
}
.about-section .content-column .inner-column .sec-title {
    margin-bottom: 30px;
}
.about-section .content-column .inner-column .sec-title .sub-title::before {
    display: none;
}
@media (max-width: 1199.98px) {
    .about-section .content-column .inner-column .sec-title h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
.about-section .content-column .inner-column .sec-title .text-2 {
    margin-top: 40px;
    margin-right: 50px;
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    color: var(--theme-color5);
    text-decoration: underline;
}
.about-section .content-column .inner-column .sec-title .text {
    margin-top: 30px;
}
.about-section .content-column .inner-column .list-style-two {
    margin-top: 0;
}
.about-section .content-column .inner-column .list-style-two li {
    font-size: 18px;
    padding-left: 27px;
}
.about-section .content-column .inner-column .list-style-two li .icon {
    color: var(--theme-color5);
}
.about-section .content-column .inner-column .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 45px;
}
.about-section .content-column .inner-column .btn-box .theme-btn {
    padding: 17px 42px 18px;
}
.about-section .content-column .inner-column .btn-box .theme-btn:before {
    background: #000;
}
.about-section .content-column .inner-column .btn-box .theme-btn:hover {
    color: #fff;
}
.about-section .content-column .inner-column .btn-box .theme-btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.about-section .content-column .inner-column .btn-box .contact-info {
    position: relative;
    padding-left: 72px;
    top: -2px;
}
.about-section .content-column .inner-column .btn-box .contact-info .image {
    position: absolute;
    left: 0;
    top: 6px;
}
.about-section .content-column .inner-column .btn-box .contact-info span {
    text-transform: uppercase;
}
.about-section .content-column .inner-column .btn-box .contact-info .title {
    margin-bottom: 0;
    margin-top: -2px;
}
.about-section .image-column {
    position: relative;
}
.about-section .image-column .inner-column {
    position: relative;
    padding-bottom: 141px;
}
.about-section .image-column .inner-column::after {
    border: 5px solid var(--theme-color1);
    content: "";
    position: absolute;
    top: -49px;
    left: 263px;
    width: 167px;
    height: 198px;
    z-index: -1;
}
.about-section .image-column .inner-column .icon-dots {
    position: absolute;
    left: -120px;
    bottom: -30px;
}
.about-section .image-column .image-1 {
    position: relative;
    display: inline-block;
    border-radius: 0;
    margin-bottom: 0px;
    width: 350px;
    height: 480px;
}
.about-section .image-column .image-2 {
    position: absolute;
    right: 14px;
    bottom: 0;
    margin-bottom: 0;
    width: 350px;
    height: 480px;
}
.about-section .image-column .image-1 img,
.about-section .image-column .image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1199.98px) {
    .about-section .image-column .image-2 {
        right: 0;
    }
}
.about-section .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 575.98px) {
    .about-section .outer-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.about-section .exp-box {
    bottom: 18px;
}
.about-section.home4-style:before {
    background-image: url(../images/background/home.html);
    bottom: 0;
    content: "";
    height: 400px;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 570px;
}
.about-section.home4-style .content-column .inner-column .sec-title .text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}
.about-section.home4-style .content-column .inner-column {
    padding-left: 50px;
}
@media (max-width: 991.98px) {
    .about-section.home4-style .content-column .inner-column {
        padding-left: 0;
    }
}
.about-section.home4-style .image-1:after {
    display: none;
}
.about-section.home4-style .image-2 {
    bottom: -100px;
    left: -50px;
}
.about-section.home4-style .image-2:after {
    border: 1px solid var(--theme-color1);
    content: "";
    height: 100%;
    left: 60px;
    position: absolute;
    top: -60px;
    width: 100%;
    z-index: -1;
}
@media (max-width: 991.98px) {
    .about-section.home4-style .image-2 {
        bottom: 0;
        left: 0;
    }
}
.about-section.home4-style .info-block {
    margin-right: 0;
}
.about-section.home4-style .info-block .inner {
    min-height: auto;
    padding-left: 0px;
}
.about-section.home4-style .info-block .inner .title {
    margin-bottom: 0;
}
@media (max-width: 991.98px) {
    .about-section.home4-style .info-block .inner .title {
        max-width: inherit;
    }
}
.about-section.home4-style .info-block .icon-box {
    border: 1px solid #eaeaea;
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 50px;
}
.about-section.home4-style .info-block i {
    font-size: 26px;
}
.about-section.style-luxury .anim-icons {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about-section.style-luxury .image-column .inner-column {
    position: relative;
    padding-bottom: 115px;
}
.about-section.style-luxury .image-column .inner-column:after {
    display: none;
}
.about-section.style-luxury .image-column .inner-column .image-1 {
    margin-top: 30px;
}
.about-section.style-luxury .image-column .inner-column .image-2 {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 30px;
}
.about-section.style-luxury .image-column .inner-column .icon-img {
    position: absolute;
    top: 230px;
    left: calc(50% - 65px);
    width: 130px;
    height: 130px;
}

.exp-box {
    position: absolute;
    left: 135px;
    background: #000;
    width: 260px;
    text-align: center;
    padding: 36px 15px 33px;
}
.exp-box figure {
    margin-bottom: 12px;
}
.exp-box .title {
    color: var(--theme-color-light);
    margin-bottom: 9px;
}
.exp-box .text {
    color: #ababab;
    font-family: var(--text-font2);
    line-height: 24px;
}

.info-block {
    position: relative;
    margin-bottom: 49px;
    margin-right: 115px;
}
.info-block:last-child {
    margin-right: 0;
}
.info-block .inner {
    position: relative;
    padding-left: 94px;
    min-height: 80px;
}
.info-block .inner:hover .icon-box {
    color: var(--theme-color-light);
}
.info-block .inner:hover .icon-box:before {
    opacity: 1;
}
.info-block .image-box {
    position: absolute;
    left: 0;
    top: 3px;
}
.info-block .icon-box {
    position: absolute;
    left: 0;
    top: 3px;
}
.info-block .icon-box i {
    font-size: 64px;
    color: #000;
}

.contact-info {
    position: relative;
    padding-left: 72px;
    top: -2px;
}
.contact-info .icon-box {
    position: absolute;
    left: 0;
    top: 6px;
}
.contact-info .icon-box i {
    color: var(--theme-color1);
    font-size: 48px;
}
.contact-info span {
    text-transform: uppercase;
}
.contact-info .title {
    margin-bottom: 0;
    margin-top: -2px;
}

@media only screen and (max-width: 1200px) {
    .info-block {
        margin-right: 30px;
    }
    .contact-info .title {
        font-size: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .about-section .content-column .inner-column {
        padding-left: 0;
    }
    .info-block .title {
        max-width: 150px;
    }
}
@media only screen and (max-width: 576px) {
    .info-block {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .about-section .outer-box {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 480px) {
    .about-section .outer-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .about-section .content-column .btn-box {
        display: block;
    }
    .contact-info {
        margin-top: 40px;
    }
}

/*** 

====================================================================
about section city h03
====================================================================

***/
.about-section-city-h03 {
    padding: 120px 0;
    position: relative;
}
.about-section-city-h03 .image-column .inner-column {
    height: 100%;
    margin-right: 50px;
}
.about-section-city-h03 .image-column .inner-column .image {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.about-section-city-h03 .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.about-section-city-h03 .content-column .inner-column {
    position: relative;
}
.about-section-city-h03 .content-column .inner-column .info-box .inner-box {
    padding: 25px 43px 30px 40px;
    margin: 0px 0px 50px 0px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: rgba(0, 0, 0, 0.1019607843);
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.about-section-city-h03 .content-column .inner-column .info-box .year {
    font-family: var(--title-font2);
    font-size: 120px;
    font-weight: 400;
    line-height: 120px;
    margin-bottom: 0;
}
.about-section-city-h03 .content-column .inner-column .info-box .year span {
    font-size: 100px;
    font-weight: 900;
    position: absolute;
    bottom: 1px;
}
.about-section-city-h03 .content-column .inner-column .info-box .text {
    font-family: var(--title-font2);
    font-size: 24px;
    font-weight: 400;
}
.about-section-city-h03 .content-column .image {
    position: absolute;
    bottom: -50px;
    right: -5px;
    border-radius: 10px;
}
.about-section-city-h03 .content-column .image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*** 

====================================================================
start about section modern
====================================================================

***/
.about-section-modern {
    padding: 0 0 163px;
    position: relative;
    margin-right: 30px;
}
.about-section-modern .anim-icons .image-1 {
    position: absolute;
    bottom: 200px;
    left: 0;
}
.about-section-modern .anim-icons .image-2 {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.about-block-modern .inner-block .sec-title {
    position: relative;
}
.about-block-modern .inner-block .sec-title .sub-title {
    display: inline-block;
    letter-spacing: 0.28px;
    margin-left: -300px;
    position: relative;
    top: 50px;
}
.about-block-modern .inner-block .sec-title h2 {
    font-family: var(--title-font2);
    margin-bottom: 110px;
}
.about-block-modern .inner-block .sec-title h2 .title-img {
    border-radius: 40px;
}
.about-block-modern .inner-block .list-style-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}
.about-block-modern .inner-block .list-style-two li {
    margin-right: 0;
    padding-left: 0;
    width: 100px;
}
.about-block-modern .inner-block .list-style-two li:hover .icon-box i {
    background-color: var(--theme-color6);
    color: var(--theme-color-white);
}
.about-block-modern .inner-block .list-style-two li .icon-box i {
    padding: 39px 29px;
    border: 1px solid rgba(18, 18, 18, 0.1490196078);
    font-size: 40px;
    line-height: 1;
    border-radius: 50px;
    background-color: transparent;
    color: var(--text-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.about-block-modern .inner-block .list-style-two li .text {
    font-family: var(--title-font2);
    position: relative;
    top: 60px;
    left: 15px;
}

/*** 

====================================================================
    Funfact Sectiom
====================================================================

***/
.funfact-section {
    padding: 79px 0 110px;
    position: relative;
}
@media (max-width: 991.98px) {
    .funfact-section {
        padding: 79px 0 29px;
    }
}
.funfact-section .fact-counter {
    margin: 0 -100px;
}
.funfact-section .counter-block-one .inner-box {
    margin-top: -32px;
}
.funfact-section.luxury2-2 {
    position: relative;
}
.funfact-section.luxury2-2 .anim-icons {
    position: absolute;
    bottom: 0;
    right: 0;
}
.funfact-section.style-two .fact-counter {
    margin: 0 -60px;
}
.funfact-section.style-two .counter-block-one .inner-box .counter-text {
    text-align: left;
    top: calc(50% - 9px);
    margin-left: 62px;
}

.counter-block-one:last-child .inner-box:before {
    display: none;
}
.counter-block-one .inner-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 991.98px) {
    .counter-block-one .inner-box {
        margin-bottom: 50px;
    }
}
.counter-block-one .inner-box:before {
    background-color: #dddede;
    content: "";
    height: 60px;
    position: absolute;
    top: 40px;
    right: -30px;
    width: 1px;
}
@media (max-width: 991.98px) {
    .counter-block-one .inner-box:before {
        display: none;
    }
}
.counter-block-one .inner-box .count-box {
    color: rgba(var(--theme-color1-rgb), 0.3);
    display: block;
    font-family: var(--title-font);
    font-size: 128px;
    font-weight: 400;
    line-height: 96px;
    position: relative;
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .counter-block-one .inner-box .count-box {
        font-size: 110px;
    }
}
.counter-block-one .inner-box .counter-text {
    color: #222222;
    font-family: var(--text-font);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 0;
    position: absolute;
    text-align: center;
    top: calc(50% + 9px);
}
@media (max-width: 575.98px) {
    .counter-block-one .inner-box .counter-text {
        font-size: 18px;
    }
}

/*** 

====================================================================
    Funfact Sectiom Two
====================================================================

***/
.funfact-section-two {
    padding: 125px 0;
    position: relative;
}
@media (max-width: 991.98px) {
    .funfact-section-two {
        padding: 125px 0 75px;
    }
}

.counter-block-two:last-child .inner-box:before {
    display: none;
}
.counter-block-two .inner-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 991.98px) {
    .counter-block-two .inner-box {
        margin-bottom: 50px;
    }
}
.counter-block-two .inner-box:before {
    background-color: #dddede;
    content: "";
    height: 60px;
    position: absolute;
    right: -30px;
    width: 1px;
}
@media (max-width: 991.98px) {
    .counter-block-two .inner-box:before {
        display: none;
    }
}
.counter-block-two .inner-box .count-box {
    color: rgba(191, 168, 136, 0.15);
    display: block;
    font-family: var(--title-font);
    font-size: 148px;
    font-weight: 400;
    line-height: 96px;
    position: relative;
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .counter-block-two .inner-box .count-box {
        font-size: 110px;
    }
}
.counter-block-two .inner-box .counter-text {
    color: #222222;
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 0;
    position: absolute;
    top: 20%;
    right: 20px;
}
@media (max-width: 1199.98px) {
    .counter-block-two .inner-box .counter-text {
        width: 100%;
        right: 0;
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    .counter-block-two .inner-box .counter-text {
        font-size: 18px;
    }
}

/*** 

====================================================================
    Funfact Sectiom Three
====================================================================

***/
.funfact-section-three {
    padding: 79px 0;
    position: relative;
}
.funfact-section-three .outer-box {
    border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    padding-bottom: 72px;
}
.funfact-section-three .outer-box .counter-block-two .inner-box:before {
    bottom: 0;
}
.funfact-section-three .outer-box .counter-block-two .inner-box .counter-text {
    top: 38%;
    right: 40px;
}

/*** 

====================================================================
    Funfact Sectiom Four
====================================================================

***/
.funfact-section-four {
    padding: 80px 0 96px;
    position: relative;
    background-color: #e5f0f9;
}
.funfact-section-four .anim-icons img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.counter-block-four:last-child .inner-box:before {
    display: none;
}
.counter-block-four .inner-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 767.98px) {
    .counter-block-four .inner-box {
        margin-bottom: 30px;
    }
}
.counter-block-four .inner-box:before {
    content: "";
    position: absolute;
    height: 87px;
    width: 1px;
    right: -30px;
    background-color: #dddede;
    bottom: 25px;
}
.counter-block-four .inner-box .count-box {
    color: var(--theme-color-light);
    display: block;
    font-family: var(--title-font2);
    font-size: 128px;
    font-weight: 400;
    position: relative;
    margin-bottom: 0;
    line-height: 1;
    z-index: 1;
    margin-right: 40px;
}
@media (max-width: 575.98px) {
    .counter-block-four .inner-box .count-box {
        font-size: 110px;
    }
}
.counter-block-four .inner-box .counter-text {
    color: #000000;
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    position: absolute;
    top: calc(50% - 30px);
    right: 0;
}
@media (max-width: 767.98px) {
    .counter-block-four .inner-box .counter-text {
        position: relative;
    }
}
@media (max-width: 575.98px) {
    .counter-block-four .inner-box .counter-text {
        font-size: 18px;
    }
}

/*** 

====================================================================
    Funfact Sectiom 
====================================================================

***/
.funfact-section-city {
    padding: 79px 0 100px;
    position: relative;
}
.funfact-section-city.hostel:before {
    display: none;
}
.funfact-section-city:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: -59px;
    width: 100%;
    height: 59px;
    z-index: 1;
}
.funfact-section-city .outer-box .counter-block-two .inner-box:before {
    bottom: 0;
}
.funfact-section-city .outer-box .counter-block-two .inner-box .counter-text {
    font-family: var(--title-font2);
    top: 38%;
    right: 40px;
}

/***

==================================================================
    Fanfact Section Resort
==================================================================

***/
.fanfact-section-resort {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
}
.fanfact-section-resort::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    z-index: -1;
}
.fanfact-section-resort .outer-box {
    max-width: 1300px;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .fanfact-section-resort {
        padding: 80px 0;
    }
}

.fanfact-block-resort {
    position: relative;
    z-index: 1;
    text-align: center;
}
.fanfact-block-resort .title {
    font-size: 120px;
    line-height: 120px;
    text-transform: uppercase;
    color: var(--theme-color-white);
    margin-bottom: 0;
    letter-spacing: 2px;
}
.fanfact-block-resort .sub-title {
    text-transform: capitalize;
    color: var(--theme-color-white);
    font-size: 20px;
}
.fanfact-block-resort::after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(var(--theme-color-white-rgb), 0.2);
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
}
@media (max-width: 1199.98px) {
    .fanfact-block-resort {
        border: 1px solid rgba(var(--theme-color-white-rgb), 0.2);
        padding: 30px 15px;
    }
    .fanfact-block-resort::after {
        display: none;
    }
}

/*** 

====================================================================
funfact section 
====================================================================

***/
.funfact-section-lodge.luxury2-2 {
    position: relative;
    padding: 47px 0 120px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.funfact-section-lodge.luxury2-2 .anim-icons {
    position: absolute;
    bottom: 0;
    right: 0;
}
.funfact-section-lodge.luxury2-2 .count-text {
    color: rgba(104, 145, 9, 0.2);
}

/*** 

====================================================================
    Funfact Sectiom
====================================================================

***/
.funfact-section-nature2 {
    padding: 0 0 110px;
    position: relative;
}
.funfact-section-nature2 .anim-icons {
    position: absolute;
    left: -159px;
    bottom: 10px;
}
@media (max-width: 991.98px) {
    .funfact-section-nature2 {
        padding: 79px 0 29px;
    }
}
.funfact-section-nature2 .counter-block-two .inner-box .count-box {
    color: rgba(105, 145, 10, 0.2);
}
.funfact-section-nature2 .fact-counter {
    margin: 0 -100px;
}
.funfact-section-nature2 .counter-block-one .inner-box {
    margin-top: -32px;
}
.funfact-section-nature2.style-two .fact-counter {
    margin: 0 -60px;
}
.funfact-section-nature2.style-two .counter-block-one .inner-box .counter-text {
    font-family: var(--title-font2);
    text-align: left;
    top: calc(50% - 9px);
    margin-left: 62px;
}

/*** 

====================================================================
    H I K I N G L02
====================================================================

***/
.funfact-section-hiking-lo2 {
    padding: 120px 0 120px;
}
.funfact-section-hiking-lo2 .fact-counter .text {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--text-font4);
    margin-bottom: 50px;
}
.funfact-section-hiking-lo2 .fact-counter .text span {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--text-font4);
    color: var(--theme-color1);
}

/***

==================================================================
    Fanfact Section Resort
==================================================================

***/
.fanfact-section-countryside2 {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
    margin: 0 30px;
    border-radius: 30px;
}
.fanfact-section-countryside2::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    z-index: -1;
}
.fanfact-section-countryside2 .outer-box {
    max-width: 1300px;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .fanfact-section-countryside2 {
        padding: 80px 0;
    }
}

.fanfact-block-countryside2 {
    position: relative;
    z-index: 1;
    text-align: center;
}
.fanfact-block-countryside2 .title {
    font-size: 120px;
    line-height: 120px;
    text-transform: uppercase;
    color: var(--theme-color-white);
    margin-bottom: 0;
    letter-spacing: 2px;
}
.fanfact-block-countryside2 .sub-title {
    text-transform: capitalize;
    color: var(--theme-color-white);
    font-size: 20px;
}
.fanfact-block-countryside2::after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(var(--theme-color-white-rgb), 0.2);
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
}
@media (max-width: 1199.98px) {
    .fanfact-block-countryside2 {
        border: 1px solid rgba(var(--theme-color-white-rgb), 0.2);
        padding: 30px 15px;
    }
    .fanfact-block-countryside2::after {
        display: none;
    }
}

/*** 

====================================================================
fanfact-section-countryside2 style-beach3
====================================================================

***/
.fanfact-section-countryside2.style-beach3 {
    margin: 0;
    border-radius: 0;
}

/*** 

====================================================================
    Funfact Sectiom 
====================================================================

***/
.funfact-section-ocean {
    padding: 79px 0 141px;
    position: relative;
}
.funfact-section-ocean .anim-shape {
    position: absolute;
    top: 57px;
}
.funfact-section-ocean.hostel:before {
    display: none;
}
.funfact-section-ocean .outer-box .counter-block-two .inner-box:before {
    bottom: 0;
}
.funfact-section-ocean .outer-box .counter-block-two .inner-box .counter-text {
    font-family: var(--title-font2);
    top: 49%;
    right: 71px;
}

/***

====================================================================
    Marquee Section
====================================================================

***/
.marquee-section {
    position: relative;
    padding: 73px 0;
}
@media (max-width: 767.98px) {
    .marquee-section {
        padding: 50px 0;
    }
}
.marquee-section.style-lake .marquee .text.divider .icon {
    -webkit-text-fill-color: var(--theme-color6);
    -webkit-text-stroke: 1px var(--theme-color6);
}
.marquee-section .bg {
    opacity: 0.03;
}
.marquee-section .marquee.marquee-style-one .text {
    text-transform: uppercase;
}
.marquee-section .marquee.marquee-style-two {
    padding: 40px 0 0;
}
.marquee-section .marquee.marquee-style-two .text {
    font-size: 128px;
    line-height: 110px;
}
@media (max-width: 991.98px) {
    .marquee-section .marquee.marquee-style-two .text {
        font-size: 60px;
        line-height: 1.1;
    }
}
@media (max-width: 575.98px) {
    .marquee-section .marquee.marquee-style-two .text {
        font-size: 36px;
    }
}
.marquee-section.style-golf {
    padding: 136px 0 0;
}
.marquee-section.style-golf .marquee .text.divider .icon {
    color: var(--theme-color6);
    -webkit-text-fill-color: var(--theme-color6);
    -webkit-text-stroke: 1px var(--theme-color6);
}

.marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--gap);
}
.marquee .marquee-group {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    -webkit-animation: scroll var(--duration) linear infinite;
    animation: scroll var(--duration) linear infinite;
}
.marquee .text {
    color: rgba(2, 1, 1, 0);
    font-size: 80px;
    font-family: var(--title-font);
    letter-spacing: 0;
    line-height: 84px;
    padding: 0 30px;
    -webkit-text-stroke-width: 1.1px;
    -webkit-text-stroke-color: #d1d1d1;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
@media (max-width: 991.98px) {
    .marquee .text {
        font-size: 60px;
        line-height: 1.1;
    }
}
@media (max-width: 575.98px) {
    .marquee .text {
        font-size: 36px;
    }
}
.marquee .text.text-style2 {
    -webkit-text-fill-color: var(--theme-color-black);
    -webkit-text-stroke: 1px var(--theme-color-black);
    color: var(--theme-color-black);
}
.marquee .text:after {
    -webkit-text-fill-color: #d9d9d9;
    -webkit-text-stroke: 1px #d9d9d9;
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.marquee .text:hover {
    -webkit-text-fill-color: var(--theme-color-black);
    -webkit-text-stroke: 1px var(--theme-color-black);
    color: var(--theme-color-black);
    cursor: pointer;
}
.marquee .text:hover:after {
    background-color: #transparent;
}
.marquee .text:hover:before {
    width: 0;
}
.marquee .text.divider .icon {
    -webkit-text-fill-color: var(--theme-color1);
    -webkit-text-stroke: 1px var(--theme-color1);
    color: var(--theme-color1);
    font-size: 40px;
    position: relative;
    top: -3px;
}
@media (prefers-reduced-motion: reduce) {
    .marquee .marquee-group {
        -webkit-animation-play-state: play;
        animation-play-state: play;
    }
}
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}
.marquee.slide-right {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.marquee.slide-right .text {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/*** 

====================================================================
   marquee-section style-golf
====================================================================

***/
.marquee-section.style-golf {
    padding: 325px 0 0;
    margin-top: -265px;
    z-index: 0;
}
.marquee-section.style-golf .marquee .text.divider .icon {
    color: var(--theme-color6);
    -webkit-text-fill-color: var(--theme-color6);
    -webkit-text-stroke: 1px var(--theme-color6);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section {
    background-color: #f7f3ee;
    position: relative;
    padding: 120px 0 130px;
}
.service-section.style-golf {
    background-color: var(--theme-color-light);
    padding: 0 0 120px;
}
.service-section.style-golf:before {
    display: none;
}
.service-section.style-nature {
    background-color: #ecf2ea;
}
.service-section.style-nature:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape6.png);
    z-index: 2;
    pointer-events: none;
}
.service-section.style-nature:after {
    display: none;
}
.service-section.style-nature .icon-box .front-icon {
    color: var(--theme-color6);
}
.service-section.style-nature .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color6);
}
.service-section.style-nature .icon-box .bg-icon {
    color: var(--theme-color6);
}
.service-section.style-nature .icon-box .front-icon svg path {
    fill: var(--theme-color6);
}
.service-section.style-nature .icon-box .bg-icon svg path {
    fill: var(--theme-color6);
}
.service-section.style-nature .service-block-six .inner-box:hover .front-icon svg path {
    fill: var(--theme-color-white);
}
.service-section:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape1.png);
    z-index: 2;
    pointer-events: none;
}
.service-section.style-winter {
    background-color: rgba(91, 197, 236, 0.1019607843);
}
@media (max-width: 991.98px) {
    .service-section.style-winter {
        padding: 112px 0 90px;
    }
}
.service-section.style-winter:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape6.png);
    z-index: 2;
    pointer-events: none;
}
.service-section.style-winter:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 58px;
    background-image: url(../images/icons/bg-shape5.png);
    z-index: 2;
    pointer-events: none;
}
.service-section.style-winter .icon-box .front-icon {
    color: var(--theme-color7);
}
.service-section.style-winter .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color7);
}
.service-section.style-winter .icon-box .bg-icon {
    color: var(--theme-color7);
}
.service-section.style-winter .icon-box .front-icon svg path {
    fill: var(--theme-color7);
}
.service-section.style-winter .icon-box .bg-icon svg path {
    fill: var(--theme-color7);
}
.service-section.style-winter-three {
    background-color: rgba(91, 197, 236, 0.1019607843);
    padding: 180px 0 120px;
}
.service-section.style-winter-three:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape6.png);
    z-index: 2;
    pointer-events: none;
}
.service-section.style-winter-three:after {
    display: none;
}
.service-section.style-winter-three .icon-box .front-icon {
    color: var(--theme-color7);
}
.service-section.style-winter-three .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color7);
}
.service-section.style-winter-three .icon-box .bg-icon {
    color: var(--theme-color7);
}
.service-section.style-winter-three .icon-box .front-icon svg path {
    fill: var(--theme-color7);
}
.service-section.style-winter-three .icon-box .bg-icon svg path {
    fill: var(--theme-color7);
}
.service-section .anim-icons .image-1 {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.service-section .anim-icons .image-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
@media (max-width: 575.98px) {
    .service-section .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .service-section .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section .sec-title h2 {
        font-size: 32px;
    }
}
.service-section.style-two {
    padding: 120px 0 100px;
}
@media (max-width: 991.98px) {
    .service-section.style-two {
        padding: 80px 0 60px;
    }
}
.service-section.style-two:before {
    display: none;
}

.service-block {
    margin-bottom: 24px;
}
.service-block .inner-box {
    position: relative;
    text-align: center;
    border: 2px solid #f8f5f0;
    padding: 45px 20px 33px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #fff;
}
.service-block .inner-box:hover {
    background-color: var(--theme-color-dark);
}
.service-block .inner-box:hover::before {
    background-color: var(--theme-color-light);
}
.service-block .inner-box:hover .content-box .title {
    color: var(--theme-color-light);
}
.service-block .inner-box:hover .content-box .text {
    color: var(--theme-color-light);
}
.service-block .inner-box:hover .icon-box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}
.service-block .inner-box:hover .icon-box i {
    color: #fff;
}
.service-block .inner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 95px;
    height: 11px;
    background-color: var(--theme-color1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block .inner-box .icon-box {
    margin-bottom: 11px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.service-block .inner-box .icon-box i {
    color: #ab8555;
    font-size: 58px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block .inner-box .content-box .title {
    margin-bottom: 18px;
}
.service-block .inner-box .content-box .text {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*** 

====================================================================
  service-section two
====================================================================

***/
.service-section-two {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0 90px;
}
.service-section-two.style-modern .service-block-two .overlay-content {
    background-color: rgba(105, 145, 10, 0.48);
}
.service-section-two .sec-title {
    margin-bottom: 54px;
}
.service-section-two .outer-box {
    position: relative;
    margin-right: -1px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: background-image 0.3s ease-in-out;
    transition: background-image 0.3s ease-in-out;
}
.service-section-two .outer-box:before {
    background-color: rgba(var(--theme-color-black-rgb), 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.service-section-two .outer-box .slick-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    top: 30px;
}
.service-section-two .outer-box .slick-slider .slick-arrow {
    background-color: rgba(var(--theme-color-white-rgb), 0.85);
    color: var(--headings-color);
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 10px;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 50px;
    width: 50px;
    border-radius: 7px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-two .outer-box .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.service-section-two .outer-box .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.service-section-two .outer-box .slick-slider .slick-arrow:before {
    color: var(--headings-color);
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-two .outer-box .slick-slider .slick-arrow.slick-prev {
    right: 105px;
    left: auto;
}
.service-section-two .outer-box .slick-slider .slick-arrow.slick-prev:before {
    content: "\f060";
}
.service-section-two .outer-box .slick-slider .slick-arrow.slick-next {
    right: 45px;
}
.service-section-two .outer-box .slick-slider .slick-arrow.slick-next:before {
    content: "\f061";
}

.service-block-two .inner-box {
    border-right: 1px solid rgba(255, 255, 255, 0.82);
    overflow: hidden;
    position: relative;
    min-height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: self-end;
    -ms-flex-align: self-end;
    align-items: self-end;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .service-block-two .inner-box {
        min-height: 500px;
    }
}
.service-block-two .inner-box:hover .overlay-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.service-block-two .inner-box:hover .content {
    opacity: 0;
    visibility: hidden;
}
.service-block-two .category {
    color: var(--theme-color-white);
}
.service-block-two .title {
    color: #fff;
    font-family: Gilda Display;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-two .title a {
    color: #fff;
}
.service-block-two .title a:hover {
    color: var(--theme-color2);
}
@media (max-width: 1366.98px) {
    .service-block-two .title {
        font-size: 26px;
        margin-bottom: 10px;
        margin-top: 0;
    }
}
.service-block-two .content {
    position: relative;
    padding: 43px 50px 35px;
    width: 100%;
    z-index: 1;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
.service-block-two .overlay-content {
    background-color: rgba(var(--theme-color1-rgb), 0.53);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    opacity: 0;
    padding: 43px 50px 35px;
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    width: 100%;
    z-index: 1;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-box-align: center;
}
@media (max-width: 1299.98px) {
    .service-block-two .overlay-content {
        padding: 60px 30px 40px;
    }
}
/*** 

====================================================================
  feature section three
====================================================================

***/
.service-section-three {
    position: relative;
    padding: 128px 0 88px;
}
@media (max-width: 575.98px) {
    .service-section-three {
        padding: 80px 0 50px;
    }
}

.service-block-three {
    margin-bottom: 32px;
}
.service-block-three .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-three .inner-box:hover {
    background-color: var(--theme-color-dark);
}
.service-block-three .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.service-block-three .inner-box:hover .content-box:before {
    height: 100%;
}
.service-block-three .inner-box:hover .content-box .title a {
    color: var(--theme-color-white);
}
.service-block-three .inner-box .image {
    overflow: hidden;
}
.service-block-three .inner-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-three .inner-box .content-box {
    background: rgba(247, 243, 238, 0.8);
    backdrop-filter: blur(2px);
    padding: 25px 30px 24px;
    position: absolute;
    bottom: 30px;
    left: 0;
    min-width: 270px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-three .inner-box .content-box:before {
    background-color: rgba(var(--theme-color1-rgb), 0.84);
    backdrop-filter: blur(4px);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-three .inner-box .content-box .title {
    line-height: 30px;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-three .inner-box .content-box .title a {
    color: var(--theme-color-dark);
}

/*** 

====================================================================
  feature section four
====================================================================

***/
.service-block-four .inner-box {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 805px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: self-end;
    -ms-flex-align: self-end;
    align-items: self-end;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .service-block-four .inner-box {
        min-height: 600px;
    }
}
.service-block-four .inner-box:hover .overlay-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.service-block-four .inner-box:hover .content {
    opacity: 0;
    visibility: hidden;
}
.service-block-four .count {
    border-bottom: 3px solid var(--theme-color-white);
    color: var(--theme-color-white);
    font-family: var(--title-font);
    font-size: 32px;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 30px;
    max-width: 120px;
}
.service-block-four .count span {
    font-size: 16px;
    position: absolute;
    top: -4px;
    margin-left: 5px;
}
.service-block-four .title {
    color: #fff;
    font-family: var(--text-font2);
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-four .title a {
    color: #fff;
}
.service-block-four .title a:hover {
    color: var(--theme-color2);
}
@media (max-width: 1366.98px) {
    .service-block-four .title {
        font-size: 26px;
        margin-bottom: 10px;
        margin-top: 0;
    }
}
.service-block-four .text {
    color: var(--theme-color-white);
    font-size: 18px;
    margin-top: 60px;
}
@media (max-width: 1199.98px) {
    .service-block-four .text {
        margin-top: 20px;
    }
}
.service-block-four .content {
    position: relative;
    padding: 43px 50px 93px;
    width: 100%;
    z-index: 1;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
.service-block-four .overlay-content {
    background-color: rgba(var(--theme-color-white-rgb), 0.15);
    backdrop-filter: blur(10px);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    opacity: 0;
    padding: 43px 50px 55px;
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    width: 100%;
    z-index: 1;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-box-align: center;
}
@media (max-width: 1299.98px) {
    .service-block-four .overlay-content {
        padding: 60px 30px 40px;
    }
}
/***

====================================================================
    Services Section Five
====================================================================

***/
.services-section-five {
    background-color: #f5f0ed;
    padding: 120px 0;
    position: relative;
}
@media (max-width: 991.98px) {
    .services-section-five {
        padding: 120px 0 90px;
    }
}

.service-block-five .inner-box {
    border: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    border-radius: 180px;
    position: relative;
    overflow: hidden;
    padding: 99px 0;
}
@media (max-width: 991.98px) {
    .service-block-five .inner-box {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .service-block-five .inner-box {
        border-radius: 30px;
    }
}
.service-block-five .inner-box:hover:before {
    height: 100%;
}
.service-block-five .inner-box:hover .image-box .bg-image {
    opacity: 1;
    -webkit-transform: rotate(-8deg) scale(1.3);
    transform: rotate(-8deg) scale(1.3);
}
.service-block-five .inner-box:hover .content-box .icon {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
    color: var(--theme-color-light);
    opacity: 0;
}
.service-block-five .inner-box:hover .content-box .title a {
    color: var(--theme-color-light);
}
.service-block-five .inner-box:hover .content-box .text {
    color: var(--theme-color-light);
}
.service-block-five .inner-box:before {
    background-color: rgba(var(--theme-color-dark-rgb), 0.5);
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-five .inner-box .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-block-five .inner-box .image-box .bg-image {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-five .inner-box .content-box {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .service-block-five .inner-box .content-box {
        padding: 0 15px;
    }
}
.service-block-five .inner-box .content-box .icon {
    color: var(--theme-color1);
    font-size: 81px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-five .inner-box .content-box .title {
    font-size: 30px;
    margin-bottom: 14px;
    margin-top: 40px;
}
@media (max-width: 1199.98px) {
    .service-block-five .inner-box .content-box .title {
        font-size: 24px;
    }
}
@media (max-width: 991.98px) {
    .service-block-five .inner-box .content-box .title {
        font-size: 30px;
    }
}
.service-block-five .inner-box .content-box .title a {
    color: var(--theme-color-dark);
}
.service-block-five .inner-box .content-box .text {
    color: var(--text-color);
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/***

====================================================================
    Services Section Six
====================================================================

***/
.service-block-six {
    position: relative;
}
.service-block-six .inner-box {
    position: relative;
}
.service-block-six .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color1);
}
.service-block-six .inner-box:hover .bg-icon {
    color: var(--theme-color-white);
}
.service-block-six .inner-box:hover .bg-icon svg path {
    fill: var(--theme-color-white);
}
.service-block-six .inner-box:hover .front-icon {
    color: var(--theme-color-white);
}
.service-block-six .inner-box:hover .front-icon svg path {
    fill: var(--theme-color-white);
}
.service-block-six .inner-box:hover .shadow-icon {
    color: rgba(var(--theme-color-white-rgb), 0.1);
}
.service-block-six .icon-box {
    display: inline-block;
    height: 142px;
    line-height: 148px;
    overflow: hidden;
    position: relative;
    width: 148px;
}
.service-block-six .icon-box .bg-shap {
    z-index: -1;
}
.service-block-six .icon-box .bg-shap svg path {
    fill: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-six .icon-box .bg-icon {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    font-size: 80px;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-six .icon-box .bg-icon i {
    opacity: 0.2;
}
.service-block-six .icon-box .bg-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-six .icon-box .front-icon {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 60px;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-six .icon-box .front-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-six .shadow-icon {
    color: rgba(var(--theme-color1-rgb), 0.1);
    font-size: 72px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.service-block-six .frnt-icon {
    color: var(--theme-color1);
    font-size: 48px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

/***

====================================================================
    Services Section Seven
====================================================================

***/
.service-block-seven {
    position: relative;
    margin-bottom: 30px;
}
.service-block-seven .inner-box {
    border: 1px solid #dad8d7;
    padding: 25px 28px 30px;
    border-radius: 15px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .inner-box:hover .content-box .title {
    color: var(--theme-color1);
}
.service-block-seven .inner-box:hover .bg-icon {
    color: var(--theme-color1);
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}
.service-block-seven .inner-box:hover .bg-icon svg path {
    fill: var(--theme-color1);
}
.service-block-seven .inner-box:hover .front-icon {
    color: var(--theme-color1);
}
.service-block-seven .inner-box:hover .front-icon svg path {
    fill: var(--theme-color1);
}
.service-block-seven .icon-box {
    display: inline-block;
    height: 93px;
    line-height: 93px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
}
.service-block-seven .icon-box .bg-icon {
    font-size: 80px;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .icon-box .bg-icon i {
    opacity: 0.1;
}
.service-block-seven .icon-box .bg-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .icon-box .front-icon {
    left: 50%;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: var(--theme-color1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .icon-box .front-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .shadow-icon {
    color: rgba(var(--theme-color1-rgb), 0.1);
    font-size: 72px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.service-block-seven .content-box .title {
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven .content-box .text {
    line-height: 1.875;
}

/***

====================================================================
    Services Section Eight
====================================================================

***/
.services-section-eight {
    position: relative;
    padding: 120px 15px 110px;
}
.services-section-eight.island .inner-box.active .title-box .icon-box {
    color: var(--theme-color9);
}
.services-section-eight.island .inner-box.active .title-box .title {
    color: var(--theme-color9);
}
.services-section-eight.island .inner-box .title-box .title:hover {
    color: var(--theme-color9);
}
.services-section-eight.island .inner-box:hover .title-box .title {
    color: var(--theme-color9);
}
.services-section-eight.modern {
    padding: 360px 15px 260px;
    background-color: rgba(105, 145, 10, 0.1019607843);
    margin-top: -250px;
}
.services-section-eight.modern:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 59px;
}
.services-section-eight.modern:after {
    background-image: url(../images/icons/bg-shape1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
}
.services-section-eight.modern .inner-box.active .title-box .icon-box {
    color: var(--theme-color6);
}
.services-section-eight.modern .inner-box.active .title-box .title {
    color: var(--theme-color6);
}
.services-section-eight.modern .inner-box .title-box .title:hover {
    color: var(--theme-color6);
}
.services-section-eight.modern .inner-box:hover .title-box .title {
    color: var(--theme-color6);
}
.services-section-eight .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.services-section-eight .sec-title {
    margin-bottom: 145px;
}
@media (max-width: 1399.98px) {
    .services-section-eight .sec-title {
        margin-bottom: 100px;
    }
}
@media (max-width: 1199.98px) {
    .services-section-eight .sec-title {
        margin-bottom: 80px;
    }
}
.services-section-eight .sec-title .text {
    margin-top: 21px;
    margin-bottom: 20px;
    margin-right: 20px;
}
.services-section-eight .sec-title .btn-box {
    margin-bottom: 6px;
}
.services-section-eight .outer-box {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 0 136px;
}
@media (max-width: 1599.98px) {
    .services-section-eight .outer-box {
        padding: 0;
    }
}
@media (max-width: 991.98px) {
    .services-section-eight .outer-box {
        padding: 0 0 375px;
    }
}
@media (max-width: 575.98px) {
    .services-section-eight .outer-box {
        padding: 0 0 200px;
    }
}
.services-section-eight .outer-box .text-box {
    max-width: 420px;
    margin: 0 auto 35px;
}
@media (max-width: 1199.98px) {
    .services-section-eight .outer-box .text-box {
        max-width: 350px;
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    .services-section-eight .outer-box .text-box {
        max-width: none;
        text-align: center;
    }
}

.service-block-eight {
    margin-bottom: 0;
}
.service-block-eight .inner-box {
    padding-bottom: 25px;
}
.service-block-eight .inner-box.active .title-box .title {
    color: var(--theme-color1);
    padding-left: 20px;
}
.service-block-eight .inner-box.active .title-box .icon-box {
    color: var(--theme-color1);
    width: auto;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.service-block-eight .inner-box.active .image-box.active {
    display: block;
}
.service-block-eight .inner-box.active .image-box.active .image img {
    opacity: 1;
    -webkit-animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
    animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block-eight .inner-box:hover .title-box {
    cursor: pointer;
}
.service-block-eight .inner-box:hover .title-box .title {
    color: var(--theme-color1);
}
.service-block-eight .inner-box:hover .title-box .icon-box {
    color: var(--theme-color1);
}
.service-block-eight .inner-box .title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .service-block-eight .inner-box .title-box {
        max-width: 350px;
    }
}
@media (max-width: 991.98px) {
    .service-block-eight .inner-box .title-box {
        max-width: none;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.service-block-eight .inner-box .title-box .title {
    color: var(--headings-color);
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.26;
    padding-left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
    .service-block-eight .inner-box .title-box .title {
        font-size: 24px;
    }
}
.service-block-eight .inner-box .title-box .title:hover {
    color: var(--theme-color1);
}
.service-block-eight .inner-box .title-box .icon-box {
    color: var(--theme-color6);
    font-size: 28px;
    line-height: 1;
    position: relative;
    top: 4px;
    width: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-eight .inner-box .image-box {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
@media (max-width: 991.98px) {
    .service-block-eight .inner-box .image-box {
        top: auto;
        bottom: 0;
    }
}
.service-block-eight .inner-box .image-box .image {
    position: absolute;
    top: 0;
    margin-bottom: 0;
}
.service-block-eight .inner-box .image-box .image img {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.service-block-eight .inner-box .image-box .image-one {
    top: -92px;
    left: 0;
    max-width: 525px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .service-block-eight .inner-box .image-box .image-one {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .service-block-eight .inner-box .image-box .image-one {
        max-width: 350px;
        top: -47px;
    }
}
@media (max-width: 1199.98px) {
    .service-block-eight .inner-box .image-box .image-one {
        max-width: 290px;
        top: -15px;
    }
}
@media (max-width: 991.98px) {
    .service-block-eight .inner-box .image-box .image-one {
        right: calc(50% + 5px);
        left: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-eight .inner-box .image-box .image-one {
        max-width: 160px;
    }
}
.service-block-eight .inner-box .image-box .image-two {
    right: 0;
    top: -301px;
    max-width: 492px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .service-block-eight .inner-box .image-box .image-two {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .service-block-eight .inner-box .image-box .image-two {
        max-width: 350px;
        top: -256px;
    }
}
@media (max-width: 1199.98px) {
    .service-block-eight .inner-box .image-box .image-two {
        max-width: 290px;
        top: -221px;
    }
}
@media (max-width: 991.98px) {
    .service-block-eight .inner-box .image-box .image-two {
        left: calc(50% + 5px);
        right: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-eight .inner-box .image-box .image-two {
        max-width: 160px;
    }
}

/***

====================================================================
    Services Section Nine
====================================================================

***/
.services-section-nine {
    background-color: var(--theme-color-dark);
    padding: 120px 0;
    position: relative;
}
@media (max-width: 991.98px) {
    .services-section-nine {
        padding: 120px 0 90px;
    }
}

.service-block-nine.style-two {
    margin-top: 115px;
}
.service-block-nine .inner-box {
    background-color: #1e1e1e;
    border: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    border-radius: 185px;
    position: relative;
    overflow: hidden;
    padding: 35px 0 50px;
}
@media (max-width: 991.98px) {
    .service-block-nine .inner-box {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .service-block-nine .inner-box {
        border-radius: 30px;
    }
}
.service-block-nine .inner-box:hover:before {
    height: 100%;
}
.service-block-nine .inner-box:hover .image-box .bg-image {
    opacity: 1;
    -webkit-transform: rotate(-8deg) scale(1.3);
    transform: rotate(-8deg) scale(1.3);
}
.service-block-nine .inner-box:hover .content-box .icon {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
    color: var(--theme-color-light);
    opacity: 0;
}
.service-block-nine .inner-box:hover .content-box .title a {
    color: var(--theme-color-light);
}
.service-block-nine .inner-box:hover .content-box .text {
    color: var(--theme-color-light);
}
.service-block-nine .inner-box:before {
    background-color: rgba(var(--theme-color-dark-rgb), 0.5);
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-nine .inner-box .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-block-nine .inner-box .image-box .bg-image {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-nine .inner-box .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .service-block-nine .inner-box .content-box {
        padding: 0 15px;
    }
}
.service-block-nine .inner-box .content-box .icon {
    color: var(--theme-color1);
    font-size: 81px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-nine .inner-box .content-box .title {
    font-size: 30px;
    margin-bottom: 14px;
    margin-top: 76px;
    text-align: center;
}
@media (max-width: 1199.98px) {
    .service-block-nine .inner-box .content-box .title {
        font-size: 24px;
    }
}
@media (max-width: 991.98px) {
    .service-block-nine .inner-box .content-box .title {
        font-size: 30px;
    }
}
.service-block-nine .inner-box .content-box .title a {
    color: var(--theme-color-white);
}
.service-block-nine .inner-box .content-box .text {
    color: var(--text-color);
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/***

====================================================================
    Services Section Ten
====================================================================

***/
.image-service-block {
    margin-bottom: 30px;
}
.image-service-block .inner-box {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.image-service-block .inner-box:hover .content-box {
    -webkit-transform: translate(0);
    transform: translate(0);
}
.image-service-block .inner-box .image-box {
    position: relative;
}
.image-service-block .inner-box .image-box .image {
    border-radius: 30px;
    margin-bottom: 0;
    outline: 1px solid var(--theme-color1);
    outline-offset: -10px;
    position: relative;
}
.image-service-block .inner-box .image-box .image:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(18, 18, 18, 0.6)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 18, 18, 0.6) 100%);
    border-radius: 30px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.image-service-block .inner-box .image-box .image a {
    display: block;
}
.image-service-block .inner-box .image-box .image a img {
    width: 100%;
}
.image-service-block .inner-box .content-box {
    bottom: 0;
    left: 0;
    padding: 0 50px 25px;
    position: absolute;
    width: 100%;
}
.image-service-block .inner-box .content-box .inner {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}
.image-service-block .inner-box .content-box .inner .title {
    color: var(--theme-color-light);
    font-family: var(--text-font2);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
}
.image-service-block .inner-box .content-box .inner .text {
    color: var(--theme-color-light);
    font-family: var(--text-font2);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    padding-right: 20px;
    margin-bottom: 20px;
    display: none;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-ten {
    position: relative;
    padding: 120px 0 120px;
}
@media (max-width: 991.98px) {
    .service-section-ten {
        padding: 80px 0;
    }
}
.service-section-ten.style-city .service-block-ten .inner-box {
    background-color: #f7f3ee;
}
.service-section-ten.style-city .service-block-ten .inner-box:hover {
    background-color: var(--theme-color-dark);
}
.service-section-ten.style-city .service-block-ten .inner-box:before {
    display: none;
}
.service-section-ten.style-city .service-block-ten .inner-box .icon-box {
    margin-bottom: 10px;
}
.service-section-ten.style-city .service-block-ten .inner-box .icon-box i {
    line-height: 1;
}
.service-section-ten.style-city .service-block-ten .inner-box .content-box .title {
    margin-bottom: 10px;
}
.service-section-ten .outer-box {
    max-width: 1700px;
    padding: 0 15px;
    margin: 0 auto;
}
@media (max-width: 575.98px) {
    .service-section-ten .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .service-section-ten .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section-ten .sec-title h2 {
        font-size: 32px;
    }
}

.service-block-ten {
    margin-bottom: 24px;
}
.service-block-ten .inner-box {
    position: relative;
    text-align: center;
    border: 2px solid #f8f5f0;
    background-color: #f4f4f4;
    padding: 50px 20px 45px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-ten .inner-box:hover {
    background-color: var(--theme-color-dark);
}
.service-block-ten .inner-box:hover .content-box .title {
    color: var(--theme-color-light);
}
.service-block-ten .inner-box:hover .content-box .text {
    color: var(--theme-color-light);
}
.service-block-ten .inner-box:hover .icon-box i {
    color: #fff;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.service-block-ten .inner-box::before {
    content: "";
    position: absolute;
    background-image: url(../images/icons/shape-24.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-ten .inner-box .icon-box {
    margin-bottom: 11px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-ten .inner-box .icon-box i {
    display: inline-block;
    color: #ab8555;
    font-size: 58px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-ten .inner-box .content-box .title {
    margin-bottom: 18px;
}
.service-block-ten .inner-box .content-box .text {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section11 {
    position: relative;
}

.service-block11 .inner-box {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.service-block11 .inner-box:hover .content-box {
    opacity: 0;
}
.service-block11 .inner-box:hover .content-box-hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.service-block11 .inner-box .content-box {
    opacity: 1;
    padding: 202px 23px 50px 50px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
@media (max-width: 1399.98px) {
    .service-block11 .inner-box .content-box {
        padding: 202px 23px 50px 30px;
    }
}
.service-block11 .inner-box .content-box .service-count {
    display: inline-block;
    color: transparent;
    font-family: var(--title-font);
    font-size: 148px;
    font-weight: 400;
    line-height: 96px;
    -webkit-text-stroke: 1px #ffffff;
    margin-bottom: 50px;
}
.service-block11 .inner-box .content-box .title {
    color: var(--theme-color-light);
    margin-bottom: 0;
}
@media (max-width: 1399.98px) {
    .service-block11 .inner-box .content-box .title {
        font-size: 20px;
    }
}
.service-block11 .inner-box .content-box-hover {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    background-color: #0d0c0c;
    bottom: 0;
    top: 0;
    left: 0;
    position: absolute;
    padding: 50px 23px 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
@media (max-width: 1399.98px) {
    .service-block11 .inner-box .content-box-hover {
        padding: 50px 23px 50px 30px;
    }
}
.service-block11 .inner-box .content-box-hover .service-count {
    display: inline-block;
    color: transparent;
    font-family: var(--title-font);
    font-size: 148px;
    font-weight: 400;
    line-height: 96px;
    -webkit-text-stroke: 1px var(--theme-color1);
    margin-bottom: 50px;
}
.service-block11 .inner-box .content-box-hover .title {
    color: var(--theme-color-light);
    margin-bottom: 20px;
}
@media (max-width: 1399.98px) {
    .service-block11 .inner-box .content-box-hover .title {
        font-size: 20px;
    }
}
.service-block11 .inner-box .content-box-hover .text {
    color: var(--theme-color-light);
}
@media (max-width: 1399.98px) {
    .service-block11 .inner-box .content-box-hover .text br {
        display: none;
    }
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section14 {
    padding: 120px 0;
}
@media (max-width: 991.98px) {
    .service-section14 {
        padding: 80px 0;
    }
}
.service-section14 .auto-container {
    max-width: var(--large-container-width);
}

.service-block14 .inner-box {
    margin-bottom: 80px;
}
.service-block14 .inner-box .image-column .inner-column {
    width: 100%;
    height: 100%;
}
.service-block14 .inner-box .image-column .inner-column .image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}
.service-block14 .inner-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
}
.service-block14 .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark2);
    padding: 60px 60px;
    margin: 40px 0 100px;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-block14 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block14 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-block14 .inner-box .content-column .inner-column.style-two {
    margin-right: -100px;
    margin-left: 0;
}
@media (max-width: 991.98px) {
    .service-block14 .inner-box .content-column .inner-column.style-two {
        margin-right: 0;
    }
}
.service-block14 .inner-box .content-column .inner-column .title-box {
    border-bottom: 1px solid rgba(106, 106, 106, 0.5);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.service-block14 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 28px;
    margin-bottom: 10px;
}
.service-block14 .inner-box .content-column .inner-column .title-box span {
    font-size: 16px;
    color: var(--theme-color1);
}
.service-block14 .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.service-block14 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color1);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-block14 .inner-box .content-column .content-box .list-info .text2 {
    color: #acacac;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section15 {
    position: relative;
    padding: 120px 0;
}
@media (max-width: 991.98px) {
    .service-section15 {
        margin-bottom: 80px 0;
    }
}
.service-section15 .auto-container {
    max-width: var(--large-container-width);
}
.service-section15 .service-block-six .inner-box {
    background-color: #f7f3ee;
    padding: 100px 15px 86px;
}
@media (max-width: 991.98px) {
    .service-section15 .service-block-six .video-box {
        display: none;
    }
}
.service-section15 .service-block-six .video-box .video {
    width: 817.778px;
    height: 452px;
}
.service-section15 .service-block-six .image-box {
    width: 100%;
    height: 100%;
}
.service-section15 .service-block-six .image-box .image {
    width: 100%;
    height: 100%;
}
.service-section15 .service-block-six .image-box .image img {
    width: 100%;
    height: 100%;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section16 {
    background-color: var(--theme-color8);
    padding: 120px 0 40px;
}
@media (max-width: 991.98px) {
    .service-section16 {
        padding: 80px 0;
    }
}

.service-block16 .inner-box {
    position: relative;
    margin-bottom: 80px;
}
.service-block16 .inner-box:hover .image-column .inner-column .image img {
    -webkit-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
}
.service-block16 .inner-box .image-column .inner-column .image {
    margin-bottom: 0;
    position: relative;
}
.service-block16 .inner-box .image-column .inner-column .image:before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(1.03%, rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0.75))
    );
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1.03%, rgba(0, 0, 0, 0.75) 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block16 .inner-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block16 .inner-box .content-column {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
}
.service-block16 .inner-box .content-column .inner-column {
    padding: 60px 60px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-block16 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block16 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-block16 .inner-box .content-column .inner-column.style-two {
    margin-right: -100px;
    margin-left: 0;
}
@media (max-width: 991.98px) {
    .service-block16 .inner-box .content-column .inner-column.style-two {
        margin-right: 0;
    }
}
.service-block16 .inner-box .content-column .inner-column .title-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}
.service-block16 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-white);
    font-size: 28px;
    margin-bottom: 10px;
}
.service-block16 .inner-box .content-column .inner-column .title-box span {
    font-size: 16px;
    color: var(--theme-color-white);
}
.service-block16 .inner-box .content-column .content-box .list-info {
    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;
    margin-bottom: 15px;
}
.service-block16 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color-white);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-block16 .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-white);
    font-family: var(--text-font2);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-winter-three {
    position: relative;
}
@media (max-width: 991.98px) {
    .service-section-winter-three {
        padding: 80px 0;
    }
}

.service-block-winter-three .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark);
    padding: 100px 100px 120px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-block-winter-three .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-winter-three .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-block-winter-three .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-block-winter-three .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-block-winter-three .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color7);
}
.service-block-winter-three .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-block-winter-three .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-block-winter-three .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color7);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-block-winter-three .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-luxury4 {
    position: relative;
    padding: 120px 0 120px;
}
.service-section-luxury4 .sec-title .theme-btn {
    float: right;
}
.service-section-luxury4 .images-column .inner-column {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-section-luxury4 .images-column .inner-column .image-box {
    width: 100%;
    height: 100%;
}
.service-section-luxury4 .images-column .inner-column .image {
    width: 100%;
    height: 100%;
}
.service-section-luxury4 .images-column .inner-column .image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.service-block-seven-luxury4 {
    position: relative;
    margin-bottom: 30px;
}
.service-block-seven-luxury4 .inner-box {
    border: 1px solid #dad8d7;
    padding: 25px 28px 30px;
    border-radius: 15px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .inner-box:hover .content-box .title {
    color: var(--theme-color1);
}
.service-block-seven-luxury4 .inner-box:hover .bg-icon {
    color: var(--theme-color1);
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}
.service-block-seven-luxury4 .inner-box:hover .bg-icon svg path {
    fill: var(--theme-color1);
}
.service-block-seven-luxury4 .inner-box:hover .front-icon {
    color: var(--theme-color1);
}
.service-block-seven-luxury4 .inner-box:hover .front-icon svg path {
    fill: var(--theme-color1);
}
.service-block-seven-luxury4 .icon-box {
    display: inline-block;
    height: 93px;
    line-height: 93px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
}
.service-block-seven-luxury4 .icon-box .bg-icon {
    font-size: 80px;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .icon-box .bg-icon i {
    opacity: 0.1;
}
.service-block-seven-luxury4 .icon-box .bg-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .icon-box .front-icon {
    left: 50%;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: var(--theme-color1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .icon-box .front-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .shadow-icon {
    color: rgba(var(--theme-color1-rgb), 0.1);
    font-size: 72px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.service-block-seven-luxury4 .content-box .title {
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-seven-luxury4 .content-box .text {
    line-height: 1.875;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-island {
    position: relative;
    padding: 120px 0;
}
.service-section-island .anim-icons .image-1 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.service-box-island:last-child .inner:before {
    display: none;
}
.service-box-island .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: first baseline;
    -ms-flex-align: first baseline;
    align-items: first baseline;
    margin-bottom: 55px;
    position: relative;
}
.service-box-island .inner:before {
    border-left: 1px solid rgba(0, 0, 0, 0.1019607843);
    content: "";
    height: calc(100% - 22px);
    left: 31px;
    top: 70px;
    position: absolute;
    width: 1px;
}
.service-box-island .inner:hover .icon-box {
    color: var(--theme-color-light);
}
.service-box-island .inner:hover .icon-box:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.service-box-island .inner .icon-box {
    border: 1px solid rgba(0, 0, 0, 0.1019607843);
    border-radius: 50%;
    color: var(--theme-color9);
    font-size: 28px;
    height: 62px;
    line-height: 58px;
    min-width: 62px;
    width: 62px;
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-right: 36px;
}
.service-box-island .inner .icon-box:before {
    background-color: var(--theme-color9);
    border-radius: 50%;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-box-island .inner .content .text {
    margin-bottom: 0;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-island2 {
    position: relative;
    background-color: #cfdbe7;
    padding: 120px 0;
}
.service-section-island2 .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-island2 .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-island2 .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-island2 .filters li:last-child {
    margin-right: 0;
}
.service-section-island2 .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color9);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-island2 .filters li.active:before,
.service-section-island2 .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.service-block-island2 .inner-box {
    background-color: var(--theme-color-light);
    padding: 55px;
    border-radius: 30px;
}
.service-block-island2 .image-column .inner-column {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-right: 40px;
}
.service-block-island2 .image-column .inner-column figure {
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.service-block-island2 .image-column .inner-column figure img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.service-block-island2 .content-column .inner-column .title-box .title {
    font-size: 36px;
    margin-bottom: 10px;
}
.service-block-island2 .content-column .inner-column .title-box span {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--title-font2);
    color: var(--theme-color9);
}
.service-block-island2 .content-column .inner-column .content-box .text {
    margin-bottom: 25px;
    margin-top: 20px;
}
.service-block-island2 .content-column .inner-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.service-block-island2 .content-column .inner-column .content-box .list-info .icon {
    font-size: 20px;
    color: var(--theme-color-black);
    margin-right: 10px;
}
.service-block-island2 .content-column .inner-column .content-box .list-info .text2 {
    color: var(--theme-color-black);
}
.service-block-island2 .content-column .inner-column .content-box .theme-btn {
    margin-top: 20px;
    background-color: var(--theme-color9);
    border-color: var(--theme-color9);
}
.service-block-island2 .content-column .inner-column .content-box .theme-btn:before {
    background-color: var(--theme-color8);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-island3 {
    background-color: #cedbe6;
    position: relative;
    padding: 120px 0;
}

.service-block-island3 .inner-box .image-box figure img {
    width: 100%;
    height: 100%;
}
.service-block-island3 .inner-box .content-box .inner-box {
    background-color: #cedbe6;
    position: relative;
    padding: 30px;
    margin: 0 60px;
    margin-top: -85px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.service-block-island3 .inner-box .content-box .inner-box .view-btn {
    color: var(--theme-color-black);
    font-size: 12px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}
.service-block-island3 .inner-box .content-box .inner-box .view-btn:hover {
    color: var(--theme-color9);
}
.service-block-island3 .inner-box .content-box .inner-box .view-btn .icon {
    font-size: 6px;
    width: 14px;
    height: 14px;
    line-height: 15px;
    border-radius: 50%;
    margin-left: 10px;
    text-align: center;
    background-color: var(--theme-color9);
    color: var(--theme-color-light);
}

/*** 

====================================================================
      Services-Section-City
====================================================================

***/
.services-section-city {
    padding: 120px 0 120px;
}
.services-section-city .services-block-city .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 48px;
}
.services-section-city .services-block-city .inner-box:hover .image img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.services-section-city .services-block-city .inner-box .image {
    overflow: hidden;
    border-radius: 50%;
    margin-right: 23px;
    min-width: 89px;
    height: 89px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.services-section-city .services-block-city .inner-box .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.services-section-city .services-block-city .inner-box .content-box .text {
    font-size: 14px;
    line-height: 27px;
}
.services-section-city .services-block-city .inner-box .content-box .title {
    margin-bottom: 8px;
    font-weight: 400;
}
.services-section-city .image-column .inner-column .image {
    text-align: right;
    position: relative;
    margin-bottom: 0;
}
.services-section-city .image-column .inner-column .image .layer-inner {
    top: 20px;
    position: absolute;
    right: 20px;
    width: 424px;
    max-width: 424px;
    height: 555px;
    overflow: hidden;
    border-radius: 0px 0px 213px 213px;
    -webkit-transform: rotate(0deg);
    z-index: 1;
    border: 1px solid #fff;
}
.services-section-city .image-column .inner-column .image img {
    border-radius: 0px 0px 250px 250px;
}
.services-section-city .image-column .image-1 {
    position: relative;
    margin-bottom: 0;
}
.services-section-city .image-column .image-1 img {
    bottom: 59px;
    position: absolute;
    left: 32px;
    width: 194px;
    max-width: 194px;
    height: 194px;
    overflow: hidden;
    border-radius: 100% 100% 100% 100%;
    -webkit-transform: rotate(0deg);
    z-index: 1;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-city2 {
    position: relative;
    background-color: #f7f3ee;
    padding: 150px 0 0;
}
.service-section-city2 .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-city2 .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-city2 .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-city2 .filters li:last-child {
    margin-right: 0;
}
.service-section-city2 .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-city2 .filters li.active:before,
.service-section-city2 .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.service-section-city2 .service-block-city2 .inner-box {
    position: relative;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark);
    padding: 100px 100px 120px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-section-city2 .service-block-city2 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section-city2 .service-block-city2 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-section-city2 .service-block-city2 .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color1);
}
.service-section-city2 .service-block-city2 .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color1);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-section-city2 .service-block-city2 .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section17 {
    position: relative;
    padding: 120px 0;
}
@media (max-width: 991.98px) {
    .service-section17 {
        margin-bottom: 80px 0;
    }
}
.service-section17 .service-block-six .inner-box {
    background-color: #fff;
    padding: 100px 15px 86px;
}
.service-section17 .service-block-six .inner-box .icon-box .front-icon {
    color: var(--theme-color6);
}
.service-section17 .service-block-six .image-box {
    width: 100%;
    height: 100%;
}
.service-section17 .service-block-six .image-box .image {
    width: 100%;
    height: 100%;
}
.service-section17 .service-block-six .image-box .image img {
    width: 100%;
    height: 100%;
}
.service-section17 .service-block-six .icon-box .front-icon svg path {
    fill: var(--theme-color6);
}
.service-section17 .service-block-six .icon-box .bg-icon {
    fill: var(--theme-color6);
}
.service-section17 .service-block-six .icon-box .bg-icon svg path {
    fill: var(--theme-color6);
}
.service-section17 .service-block-six .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color6);
}
.service-section17 .service-block-six .inner-box:hover .icon-box .front-icon svg path {
    fill: var(--theme-color-light);
}
.service-section17 .service-block-six .icon-box .bg-shap svg path {
    fill: #ecf2ea;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-hostel2 {
    position: relative;
    padding: 140px 0 0;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
}
.service-section-hostel2:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 59px;
}
.service-section-hostel2 .outer-box {
    position: relative;
}

.service-block-hostel2 .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark);
    padding: 100px 100px 120px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-block-hostel2 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-hostel2 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-block-hostel2 .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-block-hostel2 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-block-hostel2 .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color1);
}
.service-block-hostel2 .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-block-hostel2 .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-block-hostel2 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color1);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-block-hostel2 .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
      Service Section luxury-two
====================================================================

***/
.service-section-luxury-two {
    position: relative;
    background-color: #f6f2ed;
    padding: 120px 0;
}
.service-section-luxury-two .anim-icons .shape-2 {
    position: absolute;
    right: -91px;
    bottom: -98px;
    -webkit-transform: rotateZ(271deg);
    transform: rotateZ(271deg);
}
.service-section-luxury-two .anim-icons .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.service-section-luxury-two .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-luxury-two .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-luxury-two .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-luxury-two .filters li:last-child {
    margin-right: 0;
}
.service-section-luxury-two .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color9);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-luxury-two .filters li.active:before,
.service-section-luxury-two .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.service-block-luxury-two .inner-box {
    background-color: var(--theme-color-light);
    padding: 55px;
    border-radius: 30px;
}
.service-block-luxury-two .image-column .inner-column {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-right: 40px;
}
.service-block-luxury-two .image-column .inner-column figure {
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.service-block-luxury-two .image-column .inner-column figure img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.service-block-luxury-two .content-column .inner-column .title-box .title {
    font-size: 36px;
    margin-bottom: 10px;
    margin-left: 0px;
}
.service-block-luxury-two .content-column .inner-column .title-box span {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--title-font2);
    color: var(--theme-color1) s;
}
.service-block-luxury-two .content-column .inner-column .content-box .text {
    margin-bottom: 25px;
    margin-top: 20px;
}
.service-block-luxury-two .content-column .inner-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.service-block-luxury-two .content-column .inner-column .content-box .list-info .icon {
    font-size: 20px;
    color: var(--theme-color-black);
    margin-right: 10px;
}
.service-block-luxury-two .content-column .inner-column .content-box .list-info .text2 {
    color: var(--theme-color-black);
}
.service-block-luxury-two .content-column .inner-column .content-box .theme-btn {
    margin-top: 20px;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-city4 {
    position: relative;
    background-color: #ecf2ea;
    padding: 150px 0 0;
}
.service-section-city4:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 30px;
}
.service-section-city4 .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-city4 .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-city4 .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-city4 .filters li:last-child {
    margin-right: 0;
}
.service-section-city4 .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-city4 .filters li.active:before,
.service-section-city4 .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.service-section-city4 .service-block-city2 .inner-box {
    position: relative;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark);
    padding: 100px 100px 120px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-section-city4 .service-block-city2 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section-city4 .service-block-city2 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-section-city4 .service-block-city2 .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color1);
}
.service-section-city4 .service-block-city2 .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color1);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-section-city4 .service-block-city2 .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-modern3 {
    padding: 120px 0;
    position: relative;
}

.contact-block-modern3 .inner-box {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 125px;
    outline: 1px solid var(--theme-color1);
    outline-offset: -30px;
}
.contact-block-modern3 .inner-box:before {
    background-image: url(../images/resource/service19-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contact-block-modern3 .inner-box:after {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contact-block-modern3 .inner-box .icon-box {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.contact-block-modern3 .inner-box .title {
    position: relative;
    margin-bottom: 30px;
    color: var(--theme-color-light);
    z-index: 1;
}
.contact-block-modern3 .contact-info {
    padding: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.contact-block-modern3 .contact-info .info-title {
    margin-bottom: 2px;
    color: var(--theme-color-light);
}
.contact-block-modern3 .contact-info .number {
    color: var(--theme-color-light);
    text-transform: capitalize;
}

/***

====================================================================
    Services Section Eight
====================================================================

***/
.services-section-nature3 {
    position: relative;
    padding: 120px 15px 215px;
}
.services-section-nature3.island .inner-box.active .title-box .icon-box {
    color: var(--theme-color-black);
}
.services-section-nature3.island .inner-box.active .title-box .title {
    color: var(--theme-color-black);
}
.services-section-nature3.island .inner-box .title-box .title:hover {
    color: var(--theme-color-black);
}
.services-section-nature3.island .inner-box:hover .title-box .title {
    color: var(--theme-color-black);
}
.services-section-nature3.modern {
    padding: 360px 15px 260px;
    background-color: rgba(105, 145, 10, 0.1019607843);
    margin-top: -250px;
}
.services-section-nature3.modern:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 59px;
}
.services-section-nature3.modern:after {
    background-image: url(../images/icons/bg-shape1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
}
.services-section-nature3.modern .inner-box.active .title-box .icon-box {
    color: var(--theme-color6);
}
.services-section-nature3.modern .inner-box.active .title-box .title {
    color: var(--theme-color6);
}
.services-section-nature3.modern .inner-box .title-box .title:hover {
    color: var(--theme-color6);
}
.services-section-nature3.modern .inner-box:hover .title-box .title {
    color: var(--theme-color6);
}
.services-section-nature3 .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.services-section-nature3 .sec-title {
    margin-bottom: 145px;
}
@media (max-width: 1399.98px) {
    .services-section-nature3 .sec-title {
        margin-bottom: 100px;
    }
}
@media (max-width: 1199.98px) {
    .services-section-nature3 .sec-title {
        margin-bottom: 80px;
    }
}
.services-section-nature3 .sec-title .text {
    margin-top: 21px;
    margin-bottom: 20px;
    margin-right: 20px;
}
.services-section-nature3 .sec-title .btn-box {
    margin-bottom: 6px;
}
.services-section-nature3 .outer-box {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 0 136px;
}
@media (max-width: 1599.98px) {
    .services-section-nature3 .outer-box {
        padding: 0;
    }
}
@media (max-width: 991.98px) {
    .services-section-nature3 .outer-box {
        padding: 0 0 375px;
    }
}
@media (max-width: 575.98px) {
    .services-section-nature3 .outer-box {
        padding: 0 0 200px;
    }
}
.services-section-nature3 .outer-box .text-box {
    max-width: 420px;
    margin: 0 auto 35px;
}
@media (max-width: 1199.98px) {
    .services-section-nature3 .outer-box .text-box {
        max-width: 350px;
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    .services-section-nature3 .outer-box .text-box {
        max-width: none;
        text-align: center;
    }
}

.service-block-nature {
    margin-bottom: 0;
}
.service-block-nature .inner-box {
    padding-bottom: 25px;
}
.service-block-nature .inner-box.active .title-box .title {
    color: var(--theme-color-black);
    padding-left: 20px;
}
.service-block-nature .inner-box.active .title-box .icon-box {
    color: var(--theme-color6);
    width: auto;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.service-block-nature .inner-box.active .image-box.active {
    display: block;
}
.service-block-nature .inner-box.active .image-box.active .image img {
    opacity: 1;
    -webkit-animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
    animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block-nature .inner-box:hover .title-box {
    cursor: pointer;
}
.service-block-nature .inner-box:hover .title-box .title {
    color: var(--theme-color6);
}
.service-block-nature .inner-box:hover .title-box .icon-box {
    color: var(--theme-color6);
}
.service-block-nature .inner-box .title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .service-block-nature .inner-box .title-box {
        max-width: 350px;
    }
}
@media (max-width: 991.98px) {
    .service-block-nature .inner-box .title-box {
        max-width: none;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.service-block-nature .inner-box .title-box .title {
    color: var(--headings-color);
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.26;
    padding-left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
    .service-block-nature .inner-box .title-box .title {
        font-size: 24px;
    }
}
.service-block-nature .inner-box .title-box .title:hover {
    color: var(--theme-color6);
}
.service-block-nature .inner-box .title-box .icon-box {
    color: var(--theme-color6);
    font-size: 28px;
    line-height: 1;
    position: relative;
    top: 4px;
    width: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-block-nature .inner-box .image-box {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
@media (max-width: 991.98px) {
    .service-block-nature .inner-box .image-box {
        top: auto;
        bottom: 0;
    }
}
.service-block-nature .inner-box .image-box .image {
    position: absolute;
    top: 0;
    margin-bottom: 0;
}
.service-block-nature .inner-box .image-box .image img {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.service-block-nature .inner-box .image-box .image-one {
    top: -92px;
    left: 0;
    max-width: 525px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .service-block-nature .inner-box .image-box .image-one {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .service-block-nature .inner-box .image-box .image-one {
        max-width: 350px;
        top: -47px;
    }
}
@media (max-width: 1199.98px) {
    .service-block-nature .inner-box .image-box .image-one {
        max-width: 290px;
        top: -15px;
    }
}
@media (max-width: 991.98px) {
    .service-block-nature .inner-box .image-box .image-one {
        right: calc(50% + 5px);
        left: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-nature .inner-box .image-box .image-one {
        max-width: 160px;
    }
}
.service-block-nature .inner-box .image-box .image-two {
    right: 0;
    top: -301px;
    max-width: 492px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .service-block-nature .inner-box .image-box .image-two {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .service-block-nature .inner-box .image-box .image-two {
        max-width: 350px;
        top: -256px;
    }
}
@media (max-width: 1199.98px) {
    .service-block-nature .inner-box .image-box .image-two {
        max-width: 290px;
        top: -221px;
    }
}
@media (max-width: 991.98px) {
    .service-block-nature .inner-box .image-box .image-two {
        left: calc(50% + 5px);
        right: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-nature .inner-box .image-box .image-two {
        max-width: 160px;
    }
}

.service-section-nature2 .service-block-winter-three .inner-box .content-column .inner-column .title-box span {
    color: var(--theme-color6);
}
.service-section-nature2 .service-block-winter-three .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color6);
}

/*** 

====================================================================
  service-section-breakfast
====================================================================

***/
.service-section-breakfast {
    position: relative;
}
.service-section-breakfast .bg-image {
    position: absolute;
    z-index: -1;
}
.service-section-breakfast .bg-image:before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-lodge {
    position: relative;
    padding: 120px 0 120px;
}
.service-section-lodge .sec-title .theme-btn {
    float: right;
}
.service-section-lodge .images-column .inner-column {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-section-lodge .images-column .inner-column .image-box {
    width: 100%;
    height: 100%;
}
.service-section-lodge .images-column .inner-column .image {
    width: 100%;
    height: 100%;
}
.service-section-lodge .images-column .inner-column .image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
.service-section-lodge .service-block-seven-lodge {
    position: relative;
    margin-bottom: 30px;
}
.service-section-lodge .service-block-seven-lodge .inner-box {
    border: 1px solid #dad8d7;
    padding: 25px 28px 30px;
    border-radius: 15px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .icon-box {
    display: inline-block;
    height: 93px;
    line-height: 93px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
}
.service-section-lodge .service-block-seven-lodge .icon-box .bg-icon {
    font-size: 80px;
    color: var(--theme-color6);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .icon-box .bg-icon i {
    opacity: 0.1;
}
.service-section-lodge .service-block-seven-lodge .icon-box .bg-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .icon-box .front-icon {
    left: 50%;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: var(--theme-color6);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .icon-box .front-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .shadow-icon {
    color: rgba(var(--theme-color1-rgb), 0.1);
    font-size: 72px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.service-section-lodge .service-block-seven-lodge .content-box .title {
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-lodge .service-block-seven-lodge .content-box .text {
    line-height: 1.875;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-cultural {
    position: relative;
    background-color: #f7f3ee;
    padding: 200px 0 200px;
    margin-top: -100px;
    z-index: -1;
}
.service-section-cultural:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 30px;
}
.service-section-cultural:after {
    background-image: url(../images/icons/bg-shape10.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 59px;
}
.service-section-cultural .outer-box {
    margin: 0 30px;
}
.service-section-cultural .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-cultural .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-cultural .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-cultural .filters li:last-child {
    margin-right: 0;
}
.service-section-cultural .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-cultural .filters li.active:before,
.service-section-cultural .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.service-section-cultural .service-block-city2 .inner-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .inner-column {
    background-color: var(--theme-color-dark);
    padding: 100px 100px 120px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-section-cultural .service-block-city2 .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section-cultural .service-block-city2 .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-section-cultural .service-block-city2 .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color1);
}
.service-section-cultural .service-block-city2 .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color1);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-section-cultural .service-block-city2 .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-ocean-h01 {
    position: relative;
    padding: 120px 0 120px;
}
@media (max-width: 991.98px) {
    .service-section-ocean-h01 {
        padding: 80px 0;
    }
}
.service-section-ocean-h01 .service-block-ten .inner-box::before {
    background-image: url(../images/resource/service-ocean-01.jpg);
}
.service-section-ocean-h01 .service-block-ten .inner-box {
    position: relative;
    border: none;
    margin-top: -160px;
}
.service-section-ocean-h01 .service-block-ten .inner-box:after {
    position: absolute;
    content: "";
    background-color: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.service-section-ocean-h01 .service-block-ten .inner-box .icon-box {
    position: relative;
    z-index: 1;
}
.service-section-ocean-h01 .service-block-ten .inner-box .content-box {
    position: relative;
    z-index: 1;
}
.service-section-ocean-h01 .service-block-ten .inner-box .content-box .title {
    color: var(--theme-color-light);
}
.service-section-ocean-h01 .service-block-ten .inner-box .content-box .text {
    color: var(--theme-color-light);
}
.service-section-ocean-h01 .service-block-ten .inner-box .icon-box i {
    color: var(--theme-color-light);
}
.service-section-ocean-h01 .outer-box {
    max-width: 1700px;
    padding: 0 15px;
    margin: 0 auto;
}
@media (max-width: 575.98px) {
    .service-section-ocean-h01 .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .service-section-ocean-h01 .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .service-section-ocean-h01 .sec-title h2 {
        font-size: 32px;
    }
}

/*** 

====================================================================
      service-section-campground
====================================================================

***/
.service-section-campground {
    position: relative;
    background-color: rgba(170, 132, 83, 0.1019607843);
    padding: 120px 0;
}
.service-section-campground .anim-icons .shape-2 {
    position: absolute;
    right: -91px;
    bottom: -98px;
    -webkit-transform: rotateZ(271deg);
    transform: rotateZ(271deg);
}
.service-section-campground .anim-icons .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.service-section-campground .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-campground .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-campground .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-campground .filters li:last-child {
    margin-right: 0;
}
.service-section-campground .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color9);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-campground .filters li.active:before,
.service-section-campground .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.service-block-campground .inner-box {
    background-color: var(--theme-color-light);
    padding: 60px 25px 60px 50px;
    border-radius: 10px;
}
.service-block-campground .image-column .inner-column {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-right: 40px;
}
.service-block-campground .image-column .inner-column figure {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.service-block-campground .image-column .inner-column figure img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.service-block-campground .content-column .inner-column .title-box .title {
    font-size: 36px;
    margin-bottom: 10px;
    margin-left: 0px;
}
.service-block-campground .content-column .inner-column .title-box span {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--title-font2);
    color: var(--theme-color1) s;
}
.service-block-campground .content-column .inner-column .content-box .text {
    margin-bottom: 25px;
    margin-top: 20px;
}
.service-block-campground .content-column .inner-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.service-block-campground .content-column .inner-column .content-box .list-info .icon {
    font-size: 20px;
    color: var(--theme-color-black);
    margin-right: 10px;
}
.service-block-campground .content-column .inner-column .content-box .list-info .text2 {
    color: var(--theme-color-black);
}
.service-block-campground .content-column .inner-column .content-box .theme-btn {
    margin-top: 20px;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-ski {
    position: relative;
    padding: 120px 0;
}
.service-section-ski .anim-icon {
    position: absolute;
    bottom: -46px;
    z-index: -1;
}
.service-section-ski .anim-icon {
    position: absolute;
    bottom: 0;
}
.service-section-ski .filters {
    margin-bottom: 40px;
    text-align: center;
}
.service-section-ski .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    padding-bottom: 4px;
}
.service-section-ski .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--title-font2);
    margin: 0 0 0;
    padding: 5px 33px 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-ski .filters li:last-child {
    margin-right: 0;
}
.service-section-ski .filters li:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    content: "";
    background-color: var(--theme-color7);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition:
        transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
}
.service-section-ski .filters li.active:before,
.service-section-ski .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.service-section-ski .service-block-island2 .inner-box {
    background-color: #eef9fd;
}
.service-section-ski .service-block-island2 .content-column .inner-column .content-box .theme-btn {
    background-color: var(--theme-color7);
}
.service-section-ski .service-block-island2 .content-column .inner-column .title-box span {
    color: var(--theme-color7);
}

/***

====================================================================
    Services Section
====================================================================

***/
.services-section-ski2 {
    position: relative;
    padding: 120px 15px 215px;
    background-color: #eef9fd;
}
.services-section-ski2 .anim-icons {
    position: absolute;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: -1px;
}
.services-section-ski2.island .inner-box.active .title-box .icon-box {
    color: var(--theme-color9);
}
.services-section-ski2.island .inner-box.active .title-box .title {
    color: var(--theme-color9);
}
.services-section-ski2.island .inner-box .title-box .title:hover {
    color: var(--theme-color9);
}
.services-section-ski2.island .inner-box:hover .title-box .title {
    color: var(--theme-color9);
}
.services-section-ski2.modern {
    padding: 360px 15px 260px;
    background-color: rgba(105, 145, 10, 0.1019607843);
    margin-top: -250px;
}
.services-section-ski2.modern:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 59px;
}
.services-section-ski2.modern:after {
    background-image: url(../images/icons/bg-shape1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
}
.services-section-ski2.modern .inner-box.active .title-box .icon-box {
    color: var(--theme-color6);
}
.services-section-ski2.modern .inner-box.active .title-box .title {
    color: var(--theme-color6);
}
.services-section-ski2.modern .inner-box .title-box .title:hover {
    color: var(--theme-color6);
}
.services-section-ski2.modern .inner-box:hover .title-box .title {
    color: var(--theme-color6);
}
.services-section-ski2 .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.services-section-ski2 .sec-title {
    margin-bottom: 145px;
}
@media (max-width: 1399.98px) {
    .services-section-ski2 .sec-title {
        margin-bottom: 100px;
    }
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .sec-title {
        margin-bottom: 80px;
    }
}
.services-section-ski2 .sec-title .text {
    margin-top: 21px;
    margin-bottom: 20px;
    margin-right: 20px;
}
.services-section-ski2 .sec-title .btn-box {
    margin-bottom: 6px;
}
.services-section-ski2 .outer-box {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 0 136px;
}
@media (max-width: 1599.98px) {
    .services-section-ski2 .outer-box {
        padding: 0;
    }
}
@media (max-width: 991.98px) {
    .services-section-ski2 .outer-box {
        padding: 0 0 375px;
    }
}
@media (max-width: 575.98px) {
    .services-section-ski2 .outer-box {
        padding: 0 0 200px;
    }
}
.services-section-ski2 .outer-box .text-box {
    max-width: 420px;
    margin: 0 auto 35px;
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .outer-box .text-box {
        max-width: 350px;
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    .services-section-ski2 .outer-box .text-box {
        max-width: none;
        text-align: center;
    }
}
.services-section-ski2 .service-block-eight {
    margin-bottom: 0;
}
.services-section-ski2 .service-block-eight .inner-box {
    padding-bottom: 25px;
}
.services-section-ski2 .service-block-eight .inner-box.active .title-box .title {
    color: var(--theme-color-black);
    padding-left: 20px;
}
.services-section-ski2 .service-block-eight .inner-box.active .title-box .icon-box {
    color: var(--theme-color7);
    width: auto;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.services-section-ski2 .service-block-eight .inner-box.active .image-box.active {
    display: block;
}
.services-section-ski2 .service-block-eight .inner-box.active .image-box.active .image img {
    opacity: 1;
    -webkit-animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
    animation: anim-inactive-image 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section-ski2 .service-block-eight .inner-box:hover .title-box {
    cursor: pointer;
}
.services-section-ski2 .service-block-eight .inner-box:hover .title-box .title {
    color: var(--theme-color7);
}
.services-section-ski2 .service-block-eight .inner-box:hover .title-box .icon-box {
    color: var(--theme-color7);
}
.services-section-ski2 .service-block-eight .inner-box .title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .service-block-eight .inner-box .title-box {
        max-width: 350px;
    }
}
@media (max-width: 991.98px) {
    .services-section-ski2 .service-block-eight .inner-box .title-box {
        max-width: none;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.services-section-ski2 .service-block-eight .inner-box .title-box .title {
    color: var(--headings-color);
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.26;
    padding-left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .service-block-eight .inner-box .title-box .title {
        font-size: 24px;
    }
}
.services-section-ski2 .service-block-eight .inner-box .title-box .title:hover {
    color: var(--theme-color7);
}
.services-section-ski2 .service-block-eight .inner-box .title-box .icon-box {
    color: var(--theme-color6);
    font-size: 28px;
    line-height: 1;
    position: relative;
    top: 4px;
    width: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.services-section-ski2 .service-block-eight .inner-box .image-box {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
@media (max-width: 991.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box {
        top: auto;
        bottom: 0;
    }
}
.services-section-ski2 .service-block-eight .inner-box .image-box .image {
    position: absolute;
    top: 0;
    margin-bottom: 0;
}
.services-section-ski2 .service-block-eight .inner-box .image-box .image img {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
    top: -92px;
    left: 0;
    max-width: 525px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
        max-width: 350px;
        top: -47px;
    }
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
        max-width: 290px;
        top: -15px;
    }
}
@media (max-width: 991.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
        right: calc(50% + 5px);
        left: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-one {
        max-width: 160px;
    }
}
.services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
    right: 0;
    top: -301px;
    max-width: 492px;
    width: 100%;
}
@media (max-width: 1599.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
        max-width: 400px;
    }
}
@media (max-width: 1399.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
        max-width: 350px;
        top: -256px;
    }
}
@media (max-width: 1199.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
        max-width: 290px;
        top: -221px;
    }
}
@media (max-width: 991.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
        left: calc(50% + 5px);
        right: auto;
        top: auto;
        bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .services-section-ski2 .service-block-eight .inner-box .image-box .image-two {
        max-width: 160px;
    }
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-winter5 {
    position: relative;
    padding: 120px 0 120px;
    background-color: #fff;
}
.service-section-winter5 .sec-title .theme-btn {
    float: right;
}
.service-section-winter5 .images-column .inner-column {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-section-winter5 .images-column .inner-column .image-box {
    width: 100%;
    height: 100%;
}
.service-section-winter5 .images-column .inner-column .image {
    width: 100%;
    height: 100%;
}
.service-section-winter5 .images-column .inner-column .image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
.service-section-winter5 .service-block-seven-luxury4 {
    position: relative;
    margin-bottom: 30px;
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box {
    border: 1px solid #dad8d7;
    padding: 25px 28px 30px;
    border-radius: 15px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box:hover .content-box .title {
    color: var(--theme-color7);
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box:hover .bg-icon {
    color: var(--theme-color7);
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box:hover .bg-icon svg path {
    fill: var(--theme-color7);
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box:hover .front-icon {
    color: var(--theme-color7);
}
.service-section-winter5 .service-block-seven-luxury4 .inner-box:hover .front-icon svg path {
    fill: var(--theme-color7);
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box {
    display: inline-block;
    height: 93px;
    line-height: 93px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box .bg-icon {
    font-size: 80px;
    color: var(--theme-color7);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box .bg-icon i {
    opacity: 0.1;
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box .bg-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box .front-icon {
    left: 50%;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: var(--theme-color7);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .icon-box .front-icon svg path {
    fill: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .shadow-icon {
    color: rgba(var(--theme-color1-rgb), 0.1);
    font-size: 72px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.service-section-winter5 .service-block-seven-luxury4 .content-box .title {
    margin-bottom: 15px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.service-section-winter5 .service-block-seven-luxury4 .content-box .text {
    line-height: 1.875;
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-winter-5 {
    background-color: #eff9fd;
    position: relative;
    padding: 120px 0;
}
.service-section-winter-5 .anim-shape .image-4 {
    position: absolute;
    bottom: 0px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.service-section-winter-5 .anim-shape .image-3 {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
}
.service-section-winter-5 .fa-solid.fa-circle-arrow-right {
    margin-left: 9px;
    font-size: 14px;
}
.service-section-winter-5 .service-block-island3 .inner-box .image-box figure img {
    width: 100%;
    height: 100%;
}
.service-section-winter-5 .service-block-island3 .inner-box .content-box .inner-box {
    background-color: #eff9fd;
    position: relative;
    padding: 30px;
    margin: 0 60px;
    margin-top: -85px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.service-section-winter-5 .service-block-island3 .inner-box .content-box .inner-box .view-btn {
    color: var(--theme-color-black);
    font-size: 12px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    display: inline-block;
}
.service-section-winter-5 .service-block-island3 .inner-box .content-box .inner-box .view-btn:hover {
    color: var(--theme-color7);
}
.service-section-winter-5 .service-block-island3 .inner-box .content-box .inner-box .view-btn .icon {
    font-size: 6px;
    width: 14px;
    height: 14px;
    line-height: 15px;
    border-radius: 50%;
    margin-left: 10px;
    text-align: center;
    background-color: var(--theme-color9);
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-golf-two {
    position: relative;
    padding: 120px 30px 0;
    background-color: #f0f4e6;
    z-index: -1;
}
.service-section-golf-two:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/service-golf2.png);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
    height: 72px;
    top: 0;
    left: 0;
}
@media (max-width: 991.98px) {
    .service-section-golf-two {
        padding: 80px 0;
    }
}

.service-block-golf-two .inner-box .image-column .inner-column {
    position: relative;
    z-index: 1;
    height: 100%;
}
.service-block-golf-two .inner-box .image-column .inner-column .image-1 {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
}
.service-block-golf-two .inner-box .image-column .inner-column .image-1 img {
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
}
.service-block-golf-two .inner-box .content-column .inner-column {
    background-color: #303030;
    padding: 100px 100px 120px;
    border-radius: 0 30px 30px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .service-block-golf-two .inner-box .content-column .inner-column {
        margin-left: 0;
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .service-block-golf-two .inner-box .content-column .inner-column {
        padding: 30px 20px;
    }
}
.service-block-golf-two .inner-box .content-column .inner-column .title-box {
    margin-bottom: 30px;
}
.service-block-golf-two .inner-box .content-column .inner-column .title-box .title {
    color: var(--theme-color-light);
    font-size: 48px;
    margin-bottom: 10px;
}
.service-block-golf-two .inner-box .content-column .inner-column .title-box span {
    font-size: 18px;
    color: var(--theme-color6);
}
.service-block-golf-two .inner-box .content-column .text {
    color: var(--theme-color-light);
    margin-bottom: 50px;
}
.service-block-golf-two .inner-box .content-column .content-box .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.service-block-golf-two .inner-box .content-column .content-box .list-info .icon {
    color: var(--theme-color6);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.service-block-golf-two .inner-box .content-column .content-box .list-info .text2 {
    color: var(--theme-color-light);
}

/*** 

====================================================================
  service-section
====================================================================

***/
.service-section-ocean {
    position: relative;
    padding: 120px 0 92px;
}
.service-section-ocean .sec-title h2 {
    margin-left: 28px;
}
.service-section-ocean .sec-title .sub-title {
    margin-left: 31px;
}
@media (max-width: 991.98px) {
    .service-section-ocean {
        margin-bottom: 80px 0;
    }
}
.service-section-ocean .service-block-six.style-two {
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}
.service-section-ocean .service-block-six .inner-box {
    background-color: #fff;
}
.service-section-ocean .service-block-six .inner-box .content-box-2 {
    margin-top: 35px;
}
.service-section-ocean .service-block-six .inner-box .content-box {
    margin-bottom: 23px;
}
.service-section-ocean .service-block-six .inner-box .content-box-1 .title {
    margin-top: 36px;
}
.service-section-ocean .service-block-six .inner-box .content-box-1 .text {
    margin-bottom: 23px;
}
.service-section-ocean .service-block-six .inner-box .icon-box .front-icon {
    color: var(--theme-color6);
}
.service-section-ocean .service-block-six .image-box {
    width: 100%;
    height: 100%;
}
.service-section-ocean .service-block-six .image-box .image {
    width: 100%;
    height: 100%;
}
.service-section-ocean .service-block-six .image-box .image img {
    width: 86%;
}
.service-section-ocean .service-block-six .icon-box .front-icon svg path {
    fill: var(--theme-color6);
}
.service-section-ocean .service-block-six .icon-box .bg-icon {
    fill: var(--theme-color6);
}
.service-section-ocean .service-block-six .icon-box .bg-icon svg path {
    fill: var(--theme-color6);
}
.service-section-ocean .service-block-six .inner-box:hover .bg-shap svg path {
    fill: var(--theme-color6);
}
.service-section-ocean .service-block-six .inner-box:hover .icon-box .front-icon svg path {
    fill: var(--theme-color-light);
}
.service-section-ocean .service-block-six .icon-box .bg-shap svg path {
    fill: #ecf2ea;
}

/***

====================================================================
    Product Section One
====================================================================

***/
.gallery-section-one {
    padding: 120px 0;
}

.gallery-block-one .inner-box {
    overflow: hidden;
    position: relative;
}
.gallery-block-one .inner-box:hover .content-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    transform: translate(0);
}
.gallery-block-one .inner-box:hover .content-box .title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    transform: translate(0);
}
.gallery-block-one .inner-box:hover .content-box .theme-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    transform: translate(0);
}
.gallery-block-one .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-block-one .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
}
.gallery-block-one .inner-box .image-box .image img {
    height: 430px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .gallery-block-one .inner-box .image-box .image img {
        height: auto;
    }
}
.gallery-block-one .content-box {
    background-color: #222222;
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 30px;
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .gallery-block-one .content-box {
        padding: 20px;
    }
}
.gallery-block-one .content-box .title {
    color: var(--theme-color-light);
    font-family: "Gilda Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .gallery-block-one .content-box .title {
        font-size: 20px;
    }
}
.gallery-block-one .content-box .theme-btn {
    color: #6a6f78;
    font-family: "Barlow";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery-block-one .content-box .theme-btn:before {
    display: none;
}

/***

====================================================================
    Product Section Two
====================================================================

***/
.gallery-section-two {
    position: relative;
    padding: 120px 30px;
}
@media (max-width: 991.98px) {
    .gallery-section-two {
        padding: 80px 0;
    }
}

.gallery-block-two .inner-box {
    overflow: hidden;
    position: relative;
}
.gallery-block-two .inner-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
    background: linear-gradient(to top, #000, transparent);
    z-index: 1;
    opacity: 0.5;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery-block-two .inner-box:hover:before {
    height: 0;
}
.gallery-block-two .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-block-two .inner-box .image-box {
    height: 100%;
}
.gallery-block-two .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.gallery-block-two .inner-box .image-box .image img {
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .gallery-block-two .inner-box .image-box .image img {
        height: auto;
    }
}

/*** 

====================================================================
    Project Section
====================================================================

***/
.lake-project-area {
    position: relative;
}
.lake-project-area .content-box .inner-box {
    padding: 280px 0;
}
.lake-project-area .title {
    font-size: 110px;
    color: var(--theme-color-light);
}
.lake-project-item.ks-project-panel {
    position: relative;
}
.lake-project-item.ks-project-panel:after {
    content: "";
    position: absolute;
    background: #000;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.5;
}
.lake-project-item.ks-project-panel .inner-box.text-center {
    z-index: 2;
    position: relative;
}
@media (max-width: 575.98px) {
    .lake-project-area .title {
        font-size: 52px;
    }
    .lake-project-area .content-box .inner-box {
        padding: 150px 0;
    }
}

/*** Thank you popup ***/

.thankyou-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.popup-content {
    background: var(--white-color);
    border-radius: 8px;
    max-width: 500px;
    margin: 15% auto;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
    margin-bottom: 15px;
    color: #333;
}

.popup-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-popup:hover {
    color: var(--font-color);
}

/***

====================================================================
    Product Section One
====================================================================

***/
.gallery-section-nature2 {
    padding: 120px 0 120px;
    background-color: #ecf2ea;
    position: relative;
}
.gallery-section-nature2 .anim-icon .image-2 {
    position: absolute;
    bottom: 0;
}
.gallery-section-nature2 .anim-icon .image-1 {
    position: absolute;
    top: 0;
}

/***

====================================================================
    Product Section Two
====================================================================

***/
.gallery-section-two-country-h01 {
    position: relative;
    padding: 120px 30px;
    background-color: transparent;
}
@media (max-width: 991.98px) {
    .gallery-section-two-country-h01 {
        padding: 80px 0;
    }
}

.gallery-block-two-country-h01 .inner-box {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.gallery-block-two-country-h01 .inner-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
    background: linear-gradient(to top, #000, transparent);
    z-index: 1;
    opacity: 0.5;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery-block-two-country-h01 .inner-box:hover:before {
    height: 0;
}
.gallery-block-two-country-h01 .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-block-two-country-h01 .inner-box .image-box {
    height: 100%;
}
.gallery-block-two-country-h01 .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.gallery-block-two-country-h01 .inner-box .image-box .image.style-one {
    min-height: 322px;
}
.gallery-block-two-country-h01 .inner-box .image-box .image.style-one img {
    min-height: 322px;
}
.gallery-block-two-country-h01 .inner-box .image-box .image.style-two {
    min-height: 804px;
}
.gallery-block-two-country-h01 .inner-box .image-box .image.style-two img {
    min-height: 804px;
}
.gallery-block-two-country-h01 .inner-box .image-box .image img {
    max-height: 805px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .gallery-block-two-country-h01 .inner-box .image-box .image img {
        height: auto;
    }
}

/*** 

====================================================================
 gallery-section-beach3 resort-style
====================================================================

***/
.gallery-section-beach3.resort-style {
    z-index: 1;
    margin-top: -170px;
}
.gallery-section-beach3.resort-style .container {
    max-width: 1440px;
}
.gallery-section-beach3.resort-style .swiper-wrapper {
    max-width: 1290px;
}
.gallery-section-beach3.resort-style .outer-box {
    position: relative;
}
.gallery-section-beach3.resort-style .slider-arrow-box {
    bottom: 0;
    left: 0;
    margin-top: 150px;
    position: absolute;
    right: 0;
    top: 0;
}
.gallery-section-beach3.resort-style button.swiper-button-next {
    right: -100px;
}
.gallery-section-beach3.resort-style button.swiper-button-prev {
    left: -100px;
}

/***

==================================================================
    Offer Section One
==================================================================

***/
/*** 

====================================================================
offer section countryside h03
====================================================================

***/
.offer-section-countryside-h03 {
    background-image: url(../images/background/bg-aountryside3-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 105px 0 73px;
    margin: 0 26px;
    border-radius: 30px;
}
.offer-section-countryside-h03:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 30px;
}
.offer-section-countryside-h03 .sec-title .sub-title {
    margin-left: 5px;
    color: var(--theme-color-white);
}
.offer-section-countryside-h03 .sec-title h2 {
    color: var(--theme-color-white);
}
.offer-section-countryside-h03 .submit-form-box {
    margin-left: 68px;
}
.offer-section-countryside-h03 .submit-form-box .text {
    color: var(--theme-color-white);
    z-index: 1;
    position: relative;
    margin-bottom: 40px;
}
.offer-section-countryside-h03 .submit-form-box .submit-form {
    padding: 5px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3607843137);
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.offer-section-countryside-h03 .submit-form-box .submit-form input {
    background-color: transparent;
    color: var(--theme-color-white);
}
.offer-section-countryside-h03 .submit-form-box .submit-form .theme-btn {
    text-align: right;
    border-radius: 40px;
}
.offer-section-countryside-h03.style-two {
    background-image: url(../images/background/bg-aountryside3-1.jpg);
}
.offer-section-countryside-h03.style-two .theme-btn {
    background-color: var(--theme-color-black);
    border: none;
}
.offer-section-countryside-h03.style-two .theme-btn:before {
    background-color: var(--theme-color6);
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section {
    padding: 120px 0 260px;
    position: relative;
}
@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 50px 0 100px;
    }
}
.testimonial-section.style-nature .slick-dotted .slick-dots li button {
    outline-color: var(--theme-color6) !important;
}
.testimonial-section.style-nature .slick-dotted .slick-dots.li.button {
    background-color: var(--theme-color6);
}
.testimonial-section.style-nature .slick-dotted .slick-dots li.slick-active button {
    border-color: var(--theme-color6);
    background-color: var(--theme-color6);
}
.testimonial-section.style-nature .testimonial-block .inner-box .rating .icon {
    color: var(--theme-color6);
}
.testimonial-section.luxury2-1 {
    padding: 170px 0 200px;
}
.testimonial-section.style-two .testimonial-block .inner-box .rating .icon {
    color: var(--theme-color6);
}
.testimonial-section.style-two .slick-dotted .slick-dots li button {
    border-color: var(--theme-color6) !important;
    outline-color: var(--theme-color6) !important;
}
.testimonial-section.style-two .slick-dotted .slick-dots li.slick-active button {
    background-color: var(--theme-color6) !important;
    border-color: var(--theme-color6) !important;
}
.testimonial-section.style-winter .testimonial-block .inner-box .rating .icon {
    color: var(--theme-color7);
}
.testimonial-section.style-winter .slick-dotted .slick-dots li button {
    outline-color: var(--theme-color7) !important;
}
.testimonial-section.style-winter .slick-dotted .slick-dots li.slick-active button {
    background-color: var(--theme-color7);
    border-color: var(--theme-color7);
    outline-color: var(--theme-color7) !important;
}
.testimonial-section .testimonial-pattrn1-1 {
    background-image: url(../images/icons/testimonial-pattrn1-1.png);
    position: absolute;
    width: 205px;
    height: 263px;
    right: 54px;
    bottom: 0;
}
@media (max-width: 1399.98px) {
    .testimonial-section .testimonial-pattrn1-1 {
        display: none;
    }
}
.testimonial-section .slick-dotted .slick-dots {
    left: 0;
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: -44px;
}
.testimonial-section .slick-dotted .slick-dots li button {
    height: 15px;
    width: 15px;
    margin: 0 8.5px;
    background-color: transparent;
    border: 3px solid var(--theme-color-white);
    outline: 1px solid var(--theme-color1) !important;
    outline-offset: -3px;
    border-radius: 50%;
    padding: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section .slick-dotted .slick-dots li button:before {
    display: none;
}
.testimonial-section .slick-dotted .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background-color: var(--theme-color1);
    border-color: var(--theme-color1);
    outline-color: var(--theme-color1) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section .carousel-outer {
    position: relative;
}
.testimonial-section .carousel-outer .image-box .image {
    border-radius: 50%;
    margin-bottom: 0;
    position: absolute;
}
.testimonial-section .carousel-outer .image-box .image img {
    border-radius: 50%;
}
.testimonial-section .carousel-outer .image-box .client1 {
    top: -128px;
    left: -153px;
}
@media (max-width: 991.98px) {
    .testimonial-section .carousel-outer .image-box .client1 {
        display: none;
    }
}
.testimonial-section .carousel-outer .image-box .client2 {
    bottom: 26px;
    left: -310px;
}
@media (max-width: 1399.98px) {
    .testimonial-section .carousel-outer .image-box .client2 {
        left: -160px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section .carousel-outer .image-box .client2 {
        display: none;
    }
}
.testimonial-section .carousel-outer .image-box .client3 {
    bottom: -165px;
    left: -118px;
}
@media (max-width: 991.98px) {
    .testimonial-section .carousel-outer .image-box .client3 {
        display: none;
    }
}
.testimonial-section .carousel-outer .image-box .client4 {
    bottom: -120px;
    right: -100px;
}
@media (max-width: 1399.98px) {
    .testimonial-section .carousel-outer .image-box .client4 {
        right: -130px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section .carousel-outer .image-box .client4 {
        display: none;
    }
}
.testimonial-section .carousel-outer .image-box .client5 {
    top: -98px;
    right: -261px;
}
@media (max-width: 1399.98px) {
    .testimonial-section .carousel-outer .image-box .client5 {
        right: -150px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section .carousel-outer .image-box .client5 {
        display: none;
    }
}

.testimonial-block .inner-box {
    margin: 0 50px;
}
@media (max-width: 575.98px) {
    .testimonial-block .inner-box {
        margin: 0;
    }
}
.testimonial-block .inner-box .rating {
    margin-bottom: 25px;
}
.testimonial-block .inner-box .rating .icon {
    color: var(--theme-color1);
    font-size: 24px;
    margin-right: 4px;
}
@media (max-width: 575.98px) {
    .testimonial-block .inner-box .rating .icon {
        font-size: 22px;
    }
}
.testimonial-block .inner-box .rating .icon:last-child {
    margin-right: 0;
}
.testimonial-block .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    font-family: var(--text-font);
    line-height: 45px;
}
@media (max-width: 767.98px) {
    .testimonial-block .inner-box .text {
        font-size: 22px;
    }
}
.testimonial-block .inner-box .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}
.testimonial-block .inner-box .info-box .name {
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 6px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block .inner-box .info-box .name {
        font-size: 25px;
    }
}
.testimonial-block .inner-box .info-box .designation {
    display: block;
    margin-top: -3px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block .inner-box .info-box .designation {
        font-size: 15px;
    }
}

/*** 

====================================================================
  testimonial-section-Two
====================================================================

***/
.testimonial-section-two {
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    position: relative;
    padding: 120px 0 100px;
}
.testimonial-section-two.style-light {
    background-color: var(--theme-color-white);
}
.testimonial-section-two.style-light .testimonial-pattrn1-1 {
    background-image: url("../images/icons/testimonial-pattrn1-1.png");
    position: absolute;
    width: 205px;
    height: 263px;
    right: 54px;
    bottom: 0px;
}
@media (max-width: 1199.98px) {
    .testimonial-section-two.style-light .testimonial-pattrn1-1 {
        display: none;
    }
}
.testimonial-section-two.style-light .swiper-button-prev {
    top: calc(50% - 85px);
}
@media (max-width: 767.98px) {
    .testimonial-section-two.style-light .swiper-button-prev {
        display: none;
    }
}
.testimonial-section-two.style-light .swiper-button-prev:hover:after {
    color: var(--theme-color-black);
}
.testimonial-section-two.style-light .swiper-button-prev::after {
    color: #c4c4c4;
    content: "\f053";
    font-size: 46px;
    font-weight: 100;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-two.style-light .swiper-button-next {
    top: calc(50% - 85px);
}
@media (max-width: 767.98px) {
    .testimonial-section-two.style-light .swiper-button-next {
        display: none;
    }
}
.testimonial-section-two.style-light .swiper-button-next:hover:after {
    color: var(--theme-color-black);
}
.testimonial-section-two.style-light .swiper-button-next::after {
    color: #c4c4c4;
    content: "\f054";
    font-size: 46px;
    font-weight: 100;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-two.style-light .testimonial-block-two .inner-box .text {
    color: #4b535d;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    max-width: 770px;
}
.testimonial-section-two.hostel .bg-image:before {
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.testimonial-section-two.hostel .testimonial-block-two .inner-box .text {
    color: var(--theme-color-light);
}
.testimonial-section-two.hostel .testimonial-block-two .inner-box .info-box .name {
    color: var(--theme-color-light);
}
.testimonial-section-two.hostel .testimonial-block-two .inner-box .info-box .designation {
    color: var(--theme-color-light);
}
.testimonial-section-two .sec-title {
    margin-bottom: 40px;
}
.testimonial-section-two .anim-icons .image-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-two .anim-icons .image-1 {
        display: none;
    }
}
.testimonial-section-two .testimonials {
    position: relative;
}
.testimonial-section-two .testimonials .testimonial-thumbs {
    width: 270px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.testimonial-section-two .testimonials .testimonial-thumbs .swiper-slide {
    height: 100px;
    width: 100px;
    text-align: center;
    overflow: hidden;
    border: 2px solid var(--theme-color-light);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transform: scale(0.7) !important;
    transform: scale(0.7) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-two .testimonials .testimonial-thumbs .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}
.testimonial-section-two .testimonials .testimonial-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section-two .swiper-button-next:after,
.testimonial-section-two .swiper-button-prev:after {
    color: #000000;
    font-size: 30px;
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
}
.testimonial-section-two .swiper-button-prev:after {
    content: "\f177";
}
.testimonial-section-two .swiper-button-next:after {
    content: "\f178";
}

.testimonial-block-two .inner-box {
    text-align: center;
}
.testimonial-block-two .inner-box .info-box {
    margin-bottom: 30px;
}
.testimonial-block-two .inner-box .info-box .name {
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonial-block-two .inner-box .info-box .designation {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}
.testimonial-block-two .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    line-height: 45px;
    max-width: 860px;
    margin: 0 auto 20px;
}
@media (max-width: 1199.98px) {
    .testimonial-block-two .inner-box .text {
        max-width: initial;
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-block-two .inner-box .text {
        font-size: 18px;
        line-height: 26px;
    }
}
.testimonial-block-two .inner-box .quote-icon .icon {
    font-size: 52px;
    color: var(--theme-color1);
    line-height: 1em;
}
.testimonial-block-two .inner-box .quote-icon .icon-img {
    width: auto;
    margin-bottom: 17px;
}

/*** 

====================================================================
    Testimonial Section Three
====================================================================

***/
.testimonial-section-three {
    position: relative;
    padding: 120px 0 145px;
}
.testimonial-section-three .slick-dots {
    bottom: -65px;
    left: calc(50% - 103px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 767.98px) {
    .testimonial-section-three .slick-dots {
        left: 50%;
    }
}
.testimonial-section-three .slick-dots li {
    width: 30px;
}
.testimonial-section-three .slick-dots li.slick-active button {
    background-color: var(--theme-color1);
}
.testimonial-section-three .slick-dots li button {
    background-color: #ededed;
    height: 2px;
    width: 30px;
    padding: 0;
}
.testimonial-section-three .slick-dots li button::before {
    font-size: 0;
    opacity: 0;
}

@media (max-width: 1199.98px) {
    .testimonial-block-three {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.testimonial-block-three .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767.98px) {
    .testimonial-block-three .inner-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.testimonial-block-three .inner-box .image-box {
    max-width: 404px;
}
@media (max-width: 991.98px) {
    .testimonial-block-three .inner-box .image-box {
        min-width: 320px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-block-three .inner-box .image-box {
        min-width: auto;
        width: 100%;
        max-width: 576px;
    }
}
.testimonial-block-three .inner-box .image-box .thumb {
    border: 35px solid var(--theme-color1);
    margin: 0;
    overflow: hidden;
}
.testimonial-block-three .inner-box .image-box .thumb:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.testimonial-block-three .inner-box .image-box .thumb img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 767.98px) {
    .testimonial-block-three .inner-box .image-box .thumb img {
        width: 100%;
    }
}
.testimonial-block-three .inner-box .info-box {
    max-width: 576px;
}
@media (max-width: 991.98px) {
    .testimonial-block-three .inner-box .info-box {
        max-width: 576px;
    }
}
.testimonial-block-three .inner-box .info-box .info-box-content {
    position: relative;
    border: 1px solid var(--theme-color1);
    border-left: none;
    padding: 123px 30px 53px 45px;
}
@media (max-width: 991.98px) {
    .testimonial-block-three .inner-box .info-box .info-box-content {
        padding: 113px 30px 38px 45px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-block-three .inner-box .info-box .info-box-content {
        border-left: 1px solid #d7d7d7;
        padding: 113px 33px 38px 33px;
        margin-bottom: 1px;
    }
}
.testimonial-block-three .inner-box .info-box .info-box-content .text {
    margin-bottom: 14px;
}
@media (max-width: 991.98px) {
    .testimonial-block-three .inner-box .info-box .info-box-content .text {
        font-size: 14px;
    }
}
.testimonial-block-three .inner-box .info-box .info-box-content .name {
    color: var(--theme-color-dark);
    font-size: 23px;
    font-family: var(--text-font);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 7px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-three .inner-box .info-box .info-box-content .designation {
    display: block;
    font-size: 12px;
    line-height: 1em;
    color: #7a7a7a;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-three .inner-box .info-box .info-box-content .icon-quote {
    position: absolute;
    top: 37px;
    left: 52px;
    width: 92px;
    height: 66px;
    background-image: url(../images/icons/icon-quote.png);
}
.testimonial-block-three .inner-box .info-box .info-box-content .icon-wheel-compass-2 {
    position: absolute;
    bottom: 8px;
    right: 10px;
    -webkit-animation: fa-spin 70s infinite;
    animation: fa-spin 70s infinite;
    z-index: -1;
}

/*** 

====================================================================
  testimonial-section-Four
====================================================================

***/
.testimonial-section-four {
    padding: 70px 0 150px;
    position: relative;
}
.testimonial-section-four:before {
    background-image: url(../images/icons/shape-11.png);
    background-size: cover;
    bottom: -90px;
    content: "";
    height: 334px;
    right: 0;
    position: absolute;
    width: 338px;
}
.testimonial-section-four.style-modern .testimonial-block-four .inner-box:hover {
    background-color: var(--theme-color6);
}
.testimonial-section-four.style-modern .testimonial-block-four .content-box .icon {
    color: var(--theme-color6);
}
.testimonial-section-four.style-modern .slick-slider .slick-arrow {
    border: 1px solid var(--theme-color6);
    color: var(--theme-color6);
}
.testimonial-section-four.style-modern .slick-slider .slick-arrow.slick-next::before {
    color: var(--theme-color6);
}
.testimonial-section-four.style-modern .slick-slider .slick-arrow.slick-prev::before {
    color: var(--theme-color6);
}
.testimonial-section-four.style-modern .slick-slider .slick-arrow.slick-next:hover {
    background-color: var(--theme-color6);
}
.testimonial-section-four.style-modern .slick-slider .slick-arrow.slick-prev:hover {
    background-color: var(--theme-color6);
}
.testimonial-section-four .sec-title {
    margin-bottom: 19px;
}
.testimonial-section-four .image-box .image {
    bottom: 0;
    height: 100%;
    position: absolute;
    left: 0;
    width: 42%;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-four .image-box .image {
        width: 40%;
    }
}
.testimonial-section-four .image-box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section-four .slick-slider .slick-arrow {
    background-color: transparent;
    border: 1px solid var(--theme-color1);
    color: var(--theme-color1);
    font-size: 0;
    position: absolute;
    bottom: -78px;
    top: auto;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 60px;
    width: 60px;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-four .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-four .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-four .slick-slider .slick-arrow:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-four .slick-slider .slick-arrow.slick-prev {
    right: 68px;
    left: auto;
}
.testimonial-section-four .slick-slider .slick-arrow.slick-prev:before {
    color: var(--theme-color1);
    content: "\f060";
}
.testimonial-section-four .slick-slider .slick-arrow.slick-prev:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-four .slick-slider .slick-arrow.slick-prev:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-four .slick-slider .slick-arrow.slick-next {
    right: 0;
}
.testimonial-section-four .slick-slider .slick-arrow.slick-next:before {
    color: var(--theme-color1);
    content: "\f061";
}
.testimonial-section-four .slick-slider .slick-arrow.slick-next:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-four .slick-slider .slick-arrow.slick-next:hover:before {
    color: var(--theme-color-white);
}

.testimonial-block-four {
    margin-bottom: 30px;
    position: relative;
}
.testimonial-block-four .inner-box {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-four .inner-box:hover {
    background-color: var(--theme-color1);
}
.testimonial-block-four .inner-box:hover .icon,
.testimonial-block-four .inner-box:hover .text,
.testimonial-block-four .inner-box:hover .name,
.testimonial-block-four .inner-box:hover .designation {
    color: var(--theme-color-white);
}
.testimonial-block-four .inner-box:hover .info-box .thumb {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.testimonial-block-four .content-box {
    position: relative;
}
.testimonial-block-four .content-box .icon {
    color: var(--theme-color1);
    display: inline-block;
    font-size: 48px;
    line-height: 40px;
    margin-bottom: 35px;
    margin-top: 15px;
    position: relative;
}
.testimonial-block-four .content-box .text {
    color: #000000;
    font-family: "Barlow";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    position: relative;
}
.testimonial-block-four .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #e3e3e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    padding: 30px 0 0;
    position: relative;
}
.testimonial-block-four .info-box .thumb {
    border-radius: 50%;
    height: 40px;
    margin: 0 10px 0 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 40px;
}
@media (max-width: 575.98px) {
    .testimonial-block-four .info-box .thumb {
        display: inline-block;
        left: 0;
        margin-bottom: 0px;
        position: relative;
        top: 0;
    }
}
.testimonial-block-four .info-box .name {
    color: #000;
    font-family: "Barlow";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
}
.testimonial-block-four .info-box .designation {
    color: #6a6f78;
    display: block;
    font-family: "Barlow";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0;
}

.slick-gap-30 .slick-list {
    margin: 0 -15px;
}
.slick-gap-30 .slick-list .slick-slide {
    margin: 30px 15px;
}

/*** 

====================================================================
  testimonial-section-Five
====================================================================

***/
.testimonial-section-five {
    padding: 120px 0 90px;
    position: relative;
}
.testimonial-section-five .slick-slider {
    position: inherit;
}
.testimonial-section-five .slick-slider .slick-arrow {
    background-color: var(--theme-color-white);
    border: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    color: var(--text-color9);
    font-size: 0;
    position: absolute;
    bottom: auto;
    top: calc(50% - 24px);
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 60px;
    width: 60px;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-five .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-five .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-five .slick-slider .slick-arrow:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-five .slick-slider .slick-arrow.slick-prev {
    left: 60px;
    right: auto;
}
.testimonial-section-five .slick-slider .slick-arrow.slick-prev:before {
    color: var(--theme-color-white);
    content: "\f054";
    font-weight: 400;
}
.testimonial-section-five .slick-slider .slick-arrow.slick-prev:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-five .slick-slider .slick-arrow.slick-prev:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-five .slick-slider .slick-arrow.slick-next {
    left: 60px;
    right: auto;
    top: calc(50% + 51px);
}
.testimonial-section-five .slick-slider .slick-arrow.slick-next:before {
    color: var(--theme-color-white);
    content: "\f053";
    font-weight: 400;
}
.testimonial-section-five .slick-slider .slick-arrow.slick-next:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-five .slick-slider .slick-arrow.slick-next:hover:before {
    color: var(--theme-color-white);
}

.testimonial-block-five {
    margin-bottom: 30px;
    position: relative;
}
.testimonial-block-five .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-five .inner-box:hover .text,
.testimonial-block-five .inner-box:hover .name {
    color: var(--theme-color-dark);
}
.testimonial-block-five .inner-box:hover .info-box .thumb {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.testimonial-block-five .content-box {
    position: relative;
}
.testimonial-block-five .content-box .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 48px;
    line-height: 40px;
    margin-left: 30px;
    position: relative;
    height: 80px;
    line-height: 80px;
    width: 80px;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-five .content-box .text {
    background-color: var(--theme-color-white);
    border: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
    color: var(--text-color9);
    font-family: var(--text-font);
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    margin-right: 20px;
    margin-top: -35px;
    padding: 49px 30px 41px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-five .content-box .text:before {
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.testimonial-block-five .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    position: relative;
}
.testimonial-block-five .info-box .thumb {
    border-radius: 50%;
    height: 70px;
    margin: 0 15px 0 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 70px;
}
@media (max-width: 575.98px) {
    .testimonial-block-five .info-box .thumb {
        display: inline-block;
        left: 0;
        margin-bottom: 0px;
        position: relative;
        top: 0;
    }
}
.testimonial-block-five .info-box .name {
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-five .info-box .designation {
    color: var(--text-color9);
    display: block;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 3px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*** 

====================================================================
  testimonial-section-six
====================================================================

***/
.testimonial-section-six {
    position: relative;
    padding: 120px 0 100px;
}
.testimonial-section-six.style-winter .inner-box .quote-icon .icon-img {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg)
        brightness(103%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg) brightness(103%)
        contrast(85%);
}
.testimonial-section-six .sec-title {
    margin-bottom: 40px;
}
.testimonial-section-six .anim-icons .image-1 {
    position: absolute;
    bottom: calc(50% - 220px);
    left: calc(50% - 340px);
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-six .anim-icons .image-1 {
        display: none;
    }
}
.testimonial-section-six .testimonials {
    position: relative;
}
.testimonial-section-six .testimonials .testimonial-thumbs {
    width: 270px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.testimonial-section-six .testimonials .testimonial-thumbs .swiper-slide {
    height: 100px;
    width: 100px;
    text-align: center;
    overflow: hidden;
    border: 2px solid var(--theme-color-light);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transform: scale(0.7) !important;
    transform: scale(0.7) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-six .testimonials .testimonial-thumbs .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}
.testimonial-section-six .testimonials .testimonial-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section-six .swiper-button-next:after,
.testimonial-section-six .swiper-button-prev:after {
    color: #000000;
    font-size: 30px;
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
}
.testimonial-section-six .swiper-button-prev:after {
    content: "\f177";
}
.testimonial-section-six .swiper-button-next:after {
    content: "\f178";
}

.testimonial-block-six .inner-box {
    text-align: center;
}
.testimonial-block-six .inner-box .info-box {
    margin-bottom: 30px;
}
.testimonial-block-six .inner-box .info-box .name {
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonial-block-six .inner-box .info-box .designation {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}
.testimonial-block-six .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    line-height: 45px;
    max-width: 860px;
    margin: 0 auto 20px;
}
@media (max-width: 1199.98px) {
    .testimonial-block-six .inner-box .text {
        max-width: initial;
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-block-six .inner-box .text {
        font-size: 18px;
        line-height: 26px;
    }
}
.testimonial-block-six .inner-box .quote-icon .icon {
    font-size: 52px;
    color: var(--theme-color1);
    line-height: 1em;
}
.testimonial-block-six .inner-box .quote-icon .icon-img {
    width: auto;
    margin-bottom: 17px;
}

/*** 

====================================================================
  testimonial-section-winter
====================================================================

***/
.testimonial-section-winter {
    position: relative;
    padding: 120px 0;
    background-color: #eef9fd;
}
.testimonial-section-winter .sub-title:before {
    display: none;
}
.testimonial-section-winter .reviews-box .inner-box {
    background-color: var(--theme-color7);
    text-align: center;
    padding: 50px 10px 80px;
    margin-right: 30px;
}
.testimonial-section-winter .reviews-box .inner-box .reviews-number {
    font-size: 82px;
    color: var(--theme-color-light);
    font-family: var(--title-font);
    line-height: 1;
    margin-bottom: 30px;
}
.testimonial-section-winter .reviews-box .inner-box .rating {
    margin-bottom: 10px;
}
.testimonial-section-winter .reviews-box .inner-box .rating .icon {
    font-size: 16px;
    color: var(--theme-color-light);
    margin-right: 20px;
}
.testimonial-section-winter .reviews-box .inner-box .rating .icon:last-child {
    margin-right: 0;
}
.testimonial-section-winter .reviews-box .inner-box .reviews {
    font-size: 16px;
    color: var(--theme-color-light);
    margin-bottom: 10px;
}
.testimonial-section-winter .reviews-box .inner-box .title {
    font-size: 28px;
    color: var(--theme-color-light);
    margin-bottom: 30px;
}
.testimonial-section-winter .reviews-box .inner-box .button-box {
    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;
}
.testimonial-section-winter .reviews-box .inner-box .theme-btn {
    background-color: var(--theme-color-light);
    color: var(--theme-color-black);
    padding: 17.5px 32px;
    margin-right: 10px;
}
.testimonial-section-winter .reviews-box .inner-box .theme-btn:hover {
    color: var(--theme-color-light);
}
.testimonial-section-winter .reviews-box .inner-box .arrow-button {
    width: 65px;
    height: 60px;
    line-height: 60px;
    background-color: var(--theme-color-light);
    color: var(--theme-color-black);
    font-size: 30px;
    text-align: center;
    display: inline-block;
}
.testimonial-section-winter .testimonial-block-winter .inner-box .quote-icon {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg)
        brightness(103%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(65%) sepia(81%) saturate(519%) hue-rotate(167deg) brightness(103%)
        contrast(85%);
}
.testimonial-section-winter .testimonial-block-winter .inner-box .text {
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
}
.testimonial-section-winter .testimonial-block-winter .inner-box .info-box .name {
    margin-bottom: 0;
}
.testimonial-section-winter .testimonials-column {
    position: relative;
}
.testimonial-section-winter .testimonials-column .swiper-button-next {
    top: -170px;
    font-size: 30px;
    color: var(--theme-color7);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-winter .testimonials-column .swiper-button-next:hover {
    background-color: var(--theme-color7);
    color: var(--theme-color-light);
}
.testimonial-section-winter .testimonials-column .swiper-button-next:after {
    font-size: 20px;
}
.testimonial-section-winter .testimonials-column .swiper-button-prev {
    left: auto;
    right: 70px;
    top: -170px;
    font-size: 30px;
    color: var(--theme-color7);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-winter .testimonials-column .swiper-button-prev:hover {
    background-color: var(--theme-color7);
    color: var(--theme-color-light);
}
.testimonial-section-winter .testimonials-column .swiper-button-prev:after {
    font-size: 20px;
}

/*** 

====================================================================
  testimonial-section-beach
====================================================================

***/
.testimonial-section-beach {
    background-color: var(--theme-color8);
    position: relative;
    padding: 120px 0 132px;
}
.testimonial-section-beach .bg-image {
    max-width: 50%;
}
.testimonial-section-beach .sec-title .sub-title {
    color: var(--text-color);
    font-family: var(--text-font2);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.8px;
}
.testimonial-section-beach .testimonial-block-six .inner-box .text {
    color: var(--theme-color-white);
    font-family: var(--title-font);
    font-weight: 500;
    max-width: 750px;
}
.testimonial-section-beach .testimonial-block-six .inner-box .info-box {
    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;
}
.testimonial-section-beach .testimonial-block-six .inner-box .info-box .name {
    color: var(--theme-color-white);
}
.testimonial-section-beach .testimonial-block-six .inner-box .info-box .designation {
    font-family: var(--title-font);
    margin-left: 10px;
    position: relative;
    top: 3px;
}
.testimonial-section-beach .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
}
.testimonial-section-beach .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--theme-color-white);
    border: none;
    opacity: 1;
    margin: 0 5px;
    height: 12px;
    width: 12px;
}
.testimonial-section-beach .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color1);
}

/*** 

====================================================================
  testimonial-section-luxury
====================================================================

***/
.testimonial-section-luxury {
    position: relative;
}
.testimonial-section-luxury.style-luxury2 .bg-image {
    width: calc(50% + 300px);
}
@media (max-width: 991.98px) {
    .testimonial-section-luxury.style-luxury2 .bg-image {
        width: 0;
    }
}
.testimonial-section-luxury.style-luxury2 .content-column .inner-column .content-box {
    text-align: center;
    margin-right: -200px;
}
@media (max-width: 1599.98px) {
    .testimonial-section-luxury.style-luxury2 .content-column .inner-column .content-box {
        margin-right: 0;
    }
}
@media (max-width: 1599.98px) {
    .testimonial-section-luxury.style-luxury2
        .content-column
        .inner-column
        .content-box
        .testimonial-block-seven
        .inner-block
        .author-text {
        font-size: 24px;
        line-height: 1.6;
    }
}
.testimonial-section-luxury.style-luxury2
    .content-column
    .inner-column
    .content-box
    .testimonial-block-seven
    .inner-block
    .info-box {
    border-top: none;
    margin-top: 30px;
    padding-top: 0;
}
.testimonial-section-luxury .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(50% + 100px);
}
.testimonial-section-luxury .bg-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.testimonial-section-luxury .bg-image .text-rotate {
    color: rgba(173, 173, 173, 0.35);
    font-family: "Gilda Display", serif;
    font-size: 162px;
    font-weight: 700;
    position: absolute;
    bottom: 196px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: -75px;
}
@media (max-width: 991.98px) {
    .testimonial-section-luxury .bg-image .text-rotate {
        display: none;
    }
}
.testimonial-section-luxury .anim-icons {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.testimonial-section-luxury .content-column .inner-column {
    background-color: #f8f5f1;
    padding: 123px 0 110px 115px;
    margin-left: 22px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-luxury .content-column .inner-column {
        padding: 123px 0 110px 55px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-luxury .content-column .inner-column {
        margin-left: 0;
        padding: 123px 0 110px 15px;
    }
}
.testimonial-section-luxury .content-column .inner-column:before {
    background-color: #f8f5f1;
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 4000px;
    height: 100%;
    z-index: -1;
}

.testimonial-block-seven .inner-block .icon {
    margin-bottom: 30px;
}
.testimonial-block-seven .inner-block .author-text {
    font-family: "Barlow", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 47px;
}
@media (max-width: 991.98px) {
    .testimonial-block-seven .inner-block .author-text {
        font-size: 24px;
        line-height: 1.6;
    }
}
.testimonial-block-seven .inner-block .info-box {
    border-top: 1px solid rgba(0, 0, 0, 0.1411764706);
    margin-top: 30px;
    padding-top: 32px;
}
.testimonial-block-seven .inner-block .info-box .testimonial-name {
    font-family: "Gilda Display", serif;
    margin-bottom: 1px;
}
.testimonial-block-seven .inner-block .info-box .testimonial-position {
    font-family: "Barlow", sans-serif;
}

/*** 

====================================================================
  testimonial-section-eight
====================================================================

***/
.testimonial-section-eight {
    position: relative;
}
.testimonial-section-eight .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(50% + 100px);
}
.testimonial-section-eight .bg-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.testimonial-section-eight .anim-icons {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.testimonial-section-eight .content-column .inner-column {
    background-color: #f8f5f1;
    padding: 123px 0 110px 115px;
    margin-left: 22px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-eight .content-column .inner-column {
        padding: 123px 0 110px 55px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-eight .content-column .inner-column {
        margin-left: 0;
        padding: 123px 0 110px 15px;
    }
}

.testimonial-block-eight .inner-block .icon {
    margin-bottom: 30px;
}
.testimonial-block-eight .inner-block .author-text {
    font-family: var(--text-font4);
    font-size: 32px;
    font-weight: 400;
    line-height: 47px;
}
@media (max-width: 991.98px) {
    .testimonial-block-eight .inner-block .author-text {
        font-size: 24px;
        line-height: 1.6;
    }
}
.testimonial-block-eight .inner-block .info-box {
    border-top: 1px solid rgba(0, 0, 0, 0.1411764706);
    margin-top: 30px;
    padding-top: 32px;
}
.testimonial-block-eight .inner-block .info-box .testimonial-name {
    font-family: var(--title-font2);
    margin-bottom: 1px;
}
.testimonial-block-eight .inner-block .info-box .testimonial-position {
    font-family: var(--text-font4);
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section-style-luxury4 {
    margin: 0 25px;
    position: relative;
    background-color: #d9d0bd;
    border-radius: 30px;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 {
        padding: 50px 0 100px;
    }
}
.testimonial-section-style-luxury4:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background-image: url(../images/icons/shape-42.png);
}
.testimonial-section-style-luxury4.style-two .testimonial-block .inner-box .rating .icon {
    color: var(--theme-color6);
}
.testimonial-section-style-luxury4.style-two .slick-dotted .slick-dots li button {
    border-color: var(--theme-color6) !important;
    outline-color: var(--theme-color6) !important;
}
.testimonial-section-style-luxury4.style-two .slick-dotted .slick-dots li.slick-active button {
    background-color: var(--theme-color6) !important;
    border-color: var(--theme-color6) !important;
}
.testimonial-section-style-luxury4.style-winter .testimonial-block .inner-box .rating .icon {
    color: var(--theme-color7);
}
.testimonial-section-style-luxury4.style-winter .slick-dotted .slick-dots li button {
    outline-color: var(--theme-color7) !important;
}
.testimonial-section-style-luxury4.style-winter .slick-dotted .slick-dots li.slick-active button {
    background-color: var(--theme-color7);
    border-color: var(--theme-color7);
    outline-color: var(--theme-color7) !important;
}
.testimonial-section-style-luxury4 .testimonial-pattrn1-1 {
    background-image: url(../images/icons/testimonial-pattrn1-1.png);
    position: absolute;
    width: 205px;
    height: 263px;
    right: 54px;
    bottom: 0;
}
@media (max-width: 1399.98px) {
    .testimonial-section-style-luxury4 .testimonial-pattrn1-1 {
        display: none;
    }
}
.testimonial-section-style-luxury4 .slick-dotted .slick-dots {
    left: 0;
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: -44px;
}
.testimonial-section-style-luxury4 .slick-dotted .slick-dots li button {
    height: 15px;
    width: 15px;
    margin: 0 8.5px;
    background-color: transparent;
    border: 3px solid var(--theme-color-white);
    outline: 1px solid var(--theme-color1) !important;
    outline-offset: -3px;
    border-radius: 50%;
    padding: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-style-luxury4 .slick-dotted .slick-dots li button:before {
    display: none;
}
.testimonial-section-style-luxury4 .slick-dotted .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background-color: var(--theme-color1);
    border-color: var(--theme-color1);
    outline-color: var(--theme-color1) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-style-luxury4 .carousel-outer {
    position: relative;
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .image {
    border-radius: 50%;
    margin-bottom: 0;
    position: absolute;
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .image img {
    border-radius: 50%;
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .client1 {
    top: -128px;
    left: -153px;
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client1 {
        display: none;
    }
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .client2 {
    bottom: 26px;
    left: -310px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client2 {
        left: -160px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client2 {
        display: none;
    }
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .client3 {
    bottom: -165px;
    left: -118px;
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client3 {
        display: none;
    }
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .client4 {
    bottom: -120px;
    right: -100px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client4 {
        right: -130px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client4 {
        display: none;
    }
}
.testimonial-section-style-luxury4 .carousel-outer .image-box .client5 {
    top: -98px;
    right: -261px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client5 {
        right: -150px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-style-luxury4 .carousel-outer .image-box .client5 {
        display: none;
    }
}

.testimonial-block-style-luxury4 .inner-box {
    margin: 0 50px;
}
@media (max-width: 575.98px) {
    .testimonial-block-style-luxury4 .inner-box {
        margin: 0;
    }
}
.testimonial-block-style-luxury4 .inner-box .rating {
    margin-bottom: 25px;
}
.testimonial-block-style-luxury4 .inner-box .rating .icon {
    color: var(--theme-color1);
    font-size: 24px;
    margin-right: 4px;
}
@media (max-width: 575.98px) {
    .testimonial-block-style-luxury4 .inner-box .rating .icon {
        font-size: 22px;
    }
}
.testimonial-block-style-luxury4 .inner-box .rating .icon:last-child {
    margin-right: 0;
}
.testimonial-block-style-luxury4 .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    font-family: var(--text-font);
    line-height: 45px;
}
@media (max-width: 767.98px) {
    .testimonial-block-style-luxury4 .inner-box .text {
        font-size: 22px;
    }
}

.testimonial-block-style-luxury4 .inner-box .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}
.testimonial-block-style-luxury4 .inner-box .info-box .name {
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 6px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block-style-luxury4 .inner-box .info-box .name {
        font-size: 25px;
    }
}
.testimonial-block-style-luxury4 .inner-box .info-box .designation {
    display: block;
    margin-top: -3px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block-style-luxury4 .inner-box .info-box .designation {
        font-size: 15px;
    }
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section-island2 {
    background-color: #e5f0f9;
    padding: 120px 0 260px;
    position: relative;
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 {
        padding: 50px 0 100px;
    }
}
.testimonial-section-island2 .anim-icons .image-1 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.testimonial-section-island2 .testimonial-pattrn1-1 {
    background-image: url(../images/icons/testimonial-pattrn1-1.png);
    position: absolute;
    width: 205px;
    height: 263px;
    right: 54px;
    bottom: 0;
}
@media (max-width: 1399.98px) {
    .testimonial-section-island2 .testimonial-pattrn1-1 {
        display: none;
    }
}
.testimonial-section-island2 .slick-dotted .slick-dots {
    left: 0;
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: -44px;
}
.testimonial-section-island2 .slick-dotted .slick-dots li button {
    height: 15px;
    width: 15px;
    margin: 0 8.5px;
    background-color: #aaaaaa;
    border: 3px solid #aaaaaa;
    outline: 1px solid #aaaaaa !important;
    outline-offset: -3px;
    border-radius: 50%;
    padding: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-island2 .slick-dotted .slick-dots li button:before {
    display: none;
}
.testimonial-section-island2 .slick-dotted .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background-color: var(--theme-color9);
    border-color: var(--theme-color9);
    outline-color: var(--theme-color9) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-island2 .carousel-outer {
    position: relative;
}
.testimonial-section-island2 .carousel-outer .image-box .image {
    border-radius: 50%;
    margin-bottom: 0;
    position: absolute;
}
.testimonial-section-island2 .carousel-outer .image-box .image img {
    border-radius: 50%;
}
.testimonial-section-island2 .carousel-outer .image-box .client1 {
    top: -128px;
    left: -153px;
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client1 {
        display: none;
    }
}
.testimonial-section-island2 .carousel-outer .image-box .client2 {
    bottom: 26px;
    left: -310px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client2 {
        left: -160px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client2 {
        display: none;
    }
}
.testimonial-section-island2 .carousel-outer .image-box .client3 {
    bottom: -165px;
    left: -118px;
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client3 {
        display: none;
    }
}
.testimonial-section-island2 .carousel-outer .image-box .client4 {
    bottom: -120px;
    right: -100px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client4 {
        right: -130px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client4 {
        display: none;
    }
}
.testimonial-section-island2 .carousel-outer .image-box .client5 {
    top: -98px;
    right: -261px;
}
@media (max-width: 1399.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client5 {
        right: -150px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section-island2 .carousel-outer .image-box .client5 {
        display: none;
    }
}

.testimonial-block-island2 .inner-box {
    margin: 0 50px;
}
@media (max-width: 575.98px) {
    .testimonial-block-island2 .inner-box {
        margin: 0;
    }
}
.testimonial-block-island2 .inner-box .rating {
    margin-bottom: 25px;
}
.testimonial-block-island2 .inner-box .rating .icon {
    color: var(--theme-color9);
    font-size: 24px;
    margin-right: 4px;
}
@media (max-width: 575.98px) {
    .testimonial-block-island2 .inner-box .rating .icon {
        font-size: 22px;
    }
}
.testimonial-block-island2 .inner-box .rating .icon:last-child {
    margin-right: 0;
}
.testimonial-block-island2 .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    font-family: var(--text-font);
    line-height: 45px;
}
@media (max-width: 767.98px) {
    .testimonial-block-island2 .inner-box .text {
        font-size: 22px;
    }
}
.testimonial-block-island2 .inner-box .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}
.testimonial-block-island2 .inner-box .info-box .name {
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 6px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block-island2 .inner-box .info-box .name {
        font-size: 25px;
    }
}
.testimonial-block-island2 .inner-box .info-box .designation {
    display: block;
    margin-top: -3px;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .testimonial-block-island2 .inner-box .info-box .designation {
        font-size: 15px;
    }
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section-spa {
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    position: relative;
    padding: 550px 0 100px;
    margin-top: -460px;
}
.testimonial-section-spa:before {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 72px;
    content: "";
    background-image: url(../images/icons/bg-shape4.png);
}
.testimonial-section-spa.style-light {
    background-color: var(--theme-color-white);
}
.testimonial-section-spa.style-light .testimonial-pattrn1-1 {
    background-image: url("../images/icons/testimonial-pattrn1-1.png");
    position: absolute;
    width: 205px;
    height: 263px;
    right: 54px;
    bottom: 0px;
}
@media (max-width: 1199.98px) {
    .testimonial-section-spa.style-light .testimonial-pattrn1-1 {
        display: none;
    }
}
.testimonial-section-spa.style-light .swiper-button-prev {
    top: calc(50% - 85px);
}
@media (max-width: 767.98px) {
    .testimonial-section-spa.style-light .swiper-button-prev {
        display: none;
    }
}
.testimonial-section-spa.style-light .swiper-button-prev:hover:after {
    color: var(--theme-color-black);
}
.testimonial-section-spa.style-light .swiper-button-prev::after {
    color: #c4c4c4;
    content: "\f053";
    font-size: 46px;
    font-weight: 100;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-spa.style-light .swiper-button-next {
    top: calc(50% - 85px);
}
@media (max-width: 767.98px) {
    .testimonial-section-spa.style-light .swiper-button-next {
        display: none;
    }
}
.testimonial-section-spa.style-light .swiper-button-next:hover:after {
    color: var(--theme-color-black);
}
.testimonial-section-spa.style-light .swiper-button-next::after {
    color: #c4c4c4;
    content: "\f054";
    font-size: 46px;
    font-weight: 100;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-spa.style-light .testimonial-block-two .inner-box .text {
    color: #4b535d;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    max-width: 770px;
}
.testimonial-section-spa .sec-title {
    margin-bottom: 40px;
}
.testimonial-section-spa .anim-icons .image-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .testimonial-section-spa .anim-icons .image-1 {
        display: none;
    }
}
.testimonial-section-spa .testimonials {
    position: relative;
}
.testimonial-section-spa .testimonials .testimonial-thumbs {
    width: 270px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.testimonial-section-spa .testimonials .testimonial-thumbs .swiper-slide {
    height: 100px;
    width: 100px;
    text-align: center;
    overflow: hidden;
    border: 2px solid var(--theme-color-light);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transform: scale(0.7) !important;
    transform: scale(0.7) !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-spa .testimonials .testimonial-thumbs .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}
.testimonial-section-spa .testimonials .testimonial-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section-spa .swiper-button-next:after,
.testimonial-section-spa .swiper-button-prev:after {
    color: #000000;
    font-size: 30px;
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
}
.testimonial-section-spa .swiper-button-prev:after {
    content: "\f177";
}
.testimonial-section-spa .swiper-button-next:after {
    content: "\f178";
}

.testimonial-block-spa .inner-box {
    text-align: center;
}
.testimonial-block-spa .inner-box .info-box {
    margin-bottom: 30px;
}
.testimonial-block-spa .inner-box .info-box .name {
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonial-block-spa .inner-box .info-box .designation {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}
.testimonial-block-spa .inner-box .text {
    color: #707070;
    font-size: 28px;
    font-weight: 300;
    line-height: 45px;
    max-width: 860px;
    margin: 0 auto 20px;
}
@media (max-width: 1199.98px) {
    .testimonial-block-spa .inner-box .text {
        max-width: initial;
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .testimonial-block-spa .inner-box .text {
        font-size: 18px;
        line-height: 26px;
    }
}
.testimonial-block-spa .inner-box .quote-icon .icon {
    font-size: 52px;
    color: var(--theme-color1);
    line-height: 1em;
}
.testimonial-block-spa .inner-box .quote-icon .icon-img {
    width: auto;
    margin-bottom: 17px;
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section-city {
    padding: 120px 0;
    position: relative;
}
.testimonial-section-city .bg-image:before {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.testimonial-section-city .sec-title {
    margin-bottom: 19px;
}
.testimonial-section-city .slick-slider .slick-arrow {
    background-color: transparent;
    border: 1px solid var(--theme-color1);
    color: var(--theme-color1);
    font-size: 0;
    position: absolute;
    bottom: -78px;
    top: auto;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
    height: 60px;
    width: 60px;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-city .slick-slider .slick-arrow:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-city .slick-slider .slick-arrow:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-city .slick-slider .slick-arrow:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-city .slick-slider .slick-arrow.slick-prev {
    right: 68px;
    left: auto;
}
.testimonial-section-city .slick-slider .slick-arrow.slick-prev:before {
    color: var(--theme-color1);
    content: "\f060";
}
.testimonial-section-city .slick-slider .slick-arrow.slick-prev:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-city .slick-slider .slick-arrow.slick-prev:hover:before {
    color: var(--theme-color-white);
}
.testimonial-section-city .slick-slider .slick-arrow.slick-next {
    right: 0;
}
.testimonial-section-city .slick-slider .slick-arrow.slick-next:before {
    color: var(--theme-color1);
    content: "\f061";
}
.testimonial-section-city .slick-slider .slick-arrow.slick-next:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}
.testimonial-section-city .slick-slider .slick-arrow.slick-next:hover:before {
    color: var(--theme-color-white);
}

.testimonial-block-city {
    margin-bottom: 30px;
    position: relative;
}
.testimonial-block-city .inner-box {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-block-city .inner-box:hover {
    background-color: var(--theme-color1);
}
.testimonial-block-city .inner-box:hover .icon,
.testimonial-block-city .inner-box:hover .text,
.testimonial-block-city .inner-box:hover .name,
.testimonial-block-city .inner-box:hover .designation {
    color: var(--theme-color-white);
}
.testimonial-block-city .inner-box:hover .info-box .thumb {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.testimonial-block-city .content-box {
    position: relative;
}
.testimonial-block-city .content-box .icon {
    color: var(--theme-color1);
    display: inline-block;
    font-size: 48px;
    line-height: 40px;
    margin-bottom: 35px;
    margin-top: 15px;
    position: relative;
}
.testimonial-block-city .content-box .text {
    color: #000000;
    font-family: "Barlow";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    position: relative;
}
.testimonial-block-city .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #e3e3e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    padding: 30px 0 0;
    position: relative;
}
.testimonial-block-city .info-box .thumb {
    border-radius: 50%;
    height: 40px;
    margin: 0 10px 0 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 40px;
}
@media (max-width: 575.98px) {
    .testimonial-block-city .info-box .thumb {
        display: inline-block;
        left: 0;
        margin-bottom: 0px;
        position: relative;
        top: 0;
    }
}
.testimonial-block-city .info-box .name {
    color: #000;
    font-family: "Barlow";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
}
.testimonial-block-city .info-box .designation {
    color: #6a6f78;
    display: block;
    font-family: "Barlow";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0;
}

/*** 

====================================================================
  testimonial-section
====================================================================

***/
.testimonial-section-city2 {
    position: relative;
    padding: 550px 0 120px;
    background-color: #f7f3ee;
    margin-top: -456px;
}
.testimonial-section-city2:before {
    background-image: url(../images/icons/shape-52.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.testimonial-section-city2 .sub-title:before {
    display: none;
}
.testimonial-section-city2 .reviews-box .inner-box {
    background-color: var(--theme-color1);
    text-align: center;
    padding: 50px 10px 80px;
    margin-right: 30px;
}
.testimonial-section-city2 .reviews-box .inner-box .reviews-number {
    font-size: 82px;
    color: var(--theme-color-light);
    font-family: var(--title-font);
    line-height: 1;
    margin-bottom: 30px;
}
.testimonial-section-city2 .reviews-box .inner-box .rating {
    margin-bottom: 10px;
}
.testimonial-section-city2 .reviews-box .inner-box .rating .icon {
    font-size: 16px;
    color: var(--theme-color-light);
    margin-right: 20px;
}
.testimonial-section-city2 .reviews-box .inner-box .rating .icon:last-child {
    margin-right: 0;
}
.testimonial-section-city2 .reviews-box .inner-box .reviews {
    font-size: 16px;
    color: var(--theme-color-light);
    margin-bottom: 10px;
}
.testimonial-section-city2 .reviews-box .inner-box .title {
    font-size: 28px;
    color: var(--theme-color-light);
    margin-bottom: 30px;
}
.testimonial-section-city2 .reviews-box .inner-box .button-box {
    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;
}
.testimonial-section-city2 .reviews-box .inner-box .theme-btn {
    background-color: var(--theme-color-light);
    color: var(--theme-color-black);
    padding: 17.5px 32px;
    margin-right: 10px;
}
.testimonial-section-city2 .reviews-box .inner-box .theme-btn:hover {
    color: var(--theme-color-light);
}
.testimonial-section-city2 .reviews-box .inner-box .arrow-button {
    width: 65px;
    height: 60px;
    line-height: 60px;
    background-color: var(--theme-color-light);
    color: var(--theme-color-black);
    font-size: 30px;
    text-align: center;
    display: inline-block;
}
.testimonial-section-city2 .testimonial-block-winter .inner-box .text {
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
}
.testimonial-section-city2 .testimonial-block-winter .inner-box .info-box .name {
    margin-bottom: 0;
}
.testimonial-section-city2 .testimonials-column {
    position: relative;
}
.testimonial-section-city2 .testimonials-column .swiper-button-next {
    top: -170px;
    font-size: 30px;
    color: var(--theme-color1);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-city2 .testimonials-column .swiper-button-next:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.testimonial-section-city2 .testimonials-column .swiper-button-next:after {
    font-size: 20px;
}
.testimonial-section-city2 .testimonials-column .swiper-button-prev {
    left: auto;
    right: 70px;
    top: -170px;
    font-size: 30px;
    color: var(--theme-color1);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section-city2 .testimonials-column .swiper-button-prev:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.testimonial-section-city2 .testimonials-column .swiper-button-prev:after {
    font-size: 20px;
}

/***

==================================================================
testimonial-section-city2
==================================================================

***/
.testimonial-section-city3 {
    position: relative;
    padding: 120px 0 180px;
    margin: 0 30px;
}
.testimonial-section-city3 .bg-image {
    border-radius: 30px;
}
.testimonial-section-city3 .bg-image:before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.testimonial-section-city3 .bg-image img {
    border-radius: 30px;
}
.testimonial-section-city3 .sec-title {
    margin-bottom: 45px;
}
.testimonial-section-city3 .sec-title .sub-title {
    color: var(--text-color);
}
.testimonial-section-city3 .sec-title h2 {
    color: var(--theme-color-white);
}
.testimonial-section-city3 .testimonial-block-city2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.testimonial-section-city3 .testimonial-block-city2 .images-box .image-1 {
    margin-bottom: 0;
    position: relative;
    margin-top: 20px;
    z-index: 1;
}
.testimonial-section-city3 .testimonial-block-city2 .images-box .image-1:before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 110px;
    height: 200px;
    background-color: #a98860;
    z-index: -1;
}
.testimonial-section-city3 .testimonial-block-city2 .images-box .image-1 img {
    min-width: 140px;
    height: 198px;
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box {
    margin-left: 50px;
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box .icon {
    margin-bottom: 20px;
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box .icon img {
    max-width: 30%;
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box .text {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    font-family: var(--text-font4);
    color: var(--theme-color-white);
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box .author-info .name {
    color: var(--theme-color-white);
    margin-bottom: 0;
}
.testimonial-section-city3 .testimonial-block-city2 .content-box .inner-box .author-info .designation {
    color: var(--theme-color-white);
}

/*** 

====================================================================
  testimonial-section-winter
====================================================================

***/

.testimonial-section-five2 {
    padding: 120px 0;
    position: relative;
    background-color: #f5f0ed;
    overflow: hidden;
    z-index: 1;
}
.testimonial-section-five2 .slider-outer {
    margin: 0px -70px;
}
.testimonial-section-five2 .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background-color: #929292;
    margin: 5px;
}
.testimonial-section-five2 .swiper-pagination-bullet-active {
    background-color: var(--theme-color1);
}

.testimonial-block-five2 {
    max-width: 790px;
    margin: 0 auto;
}
.testimonial-block-five2 .inner-box {
    background-color: var(--theme-color-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 400px;
    height: 100%;
}
.testimonial-block-five2 .inner-box .thumb {
    position: relative;
    margin-bottom: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 45%;
    width: 100%;
}
@media (max-width: 767.98px) {
    .testimonial-block-five2 .inner-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .testimonial-block-five2 .inner-box .thumb {
        border-radius: 20px;
        margin-bottom: 0px;
        overflow: hidden;
        width: 100%;
        max-width: 375px;
    }

    .testimonial-block-five2 {
        max-width: 375px;
        margin: 0 auto;
    }
    .testimonial-section-five2 {
        padding: 50px 0;
        margin-bottom: 30px;
    }
}
.testimonial-block-five2 .inner-box .thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.testimonial-block-five2 .inner-box .thumb .video-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.testimonial-block-five2 .inner-box .content-box {
    padding: 40px 40px;
    border-radius: 0 20px 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(19, 81, 216, 0.05);
    -webkit-box-shadow: 0px 4px 18px 0px rgba(var(--theme-color-black-rgb), 0.05);
    box-shadow: 0px 4px 18px 0px rgba(var(--theme-color-black-rgb), 0.05);
}
@media (max-width: 767.98px) {
    .testimonial-block-five2 .inner-box .content-box {
        padding: 20px 50px;
        border-radius: 20px;
    }
}
.testimonial-block-five2 .inner-box .content-box .logo {
    margin-bottom: 20px;
}
.testimonial-block-five2 .inner-box .content-box .text {
    font-size: 20px;
    line-height: 32px;
    color: var(--text-color);
    font-size: 16px;
}
.testimonial-block-five2 .inner-box .content-box .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 15px;
    margin-top: 30px;
    border-top: 1px solid #eeeff1;
}
.testimonial-block-five2 .inner-box .content-box .info-box .user-info .name {
    font-size: 18px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 0;
}
.testimonial-block-five2 .inner-box .content-box .info-box .user-info .designation {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--text-color3);
}
.testimonial-block-five2 .inner-box .content-box .info-box .rating-info {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 15px;
    border-radius: 35px;
    background-color: var(--theme-color1);
}
.testimonial-block-five2 .inner-box .content-box .info-box .rating-info .rating {
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    color: var(--headings-color);
}
.testimonial-block-five2 .inner-box .content-box .info-box .rating-info .icon {
    font-size: 14px;
    line-height: 18px;
    color: var(--headings-color);
}

/***

====================================================================
    team Section
====================================================================

***/
.team-section {
    position: relative;
    padding: 120px 0 75px;
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .team-section {
        padding: 80px 0 30px;
    }
}
.team-section .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 90px;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 1399.98px) {
    .team-section .anim-icons .image-1 {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .team-section .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .team-section .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .team-section .sec-title h2 {
        font-size: 29px;
    }
}
.team-section.style-city2 .team-block .inner-box {
    border-radius: 20px;
}
.team-section.style-city2 .team-block .inner-box:hover .image-box .inner-box:after {
    opacity: 1;
}
.team-section.style-city2 .team-block .inner-box:hover .info-box {
    background-color: var(--theme-color1);
}
.team-section.style-city2 .team-block .inner-box:hover .info-box .name {
    color: var(--theme-color-white);
}
.team-section.style-city2 .team-block .inner-box:hover .info-box .designation {
    color: var(--theme-color-white);
}
.team-section.style-city2 .team-block .inner-box .image-box .inner-box {
    border: none;
    padding: 0;
    position: relative;
}
.team-section.style-city2 .team-block .inner-box .image-box .inner-box:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-135deg, rgba(170, 132, 83, 0) 0%, rgba(170, 132, 83, 0) 70%, var(--theme-color1) 100%);
    content: "";
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.team-section.style-city2 .team-block .inner-box .image-box .inner-box .image {
    border-radius: 20px 20px 0 0;
}
.team-section.style-city2 .team-block .inner-box .image-box .inner-box .image img {
    border-radius: 20px 20px 0 0;
    min-width: 381px;
    max-height: 381px;
    -o-object-fit: cover;
    object-fit: cover;
}
.team-section.style-city2 .team-block .inner-box .info-box {
    text-align: left;
    background-color: #fff;
    padding: 20px 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.0509803922);
    border-radius: 0 0 20px 20px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-block {
    position: relative;
    margin-bottom: 40px;
}
.team-block .inner-box {
    position: relative;
}
.team-block .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.team-block .inner-box:hover .social-links {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.team-block .image-box {
    position: relative;
}
.team-block .image-box .inner-box {
    border: 1px solid var(--theme-color1);
    padding: 19px;
}
.team-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}
.team-block .image-box .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.team-block .image-box .social-links {
    position: absolute;
    right: 40px;
    margin-top: 0;
    bottom: 115px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.team-block .image-box .social-links a {
    position: relative;
    font-size: 16px;
    color: var(--theme-color-light);
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 8px;
}
.team-block .image-box .social-links a:first-child {
    margin-top: 0;
    margin-left: 0;
}
.team-block .image-box .social-links a:hover {
    color: var(--theme-color1);
}
.team-block .info-box {
    position: relative;
    padding: 21px 24px 0;
    background-color: var(--theme-color-light);
    margin: 0 auto;
    text-align: center;
}
.team-block .info-box .name {
    margin-bottom: 0px;
}
.team-block .info-box .name:hover {
    color: var(--theme-color1);
}
.team-block .info-box .designation {
    font-size: 14px;
    position: relative;
    display: block;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-bottom: -2px;
}

/***

====================================================================
    team Section two
====================================================================

***/
.team-section-two {
    position: relative;
    padding: 120px 0 72px;
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .team-section-two {
        padding: 80px 0 30px;
    }
}
@media (max-width: 575.98px) {
    .team-section-two .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .team-section-two .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .team-section-two .sec-title h2 {
        font-size: 29px;
    }
}

.team-block-two {
    position: relative;
    margin-bottom: 40px;
}
.team-block-two.content-center-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.team-block-two.content-right-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.team-block-two .inner-box {
    position: relative;
    max-width: 310px;
}
.team-block-two .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.team-block-two .image-box {
    position: relative;
}
.team-block-two .image-box .image {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}
.team-block-two .image-box .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.team-block-two .image-box .social-links {
    margin-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.team-block-two .image-box .social-links a {
    position: relative;
    font-size: 15px;
    color: #434343;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-right: 25px;
}
.team-block-two .image-box .social-links a:last-child {
    margin-right: 0;
}
.team-block-two .image-box .social-links a:hover {
    color: var(--theme-color1);
}
.team-block-two .info-box {
    position: relative;
    padding: 30px 24px 0;
    background-color: var(--theme-color-light);
    margin: 0 auto;
    border-radius: 0px 0px 10px 10px;
    text-align: center;
}
.team-block-two .info-box .name {
    margin-bottom: 0px;
}
.team-block-two .info-box .name:hover {
    color: var(--theme-color1);
}
.team-block-two .info-box .designation {
    color: var(--theme-color1);
    position: relative;
    display: block;
    text-transform: uppercase;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-bottom: 24px;
}

/***

====================================================================
    team Section
====================================================================

***/
.team-section-lodge {
    position: relative;
    padding: 94px 0 75px;
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .team-section-lodge {
        padding: 80px 0 30px;
    }
}
.team-section-lodge .anim-icons .image-1 {
    position: absolute;
    right: 0;
    bottom: 90px;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 1399.98px) {
    .team-section-lodge .anim-icons .image-1 {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .team-section-lodge .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .team-section-lodge .sec-title .sub-title {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .team-section-lodge .sec-title h2 {
        font-size: 29px;
    }
}

.team-block-lodge {
    position: relative;
    margin-bottom: 40px;
}
.team-block-lodge .inner-box {
    position: relative;
}
.team-block-lodge .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.team-block-lodge .inner-box:hover .social-links {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.team-block-lodge .image-box {
    position: relative;
}
.team-block-lodge .image-box .inner-box {
    border: 1px solid var(--theme-color6);
    padding: 19px;
}
.team-block-lodge .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}
.team-block-lodge .image-box .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.team-block-lodge .image-box .social-links {
    position: absolute;
    right: 40px;
    margin-top: 0;
    bottom: 115px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.team-block-lodge .image-box .social-links a {
    position: relative;
    font-size: 16px;
    color: var(--theme-color-light);
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 8px;
}
.team-block-lodge .image-box .social-links a:first-child {
    margin-top: 0;
    margin-left: 0;
}
.team-block-lodge .image-box .social-links a:hover {
    color: var(--theme-color1);
}
.team-block-lodge .info-box {
    position: relative;
    padding: 21px 24px 0;
    background-color: var(--theme-color-light);
    margin: 0 auto;
    text-align: center;
}
.team-block-lodge .info-box .name {
    margin-bottom: 0px;
}
.team-block-lodge .info-box .name:hover {
    color: var(--theme-color1);
}
.team-block-lodge .info-box .designation {
    font-size: 14px;
    position: relative;
    display: block;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    margin-bottom: -2px;
}

/***

==================================================================
team-section style-golf2
==================================================================

***/
.team-section.style-golf2 {
    position: relative;
}
.team-section.style-golf2:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/shape-golf2-testi.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*** 

====================================================================
  video-section Four
====================================================================

***/
.video-section-four {
    position: relative;
    padding: 99px 0 66px;
}
.video-section-four.style-nature .btn-box {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.video-section-four.style-nature .btn-box i {
    color: var(--theme-color-light);
}
.video-section-four.style-nature .btn-box .play-now-two {
    background-color: var(--theme-color6);
}
.video-section-four.style-nature .btn-box .play-now-two:hover {
    background-color: #ffffff;
}
.video-section-four.style-nature .btn-box .play-now-two:hover i {
    color: var(--theme-color6);
}
.video-section-four.style-two .bg-image {
    z-index: -1;
}
.video-section-four.style-two .bg-image:before {
    display: none;
}
.video-section-four.style-two .btn-box .play-now-two {
    width: 125px;
    height: 125px;
    line-height: 125px;
    color: var(--theme-color-light);
    background-color: var(--theme-color6);
}
.video-section-four .bg-image {
    z-index: -1;
}
.video-section-four .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(var(--theme-color-black-rgb), 0.5);
}
.video-section-four .outer-box {
    margin: 0px -53px;
}
@media (max-width: 1399.98px) {
    .video-section-four .outer-box {
        margin: 0;
    }
}
.video-section-four .sec-title {
    margin-bottom: 58px;
}
.video-section-four .btn-box {
    margin-top: 30px;
    text-align: center;
}
.video-section-four .btn-box .play-now-two {
    border: none;
    background-color: rgba(var(--theme-color-white-rgb), 0.48);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--theme-color1);
    display: inline-block;
    font-size: 30px;
    text-align: center;
    line-height: 162px;
    width: 162px;
    height: 162px;
    position: relative;
    top: 0;
}
@media (max-width: 575.98px) {
    .video-section-four .btn-box .play-now-two {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
}
.video-section-four .info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 85px;
}
.video-section-four .info-text .inner-info {
    border-left: 1px solid rgba(var(--theme-color-white-rgb), 0.5);
    padding-left: 30px;
    max-width: 440px;
}
.video-section-four .info-text .inner-info .text {
    color: var(--theme-color-white);
    margin-bottom: 16px;
}
.video-section-four .info-text .inner-info .link {
    color: var(--theme-color-white);
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.video-section-four .info-text .inner-info .link:hover {
    color: var(--theme-color1);
}
.video-section-four .info-text .inner-info .link:hover .icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.video-section-four .info-text .inner-info .link .icon {
    font-size: 18px;
    margin-left: 8px;
    position: relative;
    top: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.video-section-four.style-campground {
    margin: 0 30px;
    border-radius: 30px;
    z-index: 1;
}
.video-section-four.style-campground .bg-image {
    border-radius: 30px;
}
.video-section-four.style-campground .bg-image:before {
    border-radius: 30px;
    background-color: rgba(var(--theme-color-black-rgb), 0.1);
}
.video-section-four.style-campground .play-now-two.style-two {
    background-color: var(--theme-color6);
    color: var(--theme-color-white);
    width: 125px;
    height: 125px;
    line-height: 125px;
}

.video-section-winter {
    position: relative;
}
.video-section-winter .auto-container {
    max-width: var(--large-container-width);
}
.video-section-winter .outer-box {
    position: relative;
    margin-top: -450px;
}
.video-section-winter .outer-box .video {
    width: 1550px;
    height: 870px;
    border-radius: 15px;
}

.video-section-four-luxury4 {
    position: relative;
    padding: 104px 0 147px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    margin: 0 25px;
    border-radius: 0 0 25px 25px;
}
.video-section-four-luxury4 .bg-image {
    border-radius: 30px;
    overflow: hidden;
    z-index: -1;
}
.video-section-four-luxury4 .bg-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.video-section-four-luxury4 .outer-box {
    margin: 0px -53px;
}
@media (max-width: 1399.98px) {
    .video-section-four-luxury4 .outer-box {
        margin: 0;
    }
}
.video-section-four-luxury4 .sec-title {
    margin-bottom: 30px;
    text-align: center;
}
.video-section-four-luxury4 .sec-title h2 {
    font-size: 150px;
}
.video-section-four-luxury4 .btn-box {
    margin-top: 30px;
    text-align: center;
}
.video-section-four-luxury4 .btn-box .play-now-two {
    border: none;
    background-color: var(--theme-color1);
    border-radius: 50%;
    color: var(--theme-color-light);
    display: inline-block;
    font-size: 30px;
    text-align: center;
    line-height: 144px;
    width: 144px;
    height: 144px;
    position: relative;
    top: 0;
}
@media (max-width: 575.98px) {
    .video-section-four-luxury4 .btn-box .play-now-two {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
}

/***

==================================================================
video-section-four
==================================================================

***/
.video-section-four.style-golf2 {
    margin: 0 30px;
    border-radius: 30px;
}
.video-section-four.style-golf2 .bg-image {
    border-radius: 30px;
}
.video-section-four.style-golf2 .bg-image:before {
    border-radius: 30px;
    background-image: linear-gradient(220deg, #fbd7698a 0%, #6e541d 74%);
}
.video-section-four.style-golf2 .sec-title {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.2117647059);
}
.video-section-four.style-golf2 .sec-title .theme-btn {
    border-radius: 0px;
    position: absolute;
    right: 0;
    bottom: 65px;
    background: #fff;
    color: var(--theme-color1);
}
.video-section-four.style-city2 .bg-image:before {
    background-image: none;
}
.video-section-four.style-city2 .theme-btn {
    border: none;
}
.video-section-four.style-golf2 .sec-title p {
    width: 50%;
}

@media (max-width: 767px) {
    .video-section-four.style-golf2 .sec-title p {
        width: 100%;
    }
    .video-section-four.style-golf2 .sec-title .theme-btn {
        position: relative;
        right: 0;
        bottom: 0px;
    }
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section {
    position: relative;
    padding: 120px 0;
    background: #f8f5f0;
}
@media (max-width: 575.98px) {
    .rooms-section .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section.luxury2-2 {
    background-color: #ecf2ea;
    padding: 175px 0 95px;
}
.rooms-section.style-winter {
    background-color: var(--theme-color-light);
}
.rooms-section.style-winter .room-block .inner-box {
    position: relative;
}
.rooms-section.style-winter .room-block .inner-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0)));
    background: linear-gradient(0deg, #222222, rgba(34, 34, 34, 0));
    opacity: 0.4;
}
.rooms-section.style-winter .room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color7);
}
.rooms-section.style-luxury {
    background-color: transparent;
    padding: 120px 0 100px;
    z-index: 1;
}
.rooms-section.style-luxury .outer-box {
    margin: 0 35px;
}
.rooms-section.style-luxury .room-block .inner-box .image-box figure {
    margin-bottom: 25px;
    height: 100%;
}
.rooms-section.style-city {
    background-color: var(--theme-color-light);
}
.rooms-section.style-mountain {
    padding: 120px 0 0;
    background-color: transparent;
    margin-bottom: -225px;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .rooms-section.style-mountain {
        padding: 11px 0 0;
        margin: 0;
    }
}
.rooms-section.style-mountain .room-block .inner-box .image-box figure img {
    height: 100%;
}
.rooms-section.style-mountain .room-block .inner-box .image-box figure {
    margin-bottom: 0;
    height: 100%;
}
.rooms-section.style-mountain .room-block .inner-box .image-box figure:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 6, 24, 0)), to(#040618));
    background: linear-gradient(180deg, rgba(4, 6, 24, 0) 0%, #040618 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}
.rooms-section.style-mountain .room-block .inner-box {
    height: 460px;
}

.room-block.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 3px;
}
.room-block .inner-box {
    position: relative;
}

.room-block .inner-box:hover .box-caption {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
.room-block .inner-box:hover .content-box {
    bottom: 84px;
    z-index: 9;
}

.room-block .inner-box:hover .image-box figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.room-block .inner-box .box-caption {
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block .inner-box .box-caption .book-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14pxx;
    color: #ffffff;
    font-family: var(--text-font2);
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color1);
    border-color: transparent;
}
.room-block .inner-box .box-caption .bx-links {
    margin-left: auto;
}
.room-block .inner-box .box-caption .bx-links li {
    display: inline-block;
    margin-right: 11px;
}
.room-block .inner-box .box-caption .bx-links li:last-child {
    margin-right: 0;
}
.room-block .inner-box .box-caption .bx-links li a {
    color: #fff;
    font-size: 16px;
}
.room-block .inner-box .image-box figure {
    margin-bottom: 27px;
    overflow: hidden;
}
.room-block .inner-box .image-box figure img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.room-block .inner-box .content-box {
    position: absolute;
    bottom: 22px;
    right: 32px;
    text-align: right;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 9;
}
.room-block .inner-box .content-box .title {
    font-size: 27px;
    margin-bottom: -6px;
    color: var(--theme-color-light);
}
.room-block .inner-box .content-box .price {
    font-size: 14px;
    color: var(--theme-color-light);
}
@media (max-width: 991.98px) {
    .room-block .inner-box .image-box .image-2 img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.room-facility-list {
    position: relative;
}
.room-facility-list .icon {
    border: 1px solid var(--theme-color1);
    border-radius: 50%;
    display: block;
    font-size: 22px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-facility-list .list-one:hover .icon {
    background-color: var(--theme-color1);
    color: #fff;
}

.room-details__content-right {
    position: relative;
    display: block;
    margin-top: 40px;
}

.room-details__details-box {
    background-color: #f5f6f7;
    border: 1px solid var(--theme-color1);
    border-radius: 10px;
    padding: 43px 50px 30px 50px;
    position: relative;
    z-index: 1;
}

.product-details.rd-page .bx-wrapper {
    margin-bottom: 30px;
}
.product-details.rd-page .bx-wrapper .thumb-box li {
    height: auto;
}

@media only screen and (max-width: 480px) {
    .room-block .inner-box .box-caption .book-btn {
        padding: 0 10px;
        margin-right: 10px;
    }
    .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
        margin-right: 10px;
    }
    .rooms-section {
        padding: 80px 0;
    }
}

section.rooms-section.style-luxury .image-box {
    height: 400px;
    margin-bottom: 20px;
}
section.rooms-section.style-luxury .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/***

====================================================================
    Product Section One
====================================================================

***/
.room-service-section {
    background-color: rgba(var(--theme-color1-rgb), 0.1);
}

.room-service-block-one .inner-box {
    background-color: var(--theme-color-light);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.room-service-block-one .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.room-service-block-one .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
}
.room-service-block-one .inner-box .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-one .inner-box .image-box .image img {
        height: auto;
    }
}
.room-service-block-one .content-box {
    padding: 30px 30px 15px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-one .content-box {
        padding: 20px;
    }
}
.room-service-block-one .content-box .inner-box {
    border-bottom: 1px solid rgba(106, 105, 105, 0.2);
    margin-bottom: 25px;
    padding-bottom: 20px;
}
.room-service-block-one .content-box .title {
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-one .content-box .title {
        font-size: 20px;
    }
}
.room-service-block-one .content-box .price {
    color: var(--theme-color1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.room-service-block-one .content-box .facilities-box {
    position: relative;
}
.room-service-block-one .content-box .facilities-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #818181;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 25px;
}
.room-service-block-one .content-box .facilities-list i {
    color: #818181;
    font-size: 24px;
}

/***

====================================================================
    Room Block Two
====================================================================

***/
.room-block-two .inner-box {
    overflow: hidden;
    position: relative;
}
.room-block-two .inner-box:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 6, 24, 0)), to(#040618));
    background: linear-gradient(180deg, rgba(4, 6, 24, 0) 0%, #040618 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-two .inner-box:hover .image-box figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.room-block-two .inner-box:hover .image-box .btn-box,
.room-block-two .inner-box:hover .image-box .bookmark {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
}
.room-block-two .inner-box:hover .content-box {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    z-index: 9;
}
@media (max-width: 991.98px) {
    .room-block-two .inner-box .image-box .image-2 img {
        width: 100%;
        height: 340px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.room-block-two .inner-box .image-box .btn-box {
    height: 45px;
    left: 40px;
    position: absolute;
    top: 40px;
    width: 135px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    opacity: 0;
    z-index: 9;
    visibility: hidden;
}
.room-block-two .inner-box .image-box .btn-box .btn-style-two {
    padding: 9px 31px;
}
.room-block-two .inner-box .image-box .btn-box span {
    font-family: var(--text-font2);
    font-weight: normal;
    text-transform: capitalize;
}
.room-block-two .inner-box .image-box .bookmark {
    background-color: rgba(4, 6, 24, 0.5);
    border-radius: 50%;
    color: var(--theme-color-white);
    height: 40px;
    line-height: 40px;
    opacity: 0;
    position: absolute;
    right: 40px;
    text-align: center;
    top: 40px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    visibility: hidden;
    width: 40px;
    z-index: 9;
}
.room-block-two .inner-box .image-box .bookmark:hover {
    background-color: var(--theme-color1);
}
.room-block-two .inner-box .image-box figure {
    margin-bottom: 0;
}
.room-block-two .inner-box .image-box figure img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.room-block-two .inner-box .content-box {
    bottom: 35px;
    left: 40px;
    position: absolute;
    right: 40px;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 9;
}
.room-block-two .inner-box .content-box .title {
    color: var(--theme-color-light);
    margin-bottom: 15px;
}
.room-block-two .inner-box .content-box .price {
    color: var(--theme-color-light);
}
.room-block-two .inner-box .box-caption {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    padding-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.room-block-two .bx-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.room-block-two .bx-links li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-box-flex: 0;
    margin-top: 10px;
    width: 50%;
}
.room-block-two .bx-links li:last-child {
    margin-right: 0;
}
.room-block-two .bx-links li a {
    color: var(--theme-color-white);
    font-family: var(--text-font2);
    font-size: 16px;
}
.room-block-two .bx-links li a i {
    margin-right: 10px;
}

/***

====================================================================
    Room Block Thee
====================================================================

***/
.room-block-three .inner-box {
    position: relative;
}
.room-block-three .inner-box:before {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(1.03%, rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0.5))
    );
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1.03%, rgba(0, 0, 0, 0.5) 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-three .inner-box:hover .image-box figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
@media (max-width: 991.98px) {
    .room-block-three .inner-box .image-box .image-2 img {
        height: 340px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
    }
}
.room-block-three .inner-box .image-box .btn-box {
    height: 45px;
    left: 40px;
    position: absolute;
    top: 40px;
    width: 135px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 9;
}
@media (max-width: 575.98px) {
    .room-block-three .inner-box .image-box .btn-box {
        left: 20px;
    }
}
.room-block-three .inner-box .image-box .btn-box .btn-style-two {
    padding: 9px 31px;
}
.room-block-three .inner-box .image-box .btn-box span {
    font-family: var(--text-font2);
    font-weight: normal;
    text-transform: capitalize;
}
.room-block-three .inner-box .image-box figure {
    margin-bottom: 27px;
    overflow: hidden;
}
.room-block-three .inner-box .image-box figure img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.room-block-three .inner-box .content-box {
    bottom: 55px;
    left: 0;
    margin: 0 auto 55px;
    position: absolute;
    right: 0;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 9;
}
@media (max-width: 575.98px) {
    .room-block-three .inner-box .content-box {
        text-align: left;
        left: 20px;
    }
}
.room-block-three .inner-box .content-box .title {
    color: var(--theme-color-light);
    margin-bottom: 15px;
}
.room-block-three .inner-box .content-box .price {
    color: var(--theme-color-light);
}
.room-block-three .inner-box .box-caption {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    bottom: 30px;
    left: 40px;
    padding-top: 15px;
    position: absolute;
    width: calc(100% - 60px);
    z-index: 99;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-block-three .inner-box .box-caption {
        border: none;
        left: 20px;
    }
}
.room-block-three .bx-links {
    text-align: center;
}
@media (max-width: 575.98px) {
    .room-block-three .bx-links {
        text-align: left;
    }
}
.room-block-three .bx-links li {
    display: inline-block;
    margin-right: 30px;
    margin-top: 10px;
}
@media (max-width: 575.98px) {
    .room-block-three .bx-links li {
        margin-right: 15px;
    }
}
.room-block-three .bx-links li:last-child {
    margin-right: 0;
}
.room-block-three .bx-links li a {
    color: var(--theme-color-white);
    font-family: var(--text-font2);
    font-size: 16px;
}
.room-block-three .bx-links li a i {
    margin-right: 10px;
}

/***

====================================================================
    Room Section Four
====================================================================

***/
.room-section-four {
    position: relative;
    padding: 120px 0 90px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
}
.room-section-four.style-luxury4 {
    margin: 0 25px;
    border-radius: 25px 25px 0 0;
}
.room-section-four.style-modern {
    margin-top: 120px;
}
.room-section-four.style-modern .image-service-block .inner-box .image-box .image {
    outline: 1px solid var(--theme-color6);
}
.room-section-four.style-modern-two {
    margin-top: 120px;
    background-color: var(--theme-color-light);
}
.room-section-four.style-modern-two .image-service-block .inner-box .image-box .image {
    outline: 1px solid var(--theme-color1);
}
.room-section-four.style-luxury2-two {
    margin-top: 120px;
    background-color: var(--theme-color-light);
}
.room-section-four.style-luxury2-two .image-service-block .inner-box .image-box .image {
    outline: 1px solid var(--theme-color1);
}
.room-section-four .icon-dots-3 {
    position: absolute;
    right: 0;
    top: 0;
}
.room-section-four .bottom-text {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.room-section-four .bottom-text a {
    font-weight: 500;
    color: var(--theme-color1);
    text-decoration: underline;
}
.room-section-four .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
}
@media (max-width: 1399.98px) {
    .room-section-four .outer-box {
        margin: 0;
    }
}
@media (max-width: 991.98px) {
    .room-section-four .outer-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }
}
.room-section-four .room-block-four {
    min-height: 470px;
    margin-right: 5px;
    margin-left: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    will-change: flex;
}
.room-section-four .room-block-four:hover,
.room-section-four .room-block-four.active {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
@media (max-width: 991.98px) {
    .room-section-four .room-block-four {
        width: 50%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        padding: 0 15px;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 767.98px) {
    .room-section-four .room-block-four {
        width: 100%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    }
}
@media (max-width: 575.98px) {
    .room-section-four .room-block-four {
        padding: 0;
    }
}

.room-block-four {
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: 0.8s cubic-bezier(0.29, 0, 0.2, 1);
    transition: 0.8s cubic-bezier(0.29, 0, 0.2, 1);
}
.room-block-four.active .inner-box .image-box .image:before {
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.room-block-four.active .inner-box .icon {
    background-color: var(--theme-color-light);
    color: var(--theme-color-dark);
}
.room-block-four.active .inner-box .content-box .title {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.room-block-four.active .inner-box .content-box .price {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
.room-block-four.active .inner-box .content-box .box-caption {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.room-block-four.active .inner-box .content-box-hover .title {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}
.room-block-four.active .inner-box .content-box-hover .text {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}
.room-block-four .inner-box {
    position: relative;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .room-block-four .inner-box .image-box .image:before {
        opacity: 0.3;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .room-block-four .inner-box .icon {
        background-color: var(--theme-color-light);
        color: var(--theme-color-dark);
    }
    .room-block-four .inner-box .content-box .title {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
        -webkit-transition-delay: 300ms;
        transition-delay: 300ms;
    }
    .room-block-four .inner-box .content-box .price {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
        -webkit-transition-delay: 400ms;
        transition-delay: 400ms;
    }
    .room-block-four .inner-box .content-box .box-caption {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
        -webkit-transition-delay: 600ms;
        transition-delay: 600ms;
    }
    .room-block-four .inner-box .content-box-hover .title {
        opacity: 0;
        -webkit-transform: translateY(100);
        transform: translateY(100);
        -webkit-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    .room-block-four .inner-box .content-box-hover .text {
        opacity: 0;
        -webkit-transform: translateY(100);
        transform: translateY(100);
        -webkit-transition-delay: 0ms;
        transition-delay: 0ms;
    }
}
.room-block-four .inner-box:hover .image-box .image:before {
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.room-block-four .inner-box:hover .icon {
    background-color: var(--theme-color-light);
    color: var(--theme-color-dark);
}
.room-block-four .inner-box:hover .content-box .title {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.room-block-four .inner-box:hover .content-box .price {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
.room-block-four .inner-box:hover .content-box .box-caption {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.room-block-four .inner-box:hover .content-box-hover .title {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}
.room-block-four .inner-box:hover .content-box-hover .text {
    opacity: 0;
    -webkit-transform: translateY(100);
    transform: translateY(100);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}
.room-block-four .image-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .image-box .image {
    position: relative;
    margin-bottom: 0;
}
.room-block-four .image-box .image::before {
    border-radius: 30px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: #1d1d29;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}
.room-block-four .image-box .image::after {
    border-radius: 30px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(29, 29, 41, 0)),
        color-stop(75%, rgba(29, 29, 41, 0.75))
    );
    background: linear-gradient(to bottom, rgba(29, 29, 41, 0) 0%, rgba(29, 29, 41, 0.75) 75%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}
.room-block-four .image-box .image img {
    border-radius: 30px;
    width: 100%;
    height: 561px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box-hover {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    z-index: 2;
    padding: 30px 30px;
}
.room-block-four .content-box-hover .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.room-block-four .content-box-hover .title {
    color: #fff;
    font-size: 24px;
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box-hover .text {
    color: #cccccc;
    font-size: 16px;
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 3;
    padding: 30px 40px 36px;
}
@media (max-width: 575.98px) {
    .room-block-four .content-box {
        padding: 30px 15px 36px;
    }
}
.room-block-four .content-box .title {
    color: var(--theme-color-white);
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box .price {
    color: var(--theme-color-white);
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box .box-caption {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 21px;
    padding-top: 9px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-four .content-box .box-caption .bx-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.room-block-four .content-box .box-caption .bx-links li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-box-flex: 0;
    margin-top: 16px;
    width: 50%;
}
.room-block-four .content-box .box-caption .bx-links li:last-child {
    margin-right: 0;
}
.room-block-four .content-box .box-caption .bx-links li:nth-child(2n + 2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.room-block-four .content-box .box-caption .bx-links li a {
    color: var(--theme-color-white);
    font-family: var(--text-font2);
    font-size: 16px;
}
.room-block-four .content-box .box-caption .bx-links li a i {
    margin-right: 10px;
}

.room-section-four4 {
    position: relative;
    padding: 120px 30px 90px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
}
.room-section-four4:before {
    background-image: url(../images/icons/bg-shape8.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 100%;
    height: 59px;
    z-index: 1;
}
.room-section-four4 .bg-image {
    height: 80%;
}
.room-section-four4 .bg-image:before {
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 98%;
}
.room-section-four4 .bg-image img {
    height: 98%;
    width: 100%;
}
.room-section-four4.style-luxury4 {
    margin: 0 25px;
    border-radius: 25px 25px 0 0;
}
.room-section-four4.style-modern {
    margin-top: 120px;
}
.room-section-four4.style-modern .image-service-block .inner-box .image-box .image {
    outline: 1px solid var(--theme-color6);
}
.room-section-four4.style-luxury2-two {
    margin-top: 120px;
    background-color: var(--theme-color-light);
}
.room-section-four4.style-luxury2-two .image-service-block .inner-box .image-box .image {
    outline: 1px solid var(--theme-color1);
}
.room-section-four4 .icon-dots-3 {
    position: absolute;
    right: 0;
    top: 0;
}
.room-section-four4 .bottom-text {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.room-section-four4 .bottom-text a {
    font-weight: 500;
    color: var(--theme-color1);
    text-decoration: underline;
}
.room-section-four4 .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
}
@media (max-width: 1399.98px) {
    .room-section-four4 .outer-box {
        margin: 0;
    }
}
@media (max-width: 991.98px) {
    .room-section-four4 .outer-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }
}
.room-section-four4 .room-block-four {
    min-height: 470px;
    margin-right: 5px;
    margin-left: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    will-change: flex;
}
.room-section-four4 .room-block-four:hover,
.room-section-four4 .room-block-four.active {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
@media (max-width: 991.98px) {
    .room-section-four4 .room-block-four {
        width: 50%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        padding: 0 15px;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 767.98px) {
    .room-section-four4 .room-block-four {
        width: 100%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    }
}
@media (max-width: 575.98px) {
    .room-section-four4 .room-block-four {
        padding: 0;
    }
}

/***

====================================================================
    Room Section
====================================================================

***/
.room-service-section-two {
    background-color: rgba(105, 145, 10, 0.1019607843);
    padding: 120px 0;
    position: relative;
}
.room-service-section-two:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape4.png);
    z-index: 2;
    pointer-events: none;
}
.room-service-section-two:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 59px;
    background-image: url(../images/icons/bg-shape3.png);
    z-index: 2;
    pointer-events: none;
}
.room-service-section-two .sub-title:before {
    display: none;
}
.room-service-section-two .outer-box {
    position: relative;
}
.room-service-section-two .room-service-carousel-two {
    margin-right: -400px;
}
@media (max-width: 991.98px) {
    .room-service-section-two .room-service-carousel-two {
        margin-right: 0;
    }
}
.room-service-section-two .swiper-button-next {
    top: -100px;
    font-size: 30px;
    color: var(--theme-color6);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-service-section-two .swiper-button-next:hover {
    background-color: var(--theme-color6);
    color: var(--theme-color-light);
}
.room-service-section-two .swiper-button-next:after {
    font-size: 20px;
}
.room-service-section-two .swiper-button-prev {
    left: auto;
    right: 70px;
    top: -100px;
    font-size: 30px;
    color: var(--theme-color6);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-service-section-two .swiper-button-prev:hover {
    background-color: var(--theme-color6);
    color: var(--theme-color-light);
}
.room-service-section-two .swiper-button-prev:after {
    font-size: 20px;
}

.room-service-block-two .inner-box {
    background-color: var(--theme-color-light);
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
.room-service-block-two .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.room-service-block-two .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
}
.room-service-block-two .inner-box .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-two .inner-box .image-box .image img {
        height: auto;
    }
}
.room-service-block-two .content-box {
    padding: 30px 30px 15px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-two .content-box {
        padding: 20px;
    }
}
.room-service-block-two .content-box .inner-box {
    border-bottom: 1px solid rgba(106, 105, 105, 0.2);
    margin-bottom: 25px;
    padding-bottom: 20px;
}
.room-service-block-two .content-box .title {
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-two .content-box .title {
        font-size: 20px;
    }
}
.room-service-block-two .content-box .price {
    color: var(--theme-color6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.room-service-block-two .content-box .facilities-box {
    position: relative;
}
.room-service-block-two .content-box .facilities-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #818181;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 25px;
}
.room-service-block-two .content-box .facilities-list i {
    color: #818181;
    font-size: 24px;
}

/***

====================================================================
    Room Section
====================================================================

***/
.room-luxury-section {
    padding: 120px 0;
}
.room-luxury-section .outer-box {
    border-radius: 20px;
    max-width: 1680px;
    margin: 0 auto;
    position: relative;
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767.98px) {
    .room-luxury-section .outer-box {
        padding: 60px 15px;
    }
}
.room-luxury-section .outer-box .bg-image {
    border-radius: 20px;
}
.room-luxury-section .outer-box .room-service-block-three {
    max-width: 624px;
}
.room-luxury-section .outer-box .room-service-block-three .inner-block {
    margin-bottom: 0;
}

.room-service-block-three .inner-block {
    background-color: var(--theme-color-white);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.room-service-block-three .inner-block:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.room-service-block-three .inner-block .image-box .image {
    position: relative;
    overflow: hidden;
}
.room-service-block-three .inner-block .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-three .inner-block .image-box .image img {
        height: auto;
    }
}
.room-service-block-three .content-box {
    padding: 40px 40px 40px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-three .content-box {
        padding: 20px;
    }
}
.room-service-block-three .content-box .inner-box {
    border-bottom: 1px solid rgba(106, 105, 105, 0.2);
    margin-bottom: 25px;
    padding-bottom: 20px;
}
.room-service-block-three .content-box .title {
    font-style: normal;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-block-three .content-box .title {
        font-size: 20px;
    }
}
.room-service-block-three .content-box .text {
    font-family: "Barlow", sans-serif;
    margin-bottom: 0;
}
.room-service-block-three .content-box .price {
    color: var(--theme-color1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.room-service-block-three .content-box .facilities-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .room-service-block-three .content-box .facilities-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.room-service-block-three .content-box .facilities-list {
    width: 100%;
}
.room-service-block-three .content-box .facilities-list + .facilities-list li {
    padding-left: 95px;
}
@media (max-width: 767.98px) {
    .room-service-block-three .content-box .facilities-list + .facilities-list li {
        padding-left: 15px;
    }
}
@media (max-width: 575.98px) {
    .room-service-block-three .content-box .facilities-list + .facilities-list li {
        padding-left: 0;
    }
}
.room-service-block-three .content-box .facilities-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--theme-color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.room-service-block-three .content-box .facilities-list i {
    color: var(--theme-color1);
    font-size: 24px;
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-spa {
    position: relative;
    padding: 180px 0 220px;
    background-color: #f5eee8;
}
.rooms-section-spa.hostel {
    padding: 120px 0 200px;
}
.rooms-section-spa.hostel .swiper-button-next {
    bottom: 120px;
}
.rooms-section-spa.hostel .swiper-button-prev {
    bottom: 120px;
}
.rooms-section-spa.hostel:before {
    display: none;
}
.rooms-section-spa.hostel:after {
    display: none;
}
.rooms-section-spa.modern {
    padding: 120px 0 200px;
    background-color: var(--theme-color-light);
}
.rooms-section-spa.modern .swiper-button-next {
    bottom: 120px;
}
.rooms-section-spa.modern .swiper-button-prev {
    bottom: 120px;
}
.rooms-section-spa.modern:before {
    background-image: url(../images/icons/shape-38.jpg);
    height: 65%;
}
.rooms-section-spa.modern:after {
    display: none;
}
.rooms-section-spa:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 59px;
    content: "";
    background-image: url(../images/icons/bg-shape8.png);
}
.rooms-section-spa:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 72px;
    content: "";
    background-image: url(../images/icons/bg-shape4.png);
}
@media (max-width: 575.98px) {
    .rooms-section-spa .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-spa .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-spa .swiper-button-next {
    left: calc(50% - 10px);
    top: auto;
    bottom: 144px;
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-spa .swiper-button-next:hover {
    border-radius: 0;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.rooms-section-spa .swiper-button-next:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    left: 72px;
}
.rooms-section-spa .swiper-button-next:after {
    font-size: 20px;
}
.rooms-section-spa .swiper-button-prev {
    bottom: 144px;
    top: auto;
    left: calc(50% - 74px);
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-spa .swiper-button-prev:hover {
    border-radius: 0;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.rooms-section-spa .swiper-button-prev:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    right: 72px;
}
.rooms-section-spa .swiper-button-prev:after {
    font-size: 20px;
}

/*** 

====================================================================
  rooms-section-breakfast
====================================================================

***/
.rooms-section-breakfast {
    position: relative;
    padding: 120px 0;
    background: transparent;
}
@media (max-width: 575.98px) {
    .rooms-section-breakfast .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-breakfast .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-breakfast .room-block .inner-box {
    position: relative;
    z-index: 1;
}
.rooms-section-breakfast .room-block .inner-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0)));
    background: linear-gradient(0deg, #222222, rgba(34, 34, 34, 0));
    opacity: 0.4;
}
.rooms-section-breakfast .room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color7);
}
.rooms-section-breakfast.style-luxury {
    background-color: transparent;
    padding: 120px 0 100px;
}
.rooms-section-breakfast.style-luxury .outer-box {
    margin: 0 35px;
}
.rooms-section-breakfast.style-luxury .room-block .inner-box .image-box figure {
    margin-bottom: 25px;
}
.rooms-section-breakfast.style-city {
    background-color: var(--theme-color-light);
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-lodge {
    position: relative;
    padding: 120px 20px;
}
.rooms-section-lodge:before {
    position: absolute;
    background-image: url(../images/background/bg-lodge2.jpg);
    content: "";
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
}
@media (max-width: 575.98px) {
    .rooms-section-lodge .sec-title {
        margin-bottom: 40px;
    }
}
.rooms-section-lodge .sec-title .sub-title {
    color: var(--theme-color-white);
}
.rooms-section-lodge .sec-title h2 {
    color: var(--theme-color-white);
}
@media (max-width: 575.98px) {
    .rooms-section-lodge .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-lodge.style-winter {
    background-color: var(--theme-color-light);
}
.rooms-section-lodge.style-winter .room-block .inner-box {
    position: relative;
}
.rooms-section-lodge.style-winter .room-block .inner-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0)));
    background: linear-gradient(0deg, #222222, rgba(34, 34, 34, 0));
    opacity: 0.4;
}
.rooms-section-lodge.style-winter .room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color7);
}
.rooms-section-lodge.style-luxury {
    background-color: transparent;
    padding: 120px 0 100px;
    z-index: 1;
}
.rooms-section-lodge.style-luxury .outer-box {
    margin: 0 35px;
}
.rooms-section-lodge.style-luxury .room-block .inner-box .image-box figure {
    margin-bottom: 25px;
}
.rooms-section-lodge.style-city {
    background-color: var(--theme-color-light);
}

.room-block-lodge.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 3px;
}
.room-block-lodge .inner-box {
    position: relative;
}
.room-block-lodge .inner-box:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 6, 24, 0)), to(#040618));
    background: linear-gradient(180deg, rgba(4, 6, 24, 0) 0%, #040618 100%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-lodge .inner-box:hover .box-caption {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
.room-block-lodge .inner-box:hover .content-box {
    bottom: 84px;
    z-index: 9;
}
.room-block-lodge .inner-box:hover:before {
    opacity: 0.4;
    visibility: visible;
}
.room-block-lodge .inner-box:hover .image-box figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.room-block-lodge .inner-box .box-caption {
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-block-lodge .inner-box .box-caption .book-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14pxx;
    color: #ffffff;
    font-family: var(--text-font2);
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.room-block-lodge .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color1);
    border-color: transparent;
}
.room-block-lodge .inner-box .box-caption .bx-links {
    margin-left: auto;
}
.room-block-lodge .inner-box .box-caption .bx-links li {
    display: inline-block;
    margin-right: 11px;
}
.room-block-lodge .inner-box .box-caption .bx-links li:last-child {
    margin-right: 0;
}
.room-block-lodge .inner-box .box-caption .bx-links li a {
    color: #fff;
    font-size: 16px;
}
.room-block-lodge .inner-box .image-box figure {
    margin-bottom: 27px;
    overflow: hidden;
}
.room-block-lodge .inner-box .image-box figure img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -o-object-fit: cover;
    object-fit: cover;
    width: 495px;
    height: 460px;
}
.room-block-lodge .inner-box .content-box {
    position: absolute;
    bottom: 22px;
    right: 32px;
    text-align: right;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 9;
}
.room-block-lodge .inner-box .content-box .title {
    font-size: 27px;
    margin-bottom: -6px;
    color: var(--theme-color-light);
}
.room-block-lodge .inner-box .content-box .price {
    font-size: 14px;
    color: var(--theme-color-light);
}
@media (max-width: 991.98px) {
    .room-block-lodge .inner-box .image-box .image-2 img {
        width: 100%;
        height: 340px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

/*** 

====================================================================
rooms-section-two-lodge
====================================================================

***/
.rooms-section-two-lodge {
    position: relative;
    padding: 0 35px;
    background: var(--theme-color-white);
}
@media (max-width: 575.98px) {
    .rooms-section-two-lodge .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-two-lodge .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-two-lodge img {
    height: 492px;
}

/*** 

====================================================================
  rooms-section-hiking
====================================================================

***/
.rooms-section-hiking {
    position: relative;
    padding: 120px 0;
    background-color: transparent;
}
@media (max-width: 575.98px) {
    .rooms-section-hiking .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-hiking .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-hiking .room-block .inner-box {
    position: relative;
    z-index: 1;
}
.rooms-section-hiking .room-block .inner-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#222222), to(rgba(34, 34, 34, 0)));
    background: linear-gradient(0deg, #222222, rgba(34, 34, 34, 0));
    opacity: 0.4;
}
.rooms-section-hiking .room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color7);
}
.rooms-section-hiking.style-luxury {
    background-color: transparent;
    padding: 120px 0 100px;
}
.rooms-section-hiking.style-luxury .outer-box {
    margin: 0 35px;
}
.rooms-section-hiking.style-luxury .room-block .inner-box .image-box figure {
    margin-bottom: 25px;
}
.rooms-section-hiking.style-city {
    background-color: var(--theme-color-light);
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-hiking-l2 {
    position: relative;
    padding: 120px 0;
    background-color: #f5f5f5;
}
.rooms-section-hiking-l2:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/bg-shape-hikingl02.png);
    width: 100%;
    height: 21px;
    top: 0;
    left: 0;
}
.rooms-section-hiking-l2:after {
    position: absolute;
    content: "";
    background-image: url(../images/icons/bg-shape-hikingl02.png);
    width: 100%;
    height: 21px;
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.rooms-section-hiking-l2.style-two {
    background-color: var(--theme-color-light);
}
.rooms-section-hiking-l2.style-two:before {
    display: none;
}
.rooms-section-hiking-l2.style-two:after {
    display: none;
}
.rooms-section-hiking-l2 .image-box .image-1 {
    min-height: 297px;
}
.rooms-section-hiking-l2 .image-box .image-1 img {
    min-height: 297px;
}
.rooms-section-hiking-l2 .image-box .image-2 {
    min-height: 390px;
    width: 100%;
}
.rooms-section-hiking-l2 .image-box .image-2 img {
    min-height: 390px;
    height: 100%;
}
@media (max-width: 575.98px) {
    .rooms-section-hiking-l2 .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-hiking-l2 .sec-title h2 {
        font-size: 32px;
    }
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-ocean-h01 {
    background-color: #f7f3ee;
    position: relative;
    padding: 120px 0 230px;
}
@media (max-width: 575.98px) {
    .rooms-section-ocean-h01 .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-ocean-h01 .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-ocean-h01 .swiper-button-next {
    left: calc(50% - 10px);
    top: auto;
    bottom: 117px;
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-ocean-h01 .swiper-button-next:hover {
    border-radius: 0;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.rooms-section-ocean-h01 .swiper-button-next:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    left: 72px;
}
.rooms-section-ocean-h01 .swiper-button-next:after {
    font-size: 20px;
}
.rooms-section-ocean-h01 .swiper-button-prev {
    bottom: 117px;
    top: auto;
    left: calc(50% - 74px);
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-ocean-h01 .swiper-button-prev:hover {
    border-radius: 0;
    background-color: var(--theme-color6);
    color: var(--theme-color-light);
}
.rooms-section-ocean-h01 .swiper-button-prev:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    right: 72px;
}
.rooms-section-ocean-h01 .swiper-button-prev:after {
    font-size: 20px;
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-countryside-h01 {
    position: relative;
    padding: 120px 0 0;
}
.rooms-section-countryside-h01:before {
    background-color: #f9f8f7;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 80%;
}
.rooms-section-countryside-h01 .anim-icons {
    position: absolute;
    left: 0;
    bottom: 100px;
}
.rooms-section-countryside-h01.style-two .sub-title:before {
    display: none;
}
.rooms-section-countryside-h01.style-two .outer-box {
    position: relative;
}
.rooms-section-countryside-h01.style-two .countryside-h01-carousel {
    margin-right: -380px;
}
@media (max-width: 991.98px) {
    .rooms-section-countryside-h01.style-two .countryside-h01-carousel {
        margin-right: 0;
    }
}
.rooms-section-countryside-h01.style-two .swiper-button-next {
    top: -130px;
    font-size: 30px;
    color: var(--theme-color6);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-countryside-h01.style-two .swiper-button-next:hover {
    background-color: var(--theme-color6);
    color: var(--theme-color-light);
}
.rooms-section-countryside-h01.style-two .swiper-button-next:after {
    font-size: 20px;
}
.rooms-section-countryside-h01.style-two .swiper-button-prev {
    left: auto;
    right: 70px;
    top: -130px;
    font-size: 30px;
    color: var(--theme-color7);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 72px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-countryside-h01.style-two .swiper-button-prev:hover {
    background-color: var(--theme-color6);
    color: var(--theme-color-light);
}
.rooms-section-countryside-h01.style-two .swiper-button-prev:after {
    font-size: 20px;
}
.rooms-section-countryside-h01.style-two .content-box .post-meta .categories a {
    color: var(--theme-color6);
}
.rooms-section-countryside-h01.style-two .content-box .post-meta .categories:before {
    border-color: var(--theme-color6);
}
.rooms-section-countryside-h01.style-two .content-box .post-meta .date {
    color: var(--theme-color6);
}
.rooms-section-countryside-h01.style-two .content-box .post-meta .date:before {
    background-color: var(--theme-color6);
}
.rooms-section-countryside-h01.style-two .news-block-four .content-box .title:hover a {
    color: var(--theme-color6);
}
@media (max-width: 575.98px) {
    .rooms-section-countryside-h01 .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-countryside-h01 .sec-title h2 {
        font-size: 32px;
    }
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section-countryside-h02 {
    position: relative;
    padding: 120px 0 220px;
    background-color: #f5efe9;
}
.rooms-section-countryside-h02.hostel {
    padding: 120px 0 200px;
}
.rooms-section-countryside-h02.hostel .swiper-button-next {
    bottom: 120px;
}
.rooms-section-countryside-h02.hostel .swiper-button-prev {
    bottom: 120px;
}
.rooms-section-countryside-h02.hostel:before {
    display: none;
}
.rooms-section-countryside-h02.hostel:after {
    display: none;
}
.rooms-section-countryside-h02.modern {
    padding: 120px 0 200px;
    background-color: var(--theme-color-light);
}
.rooms-section-countryside-h02.modern .swiper-button-next {
    bottom: 120px;
}
.rooms-section-countryside-h02.modern .swiper-button-prev {
    bottom: 120px;
}
.rooms-section-countryside-h02.modern:before {
    background-image: url(../images/icons/shape-38.jpg);
    height: 65%;
}
.rooms-section-countryside-h02.modern:after {
    display: none;
}
@media (max-width: 575.98px) {
    .rooms-section-countryside-h02 .sec-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section-countryside-h02 .sec-title h2 {
        font-size: 32px;
    }
}
.rooms-section-countryside-h02 .swiper-button-next {
    left: calc(50% - 10px);
    top: auto;
    bottom: 144px;
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-countryside-h02 .swiper-button-next:hover {
    border-radius: 0;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.rooms-section-countryside-h02 .swiper-button-next:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    left: 72px;
}
.rooms-section-countryside-h02 .swiper-button-next:after {
    font-size: 20px;
}
.rooms-section-countryside-h02 .swiper-button-prev {
    bottom: 144px;
    top: auto;
    left: calc(50% - 74px);
    font-size: 30px;
    color: var(--theme-color-black);
    border: 1px solid rgba(0, 0, 0, 0.2509803922);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 0;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.rooms-section-countryside-h02 .swiper-button-prev:hover {
    border-radius: 0;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}
.rooms-section-countryside-h02 .swiper-button-prev:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2509803922);
    right: 72px;
}
.rooms-section-countryside-h02 .swiper-button-prev:after {
    font-size: 20px;
}

.rooms-section-countryside-h02.style-lodge2 {
    background-color: transparent;
    position: relative;
}
.rooms-section-countryside-h02.style-lodge2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: calc(50% + 20px);
    left: 0;
    background-color: #f6f3ee;
}
.rooms-section-countryside-h02.style-lodge2 .sec-title {
    position: relative;
    margin-bottom: 62px;
}
.rooms-section-countryside-h02.style-lodge2 .sec-title .theme-btn {
    position: absolute;
    right: 0;
    bottom: 37px;
}

/***

====================================================================
    Room Section Four
====================================================================

***/
.room-section-four.style-campground2 {
    position: relative;
    padding: 120px 0 1px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    margin: 0 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.room-section-four.style-campground2 .sec-title {
    position: relative;
    z-index: 1;
}
.room-section-four.style-campground2 .sec-title .sub-title {
    color: var(--theme-color-white);
}
.room-section-four.style-campground2 .sec-title h2 {
    color: var(--theme-color-white);
}
.room-section-four.style-campground2:before {
    position: absolute;
    content: "";
    background-image: url(../images/background/room-style-campground2.jpg);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four.style-campground2:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.8509803922);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four.style-campground3 {
    position: relative;
    padding: 120px 0 80px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    margin: 0 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.room-section-four.style-campground3 .sec-title {
    position: relative;
    z-index: 1;
}
.room-section-four.style-campground3 .sec-title .sub-title {
    color: var(--theme-color-white);
}
.room-section-four.style-campground3 .sec-title h2 {
    color: var(--theme-color-white);
}
.room-section-four.style-campground3 .sec-title .theme-btn {
    position: absolute;
    right: 0;
    bottom: 10px;
}
.room-section-four.style-campground3:before {
    position: absolute;
    content: "";
    background-image: url(../images/background/room-countryside3-1.jpg);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four.style-campground3:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.8509803922);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four.style-city2 {
    position: relative;
    padding: 120px 0 1px;
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    margin: 0 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.room-section-four.style-city2 .sec-title {
    position: relative;
    z-index: 1;
}
.room-section-four.style-city2 .sec-title .sub-title {
    color: var(--theme-color-white);
}
.room-section-four.style-city2 .sec-title h2 {
    color: var(--theme-color-white);
}
.room-section-four.style-city2:before {
    position: absolute;
    content: "";
    background-image: url(../images/background/bg-city2.jpg);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four.style-city2:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.8509803922);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.room-section-four .icon-dots-3 {
    position: absolute;
    right: 0;
    top: 0;
}
.room-section-four .bottom-text {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.room-section-four .bottom-text a {
    font-weight: 500;
    color: var(--theme-color1);
    text-decoration: underline;
}
.room-section-four .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
}
@media (max-width: 1399.98px) {
    .room-section-four .outer-box {
        margin: 0;
    }
}
@media (max-width: 991.98px) {
    .room-section-four .outer-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }
}
.room-section-four .room-block-four {
    min-height: 470px;
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    will-change: flex;
}
.room-section-four .room-block-four:hover,
.room-section-four .room-block-four.active {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
@media (max-width: 991.98px) {
    .room-section-four .room-block-four {
        width: 50%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        padding: 0 15px;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 767.98px) {
    .room-section-four .room-block-four {
        width: 100%;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    }
}
@media (max-width: 575.98px) {
    .room-section-four .room-block-four {
        padding: 0;
    }
}

/***

====================================================================
    Room Section
====================================================================

***/
.room-service-section-winter-5 {
    background-color: #eef9fd;
    padding: 120px 0;
    position: relative;
}
.room-service-section-winter-5 .inner-box .content-box .title:hover {
    color: var(--theme-color7);
}
.room-service-section-winter-5 .flaticon.flaticon-bed {
    margin-right: 9px;
}
.room-service-section-winter-5 .fal.fa-shower {
    margin-right: 9px;
}
.room-service-section-winter-5 .fal.fa-air-conditioner {
    margin-right: 11px;
}
.room-service-section-winter-5 .content-box .price {
    color: var(--theme-color7);
}
.room-service-section-winter-5:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-image: url(../images/icons/bg-shape4.png);
    z-index: 2;
    pointer-events: none;
}
.room-service-section-winter-5:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 59px;
    background-image: url(../images/icons/bg-shape3.png);
    z-index: 2;
    pointer-events: none;
}
.room-service-section-winter-5 .sub-title:before {
    display: none;
}
.room-service-section-winter-5 .outer-box {
    position: relative;
}
.room-service-section-winter-5 .room-service-carousel-two {
    margin-right: -400px;
}
@media (max-width: 991.98px) {
    .room-service-section-winter-5 .room-service-carousel-two {
        margin-right: 0;
    }
}
.room-service-section-winter-5 .swiper-button-next {
    top: -100px;
    font-size: 30px;
    color: var(--theme-color-black);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-service-section-winter-5 .swiper-button-next:hover {
    background-color: var(--theme-color7);
    color: var(--theme-color-light);
}
.room-service-section-winter-5 .swiper-button-next:after {
    font-size: 20px;
}
.room-service-section-winter-5 .swiper-button-prev {
    left: auto;
    right: 70px;
    top: -100px;
    font-size: 30px;
    color: var(--theme-color-black);
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.room-service-section-winter-5 .swiper-button-prev:hover {
    background-color: var(--theme-color7);
    color: var(--theme-color-light);
}
.room-service-section-winter-5 .swiper-button-prev:after {
    font-size: 20px;
}
.room-service-section-winter-5 .room-service-block-two .inner-box {
    background-color: var(--theme-color-light);
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
.room-service-section-winter-5 .room-service-block-two .inner-box:hover .image-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.room-service-section-winter-5 .room-service-block-two .inner-box .image-box .image {
    position: relative;
    overflow: hidden;
}
.room-service-section-winter-5 .room-service-block-two .inner-box .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-section-winter-5 .room-service-block-two .inner-box .image-box .image img {
        height: auto;
    }
}
.room-service-section-winter-5 .room-service-block-two .content-box {
    padding: 30px 30px 15px;
    position: relative;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-section-winter-5 .room-service-block-two .content-box {
        padding: 20px;
    }
}
.room-service-section-winter-5 .room-service-block-two .content-box .inner-box {
    border-bottom: 1px solid rgba(106, 105, 105, 0.2);
    margin-bottom: 25px;
    padding-bottom: 20px;
}
.room-service-section-winter-5 .room-service-block-two .content-box .title {
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 575.98px) {
    .room-service-section-winter-5 .room-service-block-two .content-box .title {
        font-size: 20px;
    }
}
.room-service-section-winter-5 .room-service-block-two .content-box .price {
    color: var(--theme-color7);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.room-service-section-winter-5 .room-service-block-two .content-box .facilities-box {
    position: relative;
}
.room-service-section-winter-5 .room-service-block-two .content-box .facilities-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #818181;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 25px;
}
.room-service-section-winter-5 .room-service-block-two .content-box .facilities-list i {
    color: #818181;
    font-size: 24px;
}

/*** 

====================================================================
  Features Section Winter Three
====================================================================

***/
.feature-section-winter-three {
    background-color: #f5f0ed;
    position: relative;
    padding: 120px 0;
}
.feature-section-winter-three .bottom-box {
    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;
    margin-top: 40px;
}
.feature-section-winter-three .bottom-box .text2 {
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 20px;
}
.sec-title.text-center p.text {
    width: 45%;
    margin: 0 auto;
    padding-top: 20px;
}
.feature-block-winter-three .inner-box {
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 250px;
}
.feature-block-winter-three .inner-box .image-box {
    margin-right: 20px;
}
.feature-block-winter-three .inner-box .images {
    border-radius: 5px;
    overflow: hidden;
    width: 125px;
    height: 150px;
}
.feature-block-winter-three .inner-box .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-block-winter-three .inner-box .title {
    margin-bottom: 5px;
}
.feature-block-winter-three .inner-box .text {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .sec-title.text-center p.text {
        width: 90%;
    }
    .feature-section-winter-three {
        padding: 50px 0;
    }
}
/*** 

====================================================================
  Call Section
====================================================================

***/
.call-to-action {
    background-color: #f8f5f0;
    position: relative;
    padding: 120px 0;
}
.call-to-action:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 327px;
    height: 493px;
    background-image: url(../images/icons/shape-10.png);
}
@media (max-width: 1199.98px) {
    .call-to-action:before {
        display: none;
    }
}
.call-to-action .sec-title .sub-title {
    margin-left: 50px;
}

/***

==================================================================
	Pricing Section 
==================================================================

***/
.pricing-section {
    position: relative;
    padding: 116px 0 94px;
}
@media (max-width: 767.98px) {
    .pricing-section {
        padding: 80px 0 40px;
    }
}
.pricing-section .anim-icons .image-1 {
    position: absolute;
    right: 0;
    top: 230px;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 1399.98px) {
    .pricing-section .anim-icons .image-1 {
        display: none;
    }
}
.pricing-section .anim-icons .image-2 {
    position: absolute;
    left: 0;
    bottom: 105px;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 1399.98px) {
    .pricing-section .anim-icons .image-2 {
        display: none;
    }
}
.pricing-section .anim-icons .image-3 {
    bottom: 10px;
    left: 0;
    max-width: 420px;
    position: absolute;
    width: 100%;
}
.pricing-section .anim-icons .image-4 {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 1399.98px) {
    .pricing-section .anim-icons .image-4 {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .pricing-section .sec-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
}
.pricing-section.style-two .pricing-block .inner-box .image-column .inner-column .text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(var(--theme-color1-rgb), 0.3);
    color: transparent;
    font-family: var(--title-font);
    font-size: 120px;
    line-height: 1;
    margin-bottom: 51px;
    margin-left: -3px;
    margin-right: -400px;
    text-transform: uppercase;
}
@media (max-width: 1199.98px) {
    .pricing-section.style-two .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 100px;
    }
}
@media (max-width: 991.98px) {
    .pricing-section.style-two .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 90px;
    }
}
@media (max-width: 767.98px) {
    .pricing-section.style-two .pricing-block .inner-box .image-column .inner-column .text {
        margin-right: 0;
        font-size: 60px;
    }
}
@media (max-width: 575.98px) {
    .pricing-section.style-two .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 36px;
        margin-bottom: 20px;
    }
}
.pricing-section.style-two .pricing-block .inner-box.content-align-left .image-column .inner-column .text {
    margin-left: -400px;
    margin-right: -3px;
}
.pricing-section.style-three .pricing-block .inner-box .image-column .inner-column:before {
    background-image: url(../images/icons/shape-3.jpg);
}
.pricing-section.style-three .pricing-block .inner-box .image-column .inner-column .text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(var(--theme-color1-rgb), 0.3);
    color: transparent;
    font-family: var(--title-font);
    font-size: 120px;
    line-height: 1;
    margin-bottom: 51px;
    margin-left: -3px;
    margin-right: -400px;
    text-transform: uppercase;
}
@media (max-width: 1199.98px) {
    .pricing-section.style-three .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 100px;
    }
}
@media (max-width: 991.98px) {
    .pricing-section.style-three .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 90px;
    }
}
@media (max-width: 767.98px) {
    .pricing-section.style-three .pricing-block .inner-box .image-column .inner-column .text {
        margin-right: 0;
        font-size: 60px;
    }
}
@media (max-width: 575.98px) {
    .pricing-section.style-three .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 36px;
        margin-bottom: 20px;
    }
}
.pricing-section.style-three .pricing-block .inner-box.content-align-left .image-column .inner-column .text {
    margin-left: -400px;
    margin-right: -3px;
}
.pricing-section.style-three .pricing-block .inner-box .content-column .inner-column .pricing-amount {
    color: var(--theme-color1);
}
.pricing-section.style-three .pricing-block .inner-box .content-column .inner-column .list-style-two li i {
    color: var(--theme-color1);
}

.pricing-block {
    margin-bottom: 104px;
}
@media (max-width: 767.98px) {
    .pricing-block {
        margin-bottom: 40px;
    }
}
.pricing-block .inner-box {
    position: relative;
}
.pricing-block .inner-box .content-column .inner-column {
    position: relative;
    padding: 0 0 50px;
    z-index: 99;
    margin-top: 60px;
    margin-left: 69px;
}
.pricing-block .inner-box .content-column.pro-2-column-content .inner-column {
    margin-right: 69px;
    margin-left: 0px;
}
@media (max-width: 991.98px) {
    .pricing-block .inner-box .content-column .inner-column {
        margin-right: 0;
    }
}
@media (max-width: 767.98px) {
    .pricing-block .inner-box .content-column .inner-column {
        margin-top: 40px;
    }
}
@media (max-width: 575.98px) {
    .pricing-block .inner-box .content-column .inner-column {
        margin-left: 0;
    }
}
.pricing-block .inner-box .content-column .inner-column .pricing-title {
    color: var(--theme-color-dark);
    margin-bottom: 6px;
    margin-top: -4px;
}
@media (max-width: 991.98px) {
    .pricing-block .inner-box .content-column .inner-column .pricing-title {
        font-size: 30px;
    }
}
.pricing-block .inner-box .content-column .inner-column .pricing-amount {
    color: var(--theme-color1);
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    font-family: var(--title-font);
}
.pricing-block .inner-box .content-column .inner-column .pricing-amount span {
    font-size: 14px;
    color: var(--theme-color-dark);
    margin-left: 5px;
}
.pricing-block .inner-box .content-column .inner-column .list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 18px;
}
.pricing-block .inner-box .content-column .inner-column .list-box .list-style-two {
    margin-right: 53px;
    margin-top: 0;
}
@media (max-width: 1199.98px) {
    .pricing-block .inner-box .content-column .inner-column .list-box .list-style-two {
        margin-right: 12px;
    }
}
.pricing-block .inner-box .content-column .inner-column .list-box .list-style-two:last-child {
    margin-right: 0;
}
.pricing-block .inner-box .content-column .inner-column .list-style-two {
    margin-top: 30px;
}
.pricing-block .inner-box .content-column .inner-column .list-style-two li {
    margin-bottom: 10px;
}
.pricing-block .inner-box .content-column .inner-column .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 41px;
    justify-content: space-between;
    width: 80%;
}
.pricing-block .inner-box .content-column .inner-column .btn-box .btn-link {
    color: var(--theme-color-dark);
    font-size: 18px;
    text-decoration: none;
}
.pricing-block .inner-box .content-column .inner-column .btn-box .btn-link i {
    font-size: 15px;
    margin-left: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pricing-block .inner-box .content-column .inner-column .btn-box .btn-link:hover {
    color: var(--theme-color1);
}
.pricing-block .inner-box .content-column .inner-column .btn-box .btn-link:hover i {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
}
.pricing-block .inner-box .image-column .inner-column {
    position: relative;
    padding: 32px 0 121px 68px;
}
@media (max-width: 575.98px) {
    .pricing-block .inner-box .image-column .inner-column {
        padding: 32px 0 30px 28px;
    }
}
.pricing-block .inner-box .image-column .inner-column:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    max-width: 396px;
    width: 100%;
    height: 100%;
    background-image: url(../images/icons/shape-3.jpg);
    pointer-events: none;
    z-index: -1;
}
.pricing-block .inner-box .image-column .inner-column .text {
    -webkit-text-fill-color: var(--theme-color-white);
    -webkit-text-stroke: 1px rgba(150, 130, 130, 0.7);
    color: var(--theme-color-white);
    font-family: var(--title-font);
    font-size: 120px;
    line-height: 1;
    margin-bottom: 51px;
    margin-left: -3px;
    margin-right: -300px;
    text-transform: uppercase;
}
@media (max-width: 1199.98px) {
    .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 110px;
    }
}
@media (max-width: 991.98px) {
    .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 90px;
    }
}
@media (max-width: 767.98px) {
    .pricing-block .inner-box .image-column .inner-column .text {
        margin-right: 0;
        font-size: 70px;
    }
}
@media (max-width: 575.98px) {
    .pricing-block .inner-box .image-column .inner-column .text {
        font-size: 36px;
        margin-bottom: 20px;
    }
}
.pricing-block .inner-box .image-column .image-box {
    display: inline-block;
    position: relative;
}
.pricing-block .inner-box .image-column .image-box .image-1 {
    position: relative;
    margin-bottom: 0;
    width: 100%;
}
.pricing-block .inner-box .image-column .image-box .image-2 {
    position: absolute;
    bottom: -200px;
    right: -25px;
    margin-bottom: 0;
    outline: 7px solid var(--theme-color-white);
    outline-offset: -7px;
    width: 90%;
}
.pricing-block .inner-box.content-align-left .image-column {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
@media (max-width: 767.98px) {
    .pricing-block .inner-box.content-align-left .image-column {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
}
.pricing-block .inner-box.content-align-left .image-column .inner-column {
    position: relative;
    padding: 32px 82px 121px 0;
    text-align: right;
}
.pricing-block .inner-box.content-align-left .image-column .inner-column .image-box .image-2 {
    left: -82px;
    right: auto;
}

@media (max-width: 575.98px) {
    .pricing-block .inner-box.content-align-left .image-column .inner-column {
        padding: 32px 30px 121px 0;
    }
    .pricing-block .inner-box .image-column .image-box .image-2 {
        bottom: -100px;
        right: 0;
    }
    .content-column .btn-style-four {
        padding: 17px 25px;
    }
    .content-column.col-lg-6.col-md-6 {
        margin-top: 50px;
    }
    .pricing-block .inner-box .content-column.pro-2-column-content .inner-column {
        margin-right: 0;
        margin-left: 0px;
    }
    .pricing-block .inner-box.content-align-left .image-column .inner-column .image-box .image-2 {
        left: 0;
        bottom: -150px;
    }
    .pricing-block .inner-box .image-column .image-box .image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
}
}
.pricing-block .inner-box.content-align-left .image-column .inner-column:before {
    left: auto;
    right: 0;
}
.pricing-block .inner-box.content-align-left .image-column .inner-column .text {
    margin-right: -1px;
    margin-left: -300px;
}
@media (max-width: 991.98px) {
    .pricing-block .inner-box.content-align-left .image-column .inner-column .image-box .image-2 {
        left: -25px;
    }
}

@media (max-width: 767.98px) {
    .pricing-block .inner-box.content-align-left .image-column .inner-column .text {
        margin-left: 0;
    }
    .pricing-block .inner-box.content-align-left .image-column .inner-column .image-box .image-2 {
        left: 0px;
    }
}


.top-details {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

/*** 

====================================================================
  CONTACT SECTION
====================================================================

***/
.contact-city {
    position: relative;
}
.contact-city .form-column {
    position: relative;
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 10px;
}
.contact-city .form-column .contact-form {
    background-color: #f8f5f1;
    padding: 90px 80px 80px;
}
.contact-city .form-column .contact-form:before {
    background-image: url(../images/icons/shape-49.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.contact-city .form-column .contact-form input:not([type="submit"]) {
    background-color: var(--theme-color-light);
}
@media (max-width: 1199.98px) {
    .contact-city .form-column .contact-form {
        padding: 50px 60px 40px;
    }
}
@media (max-width: 575.98px) {
    .contact-city .form-column .contact-form {
        padding: 30px 30px 40px;
    }
}
.contact-city .form-column .contact-form input:not([type="submit"]) {
    background-color: var(--theme-color-light);
}
.contact-city .form-column .contact-form input:focus {
    border-color: var(--theme-color1);
}
.contact-city .form-column .contact-form textarea {
    background-color: var(--theme-color-light);
    height: 156px;
}
.contact-city .form-column .contact-form textarea:focus {
    border-color: var(--theme-color1);
}
.contact-city .form-column .contact-form .theme-btn {
    width: auto;
}
.contact-city .contact-block-winter .inner-box {
    position: relative;
    background-color: var(--theme-color1);
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 0 50px;
}
.contact-city .contact-block-winter .inner-box:before {
    background-image: url(../images/icons/shape-48.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.contact-city .contact-block-winter .inner-box .title {
    color: var(--theme-color-light);
    margin-bottom: 30px;
}
.contact-city .contact-block-winter .inner-box .theme-btn {
    background-color: var(--theme-color-light);
    color: var(--theme-color-black);
}
.contact-city .contact-block-winter .inner-box .theme-btn:hover {
    color: var(--theme-color-light);
}
.contact-form .select2-container--default .select2-selection--single,
.contact-form input:not([type="submit"]),
.contact-form textarea,
.contact-form select {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    padding: 10px 20px;
    font-size: var(--body-font-size);
    color: var(--theme-color-dark);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-city .contact-block-winter .inner-box h4,
.contact-city .contact-block-winter .inner-box p,
.contact-city .contact-block-winter .inner-box h2 {
    color: #fff;
}
@media (max-width: 767px) {
   .contact-city .contact-block-winter .inner-box{
    padding: 30px;
   }
   .contact-form .form-group {
    margin-bottom: 10px;
}
.contact-city .auto-container {
    padding: 0;
}
}
/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
    position: relative;
    background-color: var(--theme-color-dark);
    /* Widget Section */
}
.main-footer .widgets-section {
    position: relative;
    padding: 70px 0 35px;
}
.main-footer .footer-column {
    position: relative;
    margin-bottom: 50px;
}
.main-footer .footer-widget {
    position: relative;
}
.main-footer .widget-title {
    position: relative;
    color: var(--theme-color-white);
    margin-bottom: 21px;
}
.main-footer .widget-content {
    position: relative;
}
.main-footer .widget-content .logo img {
    width: 200px;
}
.main-footer .widget-content .text {
    color: var(--theme-color-white);
}
.user-links {
    position: relative;
    margin: 0 auto;
    text-align: center;
}
.user-links li {
    position: relative;
    line-height: 32px;
    color: #929292;
    font-weight: 400;
    margin-bottom: 8px;
}
.user-links li:last-child {
    margin-bottom: 0;
}
.user-links li a {
    position: relative;
    display: inline-block;
    color: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.user-links li a:hover {
    color: var(--theme-color-white);
}
.user-links li a:before {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 1px;
    background-color: var(--bg-theme-color1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.user-links li a:hover:before {
    width: 100%;
}
.main-footer .widget-content ul.user-links li {
    display: inline;
    padding: 0 40px;
    text-align: center;
}
.footer-column .logo a {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
}

/*=== Footer Bottom ===*/
.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
    padding: 17px 0 19px;
}
.footer-bottom .inner-container {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-bottom .copyright-text {
    position: relative;
    margin-bottom: 0;
    color: #75727b;
}
.footer-bottom .copyright-text span {
    color: var(--theme-color-white);
}
.footer-bottom .copyright-text a {
    color: inherit;
}
.footer-bottom .copyright-text a:hover {
    color: var(--theme-color-white);
}
.footer-bottom .footer-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-bottom .footer-nav li {
    font-size: 16px;
    line-height: 32px;
    color: var(--text-color);
    margin-left: 30px;
}
.footer-bottom .footer-nav li:first-child {
    margin-left: 0;
}
.footer-bottom .footer-nav li a {
    color: var(--theme-color-white);
}
.footer-bottom .footer-nav li a:hover {
    color: var(--theme-color1);
}

.footer-style-one {
    background-color: var(--theme-color-dark);
    position: relative;
    /* Subscribe Form Three */
}

/***

==================================================================
	Project POPUP
==================================================================

***/

.room-details__left {
    margin-bottom: 20px;
}
.room-details__details-box h6 {
    font-weight: bold;
    color: #000;
}

/*** 

====================================================================
  Feature section four
====================================================================

***/
.feature-section-four {
    position: relative;
    padding: 120px 0 88px;
}
@media (max-width: 575.98px) {
    .feature-section-four {
        padding: 80px 0 50px;
    }
}
.feature-section-four .sec-title {
    margin-right: 50px;
    margin-bottom: 32px;
}
@media (max-width: 1399.98px) {
    .feature-section-four .sec-title {
        margin-right: 0;
    }
}
@media (max-width: 575.98px) {
    .feature-section-four .sec-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .feature-section-four .sec-title .sub-title {
        margin-bottom: 0;
    }
}
.feature-section-four .sec-title h2 {
    color: var(--theme-color1);
}
.feature-section-four .sec-title .text {
    margin-right: 20px;
    margin-top: 20px;
}
@media (max-width: 1399.98px) {
    .feature-section-four .sec-title .text {
        margin-right: 0;
    }
}
.feature-section-four .sec-title .btn-box {
    margin-top: 32px;
}
@media (max-width: 1399.98px) {
    .feature-section-four .outer-box {
        margin-left: 0;
    }
}

.feature-block-four {
    margin-bottom: 32px;
}
.feature-block-four .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.feature-block-four .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.feature-block-four .inner-box:hover .content-box:before {
    height: 100%;
}
.feature-block-four .inner-box:hover .content-box .title {
    color: var(--theme-color-light);
}
.feature-block-four .inner-box .image {
    border-radius: 0;
    overflow: hidden;
}
.feature-block-four .inner-box .image img {
    border-radius: 0;
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.feature-block-four .inner-box .content-box {
    background-color: var(--theme-color-dark);
    border-radius: 0;
    padding: 19px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}
.feature-block-four .inner-box .content-box:before {
    background-color: var(--theme-color1);
    border-radius: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.feature-block-four .inner-box .content-box .title {
    color: var(--theme-color-light);
    margin-bottom: 0;
}
@media (max-width: 1199.98px) {
    .feature-block-four .inner-box .content-box .title {
        font-size: 22px;
    }
}

/* Space between slick slides */
.Connectivity-slider .slick-slide,
.Connectivity-slider-2 .slick-slide {
    padding: 0 8px;
}

/* Fix outer alignment */
.Connectivity-slider .slick-list,
.Connectivity-slider-2 .slick-list {
    margin: 0 -8px;
}
.popup-form-wrapper input,
.popup-form-wrapper textarea {
    background: #fff;
    border-radius: 0 !important;
}

.pro-form-section select.form-select,
.popup-form-wrapper select.form-select {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    padding: 10px 20px;
    font-size: var(--body-font-size);
    color: var(--theme-color-dark);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    background-color: #fff;
    border: 2px solid #fff;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0 !important;
}
span.iti__country-name {
    display: none;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
.Connectivity-slider .slick-prev,
.Connectivity-slider .slick-next,
.Connectivity-slider-2 .slick-prev,
.Connectivity-slider-2 .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: var(--theme-color1);
    z-index: 2;
}
.Connectivity-slider .slick-prev:hover,
.Connectivity-slider .slick-next:hover,
.Connectivity-slider-2 .slick-prev:hover,
.Connectivity-slider-2 .slick-next:hover,
.Connectivity-slider .slick-prev:active,
.Connectivity-slider .slick-next:active,
.Connectivity-slider-2 .slick-prev:active,
.Connectivity-slider-2 .slick-next:active,
.Connectivity-slider .slick-prev:focus,
.Connectivity-slider .slick-next:focus,
.Connectivity-slider-2 .slick-prev:focus,
.Connectivity-slider-2 .slick-next:focus {
    background: var(--theme-color1);
}

.feature-block-four .inner-box figure.image {
    height: 300px;
}
.feature-block-four .inner-box figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div#generalForm .modal-content {
    background: #f8f5f1 url("../images/icons/shape-49.png");
    position: relative;
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
}
.modal-fullscreen .modal-body {
    background: #f8f5f1 url("../images/icons/shape-49.png");
    position: relative;
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
}
