@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=National+Park:wght@200..800&display=swap');
@import url("aos.css");
@import url("animate.css");
@import url("swiper.min.css");
@import url("jquery.fancybox.min.css");
@import url("fontawesome.css");
/*@import url("nice-select.css");*/
@import url("flaticon.css");
:root {
    --theme-color1: #bc915d;
    --theme-color2: #0e0e0e;
    --theme-color3: #a44438;
    --theme-color1-rgb: 164, 131, 97;
    --theme-color2-rgb: 14, 14, 14;
    --theme-color3-rgb: 164, 68, 56;
    --theme-color1-text-color: #fff;
    --theme-color2-text-color: #fff;
    --theme-color3-text-color: #fff;
    --body-bg: #fff;
    --theme-color-white: #ffffff;
    --theme-color-white-rgb: 255, 255, 255;
    --theme-color-light: #f2f8f9;
    --theme-color-gray: #f6f6f6;
    --theme-color-silver: #eee;
    --theme-color-black: #000000;
    --theme-color-black-rgb: 0, 0, 0;
    --text-color: #4f515d;
    --headings-color: #040618;
    --headings-color-rgb: 4, 6, 24;
    --link-color: var(--theme-color1);
    --link-hover-color: var(--theme-color2);
    --heading-font-family: "Marcellus", serif;
    --body-font-family: "National Park", 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: 62px;
    --h2-font-size: 42px;
    --h3-font-size: 32px;
    --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: 16px;
    --sec-title-subtitle-color: var(--text-color);
    --sec-title-subtitle-font-family: var(--heading-font-family);
    --sec-title-subtitle-font-weight: 600;
    --sec-title-subtitle-line-height: 1em;
    --sec-title-color: var(--headings-color);
    --sec-title-font-size: var(--h2-font-size);
    --sec-title-font-family: var(--heading-font-family);
    --sec-title-font-weight: var(--h2-font-weight);
    --theme-light-background: #f1f3f3;
    --theme-light-background-text-color: var(--headings-color);
    --theme-black: #131313;
    --container-width: 1200px;
    --large-container-width: 1750px;
    --container-pt: 0px;
    --container-pb: 0px;
    --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%);
    --gradient-4: linear-gradient(180.01deg, rgba(255, 255, 255, 0.8) -14.64%, rgba(83, 98, 78, 0) 96.23%);
    --dark-color: #181820;
    --dark-color-rgb: 24, 24, 32;
    --dark-green: #53624e;
    --dark-green-rgb: 83 98 78;
    --review-color: #f7931a;
}


/*
 * typography.scss
 * -----------------------------------------------
*/

 ::-moz-selection {
    background: #fff;
    color: var(--theme-color1);
    text-shadow: none;
}

::selection {
    background: #ddd;
    color: var(--theme-color1);
    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: var(--body-bg);
    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(--body-font-family);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--theme-color1);
}

p,
.text {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}


/* -------- Headings ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headings-color);
    font-family: var(--heading-font-family);
    position: relative;
    line-height: var(--line-height-heading-);
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
    font-weight: normal;
    line-height: 1;
    color: var(--headings-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 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: #bc915d;
    font-weight: 700;
}

iframe {
    border: none !important;
}

.fix {
    overflow: hidden;
}


/*
 * 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);
}

.row:not([class*="gx-"],
[class*="gy-"],
[class*="g-"]) {
    --bs-gutter-x: 30px;
}


/*=== 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;
}

.bg-white {
    background-color: #fff !important;
}

.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--theme-color1);
    -webkit-box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--theme-color-black);
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    color: var(--theme-color-white);
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.back-to-top-btn.two {
    background: -webkit-gradient(linear, left top, right top, from(#fca528), color-stop(48.87%, #e22eab), to(#921fea));
    background: linear-gradient(90deg, #fca528 0%, #e22eab 48.87%, #921fea 100%);
}

.preloader {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999;
}

.preloader svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: var(--theme-color1);
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}

.preloader.two svg {
    fill: var(--theme-color1);
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}

.preloader .preloader-heading .load-text {
    font-size: 30px;
    color: #fff;
    font-weight: var(--wt-fw-regular);
    letter-spacing: 8px;
    font-family: var(--heading-font-family);
    text-transform: uppercase;
    z-index: 20;
}

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.load-text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/*// import SCSS components one by one*/


/*** 

====================================================================
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;
}

.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%;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.text-theme-color1 {
    color: var(--theme-color1);
}

.bg-theme-color2 {
    background-color: var(--theme-color2);
}


/*=======================
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;
}

.before-none:before,
.before_none:before {
    display: none;
}

.after-none:after,
.after_none:after {
    display: none;
}

.overlay-anim {
    position: relative;
}

.overlay-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;
}

.overlay-anim:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

section {
    position: relative;
}

.border-line {
    background-repeat: no-repeat;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor)), -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
    background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
    display: inline-block;
    -webkit-transition: background-size 0.3s linear;
    transition: background-size 0.3s linear;
}

.border-line:hover {
    background-size: 0% 1px, 100% 1px;
}

.body-bg {
    background-color: #172c23;
}

.section-padding {
    padding: 100px 0;
}

.fix {
    overflow: hidden;
}

.sec-bg {
    background-color: var(--bg-color);
}

.fix {
    overflow: hidden;
}


/***

==================================================================
    Theme Button Main
==================================================================

***/

.theme-btn-main {
    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;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.theme-btn-main:hover .theme-btn-arrow-left {
    scale: 1;
}

.theme-btn-main:hover .theme-btn-arrow-right {
    scale: 0;
}

.theme-btn-main:hover .theme-btn {
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
}

.theme-btn-arrow-left {
    width: 44px;
    height: 44px;
    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: #bc915d;
    border-radius: 50%;
    scale: 0;
    left: 0;
    right: auto;
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header-style-one .theme-btn-arrow-left img,
.header-style-one .theme-btn-arrow-right img {
    filter: invert(1)
}

.theme-btn {
    background: #bc915d;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 11px 29px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    border-radius: 100px;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-arrow-right {
    width: 44px;
    height: 44px;
    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: #bc915d;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.inner_menu .theme-btn-arrow-right {
    background: var(--theme-color-white);
}

.inner_menu .theme-btn {
    background: var(--theme-color-white);
    color: #140b02;
}

.inner_menu .theme-btn-arrow-left {
    background: var(--theme-color-white);
}

.inner_menu .theme-btn-arrow-left img,
.inner_menu .theme-btn-arrow-right img {
    filter: invert(0)
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}


/***

==================================================================
    Theme Button Two
==================================================================

***/

.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;
}


/***

==================================================================
    Theme Button Three
==================================================================

***/

.theme-btn-three {
    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;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.theme-btn-three:hover .btn-arrow-left {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.theme-btn-three:hover .btn-arrow-right {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.theme-btn-three:hover .btn-title {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.theme-btn-three .btn-arrow-left {
    width: 44px;
    height: 44px;
    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);
    border-radius: 0;
    left: 0;
    right: auto;
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-three .btn-title {
    background: var(--theme-color-white);
    color: #140b02;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 29px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-three .btn-arrow-right {
    width: 44px;
    height: 44px;
    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);
    border-radius: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}


/***

==================================================================
    Theme Button Style
==================================================================

***/

.theme-btn-breakfast {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 1px;
    position: relative;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.theme-btn-breakfast:hover .btn-arrow-left {
    scale: 1;
}

.theme-btn-breakfast:hover .btn-arrow-right {
    scale: 0;
}

.theme-btn-breakfast:hover .btn-title {
    -webkit-transform: translateX(53px);
    transform: translateX(53px);
}

.theme-btn-breakfast .btn-arrow-left {
    width: 52px;
    height: 52px;
    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-color1);
    border-radius: 0;
    scale: 0;
    left: 0;
    right: auto;
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-breakfast .btn-title {
    background: var(--theme-color1);
    color: var(--theme-color1-text-color);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 36px;
    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: 30px;
    border-radius: 0;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.theme-btn-breakfast .btn-arrow-right {
    width: 52px;
    height: 52px;
    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-color1);
    border-radius: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}


/***

==================================================================
    Theme Button Mountain Style
==================================================================

***/

.theme-btn-nine {
    background: var(--theme-color1);
    border: none;
    border-radius: 0;
    color: var(--theme-color-light);
    cursor: pointer;
    display: inline-block;
    font-family: var(--body-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    outline: none !important;
    overflow: hidden;
    padding: 13px 22px 13px 40px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    -webkit-appearance: none;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.theme-btn-nine:before {
    content: "";
    position: absolute;
    background-color: var(--theme-color-light);
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    left: 20px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.theme-btn-nine .royle-btn__text {
    color: inherit;
    position: relative;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    z-index: 1;
}

.theme-btn-nine .royle-btn__text svg {
    margin-left: 452px;
}

.theme-btn-nine .royle-btn__hover {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 1;
    -webkit-transform: translateY(101%);
    transform: translateY(101%);
    background-color: var(--theme-color-black);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(20% + 0.2px);
}

.theme-btn-nine .royle-btn__hover--1 {
    left: 0;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.theme-btn-nine .royle-btn__hover--2 {
    left: 20%;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.theme-btn-nine .royle-btn__hover--3 {
    left: 40%;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.theme-btn-nine .royle-btn__hover--4 {
    left: 60%;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.theme-btn-nine .royle-btn__hover--5 {
    left: 80%;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.theme-btn-nine:hover {
    color: var(--theme-color-light);
}

.theme-btn-nine:hover i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.theme-btn-nine:hover .royle-btn__hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.theme-btn-nine.light {
    color: var(--theme-color-black);
    background: var(--theme-color-white);
}

.theme-btn-nine.light:before {
    background-color: var(--theme-color-black);
}

.theme-btn-nine.light .royle-btn__hover {
    background-color: var(--theme-color1);
}

.theme-btn-nine.light:hover {
    color: var(--theme-color-light);
}

.theme-btn-nine.light:hover:before {
    background-color: var(--theme-color-light);
}

@-webkit-keyframes borderanimate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.5);
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes borderanimate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(2.5);
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}


/*img-animation**********************/

.img-custom-anim-right {
    -webkit-animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@-webkit-keyframes img-anim-right {
    0% {
        -webkit-transform: translateX(5%);
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-right {
    0% {
        -webkit-transform: translateX(5%);
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    -webkit-animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@-webkit-keyframes img-anim-left {
    0% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-left {
    0% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    -webkit-animation: img-anim-top 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: img-anim-top 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@-webkit-keyframes img-anim-top {
    0% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-top {
    0% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-bottom {
    -webkit-animation: img-anim-bottom 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: img-anim-bottom 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@-webkit-keyframes img-anim-bottom {
    0% {
        -webkit-transform: translateY(105%);
        transform: translateY(105%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-bottom {
    0% {
        -webkit-transform: translateY(105%);
        transform: translateY(105%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.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;
}

.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%);
}

@-webkit-keyframes sway {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes sway {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.sway__animation {
    -webkit-animation: sway 3s linear infinite alternate;
    animation: sway 3s linear infinite alternate;
}

@-webkit-keyframes swayX {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes swayX {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.sway__animationX {
    -webkit-animation: swayX 3s linear infinite alternate;
    animation: swayX 3s linear infinite alternate;
}

@-webkit-keyframes footer__shadow {
    0% {
        margin-left: -200px;
    }
    100% {
        margin-right: -200px;
    }
}

@keyframes footer__shadow {
    0% {
        margin-left: -200px;
    }
    100% {
        margin-right: -200px;
    }
}

@-webkit-keyframes sway_Y {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes sway_Y {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.sway_Y__animation {
    -webkit-animation: sway_Y 3s linear infinite alternate;
    animation: sway_Y 3s linear infinite alternate;
}

@-webkit-keyframes sway_YY {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes sway_YY {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.sway_Y__animationY {
    -webkit-animation: sway_YY 3s linear infinite alternate;
    animation: sway_YY 3s linear infinite alternate;
}

@-webkit-keyframes sunMove {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    75% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes sunMove {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    75% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.animation__sunMove {
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite;
}

@-webkit-keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

@keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.animation__floatBob {
    -webkit-animation-name: floatBob;
    animation-name: floatBob;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes arryUpDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes arryUpDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.animation__arryUpDown {
    -webkit-animation: arryUpDown 2s ease infinite alternate;
    animation: arryUpDown 2s ease infinite alternate;
}

@-webkit-keyframes arryLeftRight {
    0% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes arryLeftRight {
    0% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.animation__arryLeftRight {
    -webkit-animation: arryLeftRight 2s ease infinite alternate;
    animation: arryLeftRight 2s ease infinite alternate;
}

@-webkit-keyframes pxl_zoom_reverse {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes pxl_zoom_reverse {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.pxl-image-zoom {
    -webkit-animation: pxl_zoom_reverse 5s linear infinite;
    animation: pxl_zoom_reverse 5s linear infinite;
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
    }
}

.pxl-image-zoom2 {
    -webkit-animation: zoom-in-zoom-out 20s linear infinite;
    animation: zoom-in-zoom-out 20s linear infinite;
}

@-webkit-keyframes pxl_zigzag {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes pxl_zigzag {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

.pxl__zigzag {
    animation: pxl_zigzag 1s ease-out infinite;
    -webkit-animation: pxl_zigzag 1s ease-out infinite;
}

@-webkit-keyframes pxl_right_left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pxl_right_left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slide-right-to-left {
    animation: pxl_right_left 12s ease-out infinite;
    -webkit-animation: pxl_right_left 12s ease-out infinite;
}

@-webkit-keyframes pxl_left_right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pxl_left_right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slide-left-to-right {
    animation: pxl_left_right 12s ease-out infinite;
    -webkit-animation: pxl_left_right 12s ease-out infinite;
}

@-webkit-keyframes pxl_float_two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes pxl_float_two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.slide-up-down {
    -webkit-animation: pxl_float_two 2s ease infinite alternate;
    animation: pxl_float_two 2s ease infinite alternate;
}

@-webkit-keyframes pxl_bottom_top {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    75% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pxl_bottom_top {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    75% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slide-bottom-to-top {
    animation: pxl_bottom_top 12s ease-out infinite;
    -webkit-animation: pxl_bottom_top 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect1 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    20% {
        -webkit-transform: translate(40px, -5px);
        transform: translate(40px, -5px);
    }
    40% {
        -webkit-transform: translate(60px, 40px);
        transform: translate(60px, 40px);
    }
    60% {
        -webkit-transform: translate(40px, 60px);
        transform: translate(40px, 60px);
    }
    80% {
        -webkit-transform: translate(-40px, 60px);
        transform: translate(-40px, 60px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes pxl_effect1 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    20% {
        -webkit-transform: translate(40px, -5px);
        transform: translate(40px, -5px);
    }
    40% {
        -webkit-transform: translate(60px, 40px);
        transform: translate(60px, 40px);
    }
    60% {
        -webkit-transform: translate(40px, 60px);
        transform: translate(40px, 60px);
    }
    80% {
        -webkit-transform: translate(-40px, 60px);
        transform: translate(-40px, 60px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.slide-effect1 {
    animation: pxl_effect1 12s ease-out infinite;
    -webkit-animation: pxl_effect1 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    20% {
        -webkit-transform: translate(-30px, 40px);
        transform: translate(-30px, 40px);
    }
    40% {
        -webkit-transform: translate(60px, 60px);
        transform: translate(60px, 60px);
    }
    60% {
        -webkit-transform: translate(70px, 40px);
        transform: translate(70px, 40px);
    }
    80% {
        -webkit-transform: translate(40px, -70px);
        transform: translate(40px, -70px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes pxl_effect2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    20% {
        -webkit-transform: translate(-30px, 40px);
        transform: translate(-30px, 40px);
    }
    40% {
        -webkit-transform: translate(60px, 60px);
        transform: translate(60px, 60px);
    }
    60% {
        -webkit-transform: translate(70px, 40px);
        transform: translate(70px, 40px);
    }
    80% {
        -webkit-transform: translate(40px, -70px);
        transform: translate(40px, -70px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.slide-effect2 {
    animation: pxl_effect2 12s ease-out infinite;
    -webkit-animation: pxl_effect2 12s ease-out infinite;
}

@-webkit-keyframes pxl_effect3 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    30% {
        -webkit-transform: translate(40px, 60px);
        transform: translate(40px, 60px);
    }
    45% {
        -webkit-transform: translate(80px, 90px);
        transform: translate(80px, 90px);
    }
    65% {
        -webkit-transform: translate(40px, 110px);
        transform: translate(40px, 110px);
    }
    75% {
        -webkit-transform: translate(20px, 800px);
        transform: translate(20px, 800px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes pxl_effect3 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    30% {
        -webkit-transform: translate(40px, 60px);
        transform: translate(40px, 60px);
    }
    45% {
        -webkit-transform: translate(80px, 90px);
        transform: translate(80px, 90px);
    }
    65% {
        -webkit-transform: translate(40px, 110px);
        transform: translate(40px, 110px);
    }
    75% {
        -webkit-transform: translate(20px, 800px);
        transform: translate(20px, 800px);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.slide-effect3 {
    animation: pxl_effect3 12s ease-out infinite;
    -webkit-animation: pxl_effect3 12s ease-out infinite;
}

@-webkit-keyframes pxl_top_bottom {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    75% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pxl_top_bottom {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    75% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slide-top-to-bottom {
    animation: pxl_top_bottom 12s ease-out infinite;
    -webkit-animation: pxl_top_bottom 12s ease-out infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animation__rotate {
    -webkit-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite;
}

@-webkit-keyframes rotateY {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateY {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.animation__rotateY {
    -webkit-animation: rotateY 30s linear infinite;
    animation: rotateY 30s linear infinite;
}

@-webkit-keyframes rotateAndScale {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(180deg) scale(0.8);
        transform: rotate(180deg) scale(0.8);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotateAndScale {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(180deg) scale(0.8);
        transform: rotate(180deg) scale(0.8);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

.animation__rotateAndScale {
    -webkit-animation: rotateAndScale 20s linear infinite;
    animation: rotateAndScale 20s linear infinite;
}

@-webkit-keyframes rotateAndScaleY {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(-180deg) scale(0.8);
        transform: rotate(-180deg) scale(0.8);
    }
    100% {
        -webkit-transform: rotate(-360deg) scale(1);
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes rotateAndScaleY {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(-180deg) scale(0.8);
        transform: rotate(-180deg) scale(0.8);
    }
    100% {
        -webkit-transform: rotate(-360deg) scale(1);
        transform: rotate(-360deg) scale(1);
    }
}

.animation__rotateAndScaleY {
    -webkit-animation: rotateAndScaleY 20s linear infinite;
    animation: rotateAndScaleY 20s linear infinite;
}

@-webkit-keyframes ring-animation {
    from {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        -webkit-transform: rotate3d(0, 0, 1, -15deg);
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes ring-animation {
    from {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        -webkit-transform: rotate3d(0, 0, 1, -15deg);
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.ring__animation {
    -webkit-animation: ring-animation 1.5s ease-in-out infinite;
    animation: ring-animation 1.5s ease-in-out infinite;
}

@-webkit-keyframes bobble {
    0% {
        -webkit-transform: translateY(0) scale(0.9);
        transform: translateY(0) scale(0.9);
    }
    100% {
        -webkit-transform: translateY(-20px) scale(1);
        transform: translateY(-20px) scale(1);
    }
}

@keyframes bobble {
    0% {
        -webkit-transform: translateY(0) scale(0.9);
        transform: translateY(0) scale(0.9);
    }
    100% {
        -webkit-transform: translateY(-20px) scale(1);
        transform: translateY(-20px) scale(1);
    }
}

.bobble__animation {
    -webkit-animation: bobble 3s ease-in-out infinite alternate;
    animation: bobble 3s ease-in-out infinite alternate;
}

@-webkit-keyframes video-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes video-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@-webkit-keyframes goAll {
    0% {
        -webkit-transform: translate(400px, 200px);
        transform: translate(400px, 200px);
        opacity: 30%;
    }
    17% {
        -webkit-transform: translate(600px, 400px);
        transform: translate(600px, 400px);
        opacity: 40%;
    }
    33% {
        -webkit-transform: translate(600px, 600px);
        transform: translate(600px, 600px);
        opacity: 70%;
    }
    50% {
        -webkit-transform: translate(400px, 800px);
        transform: translate(400px, 800px);
        opacity: 20%;
    }
    66% {
        -webkit-transform: translate(200px, 600px);
        transform: translate(200px, 600px);
        opacity: 60%;
    }
    83% {
        -webkit-transform: translate(200px, 400px);
        transform: translate(200px, 400px);
        opacity: 30%;
    }
    100% {
        -webkit-transform: translate(400px, 200px);
        transform: translate(400px, 200px);
        opacity: 30%;
    }
}

@keyframes goAll {
    0% {
        -webkit-transform: translate(400px, 200px);
        transform: translate(400px, 200px);
        opacity: 30%;
    }
    17% {
        -webkit-transform: translate(600px, 400px);
        transform: translate(600px, 400px);
        opacity: 40%;
    }
    33% {
        -webkit-transform: translate(600px, 600px);
        transform: translate(600px, 600px);
        opacity: 70%;
    }
    50% {
        -webkit-transform: translate(400px, 800px);
        transform: translate(400px, 800px);
        opacity: 20%;
    }
    66% {
        -webkit-transform: translate(200px, 600px);
        transform: translate(200px, 600px);
        opacity: 60%;
    }
    83% {
        -webkit-transform: translate(200px, 400px);
        transform: translate(200px, 400px);
        opacity: 30%;
    }
    100% {
        -webkit-transform: translate(400px, 200px);
        transform: translate(400px, 200px);
        opacity: 30%;
    }
}

@-webkit-keyframes goAll2 {
    0% {
        top: 800px;
        left: 845px;
        opacity: 30%;
    }
    25% {
        top: 400px;
        left: 845px;
        opacity: 40%;
    }
    50% {
        top: 800px;
        left: 845px;
        opacity: 100%;
    }
    75% {
        top: 1200px;
        left: 845px;
        opacity: 20%;
    }
    100% {
        top: 800px;
        left: 845px;
        opacity: 30%;
    }
}

@keyframes goAll2 {
    0% {
        top: 800px;
        left: 845px;
        opacity: 30%;
    }
    25% {
        top: 400px;
        left: 845px;
        opacity: 40%;
    }
    50% {
        top: 800px;
        left: 845px;
        opacity: 100%;
    }
    75% {
        top: 1200px;
        left: 845px;
        opacity: 20%;
    }
    100% {
        top: 800px;
        left: 845px;
        opacity: 30%;
    }
}

@-webkit-keyframes left {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes left {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.animation__goLeft {
    -webkit-animation: left infinite 6s;
    animation: left infinite 6s;
}

@-webkit-keyframes top-bottom {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    60% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

@keyframes top-bottom {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    60% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

.animation__topBottom {
    -webkit-animation: top-bottom 2s infinite;
    animation: top-bottom 2s infinite;
}

@-webkit-keyframes goAll3 {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 100%;
    }
    33% {
        -webkit-transform: translate(100px, 100px);
        transform: translate(100px, 100px);
        opacity: 30%;
    }
    66% {
        -webkit-transform: translate(0px, 200px);
        transform: translate(0px, 200px);
        opacity: 70%;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 100%;
    }
}

@keyframes goAll3 {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 100%;
    }
    33% {
        -webkit-transform: translate(100px, 100px);
        transform: translate(100px, 100px);
        opacity: 30%;
    }
    66% {
        -webkit-transform: translate(0px, 200px);
        transform: translate(0px, 200px);
        opacity: 70%;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 100%;
    }
}

.animation__goAll {
    -webkit-animation: goAll 30s infinite linear;
    animation: goAll 30s infinite linear;
}

.animation__goAll2 {
    -webkit-animation: goAll2 50s infinite linear;
    animation: goAll2 50s infinite linear;
}

.animation__goAll3 {
    -webkit-animation: goAll3 30s infinite linear;
    animation: goAll3 30s infinite linear;
}

@-webkit-keyframes iconHover1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    40% {
        -webkit-transform: translate(-10px);
        transform: translate(-10px);
    }
}

@keyframes iconHover1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    40% {
        -webkit-transform: translate(-10px);
        transform: translate(-10px);
    }
}

@-webkit-keyframes iconBounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes iconBounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.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(--heading-font-family);
    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 .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;
}

.choose-us-section .outer-box {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px;
}

.choose-us-section .accordion-box-3 {
    margin-left: 105px;
    margin-top: 30px;
    margin-left: 0;
}

.choose-us-section .accordion-box-3 .accordion-box {
    position: relative;
    border-top: 1px solid rgba(34, 34, 34, 0.1215686275);
    padding-top: 15px;
}

.choose-us-section .accordion-box-3 .accordion-box .block {
    position: relative;
    background-color: transparent;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1215686275);
    padding-bottom: 23px;
    margin-bottom: 25px;
    padding-top: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.choose-us-section .accordion-box-3 .accordion-box .block:last-child {
    margin-bottom: 0;
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-btn {
    position: relative;
    padding: 20px 15px;
    cursor: pointer;
    font-family: var(--body-font-family);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    top: 37px;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: rgba(34, 34, 34, 0.1);
    color: var(--headings-color);
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-btn.active .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-btn.active .icon:before {
    content: "\f062";
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-right: 20px;
    margin-top: 10px;
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-content .content {
    position: relative;
    padding: 25px 20px;
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-content .content .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

.choose-us-section .accordion-box-3 .accordion-box .block .acc-content.current {
    display: block;
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: repeat(2, 2fr);
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box-full {
    grid-template-columns: repeat(1, 1fr);
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box .thumb {
    margin-right: 20px;
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box .list-item li {
    font-size: 18px;
    font-weight: 400;
    color: rgba(4, 6, 24, 0.6980392157);
    position: relative;
    padding-left: 20px;
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box .list-item li:not(:last-child) {
    margin-bottom: 15px;
}

.choose-us-section .accordion-box-3 .accordion-box .fature-image-box .list-item li::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: rgba(85, 85, 85, 0.7);
}


/*** 

====================================================================
Main Header
====================================================================

***/

.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
}

.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 {
    position: relative;
    width: 100%;
    z-index: 999;
}

.main-header .logo {
    position: relative;
    display: block;
}

.main-header .logo img {
    max-width: 100%;
    height: auto;
}

.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;
}

.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;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    color: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: var(--heading-font-family);
    font-size: 15px;
    padding: 30px 10px;
    font-weight: 500;
    letter-spacing: 1.3px;
    line-height: 30px;
    opacity: 1;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase
}

.main-menu .navigation>li>a:hover {
    color: var(--theme-color1);
}

.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;
}

.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: 0;
    background-color: #ffffff;
    margin-top: 0px;
    border-radius: 0;
    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);
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    background-color: #bc915d;
    color: #fff !important;
}

.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 {
    font-family: var(--heading-font-family);
    position: relative;
    display: block;
    padding: 10px 20px;
    line-height: 30px;
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    -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-one
====================================================================

***/

.header-style-one {
    background-color: rgb(255 255 255 / 100%);
    margin-top: 0;
    transition: all .5s ease;
    position: absolute;
}

.header-style-one .container-fluid {
    padding: 0px 80px;
}

.header-style-one .main-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 0px;
}


/*
.header-style-one .main-box .nav-outer .nav .navigation li a {
  color: #bc915d;
}
*/

.fixed-header .main-box .nav-outer .nav .navigation li a {
    color: #000;
}

.header-style-one .main-box .nav-outer .nav .navigation li ul li a {
    color: #000;
}

.header-style-one .header-menu {
    /* border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 60px; */
    padding: 0 50px;
}

.header-style-one .main-menu .navigation>li>a:hover {
    color: var(--theme-color1);
}

.header-style-one .outer-box .login-btn {
    position: relative;
    margin-right: 18px;
    background-color: unset;
}

.header-style-one .outer-box .login-btn::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -1px;
    width: 1px;
    height: 27px;
    background-color: #000000;
}

.header-style-one .outer-box .login-btn .flaticon-user {
    font-size: 21px;
    color: #000000;
}

.header-style-one .outer-box .header-btn {
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    line-height: 48px;
    background-color: var(--theme-color1);
    border-color: transparent;
    padding: 0;
    width: 140px;
    text-align: center;
    margin-top: -8px;
    position: relative;
    top: 5px;
    height: 50px;
    z-index: 9;
    border: 0;
}

.header-style-one .outer-box .header-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background: #000;
    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);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1), 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);
}

.header-style-one .outer-box .header-btn:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.header-style-one .main-menu .navigation>li {
    margin-right: 20px;
}

.header-style-one .main-menu .navigation>li.dropdown {
    margin-right: 30px;
}

.header-style-one .main-menu .navigation>li:last-child {
    margin-right: 0;
}

.header-style-one .main-menu .navigation li.dropdown .dropdown-btn {
    border: 2px;
    bottom: 30px;
    color: #000;
    display: inline-block;
    font-size: 15px;
    height: unset;
    right: -10px;
    top: auto;
    width: auto;
}

.header-style-one.fixed-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #000;
}

.header-style-one .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}

.header-style-one .mobile-nav-toggler {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    margin-right: 0;
    display: none;
}

.header-style-one .mobile-nav-toggler span {
    color: #bc915d;
}

.header-style-one .main-menu .navigation>li>ul>li>a:hover {
    color: var(--theme-color2);
}

.header-style-one .sticky-header {
    background-color: var(--theme-color1);
    /*.main-menu .navigation > li.current > a,*/
}

.header-style-one .sticky-header .mobile-nav-toggler {
    display: none;
}

.header-style-one .sticky-header .mobile-nav-toggler span {
    color: var(--theme-color1);
}

.header-style-one .sticky-header .main-menu .navigation>li.current>a,
.header-style-one .sticky-header .main-menu .navigation>li:hover>a {
    color: var(--theme-color2);
}

.header-style-one .sticky-header .main-menu .navigation>li {
    padding: 0;
}

.header-style-one .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-one .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-one .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
    color: #fff;
}

.header-style-one .sticky-header .inner-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*
.main-menu .navigation > li.dropdown:hover > ul {
  margin-top: 0;
  opacity: 1;
  top: 100%;
  visibility: visible;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: inline-block;
}
*/


/*** 

====================================================================
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;
}


/*** 

====================================================================
      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;
}

.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: var(--theme-color1);
    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: 22px;
    padding: 9px 20px;
    font-size: 15px;
    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 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .navigation li>ul>li {
    padding-left: 20px;
}

.contact-list-one {
    position: relative;
    padding: 20px 20px 20px;
}

.contact-list-one li {
    position: relative;
    padding-left: 35px;
    min-height: 50px;
    margin-bottom: 20px;
}

.contact-list-one li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
}

.contact-list-one li .title {
    display: block;
    font-size: 12px;
    color: #fff;
    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);
}


/*** 

====================================================================
Section Title
====================================================================

***/

.section-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
}

.section-title.light .title {
    color: var(--theme-color-white);
}

.section-paragraph {
    margin: 20px 0 20px;
}

.section-2-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
}

.section-2 small {
    font-size: 18px;
    line-height: 156%;
    margin: 24px 0 31px;
}

.sec-title .title {
    margin-bottom: 0;
    text-transform: uppercase;
}

.sec-title.light .title {
    color: var(--theme-color-white);
}

.sec-title-3 .sub-title {
    font-size: 18px;
    line-height: 60px;
    font-weight: 500;
    font-family: var(--headings-color);
    margin-bottom: 10px;
}

.sec-title-3 .sub-title .icon {
    font-size: 14px;
    color: var(--theme-color-white);
    background-color: var(--theme-color-black);
    border-radius: 20px;
    line-height: 24px;
    width: 44px;
    height: 24px;
    text-align: center;
    margin-left: 5px;
}


/***

==================================================================
	Main Footer
==================================================================

***/

.main-footer-island.color-two {
    padding-bottom: 40px;
    background-position: center bottom;
    background-repeat: repeat-x;
    background-color: var(--theme-color2);
}

.main-footer-island.color-two .newsletter-box .form-group .btn-box .read-more {
    color: var(--theme-color-white);
    background-color: var(--theme-color3);
}

.main-footer-island.color-two .newsletter-box .form-group .btn-box .arrow-btn {
    color: var(--theme-color-white);
    background-color: var(--theme-color3);
}

.main-footer-island .bg-image {
    background-color: rgb(0 0 0 / 70%);
    background-blend-mode: overlay;
    /*&:before {
  	position: absolute;
  	content: '';
  	width: 100%;
  	height: 100%;
  	left: 0;
  	top: 0;
  	background: linear-gradient(180deg, #FFFFFF 0%, #121212 96.63%);
  }*/
}

.main-footer-island .auto-container {
    max-width: 1320px;
}

.main-footer-island .widgets-box {
    position: relative;
    padding-bottom: 70px;
}

.main-footer-island .widgets-box .row {
    margin: 0px -35px;
}

.main-footer-island .widgets-box .column {
    position: relative;
    padding: 0px 35px;
}

.main-footer-island .footer-logo {
    position: relative;
    margin-bottom: 0;
}

.main-footer-island .footer-text {
    position: relative;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.6980392157);
}

.main-footer-island .social-links {
    position: relative;
}

.main-footer-island .social-links li {
    position: relative;
    margin-right: 8px;
    text-align: center;
    display: inline-block;
}

.main-footer-island .social-links li a {
    position: relative;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50px;
    display: inline-block;
    color: var(--theme-color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.main-footer-island .social-links li a:hover {
    color: var(--theme-color-white);
    background-color: var(--theme-color3);
}

.main-footer-island .info {
    position: relative;
    color: var(--theme-color-white);
}

.main-footer-island .info i {
    position: relative;
    margin-right: 10px;
}

.main-footer-island .info a {
    margin-top: 7px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    color: var(--theme-color-white);
}

.main-footer-island .subscribe-text {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 35px;
    color: var(--theme-color-white);
}

.main-footer-island .newsletter-box {
    position: relative;
}

.main-footer-island .newsletter-box .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.main-footer-island .newsletter-box .form-group input[type="text"],
.main-footer-island .newsletter-box .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 60px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    margin-bottom: 20px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: white;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island .footer-title {
    position: relative;
    margin-bottom: 20px;
    color: var(--theme-color-white);
}

.main-footer-island .footer-list {
    position: relative;
}

.main-footer-island .footer-list li {
    position: relative;
    margin-bottom: 12px;
}

.main-footer-island .footer-list li a {
    opacity: 0.7;
    color: var(--theme-color-white);
}

.main-footer-island .footer-list li a:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 11px;
    width: 5px;
    height: 5px;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: var(--theme-color-white);
}

.main-footer-island .footer-list li a:hover {
    opacity: 1;
    padding-left: 18px;
    text-decoration: underline;
}

.main-footer-island .footer-list li a:hover:before {
    opacity: 1;
}

.main-footer-island .footer-list li:last-child {
    margin-bottom: 0px;
}

.main-footer-island .middle-box {
    position: relative;
    padding: 40px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer-island .middle-box .footer-logo {
    margin-bottom: 0px;
}

.main-footer-island .lower-box {
    text-align: center;
    position: relative;
    padding-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer-island .big-title {
    position: relative;
    font-size: 200px;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    background-size: cover;
    text-transform: uppercase;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.main-footer-island .copyright {
    position: relative;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.main-footer-island .footer-bottom {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-footer-island .footer-bottom-outer {
    background-color: #202028;
    position: relative;
    z-index: 1;
}

.main-footer-island .footer-bottom_nav {
    position: relative;
}

.main-footer-island .footer-bottom_nav li {
    position: relative;
    margin-left: 20px;
    display: inline-block;
}

.main-footer-island .footer-bottom_nav li a {
    position: relative;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.main-footer-island .footer-bottom_nav li a:hover {
    color: var(--theme-color-white);
}

.main-footer-island .footer-bottom_nav li:first-child {
    margin-left: 0px;
}

.main-footer-island .lower-box2 {
    position: absolute;
    bottom: 120px;
    left: 20px;
    pointer-events: none;
}

.main-footer-island.style-two {
    overflow: hidden;
    padding: 0px 0px;
    background-color: var(--theme-color1);
}

.main-footer-island.style-two.alternate {
    background-color: var(--theme-color1);
}

.main-footer-island.style-two.alternate .newsletter-box .form-group button .read-more {
    color: var(--theme-color-white);
    background-color: var(--theme-color2);
}

.main-footer-island.style-two.alternate .newsletter-box .form-group button .read-more:hover {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
}

.main-footer-island.style-two.alternate .newsletter-box .form-group button .arrow-btn {
    color: var(--theme-color-white);
    background-color: var(--theme-color2);
}

.main-footer-island.style-two.alternate .newsletter-box .form-group button .arrow-btn:hover {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
}

.main-footer-island.style-two .building-1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.main-footer-island.style-two .building-2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.main-footer-island.style-two .clouds {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.main-footer-island.style-two .upper-box {
    padding: 60px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.main-footer-island.style-two .upper-box .upper-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-footer-island.style-two .upper-box .footer-socials {
    position: relative;
}

.main-footer-island.style-two .upper-box .footer-socials li {
    position: relative;
    margin-left: 30px;
    display: inline-block;
}

.main-footer-island.style-two .upper-box .footer-socials li a {
    position: relative;
    font-size: 18px;
    color: var(--theme-color-white);
}

.main-footer-island.style-two .upper-box .footer-socials li:first-child {
    margin-left: 0px;
}

.main-footer-island.style-two .lower-box {
    padding: 0px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-two .lower-box .big-title {
    color: var(--theme-color-white);
    -webkit-text-fill-color: inherit;
}

.main-footer-island.style-two .lower-box .big-title:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 23px;
    right: 0px;
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-two .lower-box .big-title:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 33px;
    right: 0px;
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-two .widgets-box {
    padding-top: 80px;
    padding-bottom: 80px;
}

.main-footer-island.style-two .widgets-box .address {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--theme-color-white);
}

.main-footer-island.style-two .widgets-box .address i {
    margin-right: 12px;
}

.main-footer-island.style-two .widgets-box .address span {
    color: rgba(255, 255, 255, 0.6980392157);
    display: block;
    margin-top: 10px;
}

.main-footer-island.style-two .widgets-box .newsletter-box input {
    color: var(--theme-color-white);
    background-color: rgba(255, 255, 255, 0.1019607843);
    border-radius: 0;
}

.main-footer-island.style-two .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer-island.style-three {
    overflow: hidden;
    padding: 0px 0px;
    background-color: #181820;
}

.main-footer-island.style-three.alternate {
    background-color: var(--theme-color1);
}

.main-footer-island.style-three.alternate .newsletter-box .form-group button .read-more {
    color: var(--theme-color-white);
    background-color: var(--theme-color2);
}

.main-footer-island.style-three.alternate .newsletter-box .form-group button .read-more:hover {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
}

.main-footer-island.style-three.alternate .newsletter-box .form-group button .arrow-btn {
    color: var(--theme-color-white);
    background-color: var(--theme-color2);
}

.main-footer-island.style-three.alternate .newsletter-box .form-group button .arrow-btn:hover {
    color: var(--theme-color1);
    background-color: var(--theme-color-white);
}

.main-footer-island.style-three .building-1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.main-footer-island.style-three .building-2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.main-footer-island.style-three .clouds {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.main-footer-island.style-three .upper-box {
    padding: 60px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.main-footer-island.style-three .upper-box .upper-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-footer-island.style-three .upper-box .upper-inner .footer-logo {
    margin-bottom: 0px;
}

.main-footer-island.style-three .upper-box .upper-inner .title {
    color: var(--theme-color-white);
    font-size: 60px;
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
}

.main-footer-island.style-three .upper-box .footer-socials {
    position: relative;
}

.main-footer-island.style-three .upper-box .footer-socials li {
    position: relative;
    margin-left: 30px;
    display: inline-block;
}

.main-footer-island.style-three .upper-box .footer-socials li a {
    position: relative;
    font-size: 18px;
    color: var(--theme-color-white);
}

.main-footer-island.style-three .upper-box .footer-socials li:first-child {
    margin-left: 0px;
}

.main-footer-island.style-three .lower-box {
    padding: 0px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-three .lower-box .big-title {
    color: var(--theme-color-white);
    -webkit-text-fill-color: inherit;
}

.main-footer-island.style-three .lower-box .big-title:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 23px;
    right: 0px;
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-three .lower-box .big-title:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 33px;
    right: 0px;
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer-island.style-three .widgets-box {
    padding-top: 90px;
    padding-bottom: 50px;
}

.main-footer-island.style-three .widgets-box .address {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--theme-color-white);
}

.main-footer-island.style-three .widgets-box .address i {
    margin-right: 12px;
}

.main-footer-island.style-three .widgets-box .address span {
    display: block;
    margin-top: 10px;
    max-width: 240px;
}

.main-footer-island.style-three .widgets-box .newsletter-box input {
    color: var(--theme-color-white);
    background-color: rgba(255, 255, 255, 0.1019607843);
    border-radius: 0;
}

.main-footer-island.style-three .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-footer-island .footer-contact-list {
    position: relative;
}

.main-footer-island .footer-contact-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6980392157);
}

.main-footer-island .footer-contact-list li i {
    display: inline-block;
    margin-right: 12px;
    color: var(--theme-color-white);
}

.main-footer-island .footer-contact-list li a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6980392157);
}

.main-footer-island .footer-contact-list li:last-child {
    margin-bottom: 0px;
}

.main-footer-island .map-box {
    position: relative;
    margin-left: -30px;
}

.main-footer-island .map-box iframe {
    width: 300px;
    height: 256px;
    overflow: hidden;
    border-radius: 15px;
}

.user-links {
    position: relative;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 2fr);
}

.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: #fff;
    -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%;
}

.user-links.style-two li {
    padding-left: 0;
}

.user-links.style-two li:before {
    display: none;
}

.contact-list {
    position: relative;
    margin-bottom: 30px;
}

.contact-list:last-child {
    margin-bottom: 0;
}

.contact-list .inner {
    position: relative;
}

.contact-list .inner .list-info {
    color: #fff;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    flex-direction: column;
}

.contact-list .inner .list-info:first-child {
    margin-bottom: 13px;
    line-height: 1.875;
}

.contact-list .inner .list-info i {
    border-radius: 10px;
    color: var(--theme-color-white);
    font-size: 18px;
    backdrop-filter: blur(20px);
    display: inline-block;
    margin-right: 10px;
}

.contact-list .inner .post-title {
    color: var(--theme-color-white);
    letter-spacing: -0.8px;
    margin-bottom: 0;
}


/*=== Footer Bottom ===*/

.footer-bottom {
    padding: 50px 0;
}

.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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-bottom .copyright-text {
    position: relative;
    margin-bottom: 0;
    color: #fff;
}

.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);
}

.contact-list .inner .list-info {
    color: rgba(var(--theme-color-white-rgb), 0.7);
    flex-direction: column;
}

.contact-list .inner .list-info a {
    color: rgba(var(--theme-color-white-rgb), 0.7);
    padding-bottom: 10px;
}

.contact-list .inner .list-info i {
    color: var(--theme-color-white);
}

.footer-bottom {
    z-index: 9;
    position: relative;
}


/***

==================================================================
  Banner Section
==================================================================

***/

.banner-height {
    padding: 0;
    height: 100vh;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(255, 255, 255, 1) 100%) no-repeat center center / cover;
    background-blend-mode: overlay;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 9000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}


/*
.banner-bg::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(20, 11, 2, 0.2)),
    to(rgba(20, 11, 2, 0.4))
  );
  background: linear-gradient(
    180deg,
    rgba(20, 11, 2, 0.2) 0%,
    rgba(20, 11, 2, 0.4) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
*/

.banner-overlay {
    position: relative;
}


/*
.banner-overlay::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  height: 100%;
  width: 51%;
  -webkit-animation: 3s ease 0s 1 normal none running tpLeftToRight;
  animation: 3s ease 0s 1 normal none running tpLeftToRight;
  background: rgba(255, 56, 56, 0.7);
  clip-path: polygon(0px 0px, 70% 0px, 99% 100%, 0% 100%);
  z-index: 1;
  -webkit-transform: translateX(-962px);
  transform: translateX(-962px);
}
*/

.banner-content {
    position: relative;
    z-index: 11;
}

.banner-star-rating {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
    padding: 0 12px;
    margin-bottom: 18px;
}

.banner-star-rating i {
    color: #ffa121;
    font-size: 15px;
}

.banner-title {
    font-weight: 400;
    font-size: 108px;
    line-height: 1.09;
    text-transform: uppercase;
    color: var(--theme-color-white);
    margin-bottom: 16px;
    font-size: 50px;
    line-height: 1.1;
}

.banner-paragraph {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin: 0 auto 58px 0;
    max-width: 819px;
    width: 100%;
}

.banner-play-button {
    text-align: right;
}

.banner-arrow-box button {
    width: 60px;
    height: 60px;
    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: rgba(255, 255, 255, 0.6);
    color: var(--theme-color-white);
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
}

.banner-arrow-box button.slider-next {
    left: auto;
    right: 20px;
}

.banner-arrow-box button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.banner-arrow-box button:hover {
    background: var(--theme-color-white);
    color: var(--theme-color-black);
}

.banner-title-box {
    opacity: 0;
    z-index: 3;
    position: relative;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
}

.banner-btn-box {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    opacity: 1;
}


/*
.banner-wrapper .swiper-slide.swiper-slide-active .banner-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}
*/

.banner-wrapper .swiper-slide.swiper-slide-active .banner-title-box {
    opacity: 1;
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
}

.banner-wrapper .swiper-slide.swiper-slide-active .banner-btn-box {
    opacity: 1;
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
}

.banner-area:hover .banner-arrow-box button {
    visibility: visible;
    opacity: 1;
}

.banner-area:hover .banner-arrow-box button.slider-prev {
    left: 80px;
}

.banner-area:hover .banner-arrow-box button.slider-next {
    right: 80px;
}

.common-heading-wrap {
    bottom: -40px;
    margin: auto;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.common-heading {
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-bottom: 0;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-24.58%, rgba(255, 255, 255, 0.7)), color-stop(84.43%, rgba(20, 11, 2, 0)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) -24.58%, rgba(20, 11, 2, 0) 84.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--theme-color1);
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--heading-font-family);
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    font-size: 65px;
    line-height: 1;
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}


/***

==================================================================
  Checkout Section
==================================================================

***/

.checkout-area {
    margin-top: 60px;
    z-index: 2;
}

.checkout-area.style-home1 .nice-select {
    margin-bottom: 0;
}

.checkout-area.style-home1 .nice-select::before {
    top: -7px;
}

.checkout-bg {
    background: #bc915d;
    backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 120px;
    padding: 30px;
}

.checkout-wrapper {
    background: rgba(255, 255, 255, 0.14);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    padding: 10px 20px 6px 20px;
    width: 100%;
}

.checkout-left {
    border-right: 1px solid;
    padding-right: 20px;
    margin-right: 10px;
    height: 32px;
    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;
}

.checkout-left span {
    color: var(--theme-color-white);
    font-weight: 500;
    font-size: 16px;
}

.checkout-right h4 {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    font-family: var(--body-font-family);
    margin-bottom: -2px;
}

.checkout-right h4 span {
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field {
    width: 210px;
}

.checkout-field input {
    background: transparent;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field input::-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field input::placeholder {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field .nice-select {
    background-color: transparent;
    border: none;
    color: rgba(var(--theme-color-white-rgb), 0.6);
    height: 30px;
    line-height: 25px;
    padding: 0;
    width: 100%;
}

.checkout-field .nice-select:before {
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field .nice-select .option {
    color: var(--headings-color);
}

.checkout-field .nice-select span.current {
    color: rgba(var(--theme-color-white-rgb), 0.6);
}

.checkout-field .nice-select:focus {
    border: none;
}

.checkout-button .theme-btn-arrow-left,
.checkout-button .theme-btn-arrow-right {
    width: 60px;
    height: 60px;
    background: var(--theme-color-white);
}

.checkout-button .theme-btn-arrow-left img,
.checkout-button .theme-btn-arrow-right img {
    filter: invert(1)
}

.checkout-button .theme-btn {
    background: var(--theme-color-white);
    color: var(--theme-color1);
    padding: 16px 39px;
}

.checkout-button .theme-btn-main:hover .theme-btn {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
}

.checkout-button button {
    background: transparent;
}


/*** 

====================================================================
  About Section
====================================================================

***/

.about-area {
    padding: 100px 0;
}

.about-wrapper,
.ml-35 {
    margin-left: 35px;
}

.about-wrapper-r,
.mr-35 {
    margin-right: 35px;
}

.card.experience-card {
    display: flex;
    height: 100%;
}

.about-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    row-gap: 30px;
}

.about-list {
    margin-bottom: 40px;
}

.about-list li {
    color: rgba(var(--headings-color-rgb), 0.7);
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li span {
    line-height: 1;
    display: inline-block;
}

.about-bg-shape-1 {
    position: absolute;
    bottom: -3px;
    right: 100px;
    z-index: 5;
    opacity: 0.3;
}


/*** 

====================================================================
  About Section
====================================================================

***/

.restaurant-section {
    position: relative;
    padding: 100px 0;
}

.restaurant-section .about-bg-shape-1 {
    bottom: 350px;
    right: 100px;
}

.restaurant-section .about-left-thumb {
    position: relative;
}

.restaurant-section .about-left-thumb .image {
    overflow: hidden;
}

.restaurant-section .about-left-thumb .image img {
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.restaurant-section .about-left-thumb:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.restaurant-section .about-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.restaurant-section .about-button {
    max-width: 545px;
    margin: 0 0 0 auto;
}

@-webkit-keyframes rotate-circle {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-circle {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.theme-bg {
    background: var(--theme-color1);
}

.theme-bg-white {
    background: var(--theme-color-white);
}

.theme-bg-black {
    background: var(--theme-color-black);
}

.theme-bg-heading {
    background: var(--headings-color);
}

.theme-color {
    color: var(--theme-color1);
}

.theme-color-white {
    color: var(--theme-color-white);
}

.theme-color-black {
    color: var(--theme-color-black);
}

.theme-color-heading {
    color: var(--headings-color);
}

.filter-white {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.filter-black {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.destination-area {
    padding: 100px 0;
}

.destination-bg {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 690px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    padding: 0 0 80px 75px;
    position: relative;
    z-index: 1;
}

.destination-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 6, 24, 0)), to(rgba(4, 6, 24, 0.8)));
    background: linear-gradient(180deg, rgba(4, 6, 24, 0), rgba(4, 6, 24, 0.8));
    z-index: -1;
}

.destination-heading-wrap {
    margin-bottom: -40px;
}

.destination-title {
    font-weight: 400;
    font-size: 50px;
    line-height: 0.86;
    color: var(--theme-color-white);
    margin-bottom: 30px;
}

.destination-wrap ul li span {
    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);
    border-radius: 50%;
    margin-right: 12px;
}

.destination-arrow-box button {
    width: 50px;
    height: 50px;
    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);
    color: var(--theme-color-black);
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: absolute;
    left: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 50%;
    -webkit-box-shadow: 0 14px 20px 0 rgba(10, 37, 64, 0.3);
    box-shadow: 0 14px 20px 0 rgba(10, 37, 64, 0.3);
}

.destination-arrow-box button.slider-next {
    left: auto;
    right: -25px;
}

.destination-arrow-box button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.destination-arrow-box button:hover {
    background: var(--theme-color-white);
    color: var(--theme-color-black);
}

.destination-dots {
    margin-top: 30px;
}

.destination-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    margin: 0px 6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid rgba(4, 6, 24, 0.12);
    background: transparent;
}

.destination-dots .swiper-pagination-bullet-active {
    background-color: var(--theme-color-black);
}

.destination-dots.dots-color .swiper-pagination-bullet {
    background-color: var(--theme-color-white);
}

.destination-dots.dots-color .swiper-pagination-bullet-active {
    background-color: transparent;
    border-color: var(--theme-color-white);
}

.gradient-title1 {
    font-family: var(--heading-font-family);
    font-weight: 400;
    color: #bc915d;
    position: relative;
    display: inline-block;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-text-fill-color: #bc915d;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 1.3;
}


/***
==================================================================
  Features Section Four home layout 10
==================================================================
***/

.features-section-four {
    padding: 100px 0;
    background-color: #f4f1e0;
    z-index: 1;
}

.feature-block-four {
    margin-bottom: 30px;
}

.feature-block-four .inner-block {
    position: relative;
    overflow: hidden;
}

.feature-block-four .inner-block:before {
    background-color: rgba(var(--theme-color1-rgb), 0.9);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-four .inner-block:hover:before {
    height: 100%;
}

.feature-block-four .inner-block:hover .image img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.feature-block-four .inner-block:hover .title-box {
    background-color: var(--theme-color-white);
    color: var(--dark-color);
}

.feature-block-four .inner-block:hover .btn-style {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.feature-block-four .inner-block .image {
    margin-bottom: 0;
    position: relative;
}

.feature-block-four .inner-block .image img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-block-four .inner-block .title-box {
    background-color: var(--theme-color1);
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    color: var(--theme-color-white);
    display: inline-block;
    font-weight: 500;
    padding: 5px 10px 5px 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-four .inner-block .btn-style {
    position: absolute;
    left: 10px;
    bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.feature-block-four .inner-block .btn-style p {
    color: #fff;
    margin-bottom: 8px;
}

.suite-area {
    background: #f4f1e0;
    position: relative;
}

.suite-area .suite-wrapper {
    padding-left: 40px;
}

.suite-area .suite-wrapper .suite-wrap {
    max-width: 630px;
    width: 100%;
}

.suite-area .suite-wrapper .suite-wrap .title {
    font-weight: 400;
    font-size: 42px;
}

.suite-area .suite-wrapper .suite-wrap .item .text {
    background: rgba(4, 6, 24, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    margin-bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 15px;
    font-weight: 400;
    font-size: 17px;
    color: #040618;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.suite-area .suite-wrapper .suite-wrap .item .text span {
    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(--bs-body-color);
    border-radius: 50%;
}

.suite-area .suite-wrapper .suite-wrap .text2 {
    color: rgba(4, 6, 24, 0.7);
}

.suite-area .suite-wrapper .suite-wrap .bottom-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.suite-area .suite-wrapper .suite-wrap .bottom-wrap .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.suite-area .suite-wrapper .suite-wrap .bottom-wrap .subtitle {
    font-family: var(--body-font-family);
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 0;
}

.suite-area .suite-wrapper .suite-wrap .bottom-wrap .text {
    margin-bottom: 0;
    color: var(--headings-color);
    font-size: 18px;
}

.suite-area .suite-wrapper .suite-heading-wrap {
    position: relative;
    z-index: 1;
}

.suite-area .suite-wrapper .suite-heading-wrap .heading-shape {
    bottom: 26px;
    left: -36px;
    position: absolute;
    z-index: -1;
}

.suite-area .suite-bg {
    position: relative;
    z-index: 1;
}

.suite-area .suite-bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 600px;
}

.suite-area .suite-bg .suite-tag {
    left: 52px;
    position: absolute;
    top: 52px;
}

.suite-area .suite-bg .suite-tag span {
    background: var(--theme-color-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--headings-color);
}

.suite-area .suite-slide-wrapper .arrow-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

.suite-area .suite-slide-wrapper .arrow-box button {
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: var(--theme-color-white);
    margin: 0 -2px 0;
}

.suite-area .suite-slide-wrapper .arrow-box button.slider-next {
    background: #bc915d;
    color: var(--theme-color-white);
}


/***

==================================================================
    Room Section
==================================================================

***/

.room-section .slider-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.room-section .slider-info button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 16px;
}

.room-section .slider-info button:hover {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}

.room-section .slider-info .swiper-pagination-bullet {
    width: 80px;
    border-radius: 30px;
    height: 4px;
    margin: 0 4px;
    opacity: 1;
    background-color: rgba(2, 2, 20, 0.078);
}

.room-section .slider-info .swiper-pagination-bullet-active {
    background-color: var(--theme-color1);
}

.room-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
}

.room-block.style-two .inner-block:after {
    background-color: #b4cb1f;
}

.room-block.style-two .inner-block:before {
    background-color: #e1eaa5;
}

.room-block.style-three .inner-block:after {
    background-color: #ff930b;
}

.room-block.style-three .inner-block:before {
    background-color: #ffd49d;
}

.room-block .inner-block {
    position: relative;
    max-width: 320px;
}

.room-block .inner-block:hover:after {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.room-block .inner-block:hover:before {
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
}

.room-block .inner-block:hover .image-box .image-1 img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.room-block .inner-block:after {
    background-color: #09aaeb;
    border-radius: 10px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
    z-index: -1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.room-block .inner-block:before {
    background-color: #9dddf7;
    border-radius: 10px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
    z-index: -1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.room-block .inner-block .image-box .image-1 {
    border-radius: 10px;
    margin-bottom: 0;
    overflow: hidden;
}

.room-block .inner-block .image-box .image-1:before {
    background: -webkit-gradient(linear, left bottom, left top, from(#020214), color-stop(74.52%, rgba(2, 2, 20, 0)));
    background: linear-gradient(360deg, #020214 0%, rgba(2, 2, 20, 0) 74.52%);
    border-radius: 10px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
}

.room-block .inner-block .image-box .image-1 img {
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.room-block .inner-block .content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px 24px;
    overflow: hidden;
    z-index: 2;
}

.room-block .inner-block .content-box .title {
    color: var(--theme-color-white);
    font-family: var(--body-font-family);
    font-weight: 500;
    margin-bottom: 4px;
}

.room-block .inner-block .content-box .feature-list {
    margin-bottom: 7px;
}

.room-block .inner-block .content-box .feature-list li {
    color: var(--theme-color-white);
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    margin-left: 16px;
}

.room-block .inner-block .content-box .feature-list li:first-child {
    margin-left: 0;
}

.room-block .inner-block .content-box .feature-list li span {
    position: relative;
    top: -2px;
}


/***

==================================================================
    Room Section Home Five
==================================================================

***/

.room-section-island {
    position: relative;
}

.room-block-island {
    margin-bottom: 0;
    background-color: #fff;
    display: flex;
    height: 100%;
}

.room-block-island .inner-block {
    border: 1px solid rgba(18, 18, 18, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-block-island .inner-block:hover .image-box .image-1 img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.room-block-island .inner-block:hover .btn-learn-more {
    color: var(--theme-color-white);
}

.room-block-island .inner-block:hover .btn-learn-more:before {
    height: 100%;
}

.room-block-island .inner-block .image-box {
    padding: 14px 14px 0;
}

.room-block-island .inner-block .image-box .image-1 {
    margin-bottom: 0;
    overflow: hidden;
}

.room-block-island .inner-block .image-box .image-1 img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.room-block-island .inner-block .content-box {
    padding: 15px 23px 24px;
}

.room-block-island .inner-block .content-box .title {
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.room-block-island .inner-block .content-box .category {
    color: var(--theme-color1);
    font-size: 18px;
    font-weight: 500;
}

.room-block-island .inner-block .content-box .feature-list {
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    margin-bottom: 16px;
}

.room-block-island .inner-block .content-box .feature-list li {
    color: rgba(18, 18, 18, 0.7);
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    margin-left: 31px;
    margin-bottom: 15px;
    position: relative;
}

.room-block-island .inner-block .content-box .feature-list li:first-child {
    margin-left: 0;
}

.room-block-island .inner-block .content-box .feature-list li:first-child:before {
    display: none;
}

.room-block-island .inner-block .content-box .feature-list li:before {
    content: "";
    background-color: #181820;
    height: 6px;
    width: 6px;
    position: absolute;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.room-block-island .inner-block .content-box .feature-list li i {
    color: var(--dark-color);
    font-size: 17px;
    margin-right: 3px;
    position: relative;
}

.room-block-island .inner-block .btn-learn-more {
    background-color: #ececec;
    color: #121212;
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    margin: 0 -1px -1px;
    position: relative;
    z-index: 1;
    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;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.room-block-island .inner-block .btn-learn-more:before {
    background-color: var(--theme-color1);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.room-block-island .inner-block .btn-learn-more .icon {
    font-size: 16px;
    margin-left: 20px;
}


/***

==================================================================
    Explore Section Two
==================================================================

***/

.explore-section {
    padding: 120px 0;
}

.explore-section .outer-box {
    max-width: 1320px;
    margin: 0 auto;
}

.explore-block {
    margin-bottom: 50px;
}

.explore-block:nth-child(2n+2) .inner-block {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.explore-block .inner-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 140px 65px;
}

.explore-block .inner-block .image-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.explore-block .inner-block .image-box:before {
    background-color: #eee;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
}

.explore-block .inner-block .image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.des-portfolio-wrap .explore-block.style-two .inner-block .image-box img {
    float: right;
}

.explore-block .inner-block .content-box {
    background-color: var(--theme-color-white);
    max-width: 420px;
    position: relative;
    padding: 80px 40px 40px;
    z-index: 1;
}

.explore-block .inner-block .content-box:before {
    background-image: url("../img/explore1-shape1.webp");
    content: "";
    position: absolute;
    top: calc(50% + 6px);
    left: calc(50% - 13px);
    height: 570px;
    width: 586px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    opacity: 0.6;
}

.explore-block.style-two .inner-block .content-box:before {
    left: calc(57% - 15px);
}

.explore-block .inner-block .content-box .subtitle {
    border: 1px solid rgba(var(--headings-color-rgb), 0.1);
    color: var(--headings-color);
    font-size: 15px;
    font-weight: 500;
    padding: 0 11px;
    display: inline-block;
    margin-bottom: 22px;
}

.explore-block .inner-block .content-box .title {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.explore-block .inner-block .content-box .text {
    color: rgba(var(--headings-color-rgb), 0.7);
    line-height: 24px;
    margin-bottom: 43px;
}


/***

==================================================================
  Explore Section Resort
==================================================================

***/

.des-portfolio-wrap .explore-block.style-two .inner-block {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


/***

==================================================================
    Testimonial Section One Style
==================================================================

***/

.testimonial-section-one {
    position: relative;
    padding: 100px 0;
}

.testimonial-section-one .testi-dot {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-section-one .testi-dot .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    margin: 0px 6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid rgba(4, 6, 24, 0.12);
    background: transparent;
}

.testimonial-section-one .testi-dot .swiper-pagination-bullet-active {
    background-color: var(--theme-color-black);
}

.testimonial-section-one .testi-dot .dots-color .swiper-pagination-bullet {
    background-color: var(--theme-color-white);
}

.testimonial-section-one .testi-dot .dots-color .swiper-pagination-bullet.active {
    background-color: transparent;
    border-color: var(--theme-color-white);
}

.testimonial-block-one {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f4f1e0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: auto
}

.testimonial-block-one .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.testimonial-block-one .content-box {
    max-width: 100%;
    width: 100%;
    padding: 40px;
    height: 100%;
}

.testimonial-block-one .review {
    background: rgba(4, 6, 24, 0);
    border: 1px solid rgba(4, 6, 24, 0.1);
    border-radius: 100px;
    display: inline-block;
    padding: 0px 16px;
    margin-bottom: 22px;
}

.testimonial-block-one .review i {
    color: #ffa121;
    font-size: 14px;
}

.testimonial-block-one .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.testimonial-block-one .text {
    color: rgba(4, 6, 24, 0.7);
    margin-bottom: 25px;
}

.testimonial-block-one .desigation {
    line-height: 137%;
    color: rgba(4, 6, 24, 0.7);
    margin-bottom: 0;
}

.testimonial-block-one .author {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 6px;
}


/***

==================================================================
    Testimonial Section Two
==================================================================

***/


/***

==================================================================
    Testimonial Section
==================================================================

***/

.testimonial-section {
    position: relative;
    padding: 120px 0;
}

.testimonial-section .outer-box {
    max-width: 1290px;
    margin: 0 auto;
}

.testimonial-block {
    position: relative;
}

.testimonial-block .inner-block {
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 1000px;
    padding: 70px 138px 80px 500px;
    position: relative;
}

.testimonial-block .inner-block .icon-quote {
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 50%;
    height: 410px;
    line-height: 410px;
    text-align: center;
    width: 410px;
    position: absolute;
    left: 30px;
    top: 30px;
}

.testimonial-block .inner-block .rating-star {
    color: #ffa121;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-block .inner-block .text {
    font-size: 22px;
    line-height: 1.546;
    margin-bottom: 41px;
}


/***
==================================================================
  Blog Area Home Layout 1
==================================================================
***/

.blog-area {
    padding: 100px 0;
    position: relative;
    margin-top: 0px;
    background-color: #eef0ee;
}

.blog-area .blog-arrow-box {
    margin-top: 20px;
}

.blog-area .blog-arrow-box button {
    width: 50px;
    height: 50px;
    font-size: 16px;
    background: var(--theme-color-white);
    margin: 0 6px 0;
    border: 1px solid rgba(4, 6, 24, 0.14);
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-area .blog-arrow-box button:hover {
    background: var(--theme-color1);
    color: var(--theme-color-white);
    border-color: var(--theme-color1);
}

.blog-box {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(4, 6, 24, 0.12);
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.blog-box:hover .blog-main-thumb img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.blog-box:hover .blog-main-thumb img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-box .image-box {
    overflow: hidden;
    position: relative;
}

.blog-box .image-box img {
    background-size: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
}

.blog-box .image-box .img-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 26, 29, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
}

.blog-box .content-box {
    padding: 30px 40px 40px 30px;
}

.blog-box .content-box .title {
    font-family: var(--body-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.42;
    margin-bottom: 36px;
}

.blog-box .content-box .title a {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
    background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    -webkit-transition: all 0.3s, background-size 0.8s;
    transition: all 0.3s, background-size 0.8s;
}

.blog-box .content-box .title a:hover {
    background-size: 100% 1px;
    color: var(--theme-color1);
}

.blog-box .content-box .post-meta {
    margin-bottom: 16px;
}

.blog-box .content-box .post-meta ul {
    gap: 12px;
}

.blog-box .content-box .post-meta ul li {
    background: #eef0ee;
    padding: 3px 20px 3px 0;
    border-radius: 30px;
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: var(--headings-color);
}

.blog-box .content-box .button .theme-btn-arrow-left {
    background: rgba(83, 98, 78, 0);
    border: 1px solid rgba(4, 6, 24, 0.1);
    color: var(--headings-color);
}

.blog-box .content-box .button .theme-btn-arrow-left img {
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
}

.blog-box .content-box .button .theme-btn {
    background: rgba(83, 98, 78, 0);
    border: 1px solid rgba(4, 6, 24, 0.1);
    color: var(--headings-color);
}

.blog-box .content-box .button .theme-btn-arrow-right {
    background: rgba(83, 98, 78, 0);
    border: 1px solid rgba(4, 6, 24, 0.1);
    color: var(--headings-color);
}

.blog-box .content-box .button .theme-btn-arrow-right img {
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
}

.blog-box .content-box .button .theme-btn-main:hover .theme-btn-arrow-left {
    background: var(--theme-color1);
}

.blog-box .content-box .button .theme-btn-main:hover .theme-btn-arrow-left img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.blog-box .content-box .button .theme-btn-main:hover .theme-btn {
    background: var(--theme-color1);
    border: 1px solid var(--theme-color1);
    color: var(--theme-color-white);
}

.blog-box .content-box .button .theme-btn-main:hover .theme-btn-arrow-right {
    background: var(--theme-color1);
}

.blog-box .content-box .button .theme-btn-main:hover .theme-btn-arrow-right img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.nice-select {
    width: 100%;
    border-radius: 5px;
    height: 58px;
    line-height: 30px;
    margin-bottom: 10px;
}

.nice-select::after {
    display: none;
}

.nice-select::before {
    font-family: "Font Awesome 6 pro";
    content: "\f107";
    font-weight: 900;
    position: absolute;
    top: 13px;
    right: 15px;
    color: var(--theme-color-black);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.nice-select.open::before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nice-select:focus {
    border: 1px solid var(--theme-color1);
}

.nice-select .list {
    width: 100%;
}

.nice-select .current {
    font-size: 16px;
    color: var(--theme-color-black);
}


/***
====================================================================
  Products details
====================================================================
***/

.product-details .bxslider .image-box {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-bottom: 10px;
}

.product-details .bxslider .image-box img {
    width: 100%;
}

.product-details .bxslider .thumb-box li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
}

.product-details .bxslider .thumb-box li:last-child {
    margin: 0px !important;
}

.product-details .bxslider .thumb-box li a {
    position: relative;
    display: inline-block;
}

.product-details .bxslider .thumb-box li a:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.product-details .bxslider .thumb-box li a.active:before {
    opacity: 1;
}

.product-details .bx-wrapper {
    margin-bottom: 30px;
}


/*** 

====================================================================
Page Title
====================================================================

***/

.d-break {
    display: none
}

.page-title {
    background-color: var(--theme-color2);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 0;
    min-height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-title:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 30%, rgba(255, 255, 255, 0.2) 100%);
}

.page-title .title {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
}

.page-breadcrumb {
    position: relative;
    margin-top: 5px;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -6px;
    top: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: #ffffff;
}

.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li a {
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #ffffff;
}

.page-title.style-two {
    background-position: center center;
}

.page-title.style-two .page-breadcrumb-outer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 8;
}

.page-title.style-two .page-breadcrumb li {
    color: rgb(7, 7, 16);
    font-weight: 600;
}

.page-title.style-two .page-breadcrumb li:after {
    color: rgb(7, 7, 16);
}

.page-title.style-two .page-breadcrumb li a {
    color: rgba(7, 7, 16, 0.6);
}

.page-title.style-two .page-breadcrumb li a:hover {
    color: rgb(7, 7, 16);
}

.background-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
}


/***

====================================================================
        Contact
====================================================================

***/

.contact-details__info {
    position: relative;
    display: block;
    margin-top: 20px;
}

.contact-details__info li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-details__info li .icon {
    height: 50px;
    width: 50px;
    background-color: var(--theme-color2);
    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-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-details__info li .icon span {
    color: var(--theme-color-white);
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-details__info li:hover .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
}

.contact-details__info li:hover .icon span {
    color: var(--text-color-bg-theme-color2);
}

.contact-details__info li:hover .text a {
    color: var(--notech-base);
}

.contact-details__info li:hover .text a span {
    color: var(--notech-gray);
}

.contact-details__info li .text {
    margin-left: 30px;
}

.hotel_contact .contact-details__info li .text {
    margin-left: 0;
}

.contact-details__info li .text p {
    font-size: 14px;
    line-height: 24px;
}

.contact-details__info li .text a {
    color: var(--notech-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-details__info li .text span {
    font-size: 20px;
    color: var(--notech-black);
}

.contact-details__info li+li {
    margin-top: 19px;
}

.hotel_contact .contact-details__info li .text a {
    display: block;
    margin-bottom: 10px;
}

.hotel_contact .contact-details__info li .text a span {
    font-size: 15px;
    color: #fff;
    background-color: #bc915d;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    text-align: center;
    line-height: 32px;
    border-radius: 50px;
}

.map-section {
    display: flex;
}

.map {
    height: 550px;
}


/***
=============================================
    Services Details
=============================================
***/

.service-sidebar {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
}

.service-sidebar .service-sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-details__content .feature-list .single-item {
    position: relative;
    display: block;
    border: 1px solid #e1e8e4;
    padding: 16px 30px 16px 53px;
    margin-bottom: 20px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.services-details__content .feature-list .single-item .icon-box {
    color: var(--theme-color1);
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 18px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.services-details__content .feature-list .single-item .title {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase;
}

.services-details__content .feature-list .single-item:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
}

.services-details__content .feature-list .single-item:hover .icon-box {
    color: var(--text-color-bg-theme-color2);
}

.sidebar-service-list {
    margin: 0;
}

.sidebar-service-list li+li {
    margin-top: 10px;
}

.sidebar-service-list li a {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background-color: #f4f1e0;
    border-radius: 15px;
    padding: 19px 40px;
    color: var(--headings-color)
}

.sidebar-service-list li a:hover {
    color: var(--theme-color1);
}

.sidebar-service-list li a:hover i {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1);
}

.sidebar-service-list li a i {
    height: 32px;
    width: 45px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #191825;
    background-color: #fff;
    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;
    font-size: 16px;
    border-radius: 15px;
}

.sidebar-service-list li.current a {
    color: var(--theme-color1);
}

.sidebar-service-list li.current a i {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1);
}


/***

====================================================================
    Blog Details
====================================================================

***/

.blog-details {
    position: relative;
    display: block;
    padding: 80px 0
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
    display: block;
    border-radius: 10px;
}

.blog-details__img img {
    width: 100%;
    border-radius: 10px;
}

.blog-details__date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--theme-color1);
    text-align: center;
    padding: 21px 24px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-details__date .day {
    font-size: 16px;
    color: #fff;
    font-weight: var(--body-font-weight-bold);
    line-height: 16px;
}

.blog-details__date .month {
    position: relative;
    display: block;
    font-size: 10px;
    font-weight: var(--body-font-weight-bold);
    color: #fff;
    line-height: 12px;
    text-transform: uppercase;
}

.blog-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
}

.blog-details__meta {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details__meta li+li {
    margin-left: 18px;
}

.blog-details__meta li a {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__meta li a:hover {
    color: var(--theme-color1);
}

.blog-details__meta li a i {
    color: var(--theme-color1);
    margin-right: 6px;
}

.blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px;
    font-weight: var(--body-font-weight-bold);
}


/* Nav Links */

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 53px;
}

.nav-links .prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px;
}

.nav-links .prev .thumb {
    margin-right: 20px;
}

.nav-links .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: calc(50% - 15px);
}

.nav-links .next .thumb {
    margin-left: 20px;
}

.nav-links>div {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.nav-links>div .thumb {
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.nav-links>div .thumb a {
    display: inline-block;
}

.nav-links>div>a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%;
}

.nav-links>div>a:hover {
    color: #fff;
    background-color: var(--theme-color1);
}

.room-heading {
    position: relative;
}

.room-heading .title {
    line-height: 1;
    margin-top: 0;
}

.room-heading .kodelisting-room-basic-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 30px;
}

.room-heading .kodelisting-room-basic-info li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 28px;
    padding: 5px 0;
    margin-right: 30px;
}

.room-heading .kodelisting-room-basic-info li i {
    color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
    margin-right: 10px;
}

.room-heading .kodelisting-room-basic-info li .csrbi-text {
    font-size: 14px;
    white-space: nowrap;
}

.kodelisting-room-booking {
    background-color: var(--theme-color-white);
    position: relative;
}

.kodelisting-room-booking .kodelisting-room-booking-wrap {
    background: transparent;
    border-radius: 8px;
    border: 1px solid var(--theme-color1);
    padding: 40px 25px 30px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.kodelisting-room-booking .room-booking-title {
    margin-bottom: 32px;
}

.kodelisting-room-booking .room-booking-title .title {
    font-size: 24px;
    font-size: 1.875rem;
    line-height: 1.2;
    margin: 0;
}

.kodelisting-room-booking .room-booking-title .base-price {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
}

.kodelisting-room-booking .reservation-form {
    /* Hide default checkbox */
    /* Checked style */
}

.kodelisting-room-booking .reservation-form .checkbox-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 400px;
    padding: 10px 0;
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}

.kodelisting-room-booking .reservation-form .custom-checkbox input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(var(--theme-color1-rgb), 0.3);
    background-color: var(--theme-color-white);
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
}

.kodelisting-room-booking .reservation-form .custom-checkbox input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    background-color: var(--theme-color1);
    /* brownish color */
}

.kodelisting-room-booking .reservation-form .checkbox-label {
    color: var(--text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.kodelisting-room-booking .reservation-form .checkbox-price {
    color: var(--text-color);
    font-size: 14px;
}

.kodelisting-room-booking .reservation-form .total-base-price .summary {
    padding: 15px 0;
}

.kodelisting-room-booking .reservation-form .total-base-price .price-content {
    color: var(--text-color);
    border-bottom: 1px dashed rgba(var(--theme-color-black-rgb), 0.1);
    border-top: 1px dashed rgba(var(--theme-color-black-rgb), 0.1);
    padding-bottom: 5px;
    padding-top: 8px;
}

.kodelisting-room-booking .reservation-form .total-base-price .price-content .label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
}

.kodelisting-room-booking .reservation-form .total-base-price .price-content i {
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 16px;
    font-style: normal;
    line-height: 16px;
    margin-left: 5px;
    text-align: center;
    width: 16px;
}

.kodelisting-room-booking .reservation-form .total-base-price .price-content .amount {
    font-size: 14px;
}

.kodelisting-room-booking .reservation-form .total-base-price .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    font-size: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.kodelisting-room-booking .reservation-form .btn-style-one {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
	display: inline-block
}

.kodelisting-room-booking .reservation-form .btn-style-one:before {
    background: var(--theme-color-black);
}

.kodelisting-room-booking .form-select,
.kodelisting-room-booking .form-control {
    background: none;
    border-color: rgba(var(--theme-color1-rgb), 0.3);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    color: var(--text-color);
    font-size: 0.875rem;
    height: 48px;
    line-height: 35px;
}

.kodelisting-room-booking .form-select::-webkit-input-placeholder,
.kodelisting-room-booking .form-control::-webkit-input-placeholder {
    font-size: 14px;
}

.kodelisting-room-booking .form-select::-moz-placeholder,
.kodelisting-room-booking .form-control::-moz-placeholder {
    font-size: 14px;
}

.kodelisting-room-booking .form-select:-ms-input-placeholder,
.kodelisting-room-booking .form-control:-ms-input-placeholder {
    font-size: 14px;
}

.kodelisting-room-booking .form-select::-ms-input-placeholder,
.kodelisting-room-booking .form-control::-ms-input-placeholder {
    font-size: 14px;
}

.kodelisting-room-booking .form-select::placeholder,
.kodelisting-room-booking .form-control::placeholder {
    font-size: 14px;
}

.kodelisting-room-booking .form-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.kodelisting-room-booking .nice-select::before {
    top: 6px;
}


/*** 

====================================================================
Sidebar
====================================================================

***/

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    margin-bottom: 5px;
    font-weight: var(--h4-font-weight);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 40px 15px 30px;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__post .sidebar__title {
    margin-left: 20px;
}

.sidebar__post .sidebar__post-list {
    margin: 0;
}

.sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post .sidebar__post-list li:hover {
    background-color: #ffffff;
    border-radius: 10px;
}

.sidebar__post .sidebar__post-list li+li {
    margin-top: 11px;
}

.sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    -webkit-box-flex: 100px;
    -ms-flex: 100px 0 0px;
    flex: 100px 0 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-image>img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: #0e2207;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: #757873 !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--theme-color1);
    font-size: 14px;
    padding-right: 3px;
}

.f-right {
    float: right;
}

.subHead {
    color: #bc915d;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}

.section-max-width {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.home1-gallery-section {
    padding: 100px 0;
}

.home1-gallery-section .mb-40 {
    margin-bottom: 40px;
}

.home1-gallery-section .home1-gallary-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.home1-gallery-section .home1-gallary-img-wrap a {
    display: block;
}

.home1-gallery-section .home1-gallary-img-wrap .rectangle-img {
    max-width: 350px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s;
}

.home1-gallery-section .home1-gallary-img-wrap .squre-img {
    max-width: 270px;
    width: 100%;
}

.home1-gallery-section .home1-gallary-img-wrap .squre-big-img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
}

.home1-gallery-section .grp-img {
    display: flex;
    justify-content: space-between;
}

.home1-gallery-section .home1-gallary-img-wrap .squre-small-img {
    max-width: 180px;
    width: 100%;
}

.home1-gallery-section .mb-30 {
    margin-bottom: 30px;
}

.home1-gallery-section .home1-gallary-img-wrap .medium-squre-img {
    max-width: 240px;
    width: 100%;
}

.banner-area .common-heading {
    -webkit-text-fill-color: #fff;
    line-height: 1.71;
}

header.main-header.header-style-one.fixed-header {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.destination-wrapper p {
    color: #fff;
}

.upper-inner ul.social-icon {
    display: flex;
}

.upper-inner ul.social-icon li {
    margin: 0 10px;
}

.upper-inner ul.social-icon li a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    width: 35px;
    display: flex;
    height: 35px;
    align-items: center;
    justify-content: center;
}

.about-area-two {
    background-color: #f4f1e0;
}

ul.highlightList li {
    margin-bottom: 7px;
}

ul.highlightList li span {
    margin-right: 10px;
}

.room-facility-list .list-one {
    margin-bottom: 15px;
}

.mobile-fixed-btn {
    display: none
}


/*
.about-bg-shape {
    display: none;
}
*/


/*gallerymain css start*/

.gallerymain .tab-content .tab-pane .grid-row,
.grid-row {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.gallerymain .card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333;
    border-radius: 2px;
}

.gallerymain .card-image {
    background: #fff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
}

.gallerymain .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .gallerymain .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

.inner_menu {
    background-color: #bc915d;
}

.header-style-one .inner_menu .header-menu {
    padding: 8px 3px;
    width: 100%;
}

.header-style-one .inner_menu .main-box {
    justify-content: center
}

.header-style-one .inner_menu .main-menu {
    display: flex;
    align-items: center
}

.header-style-one .inner_menu .main-box .nav-outer .nav .navigation li a {
    color: #fff
}

nav.nav.innermain-menu {
    padding: 10px 0;
}

nav.nav.innermain-menu ul.navigation li a {
    color: #fff;
    font-family: var(--heading-font-family);
    text-transform: uppercase;
    font-size: 15px;
}

.inner_menu nav.nav.innermain-menu .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.inner-nav-toggler {
    display: none;
}

@media(min-width: 992px) {
    .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;
        display: block
    }
}

.hotel-area {
    background-color: #f4f1e0;
    padding: 80px 0
}

.hotel-area .suite-wrapper {
    min-width: 450px;
    background-color: #fff;
    padding: 40px;
    position: relative;
    right: 0;
    left: -90px;
}

.hotel-area .suite-slide-wrapper .arrow-box {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hotel-area .suite-slide-wrapper .arrow-box button {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    background: var(--theme-color-white);
    margin: 0 5px 0;
    border: 1px solid #ddd;
}

.hotel-area .suite-slide-wrapper .arrow-box button:hover {
    background: #bc915d;
    color: var(--theme-color-white);
    border: 1px solid #ddd;
}

.main_page_dine {
    text-align: center;
    margin-bottom: 40px;
}

.main_page_dine .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    margin: 25px 0 0 0;
}

.main_page_dine .nav-tabs .nav-link {
    color: #bc915d;
    border: 2px solid #bc915d;
    border-radius: 30px;
    padding: 8px 30px;
    font-size: 17px;
    margin: 0 10px;
    transition: all .5s ease;
}

.main_page_dine .nav-tabs .nav-link:hover,
.main_page_dine .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #bc915d;
}

.exp-section {
    padding: 100px 0;
}

ul.exp_list,
ul.abt-list {
    margin-bottom: 30px;
    padding-left: 0px;
}

ul.exp_list li i,
ul.abt-list li i {
    color: #bc915d;
    margin-right: 7px;
}

.home1-gallery-section nav {
    display: flex;
    justify-content: center;
    margin: 0 0 30px 0;
    border: none;
}

.home1-gallery-section nav .nav-tabs {
    border-bottom: none
}

.home1-gallery-section nav .nav-tabs .nav-link {
    border-radius: 0px;
    padding: 10px 35px;
    border: 1px solid #bc915d;
    margin: 0px;
    color: #bc915d;
}

.home1-gallery-section nav .nav-tabs .nav-link.active {
    background-color: #bc915d;
    color: #fff;
}

.bottom_text {
    text-align: center;
}

.explore-section-resort {
    background-color: #f4f1e0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.explore-section-resort {
    position: relative;
}

.explore-section-resort .info_box {
    padding: 100px;
}

.explore-section-resort .outer-box .title {
    margin-bottom: 30px;
}

.explore-section-resort .outer-box .btn-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.explore-section-resort .outer-box .btn-wrp a:first-child {
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
}

.explore-section-resort .outer-box .btn-wrp .download-btn {
    padding: 12px 34px;
    background-color: var(--theme-color-white);
    color: var(--headings-color);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
}

.explore-section-resort .outer-box .sec-line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.explore-section-resort p {
    max-width: 450px;
    margin-bottom: 25px;
}

.header-logo img,
.footer-logo img {
    max-width: 280px;
}

.service-block-resort .icon {
    font-size: 50px;
    color: var(--headings-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-resort .icon i {
    display: inline-block;
    -webkit-transition: all 700ms;
    transition: all 700ms;
}

.service-block-resort .title {
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 28px;
}

.service-block-resort .text {
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-resort .more-btn {
    padding: 10px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--theme-color2);
    font-size: 16px;
    border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
    line-height: 16px;
    border-radius: 50px;
    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;
    padding-left: 30px;
    margin-top: 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-resort .more-btn i {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color2);
    color: var(--theme-color-white);
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-resort .more-btn:hover i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.service-block-resort {
    padding: 40px 20px;
    border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
}

.service-block-resort::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(2, 2, 20, 0.502);
    content: "";
    z-index: -1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-resort .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-resort .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 3s;
    transition: all 3s;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-block-resort:hover .icon {
    color: var(--theme-color-white);
}

.service-block-resort:hover .icon i {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}

.service-block-resort:hover .title {
    color: var(--theme-color-white);
}

.service-block-resort:hover .text {
    color: rgba(var(--theme-color-white-rgb), 0.7);
}

.service-block-resort:hover .more-btn {
    background-color: var(--theme-color-white);
}

.service-block-resort:hover .image {
    opacity: 1;
    visibility: visible;
}

.service-block-resort:hover .image img {
    -webkit-transform: scale(1.3) translateX(-30px);
    transform: scale(1.3) translateX(-30px);
}

.service-block-resort:hover::after {
    right: unset;
    left: 0;
    width: 100%;
}

.top-text {
    text-align: center;
    margin-bottom: 30px;
}

ul.list-unstyled.contact-details__info.contact_page_list li {
    display: block;
}

ul.list-unstyled.contact-details__info.contact_page_list li h4 {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

ul.list-unstyled.contact-details__info.contact_page_list li h4 span {
    font-size: 15px;
    color: #fff;
    background-color: #bc915d;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
}

ul.list-unstyled.contact-details__info.contact_page_list li .text {
    display: flex;
    align-items: center;
    gap: 0 15px;
    flex-wrap: wrap;
}

.form_box {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 30px;
}

ul.list-unstyled.contact-details__info.contact_page_list li a {
    margin-bottom: 0
}

.widgets-box hr {
    color: #fff
}

.banner-arrow-box.banner-arrow-box-room button.slider-next {
    top: 50%;
    position: absolute;
}

.banner-arrow-box.banner-arrow-box-room button.slider-prev {
    top: 50%;
    position: absolute;
}

.banner-arrow-box.banner-arrow-box-room button {
    visibility: visible;
    opacity: 1
}