@charset "UTF-8";
:root {
  --primary-color: #DCA546;
  --secondary-color: #FDF8F1;
  --three-color: #fceebc;
  --four-color: #fdf8f1;
  --quote-color: #F7F7F6;
  --white: #FFFFFF;
  --success: #7ed321;
  --text-color: #5F615E;
  --black: #000000;
  --place-holder: #8a8c8a;
  --icon-color: #acafab;
  --stoke-color: #ededed;
  --input-color: #e4e4e4;
  --note-color: #A8ABAE;
  --terms-color: #5c5e61;
  --star-color: #F1913D;
  --border-header: #FFFFFF1A;
  --border-icon: #5F6C5A33;
  --heading-color: #24272C;
  --heart-color: #FF4F23;
  --background-black: #171816;
  --background-dark: #FFFFFF0D;
}

/* --------------------------------------------------------------
   CSS RESET (Eric Meyer’s Reset + HTML5 elements)
   -------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
}

html {
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*============== Body default =================*/
body {
  font-family: "Outfit", sans-serif !important;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0px;
}
body::-webkit-scrollbar-thumb {
  background: var(--three-color);
  border-radius: 999px;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #FF930F, #FFF95B);
  transform: scaleX(1.2);
}
body::-webkit-scrollbar-track {
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1310px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}

.container-2 {
  max-width: 1790px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}

.container-3 {
  max-width: 1740px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}

.container-4 {
  max-width: 850px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}

/* Lists */
ol,
ul {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
}

/* Blockquotes & quotes */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Forms */
textarea {
  height: 160px;
  resize: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  background: none;
  border: none;
  font-size: 100%;
  line-height: inherit;
  vertical-align: baseline;
}

/* Anchor default */
a {
  text-decoration: none !important;
  color: inherit;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
a:hover, a:focus {
  outline: 0;
}

* {
  scroll-behavior: auto !important;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  line-height: normal;
}

select {
  outline: 0;
}

/* Reset search styling */
input[type=search] {
  outline: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

input[type=checkbox],
input[type=radio] {
  overflow: hidden;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  cursor: pointer;
  vertical-align: sub;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea,
select,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Outfit", sans-serif;
  border: 1px solid var(--stoke-color);
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  line-height: 20px;
  border-radius: 16px;
  padding: 14px 20px;
  caret-color: var(--primary-color);
  width: 100%;
  background: var(--white);
  color: var(--place-holder);
  font-weight: 400;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
textarea:hover, textarea:focus,
select:hover,
select:focus,
input[type=text]:hover,
input[type=text]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=datetime]:hover,
input[type=datetime]:focus,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=date]:hover,
input[type=date]:focus,
input[type=month]:hover,
input[type=month]:focus,
input[type=time]:hover,
input[type=time]:focus,
input[type=week]:hover,
input[type=week]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=url]:hover,
input[type=url]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=color]:hover,
input[type=color]:focus {
  border-color: var(--primary-color) !important;
}
textarea.style-2,
select.style-2,
input[type=text].style-2,
input[type=password].style-2,
input[type=datetime].style-2,
input[type=datetime-local].style-2,
input[type=date].style-2,
input[type=month].style-2,
input[type=time].style-2,
input[type=week].style-2,
input[type=number].style-2,
input[type=email].style-2,
input[type=url].style-2,
input[type=search].style-2,
input[type=tel].style-2,
input[type=color].style-2 {
  padding-left: 12px;
  padding-right: 12px;
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: var(--place-holder);
}

::-webkit-input-placeholder {
  color: var(--place-holder);
}

:-moz-placeholder {
  color: var(--place-holder);
}

::-moz-placeholder {
  color: var(--place-holder);
  opacity: 1;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.h6,
h6 {
  text-rendering: optimizeLegibility;
  color: var(--heading-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.h1,
h1 {
  line-height: 48px;
  font-size: 40px;
}

.h2,
h2 {
  line-height: 38px;
  font-size: 30px;
}

.h3,
h3 {
  line-height: 30px;
  font-size: 24px;
}

.h4,
h4 {
  font-size: 20px;
  line-height: 25px;
}

.h5,
h5 {
  line-height: 23px;
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
  line-height: 30px;
}

.text-xl-2 {
  font-size: 20px;
  line-height: 24px;
}

.text-xl-3 {
  font-size: 20px;
  line-height: 32px;
}

.text-lg {
  font-size: 18px;
  line-height: 28px;
}

.text-md {
  font-size: 16px;
  line-height: 24px;
}

.text-sm {
  font-size: 14px;
  line-height: 20px;
}

.text-xs {
  font-size: 12px;
  line-height: 18px;
}

.text-xxs {
  font-size: 10px;
  line-height: 14px;
}

.text-caption {
  font-size: 12px;
  line-height: 15.72px;
}

.fs-84 {
  font-size: 84px;
  line-height: 84px;
}

.body-text {
  font-size: 16px;
  line-height: 25.6px;
}

.body-text-2 {
  font-size: 16px;
  line-height: 19.2px;
}

.link {
  color: inherit;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.link:hover {
  color: var(--primary-color) !important;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.fs-7 {
  font-size: 7px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.lh-32px {
  line-height: 32px !important;
}

.mx-15 {
  margin: 0 15px;
}

.flat-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.flat-spacing-3 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.flat-spacing-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.flat-spacing-5 {
  padding-top: 43px;
  padding-bottom: 43px;
}

.flat-spacing-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.flat-spacing-7 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.flat-spacing-8 {
  padding-top: 80px;
  padding-bottom: 60px;
}

.flat-spacing-9 {
  padding-top: 68px;
  padding-bottom: 68px;
}

.flat-spacing-10 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.flat-spacing-11 {
  padding-top: 80px;
  padding-bottom: 127px;
}

.flat-spacing-12 {
  padding-top: 80px;
  padding-bottom: 44px;
}

.flat-spacing-13 {
  padding-top: 64px;
  padding-bottom: 100px;
}

.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}

.flat-spacing-15 {
  padding-top: 176px;
  padding-bottom: 176px;
}

.flat-spacing-16 {
  padding-top: 120px;
  padding-bottom: 80px;
}

.flat-spacing-17 {
  padding-top: 80px;
  padding-bottom: 120px;
}

.flat-spacing-18 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.flat-spacing-19 {
  padding-top: 87px;
  padding-bottom: 143px;
}

.flat-spacing-20 {
  padding-top: 86px;
  padding-bottom: 86px;
}

.flat-spacing-21 {
  padding-top: 116px;
  padding-bottom: 116px;
}

.flat-spacing-22 {
  padding-top: 182px;
  padding-bottom: 120px;
}

.flat-spacing-23 {
  padding-top: 136px;
  padding-bottom: 136px;
}

.flat-spacing-24 {
  padding-top: 64px;
  padding-bottom: 80px;
}

.flat-spacing-25 {
  padding-top: 80px;
  padding-bottom: 100px;
}

.flat-spacing-26 {
  padding-top: 126px;
  padding-bottom: 80px;
}

.flat-spacing-27 {
  padding-top: 145px;
  padding-bottom: 120px;
}

.flat-spacing-28 {
  padding-top: 120px;
  padding-bottom: 80px;
}

.flat-spacing-29 {
  padding-top: 80px;
  padding-bottom: 94px;
}

.flat-spacing-30 {
  padding-top: 100px;
  padding-bottom: 58px;
}

.flat-spacing-31 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.flat-spacing-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.flat-spacing-33 {
  padding-top: 120px;
  padding-bottom: 114px;
}

.flat-spacing-34 {
  padding-top: 40px;
  padding-bottom: 124px;
}

.flat-spacing-35 {
  padding-top: 120px;
  padding-bottom: 103px;
}

.flat-spacing-36 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.flat-spacing-37 {
  padding-top: 42px;
  padding-bottom: 42px;
}

/* Padding Utilities */
.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px !important;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.p-8 {
  padding: 32px;
}

.p-12 {
  padding: 48px;
}

.p-16 {
  padding: 64px;
}

/* Padding X (horizontal) */
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-12 {
  padding-left: 48px;
  padding-right: 48px;
}

.px-16 {
  padding-left: 64px;
  padding-right: 64px;
}

/* Padding Y (vertical) */
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-12 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Padding Top */
.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 4px;
}

.pt-2 {
  padding-top: 8px;
}

.pt-3 {
  padding-top: 12px;
}

.pt-4 {
  padding-top: 16px;
}

.pt-5 {
  padding-top: 20px;
}

.pt-6 {
  padding-top: 24px;
}

.pt-8 {
  padding-top: 32px;
}

.pt-10 {
  padding-top: 40px;
}

.pt-12 {
  padding-top: 48px;
}

.pt-14 {
  padding-top: 56px;
}

.pt-16 {
  padding-top: 64px;
}

/* Padding Right */
.pr-0 {
  padding-right: 0px;
}

.pr-1 {
  padding-right: 4px;
}

.pr-2 {
  padding-right: 8px;
}

.pr-3 {
  padding-right: 12px;
}

.pr-4 {
  padding-right: 16px;
}

.pr-5 {
  padding-right: 20px;
}

.pr-6 {
  padding-right: 24px;
}

.pr-8 {
  padding-right: 32px;
}

.pr-12 {
  padding-right: 48px;
}

.pr-16 {
  padding-right: 64px;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 4px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pb-8 {
  padding-bottom: 32px;
}

.pb-12 {
  padding-bottom: 48px;
}

.pb-14 {
  padding-bottom: 56px;
}

.pb-16 {
  padding-bottom: 64px;
}

/* Padding Left */
.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 4px;
}

.pl-2 {
  padding-left: 8px;
}

.pl-3 {
  padding-left: 12px;
}

.pl-4 {
  padding-left: 16px;
}

.pl-5 {
  padding-left: 20px;
}

.pl-6 {
  padding-left: 24px;
}

.pl-8 {
  padding-left: 32px;
}

.pl-12 {
  padding-left: 48px;
}

.pl-16 {
  padding-left: 64px;
}

/* Margin Utilities */
.m-0 {
  margin: 0px;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-5 {
  margin: 20px;
}

.m-6 {
  margin: 24px;
}

.m-8 {
  margin: 32px;
}

.m-12 {
  margin: 48px;
}

.m-16 {
  margin: 64px;
}

.m-auto {
  margin: auto;
}

/* Margin X (horizontal) */
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-1 {
  margin-left: 4px;
  margin-right: 4px;
}

.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.mx-3 {
  margin-left: 12px;
  margin-right: 12px;
}

.mx-4 {
  margin-left: 16px;
  margin-right: 16px;
}

.mx-5 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-6 {
  margin-left: 24px;
  margin-right: 24px;
}

.mx-8 {
  margin-left: 32px;
  margin-right: 32px;
}

.mx-12 {
  margin-left: 48px;
  margin-right: 48px;
}

.mx-16 {
  margin-left: 64px;
  margin-right: 64px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Margin Y (vertical) */
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-5 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.my-12 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.my-16 {
  margin-top: 64px;
  margin-bottom: 64px;
}

/* Margin Top */
.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-10 {
  margin-top: 40px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mt_114 {
  margin-top: 114px;
}

.mt_-150 {
  margin-top: -150px;
}

/* Margin Right */
.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 4px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.mr-5 {
  margin-right: 20px;
}

.mr-6 {
  margin-right: 24px;
}

.mr-8 {
  margin-right: 32px;
}

.mr-12 {
  margin-right: 48px;
}

.mr-16 {
  margin-right: 64px;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-14 {
  margin-bottom: 56px;
}

.mb-16 {
  margin-bottom: 64px;
}

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

/* Margin Left */
.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 4px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-3 {
  margin-left: 12px;
}

.ml-4 {
  margin-left: 16px;
}

.ml-5 {
  margin-left: 20px;
}

.ml-6 {
  margin-left: 24px;
}

.ml-8 {
  margin-left: 32px;
}

.ml-12 {
  margin-left: 48px;
}

.ml-16 {
  margin-left: 64px;
}

/* Gap  */
.gap-0 {
  gap: 0px;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px !important;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px !important;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-10 {
  gap: 40px !important;
}

.gap-12 {
  gap: 48px !important;
}

.gap-16 {
  gap: 64px;
}

.gap-30 {
  gap: 30px !important;
}

.gap-list {
  gap: 16px 30px !important;
}

.bb-1 {
  border-bottom: 1px solid var(--stoke-color);
}

.single-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.multi-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === All corners === */
.round-none {
  border-radius: 0;
}

.round-xs {
  border-radius: 2px;
}

.round-sm {
  border-radius: 4px;
}

.round-md {
  border-radius: 8px;
}

.round-lg {
  border-radius: 12px;
}

.round-xl {
  border-radius: 16px;
}

.round-2xl {
  border-radius: 24px;
}

.round-3xl {
  border-radius: 32px;
}

.round-full {
  border-radius: 9999px;
}

/* === Specific corners === */
.round-t-sm {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.round-t-md {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.round-t-lg {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.round-b-sm {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.round-b-md {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.round-b-lg {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.round-l-sm {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.round-l-md {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.round-l-lg {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.round-r-sm {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.round-r-md {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.round-r-lg {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

.d-none {
  display: none;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-left {
  display: flex;
  align-items: center;
  justify-content: left;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.item-center {
  align-items: center;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.text-capitalize {
  text-transform: capitalize;
}

.row {
  margin-top: 0 !important;
  margin-right: -20px !important;
  margin-left: -20px !important;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.shadow-none {
  box-shadow: none;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-hover:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.shadow-dropdown {
  box-shadow: 0px 4px 26px rgba(66, 71, 76, 0.08);
}

.shadow-form {
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.07);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.center-xy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.w-50 {
  width: 50%;
}

.h-50 {
  height: 50%;
}

.max-w-screen {
  max-width: 100vw;
}

.max-h-screen {
  max-height: 100vh;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.text-white {
  color: var(--white);
}

.text-note {
  color: var(--note-color);
}

.text-black {
  color: var(--heading-color) !important;
}

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

.text_primary {
  color: var(--primary-color) !important;
}

.transition {
  transition: all 0.3s ease;
}

.transition-fast {
  transition: all 0.15s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
}

.rotate-hover:hover {
  transform: rotate(3deg);
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.z-0 {
  z-index: 0;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-auto {
  z-index: auto;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-21-9 {
  aspect-ratio: 21/9;
}

.aspect-2-3 {
  aspect-ratio: 2/3;
}

.aspect-3-2 {
  aspect-ratio: 3/2;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-9-16 {
  aspect-ratio: 9/16;
}

.aspect-1-2 {
  aspect-ratio: 1/2;
}

.aspect-5-4 {
  aspect-ratio: 5/4;
}

.aspect-5-3 {
  aspect-ratio: 5/3;
}

.aspect-8-5 {
  aspect-ratio: 8/5;
}

.aspect-2-1 {
  aspect-ratio: 2/1;
}

.aspect-3-1 {
  aspect-ratio: 3/1;
}

.aspect-7-5 {
  aspect-ratio: 7/5;
}

.aspect-9-8 {
  aspect-ratio: 9/8;
}

.title {
  font-size: 70px;
  line-height: 120%;
  color: var(--heading-color);
}

.subtitle {
  color: var(--text-color);
  line-height: 140%;
  font-size: 16px;
  font-weight: 400;
}

.bg-transparent {
  background-color: transparent !important;
}

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

.cus-ovl-1 {
  clip-path: inset(0 -66.67% 0 -66.67%);
  overflow: visible;
}
.cus-ovl-1 .swiper-slide-active {
  opacity: 1;
}
.cus-ovl-1 .swiper-slide-next,
.cus-ovl-1 .swiper-slide-prev {
  opacity: 0.7;
}

.fancybox__container .fancybox__content,
.fancybox__container .fancybox-image {
  aspect-ratio: 16/9 !important;
  width: 1226.67px !important;
  height: 690px !important;
  object-fit: cover;
}

.border-bottom {
  border-bottom: 1px solid var(--stoke-color);
}

.border-top {
  border-top: 1px solid var(--stoke-color);
}

.mobile-only {
  display: none;
}

.slider-layout-right {
  width: calc(100vw - (100vw - 1310px) / 2 - 1px);
  margin-right: unset;
  max-width: 100%;
  margin-left: auto;
  padding: 0 15px;
}
.slider-layout-right .swiper:not(.tf-sw-right) {
  margin-right: -15px;
}

.avatar.round {
  border-radius: 50%;
  overflow: hidden;
}
.avatar img {
  border-radius: 50% !important;
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.avt-34 {
  width: 34px;
  min-width: 34px;
  height: 34px;
}

.avt-40 {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.avt-56 {
  width: 56px;
  min-width: 56px;
  height: 56px;
}

.avt-60 {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.avt-90 {
  width: 90px;
  min-width: 90px;
  height: 90px;
}

.avt-100 {
  width: 100px;
  min-width: 100px;
  height: 100px;
}

.avt-status {
  position: relative;
}
.avt-status img {
  border-radius: 50% !important;
}
.avt-status .dot {
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: var(--success);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.hover-img .img-style {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  height: 100%;
}
.hover-img .img-style img:not(.icon) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18), filter 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.hover-img:hover img:not(.icon) {
  transform: scale(1.05);
  filter: brightness(60%);
}
.hover-img.not-overlay .img-style::after {
  content: none;
}
.hover-img.not-overlay::after {
  content: none;
}
.hover-img .img-style-2 {
  overflow: hidden;
  border-radius: 10px;
}
.hover-img .img-style-2 .img-hv {
  width: 100%;
  object-fit: cover;
  transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: transform 500ms ease;
}

.hover-img-wrap {
  position: relative;
}
.hover-img-wrap::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgb(0, 0, 0);
  transition: 0.25s;
  z-index: 3;
  opacity: 0.1;
}
.hover-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -100%;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgb(0, 0, 0);
  transition: 0.25s;
  z-index: 3;
  opacity: 0.1;
}
.hover-img-wrap:hover::after {
  bottom: 0;
  transition-delay: 0.25s;
}
.hover-img-wrap:hover::before {
  top: 0;
}

.backtotop {
  position: fixed;
  padding: 0;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backtotop .border-progress {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50%;
  border: 3px solid #DCA546;
  mask-image: conic-gradient(#DCA546 var(--progress-angle, 0deg), transparent 0);
  -webkit-mask-image: conic-gradient(#DCA546 var(--progress-angle, 0deg), transparent 0);
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.backtotop.show {
  opacity: 1;
  visibility: visible;
}
.backtotop .icon {
  font-size: 16px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tf-btn {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  border-radius: 14px;
  line-height: 22.6px;
  padding: 16px 46px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  min-width: 130px;
  background-color: var(--white);
  text-decoration: none;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  flex-shrink: 0;
}
.tf-btn svg path,
.tf-btn img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tf-btn svg {
  width: 20px;
  flex-shrink: 0;
}
.tf-btn .icon {
  font-size: 20px;
  flex-shrink: 0;
}
.tf-btn.hover-1:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.tf-btn.hover-1:hover img {
  filter: brightness(0) invert(1);
}
.tf-btn.hover-2:hover {
  color: var(--white);
  background-color: transparent;
}
.tf-btn.hover-2:hover img {
  filter: brightness(0) invert(1);
}
.tf-btn.primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.tf-btn.primary.hover-1:hover {
  color: var(--primary-color);
  background-color: var(--white);
}
.tf-btn.primary.hover-1:hover .icon {
  color: var(--primary-color);
}
.tf-btn.primary.hover-1:hover img {
  filter: brightness(0) invert(1);
}
.tf-btn.primary.hover-2:hover {
  color: var(--primary-color);
  background-color: transparent;
}
.tf-btn.primary.hover-2:hover .icon {
  color: var(--primary-color);
}
.tf-btn.primary.hover-2:hover img {
  filter: brightness(0) invert(1);
}
.tf-btn.primary .icon {
  color: var(--white);
}
.tf-btn.transparent {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
  color: var(--white);
}
.tf-btn.transparent img {
  filter: brightness(0) invert(1);
}
.tf-btn.transparent:hover {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.tf-btn.transparent:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(9%) saturate(5115%) hue-rotate(321deg) brightness(90%) contrast(90%);
}
.tf-btn.size-1 {
  min-width: 200px;
  padding: 16px 56px;
}

.hover-btn-view:hover .btn-view.style-1 .icon {
  animation: 0.3s link-icon linear;
}
.hover-btn-view:hover .btn-view.style-1 .text {
  color: var(--black);
}
.hover-btn-view:hover .btn-view.style-1 .text::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-view .text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--black);
  position: relative;
}
.btn-view .text::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
}
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-view .icon {
  color: var(--primary-color);
  font-size: 16px;
}
.btn-view:hover .icon {
  color: var(--primary-color);
  animation: 0.3s link-icon linear;
}
.btn-view.style-1 .text::before {
  width: 0;
  left: auto;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background-color: var(--black);
}

.btn-line {
  gap: 8px;
  border: 1px solid var(--primary-color);
  background-color: var(--white);
}
.btn-line:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-line:hover svg path {
  stroke: var(--white);
}
.btn-line:hover .icon {
  color: var(--white);
}
.btn-line .icon {
  color: var(--black);
  font-size: 20px;
}

.tf-sendEmail p {
  color: var(--place-holder);
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  margin-bottom: 15px;
}
.tf-sendEmail .form-sub {
  position: relative;
  margin-bottom: 10px;
}
.tf-sendEmail .form-sub input[type=email] {
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  line-height: 26px;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.tf-sendEmail .form-sub input[type=email]::placeholder {
  color: var(--place-holder);
}
.tf-sendEmail .form-sub button {
  color: var(--place-holder);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  padding: 0;
  background: transparent;
}
.tf-sendEmail .form-sub button:hover {
  color: var(--primary-color);
  background: transparent;
}
.tf-sendEmail .terms {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: var(--terms-color);
}
.tf-sendEmail .terms input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  visibility: hidden;
  margin-right: 10px;
}
.tf-sendEmail .terms input[type=checkbox]::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: block;
  border-radius: 5px;
  opacity: 1;
  z-index: 5;
  visibility: visible;
}
.tf-sendEmail .terms input[type=checkbox]::after {
  content: "";
  height: 6px;
  width: 11px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(--55deg);
  display: block;
  opacity: 0;
  z-index: 5;
  visibility: hidden;
  position: absolute;
  left: 5px;
  top: 6px;
}
.tf-sendEmail .terms input[type=checkbox]:checked::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.tf-sendEmail .terms input[type=checkbox]:checked::after {
  opacity: 1;
  visibility: visible;
}

.tab-content.pos-1 {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  z-index: 10;
}
.tab-content .form-s1 {
  position: relative;
  width: 100%;
}
.tab-content .form-search.style-1 {
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0px 4px 26px 0px rgba(66, 71, 76, 0.0784313725);
  gap: 48px;
}
.tab-content .form-search.style-2 {
  gap: 12px;
}

.form-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
  z-index: 1;
}
.form-search.bg-white {
  background: var(--white);
}
.form-search.bg-dark {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.form-search .inner-group {
  flex-wrap: nowrap;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.form-search .inner-group.inner-1 {
  gap: 12px;
}
.form-search .inner-group .form-group {
  padding: 0 24px;
  border-right: 1px solid var(--stoke-color);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
}
.form-search .inner-group .form-group.fg-1 {
  background-color: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--stoke-color);
  box-shadow: 0 0 26px 4px rgba(66, 71, 76, 0.08);
}
.form-search .inner-group .form-group.fg-1:first-child {
  padding-left: 24px;
}
.form-search .inner-group .form-group.fg-1:hover {
  border: 1px solid var(--primary-color);
}
.form-search .inner-group .form-group label {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--heading-color);
  white-space: nowrap;
}
.form-search .inner-group .form-group input {
  padding: 0;
  border: none;
  border-radius: 0px;
  font-size: 14px;
  line-height: 140%;
  min-width: 80px;
  width: 100%;
}
.form-search .inner-group .form-group input:hover {
  border-color: var(--primary-color);
}
.form-search .inner-group .form-group .group-select .select-items .current {
  font-weight: 400;
  line-height: 140%;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  color: var(--text-color);
  position: relative;
  cursor: pointer;
  gap: 10px;
  padding: 0 6px 0 0;
}
.form-search .inner-group .form-group .group-select .select-items .current .icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.form-search .inner-group .form-group .group-select .select-items .current img {
  width: 16px;
  height: 16px;
}
.form-search .inner-group .form-group .group-select .select-items .current.active .icon {
  transform: rotate(180deg);
}
.form-search .inner-group .form-group .group-select .select-items .list {
  background-color: var(--white);
  border-radius: 16px;
  box-sizing: border-box;
  opacity: 0;
  box-shadow: 0px 4px 26px 0px rgba(66, 71, 76, 0.08);
  pointer-events: none;
  position: absolute;
  top: calc(100% + 36px);
  left: 0px;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9999;
  width: 100%;
  min-width: 250px;
  font-size: 16px;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.form-search .inner-group .form-group .group-select .select-items .list.w-1 {
  top: calc(100% + 18px);
}
.form-search .inner-group .form-group .group-select .select-items .list::before {
  content: "";
  position: absolute;
  border-top: 15px solid var(--white);
  border-right: 15px solid transparent;
  transform: rotate(45deg);
  bottom: calc(100% - 9px);
  left: 20px;
}
.form-search .inner-group .form-group .group-select .select-items .list.active {
  opacity: 1;
  pointer-events: auto;
  padding: 12px 0 !important;
}
.form-search .inner-group .form-group .group-select .select-items .list:has(.datepicker-header) {
  min-width: 300px;
  width: auto;
}
.form-search .inner-group .form-group .group-select .select-items .list .option {
  list-style: none;
}
.form-search .inner-group .form-group .group-select .select-items .list .option .selected {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}
.form-search .inner-group .form-group .group-select .select-items .list .option a {
  padding: 24px;
  display: flex;
  gap: 8px;
  transition: background-color 0.2s ease;
  color: var(--heading-color);
}
.form-search .inner-group .form-group .group-select .select-items .list .option a:hover {
  background-color: var(--primary-color);
}
.form-search .inner-group .form-group .group-select .select-items .list .option a:hover .content .place,
.form-search .inner-group .form-group .group-select .select-items .list .option a:hover .content .country,
.form-search .inner-group .form-group .group-select .select-items .list .option a:hover .content .type {
  color: var(--white);
}
.form-search .inner-group .form-group .group-select .select-items .list .option a:hover img {
  filter: brightness(0) invert(1);
}
.form-search .inner-group .form-group .group-select .select-items .list .option a .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.form-search .inner-group .form-group .group-select .select-items .list .option a .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-search .inner-group .form-group .group-select .select-items .list .option a .content .place,
.form-search .inner-group .form-group .group-select .select-items .list .option a .content .type {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--heading-color);
  transition: color 0.2s ease;
  text-align: left;
}
.form-search .inner-group .form-group .group-select .select-items .list .option a .content .country {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-color);
  transition: color 0.2s ease;
}
.form-search .inner-group .form-group:first-child {
  padding-left: 0;
}
.form-search .box-btn-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: auto;
}
.form-search .box-btn-filter .tf-btn {
  cursor: pointer;
  min-width: unset;
  padding: 34px 36px;
}
.form-search .box-btn-filter .tf-btn img {
  width: 24px;
  height: 24px;
}
.form-search .box-btn-filter .tf-btn .icon {
  font-size: 24px;
}
.form-search .box-btn-filter button.tf-btn {
  padding: 34px 51px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.guest-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 8px 24px;
}
.guest-item.style-01 {
  padding: 4px 0;
}
.guest-item span {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
  line-height: 140%;
}
.guest-item .counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--stoke-color);
  gap: 10px;
  border-radius: 16px;
}
.guest-item .counter button {
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guest-item .counter button:hover {
  opacity: 0.7;
  background: var(--three-color);
}
.guest-item .counter input {
  min-width: 24px !important;
  width: 24px !important;
  height: 24px;
  text-align: center;
  border: none;
  font-size: 16px;
  color: var(--text-color);
  background: transparent;
}
.guest-item .counter input::-webkit-outer-spin-button, .guest-item .counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.guest-item .counter input[type=number] {
  -moz-appearance: textfield;
}

.advanced-form {
  position: absolute;
  z-index: 100;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  box-shadow: 0px 4px 26px 0px rgba(66, 71, 76, 0.08);
  top: calc(100% + 10px);
  visibility: hidden;
  left: 0;
}
.advanced-form::before {
  content: "";
  position: absolute;
  border-top: 15px solid var(--white);
  border-right: 15px solid transparent;
  transform: rotate(45deg);
  bottom: calc(100% - 9px);
  left: 56.2%;
}
.advanced-form.left-1::before {
  left: 82.5%;
}
.advanced-form.show {
  display: unset;
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}
.advanced-form .group-checkbox {
  margin-top: 20px;
}
.advanced-form .group-checkbox .title-checkbox {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-align: left;
}
.advanced-form .group-checkbox .group-amentities {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.advanced-form .group-checkbox .group-amentities .box-amentities {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}
.advanced-form .group-checkbox .group-amentities .box-amentities .amenities-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.advanced-form .group-checkbox .group-amentities .box-amentities .amenities-item .text-amenities {
  color: var(--text-color);
  cursor: pointer;
  font-weight: 400;
  line-height: 140%;
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 10px 10px 0 10px;
}
.datepicker-header .datepicker-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}
.datepicker-header button {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 20px;
  color: var(--icon-color);
}
.datepicker-header button:hover {
  background: #f5f5f5;
}
.datepicker-header button .icon {
  font-size: 16px;
}

.datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 8px;
  padding: 0 10px;
}
.datepicker-weekdays .datepicker-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  padding: 8px 0;
}
.datepicker-weekdays .datepicker-weekday.weekend {
  color: var(--primary-color);
}

.datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 0 10px;
}
.datepicker-days .datepicker-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 13px;
  color: var(--text-color);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  min-height: 36px;
}
.datepicker-days .datepicker-day.weekend {
  color: var(--primary-color);
}
.datepicker-days .datepicker-day.today, .datepicker-days .datepicker-day.selected {
  background: var(--primary-color);
  color: var(--white);
}
.datepicker-days .datepicker-day.today:hover, .datepicker-days .datepicker-day.selected:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.datepicker-days .datepicker-day.other-month {
  color: var(--input-color);
}
.datepicker-days .datepicker-day.disabled {
  color: var(--note-color);
  cursor: not-allowed;
}
.datepicker-days .datepicker-day .datepicker-day.other-month:hover {
  background: #f9f9f9;
}
.datepicker-days .datepicker-day:hover:not(.disabled):not(.selected) {
  background: #f5f5f5;
}

.group-price {
  margin-bottom: 30px;
}
.group-price .box-title-price {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 10px;
}
.group-price .box-title-price .title-price {
  font-weight: 600;
}
.group-price .box-title-price .caption-price {
  font-weight: 600;
}

.tf-checkbox {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid var(--input-color);
  border-radius: 6px !important;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-checkbox:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  position: relative;
}
.tf-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tf-radio {
  position: relative;
  border: 1px solid var(--input-color);
  border-radius: 50% !important;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 16px !important;
  width: 16px !important;
  -webkit-appearance: none;
  padding: 0 !important;
}
.tf-radio:checked {
  border-color: var(--primary-color) !important;
}
.tf-radio:checked::before {
  opacity: 1;
}
.tf-radio::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  opacity: 0;
}

.sidebar-filter .filter-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sidebar-filter h5 {
  font-weight: 500;
}
.sidebar-filter .widget-item:not(:last-child) {
  margin-bottom: 24px;
}
.sidebar-filter .list-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sidebar-filter .widget-people-tour input {
  width: 60px !important;
}
.sidebar-filter .widget-people-tour .people-item {
  padding: 16px 18px;
  border: 1px solid var(--stoke-color);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border-radius: 16px;
  flex-direction: column;
}
.sidebar-filter .widget-people-tour .people-item .people-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sidebar-filter .widget-people-tour .people-item .people-top .icon {
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-filter .widget-people-tour .counter {
  padding: 10px;
}

.flat-contact {
  position: relative;
  z-index: 10;
  margin-top: -222px;
}

.wg-form-contact {
  padding: 42px;
  border: 1px solid #ECECEC;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  background-color: var(--white);
}
.wg-form-contact .tf-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}
.wg-form-contact .form-group {
  display: flex;
  flex-direction: column;
}
.wg-form-contact .form-group label {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.wg-form-contact .full {
  grid-column: span 2;
}
.wg-form-contact .tf-btn {
  padding: 10px;
}
.wg-form-contact .payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wg-form-contact .payment-method-list .payment-item {
  border: 1px solid var(--stoke-color);
  border-radius: 12px;
  padding: 8px;
  transition: all 0.2s ease;
}
.wg-form-contact .payment-method-list .payment-item:has(input:checked) {
  border-color: var(--primary-color);
}
.wg-form-contact .payment-method-list .tf-check-payment {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
}
.wg-form-contact .payment-method-list .payment-logo {
  width: 80px;
  aspect-ratio: 2/1;
  object-fit: contain;
}

.discount-input-wrapper {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.discount-input-wrapper .tf-btn {
  min-width: 100px;
  width: 100px;
}

.tf-form-book {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--stoke-color);
  background-color: var(--white);
}
.tf-form-book:not(:last-child) {
  margin-bottom: 40px;
}
.tf-form-book .check-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.tf-form-book .check-box .value {
  margin-left: auto;
}
.tf-form-book .booking-form {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stoke-color);
}
.tf-form-book .tf-booking-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tf-form-book .tf-booking-totals h5 {
  font-weight: 500;
}
.tf-form-book .tf-booking-totals .tf-total-value {
  color: var(--primary-color);
}
.tf-form-book .form-group {
  margin-top: 24px;
}
.tf-form-book .form-group .people-content .guest-item input {
  width: 60px !important;
}
.tf-form-book .form-group .label {
  font-weight: 500;
  margin-bottom: 12px;
}
.tf-form-book .form-group .select-items {
  position: relative;
}
.tf-form-book .form-group .date-input {
  padding-right: 44px;
}
.tf-form-book .form-group .icon-image {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: var(--text-color);
  filter: brightness(0) saturate(100%) invert(37%) sepia(1%) saturate(1140%) hue-rotate(56deg) brightness(95%) contrast(81%);
  right: 18px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.tf-form-book .form-group .list {
  background-color: var(--white);
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0px 4px 26px 0px rgba(66, 71, 76, 0.08);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 999;
  min-width: 250px;
  width: auto;
  font-size: 16px;
  padding: 8px 2px;
  opacity: 0;
  visibility: hidden;
  top: calc(100% + 18px);
}
.tf-form-book .form-group .list::before {
  content: "";
  position: absolute;
  border-top: 15px solid var(--white);
  border-right: 15px solid transparent;
  transform: rotate(45deg);
  bottom: calc(100% - 9px);
  left: 20px;
}
.tf-form-book .form-group .list.active {
  opacity: 1;
  visibility: visible;
}
.tf-form-book .form-group .list.style-01 {
  color: var(--text-color);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  padding: 16px 0 !important;
}
.tf-form-book .form-group .list.style-01 .time-option {
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.tf-form-book .form-group .list.style-01 .time-option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.tf-form-book .form-group .list.style-01 .time-option:not(:last-child) {
  border-bottom: 1px solid var(--stoke-color);
}
.tf-form-book .info-list {
  margin-top: 24px;
}
.tf-form-book .info-list .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tf-form-book .info-list .info-item .form-group {
  margin-top: 0;
}
.tf-form-book .info-list .info-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stoke-color);
}
.tf-form-book .info-list .info-item:not(:first-child) {
  padding-top: 16px;
}
.tf-form-book .info-list .info-item .value {
  font-weight: 500;
}

.tf-card-invoice-sum .content-top {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}
.tf-card-invoice-sum .content-top .img-tour {
  flex-shrink: 0;
}
.tf-card-invoice-sum .content-top .img-tour .img-tour-value {
  max-width: 140px;
  border-radius: 12px;
  object-fit: cover;
}
.tf-card-invoice-sum .content-top .box-info-tour {
  flex: 1;
  min-width: 0;
}
.tf-card-invoice-sum .content-top .info-date,
.tf-card-invoice-sum .content-top .info-person {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.tf-card-invoice-sum .content-top .total-item {
  white-space: nowrap;
  text-align: right;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  background-color: transparent;
}
.breadcrumb a {
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.breadcrumb a:hover {
  opacity: 1;
  color: var(--primary-color);
}
.breadcrumb .dot span {
  font-size: 8px;
  font-weight: 600;
  opacity: 0.6;
  user-select: none;
  color: var(--text-color);
}
.breadcrumb .current {
  color: var(--text-color);
  opacity: 1;
  font-weight: 500;
}

.header {
  width: 100%;
  z-index: 999;
  position: relative;
  font-weight: 500;
  line-height: 140%;
  font-size: 16px;
  box-sizing: border-box;
  color: var(--heading-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header-wrap {
  display: flex;
  align-items: stretch;
}
.header .header-ct-left,
.header .header-ct-center,
.header .header-ct-right {
  flex-grow: 1;
  height: 100%;
}
.header .header-ct-center .inner-center {
  display: flex;
  align-items: center;
  position: relative;
}
.header .header-ct-right {
  flex-shrink: 0;
}
.header .header-ct-right .wrap-login-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header .header-ct-right .wrap-login-menu.color-ic {
  color: var(--white);
}
.header .header-ct-right .wrap-login-menu li {
  position: relative;
  display: flex;
  align-items: center;
}
.header .header-ct-right .wrap-login-menu a:hover {
  color: var(--primary-color);
}
.header .header-ct-right .wrap-login-menu .icon {
  font-size: 24px;
}
.header .header-ct-right .wrap-login-menu .heart::after,
.header .header-ct-right .wrap-login-menu .search::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: rgba(36, 39, 44, 0.2);
  top: 5px;
  bottom: 5px;
  right: -15px;
}
.header .header-ct-right .wrap-login-menu .login {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .nav-link {
  height: 100%;
  font-size: 16px;
  font-weight: 500;
}
.header .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.8s ease;
}
.header .menu-nav {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}
.header .menu-item.active > .nav-link,
.header .menu-nav .nav-link.active,
.header .sub-menu a.active,
.header .mega-menu a.active {
  color: var(--primary-color) !important;
}
.header .menu-item.active > .nav-link::before,
.header .menu-nav .nav-link.active::before {
  width: 100% !important;
}
.header .menu-item:hover > .nav-link::before {
  width: 100%;
}
.header .menu-item:hover > .nav-link {
  color: var(--primary-color);
}
.header.style-1 {
  background: transparent;
  box-shadow: none;
}
.header.style-1 .header-wrap {
  align-items: center;
}
.header.style-1 .header-wrap .header-ct-left {
  padding: 14px 0px 14px 0;
}
.header.style-2 {
  background: transparent;
  box-shadow: none;
  border: none;
}
.header.style-2 .header-wrap {
  display: flex;
  align-items: center;
}
.header.style-2 .header-wrap .menu-nav .menu-item {
  padding: 15px 0;
}
.header.style-2 .header-wrap .header-ct-left {
  padding: 28px 0;
}
.header.style-2 .header-wrap .header-ct-center .inner-center .nav-wrap .list-nav .menu-nav .menu-item .nav-link {
  color: var(--white);
}
.header.style-2 .header-wrap .header-ct-right .wrap-login-menu ul li {
  color: var(--white);
}
.header.style-2 .nav-link::before {
  bottom: 14px;
}
.header.style-2 .list-nav {
  border: 1px solid var(--border-header);
  background: var(--background-dark);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  padding: 0 32px;
}

.menu-item {
  color: var(--heading-color);
  padding: 33px 0;
  position: relative;
}
.menu-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--heading-color);
}
.menu-item .icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.menu-item:hover > a .icon {
  transform: rotate(180deg);
}
.menu-item:hover > .sub-menu,
.menu-item:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.menu-item:hover > .mega-menu {
  transform: translateX(-50%) translateY(0);
}

.sub-menu,
.mega-menu {
  position: absolute;
  top: 100%;
  background: var(--white);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  z-index: 999;
  pointer-events: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.sub-menu::before,
.mega-menu::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 8px);
  border-top: 15px solid var(--white);
  border-right: 15px solid transparent;
  transform: rotate(45deg);
}

.sub-menu {
  left: 0;
  min-width: 280px;
  list-style: none;
  padding: 12px 0 !important;
}
.sub-menu::before {
  left: 20px;
}
.sub-menu .sub-item {
  cursor: pointer;
}
.sub-menu .sub-item a {
  display: block;
  padding: 16px 24px;
  color: var(--heading-color);
}
.sub-menu .sub-item a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.sub-menu .sub-item a:hover.active {
  color: var(--white) !important;
}

.mega-menu {
  left: 215px;
  width: 1280px;
  max-width: 90vw;
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%) translateY(12px);
}
.mega-menu::before {
  left: 35%;
}
.mega-menu .mega-title {
  margin-bottom: 16px;
  padding: 0 24px;
}
.mega-menu .mega-col ul li a {
  display: block;
  padding: 16px 24px;
  color: var(--heading-color);
}
.mega-menu .mega-col ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.mega-menu .mega-col ul li a:hover.active {
  color: var(--white) !important;
}

.toggle-mobile {
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.toggle-mobile .icon {
  font-size: 24px;
  align-items: center;
}
.toggle-mobile:hover {
  color: var(--primary-color);
}

.header.scrolled {
  position: sticky;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.0784313725);
  border-bottom: 1px solid var(--border-header);
}
.header.scrolled.color-1 {
  background-color: var(--white);
}
.header.scrolled.color-2 {
  background-color: var(--heading-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 82%;
  max-width: 380px;
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  transition: left 0.4s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 20px 15px 100px 15px;
}
.mobile-menu .inner-menu {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--stoke-color);
  margin: 20px 0;
}
.mobile-menu .inner-menu .nav-item {
  display: flex;
  flex-direction: column;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown:hover {
  color: var(--primary-color);
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu {
  display: none;
  flex-direction: column;
  padding: 10px !important;
  background-color: var(--secondary-color);
  border-radius: 16px;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu li {
  padding: 5px 10px;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-link {
  padding: 8px 0;
  font-size: 16px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .has-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .has-sub:hover {
  color: var(--primary-color);
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .has-sub .sub-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .mb-sub-sub-menu {
  display: none;
  flex-direction: column;
  padding: 10px !important;
  background-color: var(--three-color);
  border-radius: 8px;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .mb-sub-sub-menu li a {
  font-size: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item .mb-sub-sub-menu li a:hover {
  color: var(--primary-color);
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item.open > .mb-sub-sub-menu {
  display: flex;
  animation: slideDown 0.45s ease forwards;
}
.mobile-menu .inner-menu .nav-item .mb-sub-menu .sub-item.open .sub-icon {
  transform: rotate(180deg);
}
.mobile-menu .inner-menu .nav-item .mb-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.mobile-menu .inner-menu .nav-item.active .mb-sub-menu {
  display: flex;
  animation: slideDown 0.55s ease forwards;
}
.mobile-menu .inner-menu .nav-item.active .mb-icon {
  transform: rotate(180deg);
}
.mobile-menu .logo {
  border-bottom: 1px solid var(--stoke-color);
  padding-bottom: 10px;
}

.mobile-menu.active {
  left: 0;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.close-btn span {
  font-size: 18px;
  color: var(--white);
}

.close-btn.active {
  opacity: 1;
  visibility: visible;
}

.inner-info {
  padding-bottom: 50px;
}
.inner-info .title-info {
  font-size: 20px;
  font-weight: 500;
  line-height: 25.2px;
  color: var(--heading-color);
  margin-bottom: 16px;
}
.inner-info .list-info {
  gap: 14px;
}
.inner-info .list-info .icon {
  width: 24px;
  height: 24px;
  font-size: unset;
}
.inner-info .list-info .icon img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(0%) saturate(6797%) hue-rotate(149deg) brightness(94%) contrast(86%);
  width: 24px;
  height: 24px;
}
.inner-info .list-info .phone a {
  font-size: 18px;
  font-weight: 600;
  line-height: 22.68px;
  color: var(--primary-color);
}
.inner-info .list-info .content .label {
  color: var(--text-color);
}
.inner-info .list-info a,
.inner-info .list-info p {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}
.inner-info .list-info > div {
  display: flex;
  align-items: flex-start;
}
.inner-info .list-info > div .content {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid var(--stoke-color);
  flex: 1;
}

.footer {
  background-color: var(--background-black);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.footer .top-footer .content-top-footer {
  gap: 20px;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-icon);
  padding: 60px 0 32px 0;
}
.footer .top-footer .content-top-footer .footer-socials .text-social {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
  margin-right: 16px;
}
.footer .top-footer .content-top-footer .footer-socials .list-social span {
  color: var(--white);
}
.footer .inner-footer {
  padding: 0 0 38px 0;
  border-bottom: 1px solid var(--border-icon);
}
.footer .inner-footer .widget-box {
  width: 100%;
  height: 100%;
}
.footer .inner-footer .widget-info {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer .inner-footer .widget-info .widget-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer .inner-footer .widget-info .widget-contact .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--border-icon);
}
.footer .inner-footer .widget-info .widget-contact .icon img {
  font-size: 18px;
}
.footer .inner-footer .widget-info .widget-contact .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.footer .inner-footer .widget-info .widget-contact .content span {
  color: var(--terms-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}
.footer .inner-footer .widget-info .widget-contact .content h4 {
  color: var(--white);
}
.footer .inner-footer .widget-info .widget-contact .content p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}
.footer .inner-footer .widget-tour .tour-item a {
  font-size: 16px;
  color: var(--note-color);
  line-height: 22.4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer .inner-footer .widget-tour .tour-item a .icon {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}
.footer .inner-footer .widget-tour .tour-item a:hover {
  color: var(--primary-color);
}
.footer .inner-footer .widget-newseletter p {
  line-height: 140%;
  font-weight: 400;
  font-size: 16px;
}
.footer .inner-footer .widget-newseletter .input-send {
  background: transparent;
  border: 1px solid var(--border-icon);
  color: var(--terms-color);
  font-style: unset;
  padding: 16px;
}
.footer .inner-footer .widget-newseletter .input-send::placeholder {
  color: var(--terms-color);
  opacity: 1;
}
.footer .inner-footer .widget-newseletter .agree-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--terms-color);
}
.footer .inner-footer .widget-newseletter .agree-terms a {
  color: var(--primary-color);
  text-decoration: underline;
}
.footer .inner-footer .widget-newseletter .action-download a img {
  flex-shrink: 0;
  height: auto;
  max-width: 100%;
}
.footer .inner-footer .input-wrapper {
  position: relative;
  width: 100%;
}
.footer .inner-footer .input-wrapper .icon.pos-2 {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.footer .content-bottom {
  padding: 22px 0;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer .content-bottom .copy-right {
  color: var(--note-color);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.footer .content-bottom .menu-bottom {
  gap: 40px;
}
.footer .content-bottom .menu-bottom .item-bottom {
  color: var(--note-color);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.footer .content-bottom .menu-bottom .item-bottom:hover {
  color: var(--primary-color);
}

.list-social {
  flex-wrap: wrap;
  gap: 12px;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--border-icon);
  background-color: transparent;
  transition: all 0.2s ease;
  position: relative;
}
input[type=checkbox]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.box-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.box-icon .icon {
  font-size: 18px;
}
.box-icon.line {
  border: 1px solid var(--stoke-color);
  color: var(--text-color);
}
.box-icon.line:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.box-icon.w-28 {
  width: 28px;
  height: 28px;
}
.box-icon.w-28 .icon {
  font-size: 14px;
}
.box-icon.w-32 {
  width: 32px;
  height: 32px;
}
.box-icon.w-40 {
  width: 40px;
  height: 40px;
}
.box-icon.w-44 {
  width: 44px;
  height: 44px;
}
.box-icon.w-48 {
  width: 48px;
  height: 48px;
}
.box-icon.w-52 {
  width: 52px;
  height: 52px;
}
.box-icon.w-56 {
  width: 56px;
  height: 56px;
}
.box-icon.w-60 {
  width: 60px;
  height: 60px;
}
.box-icon.w-68 {
  width: 68px;
  height: 68px;
}
.box-icon.w-80 {
  width: 80px;
  height: 80px;
}
.box-icon.w-80 .icon {
  font-size: 44px;
}
.box-icon.round {
  border-radius: 50%;
}
.box-icon.social {
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--border-icon);
}
.box-icon.social .icon {
  color: var(--white);
  font-size: 18px;
}
.box-icon.social .icon.icon-youtube {
  font-size: 12px;
}
.box-icon.social.square {
  background-color: var(--input-color);
  border-radius: 4px;
  border: 1px solid var(--stoke-color);
}
.box-icon.social.square .icon {
  color: var(--black);
  font-size: 18px;
}
.box-icon.social.square .icon.icon-youtube {
  font-size: 12px;
}
.box-icon.social.square:hover .icon {
  color: var(--white);
}
.box-icon.social:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.tf-grid-layout {
  display: grid !important;
  gap: 40px;
}
.tf-grid-layout.tf-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tf-grid-layout.tf-col-1 {
  grid-template-columns: 1fr;
}
.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.tf-grid-layout .wg-pagination,
.tf-grid-layout .wd-load {
  grid-column: 1/1;
  width: 100%;
}

.tf-grid-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-location {
  display: grid;
  grid-template-areas: "item1 item2 item3 item4" "item5 item5 item6 item6";
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
.grid-location .item-1 {
  grid-area: item1;
}
.grid-location .item-2 {
  grid-area: item2;
}
.grid-location .item-3 {
  grid-area: item3;
}
.grid-location .item-4 {
  grid-area: item4;
}
.grid-location .item-5 {
  grid-area: item5;
}
.grid-location .item-6 {
  grid-area: item6;
}

.item-1 img,
.item-2 img,
.item-3 img,
.item-4 img {
  aspect-ratio: 1/1;
}

.item-5 img,
.item-6 img {
  aspect-ratio: 2.1/1 !important;
}

.box-location-v2 .box-img {
  border-radius: 16px;
}
.box-location-v2 .content {
  padding-top: 20px;
}

/* ================== BREAKPOINTS ================== */
@media (max-width: 1440px) {
  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1200px) {
  .tf-grid-layout.xl-col-1 {
    grid-template-columns: 1fr;
  }
  .tf-grid-layout.xl-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 992px) {
  .tf-grid-layout.lg-col-1 {
    grid-template-columns: 1fr;
  }
  .tf-grid-layout.lg-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 768px) {
  .tf-grid-layout.md-col-1 {
    grid-template-columns: 1fr;
  }
  .tf-grid-layout.md-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-location {
    grid-template-areas: "item1 item2" "item3 item4" "item5 item5" "item6 item6";
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .tf-grid-layout.sm-col-1 {
    grid-template-columns: 1fr;
  }
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
.flat-blog-list .flat-blog-item {
  margin-bottom: 56px;
}
.flat-blog-list .flat-blog-item .content-box {
  margin-top: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stoke-color);
}
.flat-blog-list .flat-blog-item .content-box .post-author {
  margin-top: 0px;
}
.flat-blog-list .flat-blog-item .content-box .post-author span {
  gap: 10px;
  color: var(--text-color);
  font-size: 16px;
}
.flat-blog-list .flat-blog-item .content-box .post-author span img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(58%) saturate(487%) hue-rotate(346deg) brightness(87%) contrast(97%);
}
.flat-blog-list .flat-blog-item .content-box .title {
  margin-top: 12px;
  text-transform: capitalize;
}
.flat-blog-list .flat-blog-item .content-box .description {
  margin-top: 18px;
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
}
.flat-blog-list .flat-blog-item .img-style {
  border-radius: 16px;
}
.flat-blog-list .flat-blog-item .date-post {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 20.23px;
}
.flat-blog-list .flat-blog-item:last-child {
  margin-bottom: 26px;
}

.flat-blog-item {
  display: block;
}
.flat-blog-item .detail {
  z-index: 1;
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 99px;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.flat-blog-item.style-1 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.flat-blog-item.style-1 .content-box {
  position: absolute;
  z-index: 12;
  bottom: 19px;
  left: 24px;
  right: 20px;
}
.flat-blog-item.style-1 .content-box .name {
  color: var(--white);
  margin-top: 6px;
}
.flat-blog-item.style-1 .content-box .date-post {
  color: var(--white);
  gap: 8px;
}
.flat-blog-item.style-1 .content-box .read-more {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
.flat-blog-item.style-1 .content-box .read-more img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  will-change: filter, transform;
  backface-visibility: hidden;
}
.flat-blog-item.style-1 .content-box .read-more:hover {
  color: var(--primary-color);
}
.flat-blog-item.style-1 .content-box .read-more:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(9%) saturate(5115%) hue-rotate(321deg) brightness(90%) contrast(90%);
  transform: translateX(2px);
}
.flat-blog-item.style-1 .content-box.style-content-01 {
  background-color: var(--white);
  bottom: 8px;
  left: 8px;
  right: 8px;
  padding: 24px;
  border-radius: 16px;
  color: var(--heading-color);
}
.flat-blog-item.style-1 .content-box.style-content-01 .date-post {
  color: var(--heading-color);
}
.flat-blog-item.style-1 .content-box.style-content-01 .date-post img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(4%) saturate(2132%) hue-rotate(179deg) brightness(97%) contrast(86%);
}
.flat-blog-item.style-1 .content-box.style-content-01 .name {
  color: var(--heading-color);
}
.flat-blog-item.style-1 .content-box.style-content-01 .read-more {
  color: var(--heading-color);
  transition: all 0.3s ease;
}
.flat-blog-item.style-1 .content-box.style-content-01 .read-more img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(4%) saturate(2132%) hue-rotate(179deg) brightness(97%) contrast(86%);
}
.flat-blog-item.style-1 .content-box.style-content-01 .read-more:hover {
  color: var(--primary-color);
}
.flat-blog-item.style-1 .content-box.style-content-01 .read-more:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(9%) saturate(5115%) hue-rotate(321deg) brightness(90%) contrast(90%);
}
.flat-blog-item.style-1 .content-box.style-content-01 .detail {
  left: auto;
  right: 24px;
  top: -18px;
}
.flat-blog-item.style-1 .detail {
  left: 24px;
  top: 20px;
  letter-spacing: 0;
  padding: 4px 11px;
}
.flat-blog-item.style-1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.29%, #000000 100%);
}

.post-author .icon {
  margin-right: 4px;
}
.post-author span:not(:first-child) {
  margin-left: 12px;
  padding-left: 12px;
  position: relative;
}
.post-author span:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--stoke-color);
  left: 0;
  top: 5px;
  bottom: 5px;
}
.post-author.style-1 span {
  color: var(--black);
}

.recent ul {
  margin-top: 20px;
}
.recent ul li:last-child .recent-post-item {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.recent .recent-post-item {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--stoke-color);
}
.recent .recent-post-item .img-style {
  border-radius: 12px;
  width: 110px;
  height: 74px;
  flex-shrink: 0;
}
.recent .recent-post-item .content .subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.recent .recent-post-item .content .subtitle span {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.8px;
  color: var(--text-color);
  margin-top: 10px;
}
.recent .recent-post-item .content .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.categories ul li:last-child .categories-item {
  padding-bottom: 10px;
  border: none;
}
.categories ul li:first-child .categories-item {
  padding-top: 10px;
}
.categories ul .categories-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 16px 0px;
  border-bottom: 1px solid var(--stoke-color);
  color: var(--heading-color);
}
.categories ul .categories-item span:first-child {
  font-size: 18px;
  line-height: 21.86px;
  font-weight: 600;
}
.categories ul .categories-item span:last-child {
  color: var(--place-holder);
}

.search-box {
  position: relative;
  width: 100%;
}
.search-box .icon {
  position: absolute;
  font-size: 18px;
  color: var(--icon-color);
  top: 50%;
  transform: translateY(-50%);
}
.search-box .icon.pos-1 {
  left: 18px;
}
.search-box .icon.pos-2 {
  right: 18px;
}
.search-box .search-field.s-1 {
  padding-left: 44px;
  padding-right: 16px;
}
.search-box .search-field.s-2 {
  padding-left: 16px;
  padding-right: 44px;
}

.widget-box {
  margin-top: 40px;
}

.content-widget {
  border-radius: 16px;
  overflow: hidden;
  padding: 28px 30px 32px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 470px;
  width: 100%;
  position: relative;
  background: url(../../images/backgrounds/bg-01.jpg) no-repeat center center;
  background-size: cover;
}
.content-widget.banner-1 {
  background: url(../../images/backgrounds/bg-05.jpg) no-repeat center center;
  background-attachment: fixed;
}
.content-widget.h-2 {
  min-height: 390px;
}
.content-widget::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-widget img {
  max-width: 179px;
  position: relative;
  z-index: 1;
}
.content-widget .content {
  position: relative;
  z-index: 1;
}
.content-widget .content.style-01 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.content-widget .content.style-01 .box-name {
  width: 100%;
  margin-bottom: 0;
  font-family: "Lexend", sans-serif;
}
.content-widget .content.style-01 .box-name .name {
  margin-bottom: 12px;
  line-height: 100%;
  text-transform: none;
  color: var(--white);
}
.content-widget .content.style-01 .subtitle,
.content-widget .content.style-01 .phone {
  color: var(--white) !important;
}
.content-widget .content.style-01 .wg-contact {
  gap: 64px;
  justify-content: center;
}
.content-widget h2 {
  color: var(--white);
  margin-bottom: 15px;
}
.content-widget p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 18px;
}

.tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag .tag-item {
  padding: 10px 16px;
  border-radius: 99px;
  border: 1px solid var(--stoke-color);
  display: flex;
  gap: 10px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tag .tag-item .icon {
  width: 20px;
  height: 20px;
  font-size: 20px;
  object-fit: cover;
}
.tag .tag-item:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.tag .tag-item:hover .icon {
  color: var(--white);
  filter: brightness(0) invert(1);
}
.tag .tag-item:hover .subtitle {
  color: var(--white) !important;
}

.flat-blog-detail h1 {
  margin-bottom: 16px;
}
.flat-blog-detail .meta-blog {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}
.flat-blog-detail .meta-blog .item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.flat-blog-detail .meta-blog .item img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(0%) saturate(128%) hue-rotate(183deg) brightness(82%) contrast(78%);
}
.flat-blog-detail .post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 16px 0px;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.flat-blog-detail .post-navigation .previous-post {
  padding-right: 22%;
  position: relative;
}
.flat-blog-detail .post-navigation .previous-post::after {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--border-card);
  right: 0;
  top: 13px;
  bottom: 13px;
}
.flat-blog-detail .post-navigation .next-post {
  text-align: right;
  padding-left: 30%;
}
.flat-blog-detail .post-navigation .subtitle {
  font-weight: 700;
  color: var(--text-label);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.8px;
}
.flat-blog-detail .wrap-review {
  margin-top: 40px;
}
.flat-blog-detail .wrap-review .box-review {
  margin-top: 20px;
}
.flat-blog-detail .wrap-form-comment {
  margin-top: 40px;
}

.list-review-item {
  display: flex;
  gap: 20px;
}
.list-review-item .avatar {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}
.list-review-item .content .content-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.list-review-item .content .content-top .inner-left {
  display: flex;
  flex-direction: column;
}
.list-review-item .content .content-top .inner-left .name {
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 600;
}
.list-review-item .content .content-top .inner-left .date-post {
  font-size: 14px;
  color: var(--text-color);
}
.list-review-item .action {
  display: flex;
  align-items: center;
  gap: 16px;
}
.list-review-item .action span {
  color: var(--text-color);
  font-size: 12px;
  line-height: 16.8px;
}
.list-review-item .content {
  padding-bottom: 16px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--stoke-color);
}
.list-review-item .box-img-review {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.list-review-item .box-img-review .img-review {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--text-color);
}
.list-review-item .view-question {
  margin-top: 22px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid var(--stoke-color);
}

.flat-quote {
  padding: 30px 50px 30px 30px;
  border-radius: 10px;
  background-color: var(--quote-color);
  border-left: 4px solid var(--primary-color);
  color: var(--text-color);
}
.flat-quote .author {
  margin-top: 30px;
  display: block;
}

.wrap-form-comment .group-ip {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.wrap-form-comment .form-wg {
  margin-top: 20px;
}
.wrap-form-comment .check-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wrap-form-comment .rating-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 15px;
}
.wrap-form-comment .rating-group .rating .sub-ip {
  margin-bottom: 0;
}
.wrap-form-comment .rating-group .rating .list-star {
  cursor: pointer;
}
.wrap-form-comment .rating-group .rating .subtitle {
  width: 80px;
  flex-shrink: 0;
}

.comment-form {
  max-width: 100%;
  margin: 0 auto;
}
.comment-form .form-control,
.comment-form textarea {
  border-radius: 16px;
  transition: border-color 0.3s ease;
  background-color: var(--white);
}
.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}
.comment-form .sub-ip {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.action-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  opacity: 0.8;
}
.action-btn:hover span {
  color: var(--primary-color);
  font-weight: 600;
}
.action-btn:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(96%) saturate(1204%) hue-rotate(318deg) brightness(87%) contrast(97%);
}
.action-btn.active span {
  color: var(--primary-color);
  font-weight: 600;
}
.action-btn.active img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(96%) saturate(1204%) hue-rotate(318deg) brightness(87%) contrast(97%);
}

.unlike-btn.active span {
  color: var(--heart-color);
  font-weight: 600;
}
.unlike-btn.active img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(75%) saturate(1559%) hue-rotate(346deg) brightness(103%) contrast(101%);
}

.wd-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.wd-navigation .nav-item {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 21.86px;
  border-radius: 10px;
  border: 1px solid var(--stoke-color);
}
.wd-navigation .nav-item:hover, .wd-navigation .nav-item.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.wd-navigation .nav-item:hover .icon, .wd-navigation .nav-item.active .icon {
  color: var(--white);
}
.wd-navigation .icon {
  font-size: 14px;
  color: var(--black);
}

.listing-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sw-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--stoke-color);
  opacity: 1;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sw-pagination .swiper-pagination-bullet::before {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary-color);
  overflow: visible;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sw-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}
.sw-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}
.sw-pagination.style-white .swiper-pagination-bullet {
  background-color: var(--white) !important;
}
.sw-pagination.style-white .swiper-pagination-bullet::before {
  border: 1px solid var(--white) !important;
}
.sw-pagination.style-white .swiper-pagination-bullet-active {
  background-color: var(--white) !important;
}

.sw-pagination-2 .swiper-pagination-bullet {
  width: 18px;
  height: 8px;
  background-color: #D9D9D9;
  opacity: 1;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 999px;
}
.sw-pagination-2 .swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
  width: 32px !important;
}
.sw-pagination-2 .swiper-pagination-bullet-active::before {
  opacity: 1;
}

.slider-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: auto;
  margin-top: 47px;
}
.slider-control.style-01 {
  margin: 0;
  gap: 12px;
}
.slider-control.style-02 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.slider-control .sw-pagination {
  width: auto !important;
  position: static !important;
}
.slider-control a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.slider-control a.nav-style-2 {
  color: var(--primary-color);
}
.slider-control a.nav-style-2 img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(35%) saturate(822%) hue-rotate(347deg) brightness(91%) contrast(89%);
}
.slider-control a.nav-style-2:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.slider-control a.nav-style-2:hover img {
  filter: brightness(0) invert(1);
}
.slider-control a img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.slider-control a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.slider-control a:hover img {
  filter: brightness(0) invert(1);
}

.avatar-navigation {
  display: flex;
  justify-content: start;
  margin-top: 32px;
  gap: 12px;
}
.avatar-navigation .swiper-pagination-bullet {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.avatar-navigation .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-navigation .swiper-pagination-bullet:hover {
  opacity: 0.7;
}
.avatar-navigation .swiper-pagination-bullet-active {
  opacity: 1;
  border: 2px solid var(--primary-color);
}

.swiper-wrapper {
  align-items: stretch !important;
}

@media (min-width: 1440px) {
  .swiper-shadow .swiper-wrapper {
    margin: 0 -15px;
    padding: 0 15px;
  }
}
.swiper-slide {
  height: auto !important;
}

.sw-pagination {
  margin-top: 10px;
}

.preload-container {
  display: flex;
  width: 100%;
  height: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preload-logo img {
  width: 44px;
  height: 44px;
}

.spinner {
  width: 90px;
  height: 90px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.page-title {
  padding: 123px 0;
  margin: 0 18px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: url(../../images/backgrounds/bg-blog.jpg);
  background-color: var(--four-color);
}
.page-title h1,
.page-title .breadcrumb {
  position: relative;
  z-index: 1;
}
.page-title h1 {
  letter-spacing: 2px;
  margin-top: 16px;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.page-title.style-2 .breadcrumb {
  margin-top: 0;
  margin-bottom: 16px;
}

.hero {
  width: 100%;
  height: auto;
  position: relative;
}
.hero .flat-hero {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  position: relative;
}
.hero .flat-hero .content-left {
  width: 47%;
  margin-top: 120px;
  position: relative;
}
.hero .flat-hero .content-left .box-title {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 215px;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.hero .flat-hero .content-left .box-title .title {
  font-size: 100px;
  line-height: 100%;
}
.hero .flat-hero .content-left .box-title .description {
  line-height: 140%;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
.hero .flat-hero .content-right {
  width: 53%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
  height: 100%;
  margin-top: 66px;
  position: relative;
}
.hero .flat-hero .content-right .inner-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 425px;
}
.hero .flat-hero .content-right .inner-left img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}
.hero .flat-hero .content-right .inner-left img:first-child {
  aspect-ratio: 425/301;
  object-fit: cover;
}
.hero .flat-hero .content-right .inner-left img:last-child {
  aspect-ratio: 425/379;
  object-fit: cover;
}
.hero .flat-hero .content-right .inner-right {
  flex: 1;
}
.hero .flat-hero .content-right .inner-right img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  aspect-ratio: 464/696;
  object-fit: cover;
}
.hero .flat-hero .tab-content {
  position: absolute;
  bottom: 15%;
  left: 12.5%;
}
.hero .flat-hero .tab-content .advanced-form::before {
  left: 86.6%;
}
.hero .flat-hero .rotating-badge {
  top: 300px;
  left: 430px;
  transform: translate(-50%, -50%);
}

.rotating-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 180px;
  z-index: 10;
  transform: translateX(-50%);
}
.rotating-badge.pos-01 {
  left: 42.5%;
  top: 10%;
}
.rotating-badge .circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rotating-badge .circle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}
.rotating-badge .circle svg text {
  font-size: 24px;
  font-weight: 600;
  fill: var(--heading-color);
  text-transform: capitalize;
  line-height: 140%;
  letter-spacing: 2px;
}
.rotating-badge .circle svg text.brand {
  fill: var(--primary-color);
}
.rotating-badge .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.rotating-badge .icon svg,
.rotating-badge .icon img {
  width: 44px;
  height: 62px;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.slider-default {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-color: var(--white);
  width: 100%;
  z-index: 123;
}
.slider-default .swiper-slide .box-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
.slider-default .swiper-slide .box-title {
  text-align: center;
  position: relative;
  z-index: 20;
}
.slider-default .swiper-slide .box-title p {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 140%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #5F615E;
  text-align: center;
}
.slider-default .swiper-slide .box-title .button-group {
  margin: 0;
  padding: 0;
}
.slider-default .swiper-slide .box-title .button-group .tf-btn {
  padding: 15.5px 38px;
}
.slider-default .swiper-slide .box-title .wrap-search-link {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.slider-default .swiper-slide .categories-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.slider-default .swiper-slide .categories-list a {
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 99px;
  background-color: var(--border-header);
  backdrop-filter: blur(4px);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: nowrap;
}
.slider-default .swiper-slide .categories-list a .icon {
  font-size: 20px;
  color: var(--white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.slider-default .swiper-slide .categories-list a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.slider-default .swiper-slide.home-1 .box-title h3, .slider-default .swiper-slide.home-3 .box-title h3, .slider-default .swiper-slide.home-4 .box-title h3, .slider-default .swiper-slide.home-5 .box-title h3 {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 17px;
  color: var(--white);
}
.slider-default .swiper-slide.home-1 .box-title h1, .slider-default .swiper-slide.home-3 .box-title h1, .slider-default .swiper-slide.home-4 .box-title h1, .slider-default .swiper-slide.home-5 .box-title h1 {
  font-weight: 600;
  line-height: 100%;
  color: var(--white);
}
.slider-default .swiper-slide.home-1 .box-title p, .slider-default .swiper-slide.home-3 .box-title p, .slider-default .swiper-slide.home-4 .box-title p, .slider-default .swiper-slide.home-5 .box-title p {
  color: var(--white);
  font-weight: 500;
}
.slider-default .swiper-slide {
  /* === HOME 1 === */
}
.slider-default .swiper-slide.home-1 .box-banner.box-banner-1 {
  background-image: url("../images/banner/bg-slide-01.jpg");
}
.slider-default .swiper-slide.home-1 .box-banner.box-banner-2 {
  background-image: url("../images/banner/bg-slide-02.jpg");
}
.slider-default .swiper-slide.home-1 .box-banner.box-banner-3 {
  background-image: url("../images/banner/bg-slide-03.jpg");
}
.slider-default .swiper-slide.home-1 .box-title {
  padding: 246px 0 372px;
}
.slider-default .swiper-slide.home-1 .box-title h1 {
  font-size: 70px;
  color: var(--heading-color);
}
.slider-default .swiper-slide.home-1 .box-title p {
  color: var(--text-color);
  font-weight: 400;
}
.slider-default .swiper-slide {
  /* === HOME 3 === */
}
.slider-default .swiper-slide.home-3 .box-banner.box-banner-7 {
  background-image: url("../images/banner/bg-slide-04.jpg");
}
.slider-default .swiper-slide.home-3 .box-banner.box-banner-8 {
  background-image: url("../images/banner/bg-slide-05.jpg");
}
.slider-default .swiper-slide.home-3 .box-banner.box-banner-9 {
  background-image: url("../images/banner/bg-slide-06.jpg");
}
.slider-default .swiper-slide.home-3 .box-title {
  padding: 290px 0 114px;
}
.slider-default .swiper-slide.home-3 .box-title h3 {
  font-size: 64px;
}
.slider-default .swiper-slide.home-3 .box-title h1 {
  font-size: 120px;
}
.slider-default .swiper-slide.home-3 .box-title .wrap-search-link {
  margin-top: 230px;
}
.slider-default .swiper-slide {
  /* === HOME 4 === */
}
.slider-default .swiper-slide.home-4 .box-banner.box-banner-9 {
  background-image: url("../images/banner/bg-slide-07.jpg");
}
.slider-default .swiper-slide.home-4 .box-banner.box-banner-10 {
  background-image: url("../images/banner/bg-slide-08.jpg");
}
.slider-default .swiper-slide.home-4 .box-banner.box-banner-11 {
  background-image: url("../images/banner/bg-slide-09.jpg");
}
.slider-default .swiper-slide.home-4 .box-title {
  padding: 290px 0 50px;
  margin-bottom: 90px;
}
.slider-default .swiper-slide.home-4 .box-title h3 {
  font-size: 64px;
}
.slider-default .swiper-slide.home-4 .box-title h1 {
  font-size: 64px;
}
.slider-default .swiper-slide.home-4 .box-title .wrap-search-link {
  margin-top: 70px;
}
.slider-default .swiper-slide.home-4 .advanced-form::before {
  left: 86.6%;
}
.slider-default .swiper-slide {
  /* === HOME 4 === */
}
.slider-default .swiper-slide.home-5 .box-banner.box-banner-12 {
  background-image: url("../images/banner/bg-slide-10.jpg");
}
.slider-default .swiper-slide.home-5 .box-banner.box-banner-13 {
  background-image: url("../images/banner/bg-slide-11.jpg");
}
.slider-default .swiper-slide.home-5 .box-banner.box-banner-14 {
  background-image: url("../images/banner/bg-slide-12.jpg");
}
.slider-default .swiper-slide.home-5 .box-title {
  padding: 200px 0 140px;
  margin-bottom: 0;
}
.slider-default .swiper-slide.home-5 .box-title h3 {
  font-size: 64px;
}
.slider-default .swiper-slide.home-5 .box-title h1 {
  font-size: 300px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100%;
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link {
  margin-top: 70px;
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link .form-search .inner-group .form-group label {
  color: var(--white);
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link .form-search .inner-group .form-group .group-select .current {
  color: var(--white);
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link .form-search .inner-group .form-group .group-select .current input {
  background: transparent;
  color: var(--white);
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link .form-search .inner-group .form-group .group-select .current input::placeholder {
  color: var(--white);
}
.slider-default .swiper-slide.home-5 .box-title .wrap-search-link .form-search .inner-group .form-group .group-select .current img {
  filter: brightness(0) invert(1);
}
.slider-default .swiper-slide.home-5 .box-title .box-btn-filter .tf-btn .icon {
  font-size: 24px;
}
.slider-default .swiper-slide.home-5 .box-title .advanced-form::before {
  left: 86.6%;
}
.slider-default .swiper-slide.home-5 .box-title .tf-meta .categories-list a {
  backdrop-filter: none;
}
.slider-default .swiper-slide.home-5 .advanced-form::before {
  left: 65.2%;
}

.tf-meta {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 235px;
  width: 100%;
}
.tf-meta .contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tf-meta .contact-info .d-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-meta .contact-info .divider {
  width: 70px;
  height: 1px;
  color: var(--white);
  opacity: 30%;
}
.tf-meta .contact-info span {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  line-height: 140%;
  white-space: nowrap;
}
.tf-meta .contact-info .user-avatars {
  display: flex;
  align-items: center;
}
.tf-meta .contact-info .user-avatars img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -20px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tf-meta .contact-info .user-avatars img:first-child {
  margin-left: 0;
}
.tf-meta .contact-info .user-avatars img:hover {
  transform: scale(1.1);
  z-index: 10;
}
.tf-meta .contact-info .user-avatars .user-count {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -20px;
}
.tf-meta .contact-info .user-avatars .user-count img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.tf-meta .contact-info .user-avatars .user-count span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}
.tf-meta .contact-info .box-icon {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1607843137);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.tf-meta .contact-info .box-icon:hover {
  background-color: var(--primary-color);
}

.slide-indicator {
  position: absolute;
  width: auto;
  right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  bottom: 164px;
  z-index: 200;
  color: var(--white);
}
.slide-indicator .slide-number {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.75em;
}

.box-meta {
  position: absolute;
  width: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--white);
  z-index: 200;
}
.box-meta.pos-1 {
  left: 80px;
  top: 470px;
  flex-direction: column;
}
.box-meta .flow-us {
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.75em;
}
.box-meta .flow-us.rotate {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.box-meta .list-social {
  flex-direction: column;
  gap: 8px;
}
.box-meta .list-social li a span {
  background-color: rgba(255, 255, 255, 0.1607843137);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-header);
  font-size: 18px;
}

.divider {
  width: 1px;
  background: var(--white);
  opacity: 30%;
}
.divider.h-70 {
  height: 70px;
}
.divider.h-145 {
  height: 145px;
}
.divider.horizontal {
  width: 70px;
  height: 1px;
}

.flex-direction-nav {
  position: absolute;
  width: 100%;
  top: 46%;
  transform: translateY(-45%);
  display: flex;
  z-index: 200;
}
.flex-direction-nav.style-hero-1 {
  justify-content: space-between;
  left: 0;
  padding: 0 95px;
}
.flex-direction-nav.style-hero-2 {
  flex-direction: column;
  gap: 10px;
  right: 95px;
  width: auto;
}
.flex-direction-nav.style-hero-3 {
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 40px;
  left: 0;
}
.flex-direction-nav a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.flex-direction-nav a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.flex-direction-nav a.style-nav-1 {
  background-color: var(--white);
  color: var(--heading-color);
}
.flex-direction-nav a.style-nav-1:hover {
  background-color: var(--primary-color);
}
.flex-direction-nav a.style-nav-1:hover img {
  filter: brightness(0) invert(1);
}
.flex-direction-nav a.style-nav-2 {
  background-color: rgba(255, 255, 255, 0.1607843137);
  backdrop-filter: blur(4px);
}
.flex-direction-nav a.style-nav-2 img {
  filter: brightness(0) invert(1);
}
.flex-direction-nav a.style-nav-2:hover {
  background-color: var(--primary-color);
}

/* ============ Updated noUiSlider CSS ============ */
.noUi-target {
  direction: ltr;
  background: rgba(95, 108, 90, 0.1490196078) !important;
  height: 4px !important;
}

.noUi-connects {
  position: relative;
  height: 100%;
  z-index: 1;
  border-radius: 2px;
}

.noUi-connect {
  background: var(--primary-color) !important;
  border-radius: 2px;
}

.noUi-handle {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: var(--primary-color) !important;
  border: 2px solid var(--white) !important;
  cursor: pointer !important;
  right: -24px !important;
  z-index: 2;
  padding: 1px !important;
  transform: translate(-50%, -50%) !important;
  top: 50% !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.noUi-handle:focus {
  outline: none;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

[disabled].noUi-connect,
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-origin,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.slider-labels .caption {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}

.noUi-handle:before,
.noUi-handle:after {
  content: none !important;
  display: none !important;
}

.nav-tab {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  gap: 12px;
}
.nav-tab .nav-link-item {
  font-weight: 500;
  color: var(--text-color);
  background-color: var(--white);
  border: 1px solid var(--stoke-color);
  border-radius: 999px;
  padding: 12px 24px;
  text-wrap: nowrap;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-tab .nav-link-item.active, .nav-tab .nav-link-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.nav-tab .nav-tab-item {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav-tab .nav-tab-item .total-tour {
  visibility: hidden;
  opacity: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  line-height: 140%;
  background-color: var(--heading-color);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  padding: 6px 18px;
  white-space: nowrap;
  position: absolute;
  z-index: 10;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.nav-tab .nav-tab-item .total-tour::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--heading-color);
}
.nav-tab .nav-tab-item:hover .total-tour {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -8px);
}

.flat-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.flat-section-v2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.flat-section-v3 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.flat-section-v4 {
  padding-top: 112px;
  padding-bottom: 112px;
}

.box-title {
  margin-bottom: 48px;
}
.box-title.style-1 {
  margin-bottom: 40px;
  max-width: 100%;
}
.box-title.style-2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.box-title.style-3 {
  margin-bottom: 30px;
}
.box-title .title {
  font-size: 40px;
}
.box-title .desc {
  margin-top: 12px;
}

.box-listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stoke-color);
  margin-bottom: 48px;
}
.box-listing-top .box-title {
  margin-bottom: 0;
}
.box-listing-top .box-filter-tab {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-tab-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-tab-filter .tf-btn {
  min-height: auto;
  height: 48px;
  padding: 14px 16px;
  background-color: var(--quote-color);
  width: auto;
  min-width: auto;
}
.nav-tab-filter .tf-btn .icon {
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.nav-tab-filter .nav-link-item {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stoke-color);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.nav-tab-filter .nav-link-item:hover, .nav-tab-filter .nav-link-item.active {
  border: 1px solid var(--primary-color);
}
.nav-tab-filter .nav-link-item:hover .icon, .nav-tab-filter .nav-link-item.active .icon {
  color: var(--primary-color);
  filter: brightness(0) saturate(100%) invert(82%) sepia(32%) saturate(5285%) hue-rotate(330deg) brightness(97%) contrast(95%);
}
.nav-tab-filter .nav-link-item .icon {
  width: 24px;
  height: 24px;
  color: var(--stoke-color);
  filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(3767%) hue-rotate(213deg) brightness(93%) contrast(97%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-select {
  background-color: var(--white);
  border: 1px solid var(--stoke-color);
  box-sizing: border-box;
  cursor: pointer;
  clear: both;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--heading-color);
  height: 48px;
  outline: none;
  position: relative;
  user-select: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: nowrap;
  width: auto;
  text-align: start;
  padding: 13px 18px;
  border-radius: 10px;
}
.box-select.sort-select {
  min-width: 179px;
}
.box-select.active .list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.box-select.active .icon {
  transform: rotate(180deg);
}
.box-select .current {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  gap: 10px;
}
.box-select .current .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.box-select .current .list a {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-select .current .list a:hover {
  color: var(--primary-color);
}
.box-select .list {
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 5px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  font-size: 15px;
  max-height: 150px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(5px);
}
.box-select .option {
  cursor: pointer;
  outline: none;
  text-align: start;
  color: var(--heading-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 8px 16px;
}
.box-select .option.selected, .box-select .option.active, .box-select .option:focus {
  color: var(--primary-color);
  font-weight: 600;
}

.tf-destination {
  display: grid;
  gap: 12px;
  grid-template-rows: 330px 330px;
}
.tf-destination .swiper-slide:nth-child(1) {
  grid-area: item1;
}
.tf-destination .swiper-slide:nth-child(2) {
  grid-area: item2;
}
.tf-destination .swiper-slide:nth-child(3) {
  grid-area: item3;
}
.tf-destination .swiper-slide:nth-child(4) {
  grid-area: item4;
}
.tf-destination .swiper-slide:nth-child(5) {
  grid-area: item5;
}
.tf-destination .swiper-slide:nth-child(6) {
  grid-area: item6;
}
.tf-destination .swiper-slide:nth-child(7) {
  grid-area: item7;
}
.tf-destination .swiper-slide:nth-child(8) {
  grid-area: item8;
}
.tf-destination .swiper-slide:nth-child(9) {
  grid-area: item9;
}
.tf-destination .swiper-slide:nth-child(10) {
  grid-area: item10;
}
.tf-destination .swiper-slide:nth-child(11) {
  grid-area: item11;
}
.tf-destination.grid-1 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "item1 item1 item2 item3" "item1 item1 item4 item5";
}
.tf-destination.grid-2 {
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "item1 item1 item2 item2 item5 item5" "item1 item1 item3 item4 item5 item5";
}
.tf-destination.grid-3 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 330px);
  grid-template-areas: "item1 item1 item2 item2" "item1 item1 item3 item4" "item5 item6 item7 item7" "item8 item8 item11 item11" "item9 item10 item11 item11";
}
.tf-destination .item {
  height: 100%;
}
.tf-destination.box-single .swiper-slide:nth-child(2) .group-meta, .tf-destination.box-single .swiper-slide:nth-child(3) .group-meta, .tf-destination.box-single .swiper-slide:nth-child(4) .group-meta, .tf-destination.box-single .swiper-slide:nth-child(5) .group-meta {
  display: none;
}

.destination-post {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.destination-post .content {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.3s ease;
}
.destination-post .content h4 {
  flex: 1;
  min-width: 0;
}
.destination-post .content .total-tour {
  white-space: nowrap;
  flex-shrink: 0;
}
.destination-post .group-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.destination-post .group-meta .tf-btn {
  padding: 14px 24px;
  background-color: var(--border-header);
  border: var(--border-header);
  backdrop-filter: blur(4px);
  color: var(--white);
  transition: all 0.3s ease;
}
.destination-post .group-meta .tf-btn img {
  filter: brightness(0) invert(1);
}
.destination-post .group-meta .tf-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.destination-post .group-meta .tf-btn:hover img {
  filter: brightness(0) invert(1);
}

.tf-sw-location .swiper-slide {
  height: auto;
}
.tf-sw-location .img-style {
  display: block;
  width: 100%;
  height: 420px;
}
.tf-sw-location .destination-post {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.tf-sw-location .destination-post .content {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: calc(100% - 16px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}
.tf-sw-location .destination-post .group-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.tf-sw-location .destination-post .group-meta .tf-btn {
  padding: 14px 24px;
  background-color: var(--border-header);
  border: var(--border-header);
  backdrop-filter: blur(4px);
  color: var(--white);
  transition: all 0.3s ease;
}
.tf-sw-location .destination-post .group-meta .tf-btn img {
  filter: brightness(0) invert(1);
}
.tf-sw-location .destination-post .group-meta .tf-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.tf-sw-location .destination-post .group-meta .tf-btn:hover img {
  filter: brightness(0) invert(1);
}

.tf-sw-mobile .sw-pagination {
  display: none;
}

.modal-account .modal-dialog .modal-content {
  border-radius: 16px;
  border: 0;
  background: var(--white);
  overflow: hidden;
}

.modal-welcome .modal-dialog {
  max-width: 540px;
}
.modal-welcome .modal-content {
  border-radius: 16px;
}
.modal-welcome .form-welcome input {
  background-color: transparent;
}
.modal-welcome .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  cursor: pointer;
}
.modal-welcome .modal-top img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  aspect-ratio: 1.85/1;
}
.modal-welcome .modal-bottom {
  padding: 40px;
  margin: 0 auto;
}
.modal-welcome .modal-bottom .title-welcome {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 44px;
  font-family: "Lexend", sans-serif;
}
.modal-welcome .modal-bottom .text {
  margin-bottom: 40px;
}
.modal-welcome .modal-bottom .form-welcome,
.modal-welcome .modal-bottom .tf-social-icon {
  margin-bottom: 20px;
}
.modal-welcome .form-welcome fieldset input {
  padding-left: 44px;
}
.modal-welcome .form-welcome fieldset .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(8%) saturate(0%) hue-rotate(159deg) brightness(98%) contrast(96%);
}

.modal-filter .modal-content {
  height: 100%;
  border-radius: 0;
  padding: 32px;
  overflow-y: auto;
  background: #fff;
}
.modal-filter .modal-dialog-left {
  position: fixed;
  margin: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  transform: none;
  left: 0;
  top: 0;
}
.modal-filter.fade .modal-dialog-left {
  transform: translateX(-100%) !important;
}
.modal-filter.show .modal-dialog-left {
  transform: translateX(0) !important;
}

.flat-account {
  display: flex;
}
.flat-account .banner-account {
  max-width: 380px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.flat-account .banner-account img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flat-account .banner-account .logo-overlay {
  position: absolute;
  top: 32px;
  left: 24px;
  width: 168px;
  height: 44px;
  z-index: 2;
}
.flat-account .otp-inputs .otp-input {
  width: 44px;
  height: 48px;
  text-align: center;
  font-size: 20px;
  border: none;
  border-bottom: 2px solid var(--stoke-color);
  padding: 2px;
}
.flat-account .otp-inputs .otp-input:focus {
  border-bottom-color: var(--primary-color);
}
.flat-account .form-account {
  flex-grow: 1;
  padding: 40px;
}
.flat-account .form-account .box:not(:last-child) {
  margin-bottom: 24px;
}
.flat-account .form-account .title-box {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.flat-account .form-account .title-box .icon {
  font-size: 24px;
  cursor: pointer;
}
.flat-account .form-account .box-fieldset:not(:last-child) {
  margin-bottom: 30px;
}
.flat-account .form-account .box-fieldset label {
  margin-bottom: 10px;
  font-weight: 500;
}
.flat-account .form-account .box-fieldset .text-forgot {
  margin-top: 18px;
  color: var(--primary-color);
}
.flat-account .form-account .box-fieldset .text-forgot:hover {
  text-decoration: underline;
}
.flat-account .form-account .ip-field {
  position: relative;
}
.flat-account .form-account .ip-field img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(7%) saturate(117%) hue-rotate(60deg) brightness(92%) contrast(83%);
}
.flat-account .form-account .ip-field .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.flat-account .form-account .ip-field input {
  padding-left: 46px;
}
.flat-account .box-btn .text {
  margin-top: 18px;
}
.flat-account .group-btn {
  display: flex;
  gap: 10px;
}
.flat-account .group-btn .btn-social {
  width: 50%;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--stoke-color);
  border-radius: 16px;
}
.flat-account .group-btn .btn-social img {
  width: 20px;
  height: 20px;
}
.flat-account .group-btn .btn-social:hover {
  border-color: var(--primary-color);
}

.close-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background-color: var(--black);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.tf-single .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tf-single .meta .inner-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.tf-single .meta .inner-left .rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
.tf-single .meta .inner-left .rate .rating .icon {
  font-size: 14px;
}
.tf-single .meta .inner-left .rate .rating-text {
  color: var(--heading-color);
  font-weight: 700;
}
.tf-single .meta .inner-left .rate .review {
  color: var(--place-holder);
  font-weight: 400;
}
.tf-single .meta .inner-left .destination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-single .meta .inner-left .destination span {
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  color: var(--text-color);
}
.tf-single .meta .inner-left .destination img {
  width: 16px;
  height: 16px;
}
.tf-single .meta .inner-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.tf-single .meta .inner-right .action-btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.tf-single .meta .inner-right .action-btn:hover {
  color: var(--primary-color);
}

.tf-partner .box-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.tf-partner .box-content .inner-left {
  flex: 0 0 25%;
}
.tf-partner .box-content .inner-left span {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.tf-partner .box-content .inner-left ul li .box-icon {
  color: var(--heading-color);
}
.tf-partner .box-content .inner-left ul li .box-icon:hover {
  color: var(--primary-color);
}
.tf-partner .box-content .inner-right {
  flex: 0 0 75%;
  min-width: 0;
}

.tf-sw-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.tf-sw-partners::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.tf-sw-partners.color-1::before {
  background: linear-gradient(to right, rgb(220, 165, 70) 0%, rgba(220, 165, 70, 0.95) 20%, rgba(220, 165, 70, 0.7) 50%, rgba(220, 165, 70, 0.3) 80%, rgba(220, 165, 70, 0) 100%);
}
.tf-sw-partners.color-1::after {
  background: linear-gradient(to left, rgb(220, 165, 70) 0%, rgba(220, 165, 70, 0.95) 20%, rgba(220, 165, 70, 0.7) 50%, rgba(220, 165, 70, 0.3) 80%, rgba(220, 165, 70, 0) 100%);
}
.tf-sw-partners .partner-item {
  width: 180px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.tf-sw-partners .partner-item.partner-01:hover {
  filter: brightness(0) saturate(100%) invert(63%) sepia(33%) saturate(725%) hue-rotate(359deg) brightness(100%) contrast(94%);
  transform: scale(1.05);
}
.tf-sw-partners .partner-item.partner-02 {
  filter: brightness(0) invert(1);
}
.tf-sw-partners .partner-item.partner-02:hover {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

.flat-recommended .item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stoke-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.flat-recommended .item:hover {
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.2);
}
.flat-recommended .item .images-group {
  aspect-ratio: 3/2;
}
.flat-recommended .item .archive-bottom {
  padding: 28px 24px 23px 24px;
  flex-grow: 1;
}
.flat-recommended .item .archive-bottom .content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.flat-recommended .item .archive-bottom .content-top .list-star .icon {
  font-size: 14px;
}
.flat-recommended .item .archive-bottom .tour-title {
  margin-bottom: 18px;
}
.flat-recommended .item .archive-bottom .content-info-middle {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.flat-recommended .item .archive-bottom .content-info-middle .info {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-color);
}
.flat-recommended .item .archive-bottom .content-info-middle .info img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(7%) saturate(146%) hue-rotate(56deg) brightness(96%) contrast(87%);
}
.flat-recommended .item .archive-bottom .content-info-middle .info span {
  font-size: 14px;
  line-height: 140%;
}
.flat-recommended .item .archive-bottom .content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--stoke-color);
}
.flat-recommended .item .archive-bottom .content-bottom .price {
  color: var(--primary-color);
}
.flat-recommended .item .address {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.flat-recommended .item .address .icon {
  width: 16px;
  height: 16px;
}
.flat-recommended .item .location {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
}
.flat-recommended .item .group-meta {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flat-recommended .item .group-meta .tag-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.flat-recommended .item .group-meta .tag-meta .flag-tag {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  border-radius: 99px;
}
.flat-recommended .item .group-meta .tag-meta .count {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.3019607843);
  backdrop-filter: blur(4px);
  gap: 6px;
  border-radius: 99px;
}
.flat-recommended .item .group-meta .tag-meta .count img {
  width: 16px;
  height: 16px;
}
.flat-recommended .item .group-meta .tag-meta .count span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}
.flat-recommended .item .group-meta .tag-meta .count:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.flat-recommended .item .group-meta .tag-meta .count:hover img {
  filter: brightness(0) invert(1);
}
.flat-recommended .item .group-meta .btn-wished {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.flat-recommended .item .group-meta .btn-wished .icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(8%) saturate(967%) hue-rotate(179deg) brightness(90%) contrast(89%);
}
.flat-recommended .item .group-meta .btn-wished.active .icon {
  filter: brightness(0) saturate(100%) invert(39%) sepia(96%) saturate(2038%) hue-rotate(330deg) brightness(95%) contrast(101%);
}
.flat-recommended .item.list-style-01 {
  display: flex;
}
.flat-recommended .item.list-style-01 .archive-top {
  width: 44%;
}
.flat-recommended .item.list-style-02 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: none;
}
.flat-recommended .item.list-style-02 .group-meta {
  top: 24px;
  left: 24px;
  right: 24px;
}
.flat-recommended .item.list-style-02 .images-group {
  aspect-ratio: 4/5;
}
.flat-recommended .item.list-style-02 .archive-top {
  position: relative;
  width: 100%;
  height: 100%;
}
.flat-recommended .item.list-style-02 .archive-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.flat-recommended .item.list-style-02 .content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.flat-recommended .item.list-style-02 .rate .total-rate {
  color: var(--white);
}
.flat-recommended .item.list-style-02 .tour-title {
  color: var(--white);
}
.flat-recommended .item.list-style-02 .content-info-middle .info {
  color: rgba(255, 255, 255, 0.8) !important;
}
.flat-recommended .item.list-style-02 .content-info-middle .info img {
  filter: brightness(0) invert(1) opacity(0.8);
}
.flat-recommended .item.list-style-02 .content-bottom .price {
  color: var(--white);
}
.flat-recommended .item.list-style-02 .address .location {
  color: var(--white);
}
.flat-recommended .item.list-style-02 .address img {
  filter: brightness(0) invert(1);
}

.rating {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.rating .list-star {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.rating .list-star .icon {
  color: var(--star-color);
  font-size: 16px;
  flex-shrink: 0;
}
.rating .list-star .icon img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(32%) saturate(5285%) hue-rotate(330deg) brightness(97%) contrast(95%);
}
.rating .list-star .ic-empty {
  color: var(--input-color);
}
.rating .list-star .ic-empty img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(935%) hue-rotate(197deg) brightness(115%) contrast(79%);
}
.rating .list-star .icon-star.active,
.rating .list-star .icon-star.selected {
  color: var(--star-color);
}
.rating .rate {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.rating .rate .total-rate {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--heading-color);
}
.rating .rate .review {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: var(--place-holder);
}

.banner-section {
  background: url("../images/backgrounds/bg-01.jpg") no-repeat center center;
  background-size: cover;
  padding: 254px 0 232px;
  display: flex;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
}
.banner-section.banner-1 {
  background: url("../images/backgrounds/bg-04.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.banner-section.banner-2 {
  background: url("../images/backgrounds/bg-03.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.banner-section.rounded-style-01 {
  border-radius: 16px;
}
.banner-section.rounded-style-01::before {
  border-radius: 16px;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3019607843);
  z-index: 0;
}
.banner-section .content {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
  z-index: 1;
  position: relative;
  gap: 49px;
}
.banner-section .content .tf-action {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-section .content .tf-action .tf-btn {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 28px;
  position: relative;
  width: 80px !important;
}
.banner-section .content .tf-action .tf-btn::after, .banner-section .content .tf-action .tf-btn::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 9999px;
  animation: ripple 3s infinite;
}
.banner-section .content .tf-action .tf-btn::after {
  animation-delay: 0.5s;
}
.banner-section .content .tf-action .tf-btn::before {
  animation-delay: 0.9s;
}
.banner-section .content .tf-action .tf-btn .icon {
  color: #013C5A;
}
.banner-section .content .box-title {
  text-align: center;
  margin-bottom: 0;
}
.banner-section .content .box-title .title {
  color: var(--white);
}
.banner-section .content .box-title .subtitle {
  color: var(--white);
  font-size: 16px;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.tf-benefit.bg-white {
  background: none;
}
.tf-benefit.bg-white .wrap-benefit {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--stoke-color);
}
.tf-benefit .partner {
  margin-top: 80px;
}

.box-icon-benefits {
  padding: 48px 32px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100%;
  gap: 29px;
  flex-direction: column;
  border-radius: 16px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  will-change: transform, box-shadow;
  position: relative;
  z-index: 1;
}
.box-icon-benefits.style-row {
  flex-direction: row;
  padding: 32px;
}
.box-icon-benefits.style-row .wrap-icon {
  padding: 16px;
}
.box-icon-benefits:hover .wrap-icon {
  background-color: var(--primary-color);
}
.box-icon-benefits:hover .wrap-icon .icon {
  transform: rotateY(360deg);
  filter: brightness(0) invert(1);
}
.box-icon-benefits:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}
.box-icon-benefits .wrap-icon {
  padding: 20px;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 16px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  will-change: background-color;
}
.box-icon-benefits .wrap-icon .icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform 0.6s ease-in-out, filter 0.3s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  filter: brightness(0) saturate(100%) invert(70%) sepia(55%) saturate(503%) hue-rotate(351deg) brightness(90%) contrast(91%);
}
.box-icon-benefits .content {
  text-align: center;
  flex: 1;
}
.box-icon-benefits .content .name {
  margin-bottom: 14px;
}
.box-icon-benefits .content .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.flat-testimonial .box-testimonial-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 840px;
  width: 100%;
  margin: auto;
}
.flat-testimonial .box-testimonial-item .description {
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 32px;
}
.flat-testimonial .box-testimonial-item .info {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 2px;
  margin-top: 12px;
}
.flat-testimonial .box-testimonial-item .info .position {
  color: var(--text-color);
  line-height: 140%;
  font-size: 16px;
}
.flat-testimonial .box-testimonial-item.box-style-01 {
  background-color: #FDF8F1;
  border: 1px solid rgba(220, 165, 70, 0.1490196078);
  padding: 24px;
  border-radius: 20px;
  max-width: none;
}
.flat-testimonial .box-testimonial-item.box-style-01 .description {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
}
.flat-testimonial .flex-direction-nav a {
  width: 58px;
  height: 58px;
}
.flat-testimonial .flex-direction-nav.style-hero-1 {
  padding: 0;
  top: 11%;
}

.tf-tour-showcase .item {
  background-color: var(--white);
  border-radius: 16px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tf-tour-showcase .item .archive-top {
  position: relative;
}
.tf-tour-showcase .item .archive-top .img-style {
  border-radius: 16px 16px 0 0;
}
.tf-tour-showcase .item .archive-top .tag {
  position: absolute;
  bottom: -19px;
  left: 32px;
  top: auto !important;
}
.tf-tour-showcase .item .archive-top .tag .flag-total {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 7px 25px;
  border-radius: 99px;
  display: flex;
  text-align: center;
  align-items: center;
  font-weight: 500;
  line-height: 140%;
  font-size: 16px;
  border: 1px solid var(--primary-color);
}
.tf-tour-showcase .item .archive-top .tag .flag-total:hover {
  background: var(--white);
  color: var(--primary-color);
}
.tf-tour-showcase .item .archive-bottom {
  padding: 48px 32px 32px 32px;
}
.tf-tour-showcase .item .archive-bottom .tour-title {
  margin-bottom: 12px;
}
.tf-tour-showcase .item:hover {
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.1019607843);
}

.tf-best-trip {
  padding-top: 153px;
  padding-bottom: 11px;
}
.tf-best-trip .tf-scroll-text {
  position: relative;
}
.tf-best-trip .tf-scroll-text .heading {
  font-size: 182px;
  line-height: 218px;
  text-align: center;
}
.tf-best-trip .tf-scroll-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-best-trip .tf-scroll-text .tag-image {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.tf-best-trip .tf-scroll-text .tag-1 {
  width: 139px;
  height: 139px;
  left: 11%;
  bottom: -29%;
}
.tf-best-trip .tf-scroll-text .tag-2 {
  width: 96px;
  height: 96px;
  left: 36%;
  top: -32%;
}
.tf-best-trip .tf-scroll-text .tag-3 {
  width: 63px;
  height: 63px;
  left: 66%;
  bottom: 0;
}
.tf-best-trip .tf-scroll-text .tag-4 {
  width: 260px;
  height: 260px;
  right: 6%;
  top: -64%;
}

.tf-vacation-hero.style-01 {
  padding: 110px 56px;
  position: relative;
}
.tf-vacation-hero.style-01 .flat-service {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 10;
}
.tf-vacation-hero.style-01 .flat-service .box-benefit {
  background-color: var(--white);
  padding: 48px 32px;
  align-items: center;
}
.tf-vacation-hero.style-01 .flat-service .box-benefit .icon-box {
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--secondary-color);
}
.tf-vacation-hero.style-01 .flat-service .box-benefit .icon-box .icon {
  width: 64px;
  height: 64px;
}
.tf-vacation-hero.style-01 .box-image {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: stretch;
  height: 100%;
  width: 50%;
  gap: 16px;
}
.tf-vacation-hero.style-01 .box-image .image-left,
.tf-vacation-hero.style-01 .box-image .image-right {
  text-align: center;
  max-width: 100%;
  height: 100%;
  border-radius: 16px;
}
.tf-vacation-hero.style-01 .box-image .image-left {
  flex: 0 0 323px;
}
.tf-vacation-hero.style-01 .box-image .image-left img {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 323/568;
}
.tf-vacation-hero.style-01 .box-image .image-right {
  flex: 0 0 384px;
}
.tf-vacation-hero.style-01 .box-image .image-right img {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 384/568;
}
.tf-vacation-hero.style-01 .content-right {
  align-items: flex-start !important;
  margin-top: 56px;
}
.tf-vacation-hero .bg-imgwtext {
  background: url("../images/backgronud/transparent-2.png") no-repeat center center;
  background-size: cover;
  background-color: var(--secondary-color);
  padding: 80px 56px;
  border-radius: 16px;
  overflow: visible;
}
.tf-vacation-hero .bg-imgwtext.bg-style-imgwtext-01 {
  background: none;
  padding: 120px 56px;
}
.tf-vacation-hero .bg-imgwtext .content-right {
  width: 50% !important;
}
.tf-vacation-hero .bg-imgwtext .wrap-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 16px;
  align-items: center;
  margin: -134px 0;
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.tf-vacation-hero .bg-imgwtext .wrap-service .left {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.tf-vacation-hero .bg-imgwtext .wrap-service .box-benefit {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stoke-color);
  padding: 32px;
  gap: 24px;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.07);
  height: 100%;
}
.tf-vacation-hero .bg-imgwtext .wrap-service .box-benefit .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: var(--secondary-color);
}
.tf-vacation-hero .bg-imgwtext .wrap-service .box-benefit .icon-box .icon {
  width: 42px;
  height: 42px;
}
.tf-vacation-hero .bg-imgwtext .wrap-service .box-benefit:hover .icon-box {
  background-color: var(--primary-color);
}
.tf-vacation-hero .bg-imgwtext .wrap-service .box-benefit:hover .icon-box .icon {
  filter: brightness(0) invert(1);
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  gap: 72px;
  position: relative;
}
.tf-vacation-hero .flat-img-with-text.style-04 {
  gap: 16px;
  position: relative;
}
.tf-vacation-hero .flat-img-with-text.style-04 .rotating-badge {
  left: 42%;
  bottom: 38%;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-left {
  display: grid;
  align-items: stretch;
  flex: 1;
  height: auto;
  grid-template-columns: 57% 43%;
  grid-template-rows: 1fr;
  gap: 16px;
  margin-right: 16px;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-left .inner-left {
  margin-top: 0;
  height: 100%;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-left .inner-left img {
  aspect-ratio: 4/6 !important;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-left .inner-right {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-left .inner-right img {
  aspect-ratio: 1/1 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-vacation-hero .flat-img-with-text.style-04 .content-right {
  width: 57.356%;
  padding: 76px 304px 76px 156px;
}
.tf-vacation-hero .flat-img-with-text.style-05 {
  gap: 128px;
  justify-content: center;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-left {
  padding: 68px 0;
  margin-left: -142px;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-left .box-map {
  width: 100%;
  height: auto;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-left .box-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right {
  padding: 128px 0;
  align-items: flex-start;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .rating .total-rate,
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .rating .review {
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .sub {
  color: var(--white);
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .destination-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border-header);
  border-bottom: 1px solid var(--border-header);
  flex-direction: column;
  width: 100%;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule .desc {
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule .calendar {
  display: flex;
  gap: 42px;
  align-items: flex-start;
  flex-direction: row;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule .calendar .item {
  padding-right: 48px;
  border-right: 1px solid var(--border-header);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule .calendar .item label {
  color: var(--text-color);
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .box-schedule .calendar .item h3 {
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .wg-contact .subtitle,
.tf-vacation-hero .flat-img-with-text.style-05 .content-right .wg-contact .phone {
  color: var(--white);
}
.tf-vacation-hero .flat-img-with-text.row-reverse {
  flex-direction: row-reverse;
}
.tf-vacation-hero .flat-img-with-text .content-left {
  width: 48%;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.tf-vacation-hero .flat-img-with-text .content-left.w-style-01 {
  width: 32%;
}
.tf-vacation-hero .flat-img-with-text .content-left .rotating-badge {
  bottom: 33%;
  left: 53%;
}
.tf-vacation-hero .flat-img-with-text .content-left .inner-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
  flex: 0 0 272px;
}
.tf-vacation-hero .flat-img-with-text .content-left .inner-right img:first-child {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 272/286;
  border-radius: 16px;
}
.tf-vacation-hero .flat-img-with-text .content-left .inner-right img:last-child {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 272/207;
  border-radius: 16px;
}
.tf-vacation-hero .flat-img-with-text .content-left .inner-left {
  flex: 0 0 304px;
  margin-top: 90px;
}
.tf-vacation-hero .flat-img-with-text .content-left .inner-left img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 304/481;
}
.tf-vacation-hero .flat-img-with-text .content-right {
  width: 52%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
.tf-vacation-hero .flat-img-with-text .content-right.w-style-01 {
  width: 57%;
}
.tf-vacation-hero .flat-img-with-text .content-right.v3 {
  width: 48.4%;
}
.tf-vacation-hero .flat-img-with-text .wd-banner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.tf-vacation-hero .flat-img-with-text .wd-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/1.18;
}
.tf-vacation-hero .flat-img-with-text .box-title {
  margin-bottom: 0;
}
.tf-vacation-hero .flat-img-with-text .box-title .title {
  margin-bottom: 32px;
}
.tf-vacation-hero .flat-img-with-text .flat-service {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stoke-color);
}
.tf-vacation-hero .flat-img-with-text .testimonial-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
}
.tf-vacation-hero .flat-img-with-text .testimonial-box .box-title {
  margin-bottom: 32px;
}
.tf-vacation-hero .flat-img-with-text .testimonial-box .title {
  margin-bottom: 12px;
}
.tf-vacation-hero .tf-review-box {
  width: 100%;
  overflow: hidden;
}
.tf-vacation-hero .card-review {
  width: 100%;
  overflow: hidden;
}
.tf-vacation-hero .box-benefit {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.tf-vacation-hero .box-benefit .icon-box {
  width: 48px;
  height: 48px;
  transition: transform 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tf-vacation-hero .box-benefit .icon-box .icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tf-vacation-hero .box-benefit .content-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tf-vacation-hero .box-benefit .content-box .description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 140%;
}
.tf-vacation-hero .box-benefit:hover .icon {
  transform: rotateY(360deg);
}
.tf-vacation-hero .card-wrapper {
  width: 46%;
  height: auto;
  overflow: hidden;
}
.tf-vacation-hero .card-wrapper .tf-rating-card {
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: inset(0 0 0 0);
}
.tf-vacation-hero .card-wrapper .tf-rating-card .swiper-wrapper {
  overflow: visible;
}
.tf-vacation-hero .card-wrapper .tf-rating-card .card-review {
  width: 510px;
  border-radius: 16px;
  transition: 0.3s ease;
  height: 550px;
}
.tf-vacation-hero .card-wrapper .tf-rating-card .card-review img {
  border-radius: 16px;
}
.tf-vacation-hero .card-wrapper .tf-rating-card .card-review .box-info {
  position: absolute;
  left: 8px;
  bottom: 8px;
  right: 8px;
  background-color: var(--white);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.tf-vacation-hero .card-wrapper .tf-rating-card .card-review .box-info .info {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  flex-direction: column;
}
.tf-vacation-hero .card-wrapper .tf-rating-card .swiper-slide-active .card-review .box-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wg-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.wg-contact .box-info {
  display: flex;
  gap: 16px;
  flex-direction: row;
  flex-shrink: 0;
}
.wg-contact .box-info .icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  background-color: var(--primary-color);
  font-size: 24px;
  align-items: center;
  display: flex;
  border-radius: 16px;
  justify-content: center;
  flex-shrink: 0;
}
.wg-contact .box-info .icon.ic-style-01 {
  background-color: var(--white);
  color: var(--primary-color);
}
.wg-contact .box-info .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.wg-contact .box-info .content .phone {
  color: var(--primary-color);
}
.wg-contact .tf-btn {
  letter-spacing: 0.06em;
}

.tf-vacation-hero-v2 .flat-img-with-contact {
  display: flex;
  gap: 110px;
}
.tf-vacation-hero-v2 .flat-img-with-contact .wg-content {
  width: 48%;
  padding: 60px 0;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item {
  display: flex;
  gap: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item.phone a {
  font-weight: 700;
  font-size: 30px;
  color: var(--primary-color);
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item.email a {
  color: var(--primary-color);
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .content {
  display: flex;
  gap: 2px;
  flex-direction: column;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .icon {
  display: flex;
  justify-content: center;
  align-items: start;
  padding-right: 20px;
  border-right: 1px solid var(--stoke-color);
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .icon img {
  width: 50px;
  height: 50px;
  font-size: 50px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(4%) saturate(219%) hue-rotate(60deg) brightness(95%) contrast(85%);
  color: #ACAFAB;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-images {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}
.tf-vacation-hero-v2 .flat-img-with-contact .box-images img {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
}
.tf-vacation-hero-v2 .flat-img-with-map {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.tf-vacation-hero-v2 .flat-img-with-map .box-title {
  margin-bottom: 24px;
}
.tf-vacation-hero-v2 .flat-img-with-map .wg-content {
  width: 50%;
  padding: 40px 0;
}
.tf-vacation-hero-v2 .flat-img-with-map .flat-map {
  height: 100%;
}
.tf-vacation-hero-v2 .flat-img-with-map .flat-map .top-map {
  height: 430px;
  width: 620px;
  border-radius: 16px;
}

.feature-list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.feature-list .feature-item {
  display: flex;
  gap: 8px;
}
.feature-list .icon {
  width: 20px;
  height: 20px;
  font-size: 20px;
  filter: brightness(0) saturate(100%) invert(92%) sepia(79%) saturate(3859%) hue-rotate(317deg) brightness(89%) contrast(91%);
  color: var(--primary-color);
}

.flat-types {
  overflow: hidden;
}

.box-type {
  padding: 30px 24px 24px 24px;
  background-color: var(--white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  border: 1px solid var(--stoke-color);
  overflow: hidden;
}
.box-type .icon-box {
  overflow: hidden;
}
.box-type .icon-box.ic-1 {
  background-color: var(--secondary-color);
  padding: 28px;
  border-radius: 50%;
}
.box-type .icon-box.ic-1 .icon {
  width: 64px;
  height: 64px;
}
.box-type .icon-box .icon {
  width: 80px;
  height: 80px;
  color: var(--primary-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18), filter 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.box-type .icon-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-type .icon-box img,
.box-type .icon-box svg path {
  filter: brightness(0) saturate(100%) invert(97%) sepia(74%) saturate(5030%) hue-rotate(318deg) brightness(89%) contrast(90%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type .content {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column;
}
.box-type .content .name {
  color: var(--heading-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type .content .total-tour {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type.active, .box-type:hover {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type.active .icon-box .icon, .box-type:hover .icon-box .icon {
  color: var(--white);
}
.box-type.active .icon-box svg path, .box-type:hover .icon-box svg path {
  fill: var(--white);
}
.box-type.active .icon-box img, .box-type:hover .icon-box img {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}
.box-type.active .content .name,
.box-type.active .content .total-tour, .box-type:hover .content .name,
.box-type:hover .content .total-tour {
  color: var(--white);
}
.box-type.active::before, .box-type:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.box-type::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--primary-color);
  transform: scale(1, 0);
  transition: transform 400ms ease;
  transform-origin: bottom center;
  z-index: -1;
  border-radius: 16px;
}
.box-type.no-bg::before {
  display: none;
}
.box-type.no-bg:hover .content .name {
  color: var(--primary-color);
}
.box-type.no-bg:hover .content .total-tour {
  color: var(--text-color);
}
.box-type.style-01 {
  border: transparent;
}
.box-type.style-01::before {
  background-color: var(--white);
}
.box-type.style-01:hover {
  box-shadow: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type.style-01:hover .icon-box {
  background-color: var(--primary-color);
}
.box-type.style-01:hover .content .name {
  color: var(--primary-color);
}
.box-type.style-01:hover .content .total-tour {
  color: var(--text-color);
}
.box-type.style-01 {
  padding: 0 30px;
}
.box-type.style-02 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 180px 0 12px 0;
  position: relative;
}
.box-type.style-02::before {
  content: none;
}
.box-type.style-02 .content .name,
.box-type.style-02 .content .total-tour {
  color: var(--white);
}
.box-type.style-02.bg-1 {
  background-image: url("../images/locations/tour-55.jpg");
}
.box-type.style-02.bg-2 {
  background-image: url("../images/locations/tour-56.jpg");
}
.box-type.style-02.bg-3 {
  background-image: url("../images/locations/tour-57.jpg");
}
.box-type.style-02.bg-4 {
  background-image: url("../images/locations/tour-59.jpg");
}
.box-type.style-02.bg-5 {
  background-image: url("../images/locations/tour-13.jpg");
}
.box-type.style-02.bg-6 {
  background-image: url("../images/locations/tour-58.jpg");
}
.box-type.style-02:hover {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type.style-02:hover .content {
  position: relative;
  z-index: 2;
}
.box-type.style-02:hover .content .name,
.box-type.style-02:hover .content .total-tour {
  color: var(--primary-color);
}
.box-type.style-03 {
  border: none;
  padding: 0 30px;
}
.box-type.style-03 .icon-box {
  width: 120px;
  height: 120px;
  border-radius: 16px;
}
.box-type.style-03 .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.box-type.style-03:hover {
  box-shadow: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-type.style-03:hover .icon-box img {
  filter: brightness(60%);
}

.flat-tour-find .perfect-tour-wrapper {
  position: relative;
}
.flat-tour-find .perfect-tour-wrapper .flex-direction-nav {
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  left: -80px;
  width: calc(100% + 160px);
}
.flat-tour-find .perfect-tour-wrapper .flex-direction-nav a {
  width: 58px;
  height: 58px;
  color: var(--primary-color);
}
.flat-tour-find .perfect-tour-wrapper .flex-direction-nav a img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(268%) hue-rotate(358deg) brightness(88%) contrast(97%);
}
.flat-tour-find .perfect-tour-wrapper .flex-direction-nav a:hover img {
  filter: brightness(0) invert(1);
}
.flat-tour-find .tour-slide {
  width: 480px;
  height: 604px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flat-tour-find .tf-find-tour {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.flat-tour-find .tf-find-tour .wrap-content {
  position: relative;
  pointer-events: none;
}
.flat-tour-find .tf-find-tour .wrap-content .image-wrap {
  border-radius: 16px;
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.flat-tour-find .tf-find-tour .wrap-content .image-wrap img {
  border-radius: inherit;
  height: 604px;
  width: 480px;
}
.flat-tour-find .tf-find-tour .wrap-content .content {
  position: absolute;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 50px);
  bottom: 32px;
  z-index: 10;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  pointer-events: none;
  width: 100%;
  padding: 0 24px;
}
.flat-tour-find .tf-find-tour .wrap-content .content .name {
  margin-bottom: 12px;
  color: var(--white);
}
.flat-tour-find .tf-find-tour .wrap-content .content .description {
  color: var(--white);
  margin-bottom: 24px;
}
.flat-tour-find .tf-find-tour .swiper-slide-active .wrap-content .content {
  opacity: 1;
  pointer-events: auto;
}

.section-overlap--lg {
  margin-top: -150px;
}

.bg-color-first {
  background-color: rgba(220, 165, 70, 0.0784313725);
  overflow: hidden;
}

.bg-first {
  background: url("../images/backgrounds/bg-transparent.jpg") no-repeat center center;
  background-size: cover;
  background-color: var(--primary-color);
}

.bg-second {
  background: url("../images/backgrounds/bg-transparent-2.jpg") no-repeat center center;
  background-size: cover;
  background-color: var(--secondary-color);
  border-radius: 16px;
}

.bg-three {
  position: relative;
  background: url("../images/backgrounds/bg-02.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.bg-three::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #5F6C5A 0%, #343832 50%, #2F332D 66%);
  opacity: 0.5;
}
.bg-three .container {
  position: relative;
  z-index: 2;
}

.tf-promo-section {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}
.tf-promo-section .flat-img-with-text {
  gap: 0;
  padding: 100px 0;
}
.tf-promo-section .flat-img-with-text .box-title .title {
  margin-bottom: 12px;
}
.tf-promo-section .flat-img-with-text .content-right {
  justify-content: center;
  align-items: flex-start !important;
}
.tf-promo-section .flat-img-with-text .content-left {
  height: 100%;
}
.tf-promo-section .action-download {
  align-items: center;
  justify-content: flex-start;
}
.tf-promo-section .action-download a {
  background-color: var(--heading-color);
  border-radius: 12px;
}
.tf-promo-section .banner-device {
  height: 100%;
  margin: -145px 0 -152px -175px;
  padding: 0;
  position: relative;
  z-index: 10;
}
.tf-promo-section .banner-device img {
  max-width: 770px;
  max-height: 550px;
  object-fit: cover;
}

.grid-img-group {
  position: relative;
  padding: 15% 0;
  min-height: 698px;
  width: 100%;
  height: 100%;
}

.tf-image-box {
  width: 51.6%;
  height: 100%;
}

.tf-image-wrap {
  position: relative;
  border-radius: 50%;
}
.tf-image-wrap .img-style {
  overflow: hidden;
  border-radius: 50%;
}
.tf-image-wrap .img-style:hover {
  cursor: pointer;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.2);
}
.tf-image-wrap.item-1, .tf-image-wrap.item-2, .tf-image-wrap.item-3 {
  height: max-content;
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  aspect-ratio: 1/1;
}
.tf-image-wrap.item-1 {
  left: 1.5%;
  top: 32%;
  width: 68.769%;
  z-index: 1;
  background-color: var(--white);
  border: 1px solid rgba(95, 108, 90, 0.2);
}
.tf-image-wrap.item-2 {
  top: 0;
  left: 31px;
  width: 86.585%;
  z-index: 2;
}
.tf-image-wrap.item-3 {
  bottom: 0;
  right: 0;
  width: 53.92%;
  z-index: 3;
}

.tf-hero-title {
  overflow: hidden;
}
.tf-hero-title .wg-hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.tf-hero-title .wg-hero-content .content-left {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.tf-hero-title .wg-hero-content .content-left .box-title {
  margin-bottom: 90px;
}
.tf-hero-title .wg-hero-content .content-left .box-title .title {
  margin-bottom: 32px;
}
.tf-hero-title .wg-hero-content .content-left .slider-control {
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-start;
  gap: 24px;
}
.tf-hero-title .wg-hero-content .tf-sw-hero {
  width: 100%;
}
.tf-hero-title .wg-hero-content .content-right {
  width: 66.67%;
  flex: 1;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  padding-left: 3.125%;
}
.tf-hero-title .wg-hero-content .content-right .tf-sw-hero {
  overflow: visible;
  clip-path: inset(0 -38.8% 0 0);
}
.tf-hero-title .wg-hero-content .content-right .hero-card {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 32px;
  overflow: hidden;
}
.tf-hero-title .wg-hero-content .content-right .hero-card .hero-image {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.tf-hero-title .wg-hero-content .content-right .hero-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tf-hero-title .wg-hero-content .content-right .hero-info .name {
  white-space: nowrap;
}
.tf-hero-title .wg-hero-content .content-right .hero-info .divider {
  width: 54px;
  height: 2px;
  background-color: var(--heading-color);
}
.tf-hero-title .wg-hero-content .content-right .hero-info .number,
.tf-hero-title .wg-hero-content .content-right .hero-info .name a,
.tf-hero-title .wg-hero-content .content-right .hero-info .divider {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tf-hero-title .wg-hero-content .content-right .hero-info:hover .number {
  color: var(--primary-color);
}
.tf-hero-title .wg-hero-content .content-right .hero-info:hover .name a {
  color: var(--primary-color);
}
.tf-hero-title .wg-hero-content .content-right .hero-info:hover .divider {
  background-color: var(--primary-color);
}

.box-member {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.box-member .box-img {
  position: relative;
  border-radius: 16px;
}
.box-member .box-img img {
  aspect-ratio: 3/4;
}
.box-member .box-img .member-social {
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 16px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%);
  left: 50%;
  gap: 16px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-member .box-img .member-social .item-social:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 16px;
}
.box-member .box-img .member-social .item-social:hover .icon {
  color: var(--primary-color);
}
.box-member .box-img .member-social .link-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.box-member .box-img .member-social .link-social:not(:last-child) {
  padding-right: 16px;
}
.box-member .box-img .member-social .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: var(--white);
  font-size: 18px;
}
.box-member .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-member .content .position {
  color: var(--text-color);
  font-size: 16px;
  line-height: 140%;
}
.box-member .content .box-icon {
  gap: 8px;
}
.box-member .content .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-color);
  border: 1px solid var(--stoke-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.box-member .content .icon:hover {
  border-color: var(--primary-color);
  color: var(--white);
  background-color: var(--primary-color);
}
.box-member:hover .box-img .member-social {
  opacity: 1;
  visibility: visible;
  bottom: 32px;
}
.box-member:hover .content .name-member {
  color: var(--primary-color);
}

.wg-faq:not(:last-child) {
  margin-bottom: 48px;
}
.wg-faq .topic {
  margin-bottom: 24px;
  font-weight: 500;
}
.wg-faq .faq-item {
  border-bottom: 1px solid var(--stoke-color);
  padding-bottom: 24px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.wg-faq .faq-item.style-01 {
  padding: 24px 30px;
  border-radius: 16px;
  border: 1px solid var(--stoke-color);
}
.wg-faq .faq-item.style-01.active {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}
.wg-faq .faq-item.style-01.active .faq-top {
  padding-bottom: 12px;
}
.wg-faq .faq-item.style-01.active .faq-top .question-title,
.wg-faq .faq-item.style-01.active .faq-top .icon {
  color: #5F6C5A;
}
.wg-faq .faq-item .faq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  position: relative;
  gap: 10px;
  color: var(--heading-color);
}
.wg-faq .faq-item .question-title {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.wg-faq .faq-item .collapse.show {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.wg-faq .faq-item .icon {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wg-faq .faq-item .faq-answer {
  text-transform: none;
}
.wg-faq .faq-item:not(:last-child) {
  margin-bottom: 24px;
}
.wg-faq .faq-item.active .faq-top {
  padding-bottom: 16px;
}
.wg-faq .faq-item.active .faq-top .question-title,
.wg-faq .faq-item.active .faq-top .icon {
  color: var(--primary-color);
}
.wg-faq .faq-item.active .faq-top .icon {
  transform: rotate(180deg);
}

.map-marker-container {
  position: absolute;
  margin-top: 10px;
  transform: translate3d(-50%, -100%, 0);
}

.marker-container {
  position: relative;
  top: 25px;
  left: 10px;
  width: 46px;
  height: 46px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-perspective: 1000;
}

.marker-card .face {
  position: absolute;
  width: 26px;
  height: 26px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  color: #fff;
  z-index: 100;
  background: var(--primary-color);
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: content-box;
  background-clip: content-box;
  line-height: 46px;
  font-size: 24px;
}

.marker-card .face::before,
.marker-card .face::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 9999px;
  -webkit-animation: ripple 2s infinite;
  animation: ripple 2s infinite;
}

.marker-card .face::before {
  content: "";
  position: absolute;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.marker-card .face::after {
  content: "";
  position: absolute;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.marker-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  z-index: 1;
}

#map .infoBox {
  margin-left: 160px;
  margin-bottom: -140px;
}
#map .infoBox.style-01 {
  margin: 0;
  margin-left: -40px;
  margin-bottom: -20px;
}

.map-listing-item {
  position: relative;
}

.map-listing-item .archive-top {
  width: 50%;
}

.map-listing-item .infoBox-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 32px;
  height: 32px;
  line-height: 24px;
  font-size: 20px;
  z-index: 9;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.map-listing-item .infoBox-close.ic-01 .icon {
  color: var(--white);
}
.map-listing-item .infoBox-close.ic-01:hover .icon {
  color: var(--primary-color);
}
.map-listing-item .infoBox-close:hover {
  background-color: var(--input-color);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.map-listing-item .item {
  position: relative;
  border-radius: 16px;
  background: var(--white);
  width: fit-content;
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
  display: flex;
  align-items: stretch;
  border: 1px solid var(--stoke-color);
  overflow: hidden;
  width: 560px;
}
.map-listing-item .item.box-01 {
  display: block;
  width: 360px;
}
.map-listing-item .item.box-01 .archive-top {
  width: 100%;
}
.map-listing-item .item.box-01 .archive-bottom {
  padding: 20px;
}
.map-listing-item .item.box-01 .image-box {
  border-radius: 16px 16px 0 0;
}
.map-listing-item .item.box-01 .image-box img {
  width: 359px;
  height: 202px;
}
.map-listing-item .item .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  font-family: "Outfit", sans-serif;
}
.map-listing-item .item .contact-item .info-phone {
  font-weight: 700;
  color: var(--primary-color);
}
.map-listing-item .item .contact-item .icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(0%) saturate(2928%) hue-rotate(137deg) brightness(77%) contrast(85%);
}
.map-listing-item .item .contact-title {
  margin-bottom: 12px;
  font-family: "Outfit", sans-serif;
}
.map-listing-item .item .contact-item:not(:last-child) {
  margin-bottom: 8px;
}
.map-listing-item .item .group-meta {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-listing-item .item .group-meta .tag-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.map-listing-item .item .group-meta .tag-meta .flag-tag {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  border-radius: 99px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.map-listing-item .item .group-meta .tag-meta .count {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.3019607843);
  backdrop-filter: blur(4px);
  gap: 6px;
  border-radius: 99px;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}
.map-listing-item .item .group-meta .tag-meta .count img {
  width: 16px;
  height: 16px;
  transition: filter 0.3s ease;
}
.map-listing-item .item .group-meta .tag-meta .count span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  transition: color 0.3s ease;
}
.map-listing-item .item .group-meta .tag-meta .count:hover {
  background-color: var(--primary-color);
}
.map-listing-item .item .group-meta .tag-meta .count:hover img {
  filter: brightness(0) invert(1);
}
.map-listing-item .item .group-meta .btn-wished {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.map-listing-item .item .group-meta .btn-wished .icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(8%) saturate(967%) hue-rotate(179deg) brightness(90%) contrast(89%);
  transition: filter 0.3s ease;
}
.map-listing-item .item .group-meta .btn-wished:hover {
  background-color: #f2f2f2;
}
.map-listing-item .item .group-meta .btn-wished.active .icon {
  filter: brightness(0) saturate(100%) invert(39%) sepia(96%) saturate(2038%) hue-rotate(330deg) brightness(95%) contrast(101%);
}
.map-listing-item .item .image-box {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  height: 100%;
}
.map-listing-item .item .image-box img {
  display: block;
  width: 290px;
  height: 220px;
  object-fit: cover;
  transition: all 500ms ease;
}

.map-listing-item .archive-bottom {
  position: relative;
  padding: 24px;
}
.map-listing-item .archive-bottom .content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.map-listing-item .archive-bottom .content-top .icon {
  font-size: 14px;
}
.map-listing-item .archive-bottom .content-info-middle {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.map-listing-item .archive-bottom .content-info-middle .info {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-color);
}
.map-listing-item .archive-bottom .content-info-middle .info img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(7%) saturate(146%) hue-rotate(56deg) brightness(96%) contrast(87%);
}
.map-listing-item .archive-bottom .content-info-middle .info span {
  font-size: 14px;
  line-height: 140%;
}
.map-listing-item .archive-bottom .tour-title {
  text-transform: capitalize;
  font-family: "Outfit", sans-serif;
  margin-bottom: 18px;
}
.map-listing-item .archive-bottom .content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--stoke-color);
}
.map-listing-item .archive-bottom .address {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.map-listing-item .archive-bottom .location {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
}
.map-listing-item .archive-bottom .price {
  color: var(--primary-color);
}

.cluster-map-visible {
  text-align: center;
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  background-color: var(--white);
  border: 8px solid rgba(238, 103, 66, 0.1);
  box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
  box-sizing: content-box;
  background-clip: content-box;
}

.flat-map .top-map {
  height: 800px;
}

.flat-tour-with-map {
  overflow: hidden;
  padding-right: 16px;
}
.flat-tour-with-map .wrap-left {
  height: calc(100vh - 80px);
}
.flat-tour-with-map .flat-map {
  width: 100%;
  height: 100%;
}
.flat-tour-with-map .flat-map .top-map {
  height: 100%;
}
.flat-tour-with-map .wrap-right {
  padding-bottom: 32px !important;
  height: calc(100vh - 80px);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 32px !important;
}

.tf-destination-detail .tf-sw-destination {
  overflow: hidden;
}
.tf-destination-detail .tf-sw-destination .swiper-slide {
  width: 368px;
  transition: width 0.3s ease;
}
.tf-destination-detail .tf-sw-destination .swiper-slide .group-meta {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tf-destination-detail .tf-sw-destination .swiper-slide.current-item {
  width: 748px;
}
.tf-destination-detail .tf-sw-destination .swiper-slide.current-item .group-meta {
  opacity: 1;
  visibility: visible;
}
.tf-destination-detail .tf-sw-destination .destination-post img:not(.icon) {
  width: 100%;
  height: 613px;
  object-fit: cover;
}

.box-property-detail:not(:last-child) {
  margin-bottom: 48px;
}

.property-specification-item .info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  justify-content: flex-start;
}
.property-specification-item .info-box .item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 168px;
}
.property-specification-item .info-box .item .box-icon {
  border-radius: 16px;
  background-color: var(--secondary-color);
}
.property-specification-item .info-box .item .box-icon .icon {
  filter: brightness(0) saturate(100%) invert(92%) sepia(79%) saturate(3859%) hue-rotate(317deg) brightness(89%) contrast(91%);
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.property-specification-item .info-box .item .box-icon:hover {
  background-color: var(--primary-color);
}
.property-specification-item .info-box .item .box-icon:hover .icon {
  color: var(--white);
  filter: brightness(0) invert(1);
}
.property-specification-item .info-box .item .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.property-activitties .tag .tag-item {
  padding: 16px;
  border-radius: 16px;
}

.property-schedule .tour-plan-item {
  padding-bottom: 32px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.property-schedule .tour-plan-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: -32px;
  width: 2px;
  border-left: 1px dashed var(--primary-color);
  z-index: 0;
}
.property-schedule .tour-plan-item.active .plan-topic .title-plan {
  color: var(--primary-color);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.property-schedule .tour-plan-item.active .plan-topic .icon-CaretDown {
  color: var(--primary-color);
  transform: rotate(180deg);
}
.property-schedule .tour-plan-item:last-child {
  padding-bottom: 0;
}
.property-schedule .plan-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.property-schedule .plan-topic .title-plan {
  font-weight: 500;
}
.property-schedule .plan-topic .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 18px;
}
.property-schedule .plan-topic .icon.icon-CaretDown {
  margin-left: auto;
  width: 24px;
  height: 24px;
}
.property-schedule .plan-topic .icon.icon-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
}
.property-schedule .plan-content {
  padding-left: 48px;
  padding-top: 16px;
}

.property-map .flat-map .top-map {
  height: 430px;
  border-radius: 16px;
}
.property-map .location-top .location-title {
  font-weight: 500;
  margin-bottom: 8px;
}
.property-map .location-top .location-meta {
  display: flex;
  gap: 4px;
}
.property-map .location-top .location-meta .icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) saturate(100%) invert(41%) sepia(0%) saturate(1127%) hue-rotate(321deg) brightness(89%) contrast(91%);
}
.property-map .location-top .location-meta .location-value {
  font-size: 14px;
}

.property-customer-reviews .wg-review-summary {
  display: flex;
  align-items: center;
  gap: 58px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--stoke-color);
}
.property-customer-reviews .rating-breakdown-group {
  flex: 1;
  width: 100%;
}
.property-customer-reviews .box-breakdown-item .box-head {
  display: flex;
  margin-bottom: 8px;
  justify-content: space-between;
}
.property-customer-reviews .box-breakdown-item .box-head .rating {
  gap: 8px;
}
.property-customer-reviews .box-breakdown-item .box-head .rating .total-rate {
  font-weight: 500;
}
.property-customer-reviews .box-breakdown-item .progress {
  height: 6px;
  background-color: rgba(95, 108, 90, 0.1490196078);
}
.property-customer-reviews .box-breakdown-item .progress .progress-bar {
  background-color: var(--primary-color);
  border-radius: 999px;
}
.property-customer-reviews .box-breakdown-item:not(:last-child) {
  margin-bottom: 12px;
}
.property-customer-reviews .rating-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.property-customer-reviews .rating-summary .rating-score .score-value {
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-right: 16px;
}
.property-customer-reviews .rating-summary .rating-score .score-max {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--place-holder);
}

.wg-calendar .box-head-calendar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.wg-calendar .nav-btn {
  display: flex;
  align-items: center;
  border: 1px solid #ECECEC;
  padding: 12px;
  border-radius: 16px;
}
.wg-calendar .nav-btn .icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.wg-calendar .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--primary-color);
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.wg-calendar .weekdays .weekday {
  text-align: center;
  font-weight: 500;
  color: var(--white);
  font-size: 16px;
  padding: 10px;
}
.wg-calendar .days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--stoke-color);
}
.wg-calendar .days-grid .day-cell {
  border-right: 1px solid var(--stoke-color);
  border-bottom: 1px solid var(--stoke-color);
  padding: 8px 16px;
  text-align: center;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.wg-calendar .days-grid .day-cell:hover:not(.empty):not(.today) {
  background-color: #F7F7F6;
}
.wg-calendar .days-grid .day-cell.empty {
  background-color: #F7F7F6;
  pointer-events: none;
  cursor: default;
}
.wg-calendar .days-grid .day-cell.today, .wg-calendar .days-grid .day-cell.active {
  background-color: var(--primary-color);
  color: var(--white);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.wg-calendar .days-grid .day-cell.today .day-name,
.wg-calendar .days-grid .day-cell.today .day-price, .wg-calendar .days-grid .day-cell.active .day-name,
.wg-calendar .days-grid .day-cell.active .day-price {
  color: var(--white);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.wg-calendar .days-grid .day-cell.active:hover {
  color: var(--text-color);
}
.wg-calendar .days-grid .day-cell.active:hover .day-name,
.wg-calendar .days-grid .day-cell.active:hover .day-price {
  color: var(--text-color);
}
.wg-calendar .days-grid .day-number {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}
.wg-calendar .days-grid .day-name,
.wg-calendar .days-grid .day-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
}

.tf-image-slider .item {
  overflow: hidden;
  border-radius: 16px;
}
.tf-image-slider .photo-box {
  aspect-ratio: 3/2;
  border-radius: 16px;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-color);
  font-weight: 400;
}
.divider-text::before, .divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--stoke-color);
}
.divider-text::before {
  margin-right: 12px;
}
.divider-text::after {
  margin-left: 12px;
}

.tab-content .tab-pane {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
}

.tab-content .tab-pane:not(.show) {
  opacity: 0;
  transform: translateY(10px);
}

.tab-content .tab-pane.show {
  opacity: 1;
  transform: translateY(0);
}

.map {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  z-index: 1;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------
   MEDIA QUERIES
   -------------------------------------------------------------- */
/* ====== MAX-WIDTH (Mobile First) ====== */
@media (max-width: 1600px) {
  .tf-vacation-hero.style-01 {
    padding: 80px 10px;
  }
  .tf-vacation-hero.style-01 .flat-service {
    top: 65%;
  }
  .tf-vacation-hero.style-04 .content-left {
    grid-template-columns: 56% 44%;
    gap: 14px;
    margin-right: 14px;
  }
  .tf-vacation-hero.style-04 .content-left .inner-right {
    gap: 14px;
  }
  .tf-vacation-hero.style-04 .content-right {
    width: 57.356% !important;
    padding: 70px 240px 70px 140px !important;
  }
  .hero .flat-hero {
    flex-direction: column;
  }
  .hero .flat-hero .content-left {
    width: 100%;
    margin-top: 60px;
  }
  .hero .flat-hero .content-left .box-title {
    padding: 0 !important;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .flat-hero .content-left .box-title .title {
    font-size: 80px;
  }
  .hero .flat-hero .content-right {
    width: 100%;
    margin-top: 20px;
    padding: 0 30px;
  }
  .hero .flat-hero .content-right .inner-left {
    flex: 0 0 48%;
  }
  .hero .flat-hero .tab-content {
    left: 6%;
  }
  .hero .flat-hero .rotating-badge {
    top: 42%;
    left: 49%;
  }
}
@media (max-width: 1440px) {
  .tf-vacation-hero .flat-img-with-text.style-04 .content-right {
    padding: 60px 120px 60px 80px;
  }
  .flat-section-v2,
  .flat-section-v3,
  .flat-section-v4,
  .flat-section {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .header .menu-nav {
    gap: 20px;
  }
  .header .header-ct-right .wrap-login-menu {
    gap: 20px;
  }
  .slider-control.style-02 {
    margin-top: 48px;
    margin-bottom: 2px;
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 120px;
    line-height: 100%;
  }
  .tf-best-trip .tf-scroll-text .tag-1 {
    width: 100px;
    height: 100px;
  }
  .tf-best-trip .tf-scroll-text .tag-2 {
    width: 80px;
    height: 80px;
  }
  .tf-best-trip .tf-scroll-text .tag-3 {
    width: 55px;
    height: 55px;
  }
  .tf-best-trip .tf-scroll-text .tag-4 {
    width: 170px;
    height: 170px;
  }
  .tf-perfect-tour,
  .tf-sw-hero {
    overflow: hidden !important;
    clip-path: none !important;
  }
  .flat-tour-find .flex-direction-nav {
    display: none;
  }
  .tf-destination .content h4 {
    font-size: 16px;
  }
  .tf-destination .content .subtitle {
    font-size: 15px;
  }
  .tf-promo-section .flat-img-with-text {
    flex-direction: column;
    gap: 120px;
  }
  .tf-promo-section .flat-img-with-text .content-left {
    width: 100%;
  }
  .tf-promo-section .flat-img-with-text .content-left .banner-device {
    margin: -145px auto;
  }
  .tf-promo-section .flat-img-with-text .content-right {
    width: 100%;
  }
  .tf-image-box {
    width: 100%;
  }
  .tf-vacation-hero.style-01 .box-image .image-left,
  .tf-vacation-hero.style-01 .box-image .image-right {
    flex: 1 1 50% !important;
  }
  .tf-vacation-hero.style-01 .box-image .image-left img,
  .tf-vacation-hero.style-01 .box-image .image-right img {
    aspect-ratio: 3/5;
  }
  .tf-vacation-hero.style-01 .box-image {
    width: 100%;
  }
  .tf-vacation-hero.style-01 .flat-img-with-text {
    flex-direction: column-reverse !important;
  }
  .tf-vacation-hero.style-04 .content-right {
    padding: 76px 200px 76px 120px;
  }
  .cus-ovl-1 {
    overflow: hidden !important;
    clip-path: none !important;
  }
  .section-overlap--lg {
    margin-top: -100px;
  }
  .slider-default .home-5 .box-title h1 {
    font-size: 200px !important;
  }
}
@media (max-width: 1199px) {
  .tf-partner .box-content {
    display: grid;
  }
  .header .menu-nav {
    gap: 10px;
  }
  .header .header-ct-right .wrap-login-menu {
    gap: 15px;
  }
  .header .header-ct-right .wrap-login-menu .heart::after {
    right: -8px;
  }
  .header .header-ct-right .wrap-login-menu .search::before {
    right: -8px;
  }
  .header.style-2 .list-nav {
    padding: 0 16px;
  }
  .tf-booking-sidebar {
    margin-top: 40px;
  }
  .box-title .tf-meta {
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
  }
  .sidebar-filter {
    padding-bottom: 20px;
  }
  .tf-vacation-hero-v2 .flat-img-with-map {
    flex-direction: column;
  }
  .tf-vacation-hero-v2 .flat-img-with-map .wg-content {
    width: 100%;
  }
  .tf-vacation-hero-v2 .flat-img-with-map .flat-map .top-map {
    width: 100%;
    aspect-ratio: 16/9;
    height: 100%;
  }
  .hero .flat-hero .content-right {
    padding: 0;
  }
  .hero .flat-hero .tab-content {
    left: 5px;
  }
  .slider-default .swiper-slide.home-4 .box-title {
    padding: 290px 0 90px;
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 100px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-1 {
    width: 80px !important;
    height: 80px !important;
    left: 10% !important;
    bottom: -55% !important;
  }
  .tf-best-trip .tf-scroll-text .tag-2 {
    width: 70px !important;
    height: 70px !important;
    top: -50% !important;
  }
  .tf-best-trip .tf-scroll-text .tag-3 {
    width: 45px !important;
    height: 45px !important;
    bottom: -20% !important;
  }
  .tf-best-trip .tf-scroll-text .tag-4 {
    width: 150px !important;
    height: 150px !important;
    top: -100% !important;
  }
  .flat-img-with-text {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .flat-img-with-text .grid-img-group {
    min-height: unset;
    padding: 0;
  }
  .flat-img-with-text .grid-img-group .tf-image-wrap {
    position: unset;
  }
  .flat-img-with-text .grid-img-group .item-2 {
    width: 400px;
  }
  .flat-img-with-text .grid-img-group .item-3,
  .flat-img-with-text .grid-img-group .item-1 {
    display: none;
  }
  .flat-img-with-text.style-05 .content-left {
    margin-left: 0 !important;
  }
  .flat-img-with-text.style-05 .content-right {
    padding: 68px 0 !important;
  }
  .flat-img-with-text.style-04 .content-right {
    padding: 60px 120px 60px 80px !important;
  }
  .flat-img-with-text .content-left,
  .flat-img-with-text .content-right {
    width: 100% !important;
  }
  .flat-img-with-text .content-left {
    align-items: stretch !important;
  }
  .flat-img-with-text .content-left .banner-device {
    margin: auto !important;
  }
  .flat-img-with-text .content-left .banner-device img {
    max-width: 600px;
    max-height: 600px;
  }
  .flat-img-with-text .inner-left {
    margin-top: 0 !important;
  }
  .flat-img-with-text .inner-left,
  .flat-img-with-text .inner-right {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .flat-img-with-text .rotating-badge {
    left: 50% !important;
  }
  .flat-img-with-text .content-right {
    gap: 24px !important;
  }
  .flat-img-with-text .card-wrapper {
    width: 100%;
  }
  .flat-img-with-text .flat-service {
    padding-bottom: 24px !important;
  }
  .flat-img-with-contact {
    flex-direction: column-reverse;
  }
  .flat-img-with-contact .wg-content {
    width: 100% !important;
    padding: 0 20px !important;
  }
  .tf-destination {
    grid-template-rows: 250px 250px !important;
  }
  .tf-destination.grid-2 {
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-areas: "item1 item1 item2 item3" "item1 item1 item4 item5" !important;
  }
  .flat-recommended .item.list-style-01 {
    display: block !important;
  }
  .flat-recommended .item.list-style-01 .archive-top {
    width: 100% !important;
  }
  .flat-recommended .nav-tab {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .tf-vacation-hero .bg-imgwtext .flat-img-with-text .content-right {
    width: 100% !important;
  }
  .tf-vacation-hero .bg-imgwtext .wrap-service {
    grid-template-columns: repeat(1, 1fr);
    margin: auto;
    width: 100%;
  }
  .tf-hero-title .wg-hero-content {
    flex-direction: column;
    gap: 20px;
  }
  .tf-hero-title .wg-hero-content .content-left,
  .tf-hero-title .wg-hero-content .content-right {
    width: 100%;
  }
  .tf-hero-title .wg-hero-content .content-left .box-title {
    margin-bottom: 20px;
  }
  .tf-hero-title .wg-hero-content .content-left .slider-control {
    margin-left: auto;
  }
  .tf-hero-title .wg-hero-content .content-right {
    padding-left: 0;
  }
  .slider-control {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .header .list-nav {
    display: none;
  }
  .header .header-ct-right .wrap-login-menu {
    gap: 20px;
  }
  .header .toggle-mobile {
    display: flex;
  }
  .title {
    font-size: 40px !important;
  }
  .flat-section .subtitle {
    font-size: 15px;
  }
  .flat-section .description,
  .flat-section .desc {
    font-size: 15px;
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 75px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-1 {
    width: 60px !important;
    height: 60px !important;
    bottom: -65% !important;
    border-radius: 12px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-2 {
    width: 50px !important;
    height: 50px !important;
    top: -60% !important;
    border-radius: 12px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-3 {
    width: 35px !important;
    height: 35px !important;
    bottom: -30% !important;
    border-radius: 8px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-4 {
    width: 130px !important;
    height: 130px !important;
    top: -120% !important;
    border-radius: 12px !important;
  }
  .flat-tour-with-map {
    padding-right: 0;
  }
  .flat-tour-with-map .wrap-right {
    padding-right: 0 !important;
    padding-top: 32px !important;
  }
  .flat-testimonial .flex-direction-nav {
    display: none;
  }
  .flat-testimonial .sw-pagination {
    display: block !important;
  }
  .flat-testimonial .box-testimonial-item .description {
    font-size: 20px;
    line-height: 100%;
  }
  .wd-navigation {
    gap: 8px;
  }
  .wd-navigation .nav-item {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .wd-navigation .nav-item .icon {
    font-size: 12px;
  }
  .flat-section {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
  }
  .sidebar-blog {
    margin-top: 40px;
  }
  .flat-blog-detail h1 {
    font-size: 30px;
    line-height: 100%;
  }
  .tf-partner.home-2 {
    margin-top: 60px;
  }
  .slider-default .home-3 .box-title {
    padding: 100px 0 250px !important;
  }
  .slider-default .home-3 .box-title h1 {
    margin-bottom: 10px;
  }
  .slider-default .home-3 .wrap-search-link {
    margin-top: 100px;
  }
  .slider-default .home-4 .box-title {
    padding: 200px 0 90px;
  }
  .slider-default .home-1 .box-title {
    padding: 150px 0 250px;
  }
  .slider-default .home-5 .box-title h1 {
    font-size: 100px !important;
  }
  .slider-default .box-title {
    margin-bottom: 300px;
  }
  .slider-default .box-title.grid-banner {
    margin-bottom: 0px !important;
  }
  .slider-default .box-title h1 {
    font-size: 40px !important;
  }
  .slider-default .box-title p {
    font-size: 14px !important;
  }
  .slider-default .box-title h3 {
    font-size: 36px !important;
  }
  .slider-default .box-meta,
  .slider-default .slide-indicator {
    display: none;
  }
  .tab-content {
    width: 100%;
  }
  .tab-content.pos-1 {
    bottom: 0px;
  }
  .flex-direction-nav {
    top: 25%;
  }
  .flex-direction-nav a {
    width: 50px;
    height: 50px;
  }
  .flex-direction-nav a img {
    width: 18px;
    height: 18px;
  }
  .flex-direction-nav.style-hero-1 {
    padding: 0 20px;
  }
  .flex-direction-nav.style-hero-2 {
    right: 5px;
    top: 35%;
  }
  .form-search {
    flex-direction: column;
  }
  .form-search.style-1 {
    gap: 24px !important;
  }
  .form-search .inner-group {
    flex-direction: column;
  }
  .form-search .inner-group .form-group {
    border: none;
  }
  .form-search .inner-group .form-group .list.w-1 {
    top: calc(100% + 10px) !important;
  }
  .form-search .inner-group .form-group:first-child {
    padding-left: 24px;
  }
  .form-search .box-btn-filter .tf-btn.btn-1 {
    padding: 24px;
  }
  .hero .flat-hero .content-left .box-title .description {
    font-size: 15px;
  }
  .hero .flat-hero .tab-content {
    bottom: -30%;
    left: 0;
  }
  .hero .flat-hero .tab-content .form-search {
    flex-direction: column;
    gap: 24px;
  }
  .hero .flat-hero .tab-content .form-search .inner-group {
    flex-direction: column;
    gap: 12px;
  }
  .hero .flat-hero .tab-content .form-search .inner-group .form-group {
    padding: 0;
  }
  .hero .flat-hero .tab-content .form-search .inner-group .form-group .list {
    top: calc(100% + 12px);
  }
  .hero .flat-hero .tab-content .form-search .inner-group .form-group .current {
    padding: 14px;
    border: 1px solid var(--stoke-color);
    border-radius: 16px;
  }
  .home-4 .wrap-search-link .inner-group,
  .home-5 .wrap-search-link .inner-group {
    gap: 12px;
  }
  .home-4 .wrap-search-link .inner-group .form-group,
  .home-5 .wrap-search-link .inner-group .form-group {
    padding: 0;
  }
  .home-4 .wrap-search-link .inner-group .form-group .current,
  .home-5 .wrap-search-link .inner-group .form-group .current {
    padding: 12px !important;
    border: 1px solid var(--stoke-color);
    border-radius: 999px;
  }
  .home-4 .wrap-search-link .inner-group .form-group .list,
  .home-5 .wrap-search-link .inner-group .form-group .list {
    top: calc(100% + 12px) !important;
  }
  .advanced-form .group-checkbox .group-amentities {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .tf-vacation-hero.style-01 .flat-service {
    top: 55%;
  }
  .tf-vacation-hero.style-01 .box-image {
    flex-direction: column;
  }
  .tf-vacation-hero.style-01 .box-image .image-left img,
  .tf-vacation-hero.style-01 .box-image .image-right img {
    aspect-ratio: 1/1;
  }
  .tf-vacation-hero.style-04 .content-left {
    grid-template-columns: 55% 45%;
    margin-right: 0;
  }
  .tf-vacation-hero.style-04 .content-right {
    padding: 48px 60px;
  }
  .tf-vacation-hero .bg-imgwtext {
    padding: 30px 15px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info {
    gap: 24px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item {
    gap: 16px;
    font-size: 16px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item.phone a {
    font-size: 24px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .icon img {
    width: 40px;
    height: 40px;
  }
  .banner-section {
    padding: 150px 0 !important;
  }
  .flat-tour-find .tf-find-tour .wrap-content .image-wrap img {
    height: 450px;
    width: 100%;
  }
  .flat-tour-find .tf-find-tour .wrap-content .content {
    bottom: 24px;
    padding: 0 20px;
  }
  .tf-destination-detail .tf-sw-destination .swiper-slide {
    width: 100% !important;
  }
  .tf-destination-detail .tf-sw-destination .swiper-slide .group-meta {
    opacity: 1;
    visibility: visible;
  }
  .tf-single h1 {
    font-size: 30px;
  }
  .tf-single .meta {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .tf-single .meta .inner-left {
    gap: 12px !important;
  }
  .flat-account .banner-account {
    display: none;
  }
  .tf-destination.grid-2, .tf-destination.grid-1 {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 250px 250px 250px !important;
    grid-template-areas: "item1 item1" "item2 item3" "item4 item5" !important;
  }
  .tf-destination .content {
    padding: 14px !important;
  }
  .tf-destination .content h4 {
    font-size: 12px;
  }
  .tf-destination .content .subtitle {
    font-size: 12px;
  }
  .footer .widget-box {
    margin-bottom: 30px;
  }
  .wg-faq:not(:last-child) {
    margin-bottom: 36px;
  }
  .wg-faq .faq-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .wg-faq .faq-item {
    padding-bottom: 20px;
  }
  .wg-faq .faq-item.style-01 {
    padding: 20px;
  }
  .wg-faq .faq-item .question-title {
    font-size: 18px;
  }
  .wg-faq .faq-item.active .faq-top {
    padding-bottom: 12px;
  }
  .content-widget.banner-1 {
    padding: 20px;
  }
  .content-widget .content.style-01 {
    flex-direction: column;
  }
  .content-widget .content.style-01 .wg-contact {
    flex-direction: column;
    gap: 24px;
  }
  .content-widget .content.style-01 .wg-contact .box-info {
    width: 100%;
  }
  .content-widget .content.style-01 .tf-btn {
    width: 100%;
  }
  .content-widget .content .name {
    font-size: 32px;
  }
  .property-schedule .plan-content {
    padding-left: 40px;
  }
  .property-schedule .tour-plan-item:not(:last-child)::before {
    left: 13px;
  }
}
@media (max-width: 767px) {
  .header .header-ct-left a img {
    max-width: 176px;
    height: auto;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-left {
    padding: 40px 0;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right {
    padding: 40px 0 !important;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .sub {
    font-size: 40px !important;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .destination-name {
    font-size: 50px !important;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .subtitle {
    font-size: 15px;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .calendar .item {
    padding-right: 24px !important;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .calendar .item label {
    font-size: 14px;
  }
  .tf-vacation-hero .flat-img-with-text.style-05 .content-right .calendar .item h3 {
    font-size: 18px;
  }
  .tf-vacation-hero .flat-img-with-text.style-04 .content-left {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .tf-vacation-hero .flat-img-with-text.style-04 .content-left .inner-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .tf-vacation-hero .flat-img-with-text.style-04 .content-right {
    padding: 32px 24px;
  }
  .tf-vacation-hero .flat-img-with-text.style-04 .rotating-badge {
    display: none;
  }
  .tf-partner .box-content {
    flex-direction: column;
    gap: 20px;
  }
  .tf-partner .box-content .inner-left {
    width: 100%;
    justify-content: start;
  }
  .tf-partner .box-content .inner-right {
    width: 100%;
  }
  .tf-card-invoice-sum .content-top {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .tf-card-invoice-sum .content-top .img-tour .img-tour-value {
    max-width: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .tf-card-invoice-sum .content-top .total-item {
    width: 100%;
    text-align: right;
    margin-top: 8px;
  }
  .tf-discount {
    flex-direction: column;
    align-items: start !important;
  }
  .tf-form-book,
  .wg-form-contact {
    padding: 24px;
  }
  .hero .flat-hero .tab-content {
    position: unset;
  }
  .categories-list {
    justify-content: center;
    gap: 12px;
  }
  .categories-list a {
    font-size: 13px;
    padding: 6px 12px;
    gap: 6px;
  }
  .categories-list a .icon {
    font-size: 18px;
  }
  .flat-blog-detail .flat-quote {
    padding: 15px;
  }
  .advanced-form .group-checkbox .group-amentities {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 55px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-1 {
    width: 55px !important;
    height: 55px !important;
    border-radius: 12px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-2 {
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-3 {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-4 {
    width: 100px !important;
    height: 100px !important;
    border-radius: 12px !important;
  }
  .tf-promo-section .content-left {
    align-items: stretch !important;
  }
  .tf-promo-section .content-left .banner-device {
    margin: auto !important;
  }
  .tf-promo-section .content-left .banner-device img {
    max-width: 500px;
    max-height: 500px;
  }
  .section-overlap--lg {
    margin-top: -60px;
  }
  .modal-filter .modal-dialog-left {
    max-width: 320px;
  }
  .property-customer-reviews .wg-review-summary {
    flex-direction: column;
    gap: 24px;
  }
  .flat-contact .wg-form-contact {
    padding: 16px;
  }
  .flat-contact .tf-contact-form {
    grid-template-columns: 1fr;
  }
  .flat-contact .tf-contact-form .full {
    grid-column: span 1;
  }
  .rotating-badge {
    width: 150px;
    height: 150px;
  }
  .rotating-badge .icon {
    width: 34px;
    height: 52px;
  }
  .slider-control {
    margin-top: 20px;
  }
  .property-calendar {
    width: 100%;
    overflow: hidden;
  }
  .property-calendar .wg-calendar {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .property-calendar .wg-calendar .weekdays,
  .property-calendar .wg-calendar .days-grid {
    min-width: 500px;
  }
  .mobile-only {
    display: block;
  }
}
@media (max-width: 575px) {
  .header.style-1 .header-wrap .header-ct-left {
    padding: 14px 30px 14px 0;
  }
  .header .header-ct-right {
    gap: 10px;
  }
  .header .header-ct-right .wrap-login-menu .heart,
  .header .header-ct-right .wrap-login-menu .search {
    display: none;
  }
  .header .header-ct-right .wrap-login-menu .login {
    font-size: 14px;
  }
  .flat-section .box-title {
    margin-bottom: 30px;
  }
  .flat-section .subtitle {
    font-size: 14px !important;
  }
  .flat-section .description,
  .flat-section .desc {
    font-size: 14px !important;
  }
  .title {
    margin-bottom: 16px !important;
    font-size: 24px !important;
    line-height: 100%;
  }
  .wrap-form-comment .group-ip {
    grid-template-columns: 1fr;
  }
  .tf-grid-layout.grid-mb {
    display: flex !important;
    gap: 0;
  }
  .tf-grid-layout {
    gap: 30px;
  }
  .action-download {
    flex-direction: column;
    align-items: center;
  }
  .action-download .tf-btn {
    width: 100%;
  }
  .advanced-form {
    max-height: 80vh;
    overflow-y: auto;
  }
  .flex-direction-nav {
    display: none;
  }
  .categories-list {
    gap: 8px;
  }
  .categories-list a {
    font-size: 12px;
    padding: 6px 10px;
    gap: 4px;
  }
  .categories-list a .icon {
    font-size: 16px;
  }
  .destination-post .group-meta {
    left: 0;
    margin: auto;
    padding: 0 10px;
    flex-direction: column;
    width: 100% !important;
  }
  .destination-post .group-meta .tf-btn {
    width: 100%;
  }
  .slider-default .home-1 .box-title {
    padding: 200px 0 300px !important;
  }
  .slider-default .home-5 .box-title h1 {
    font-size: 50px !important;
  }
  .listing-pagination {
    flex-direction: column;
  }
  .box-title .tf-meta .contact-info ul li a {
    width: 36px;
    height: 36px;
  }
  .box-title .tf-meta .contact-info ul li a .icon {
    font-size: 14px;
  }
  .box-title .tf-meta .contact-info .user-avatars img {
    width: 36px;
    height: 36px;
  }
  .box-title .tf-meta .contact-info .user-avatars .user-count {
    width: 36px;
    height: 36px;
  }
  .box-title .tf-meta .divider {
    display: none;
  }
  .box-title .tf-meta span {
    font-size: 12px;
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 42px !important;
  }
  .tf-best-trip .tf-scroll-text .tag-1 {
    left: 17% !important;
    bottom: -100% !important;
  }
  .tf-best-trip .tf-scroll-text .tag-2 {
    top: -100% !important;
    left: 35% !important;
  }
  .tf-best-trip .tf-scroll-text .tag-3 {
    bottom: -40% !important;
    left: 62%;
  }
  .tf-best-trip .tf-scroll-text .tag-4 {
    width: 70px !important;
    height: 70px !important;
    top: -130% !important;
    border-radius: 12px !important;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info {
    gap: 20px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item.phone a {
    font-size: 22px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .icon {
    padding-right: 0;
    border-right: none;
    align-items: center;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .icon img {
    width: 36px;
    height: 36px;
  }
  .tf-vacation-hero-v2 .flat-img-with-contact .box-info .info-item .content {
    align-items: center;
  }
  .advanced-form .group-checkbox .group-amentities {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .tf-single h1 {
    font-size: 20px;
  }
  .tf-single .meta .inner-left {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .backtotop {
    bottom: 100px;
    right: 10px;
  }
  .banner-section {
    padding: 80px 0 !important;
  }
  .banner-section .box-title .subtitle {
    font-size: 14px !important;
  }
  .flat-img-with-text .content-right {
    gap: 16px !important;
  }
  .flat-img-with-text .card-review {
    width: 100% !important;
    height: 100% !important;
  }
  .flat-img-with-text .card-review img {
    aspect-ratio: 1/1;
  }
  .flat-img-with-text .flat-service {
    gap: 20px !important;
  }
  .flat-img-with-text .wg-contact {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .flat-img-with-text .wg-contact .tf-btn {
    width: 100%;
  }
  .flat-img-with-text.style-04 .content-right {
    padding: 24px 16px !important;
  }
  .flat-blog-list .flat-blog-item .content-box .post-author span {
    font-size: 12px;
  }
  .flat-blog-list .flat-blog-item .content-box .post-author .icon {
    font-size: 12px;
    width: 12px;
    height: 12px;
  }
  .flat-latest-hero h1 {
    font-size: 48px;
  }
  .flat-blog-detail h1 {
    font-size: 24px;
    line-height: 100%;
  }
  .flat-blog-detail .meta-blog {
    gap: 10px;
  }
  .flat-account .form-account {
    padding: 30px !important;
  }
  .wrap-form-comment .rating-group {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .tf-image-box .tf-image-wrap.item-3 {
    bottom: 15%;
  }
  .tf-destination {
    display: flex !important;
    gap: 0 !important;
  }
  .tf-destination .swiper-slide {
    height: 338px !important;
  }
  .tf-destination .swiper-slide .group-meta {
    bottom: 10px;
    left: 0;
    padding: 0 10px;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .tf-destination .swiper-slide:nth-child(2) .group-meta, .tf-destination .swiper-slide:nth-child(3) .group-meta, .tf-destination .swiper-slide:nth-child(4) .group-meta, .tf-destination .swiper-slide:nth-child(5) .group-meta {
    display: flex !important;
  }
  .tf-image-slider .photo-box {
    aspect-ratio: 1/1;
  }
  .tf-image-slider .group-meta {
    bottom: 10px;
    left: 0;
    padding: 0 10px;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .tf-sw-mobile .sw-pagination {
    display: block !important;
  }
  .hero .flat-hero .content-left .box-title .description {
    font-size: 14px;
  }
  .hero .content-right .rotating-badge {
    display: none;
  }
  .property-schedule .plan-topic {
    gap: 12px;
  }
  .property-schedule .plan-topic .title-plan {
    font-size: 14px;
  }
  .property-schedule .plan-topic .icon {
    font-size: 16px;
  }
  .property-schedule .plan-topic .icon.icon-check {
    width: 28px;
    height: 28px;
  }
  .property-schedule .plan-topic .icon.icon-CaretDown {
    width: 20px;
    height: 20px;
  }
  .property-schedule .plan-content {
    padding-left: 32px;
    padding-top: 12px;
    font-size: 14px;
  }
  .property-schedule .tour-plan-item {
    padding-bottom: 24px;
  }
  .property-schedule .tour-plan-item:not(:last-child)::before {
    left: 11px;
    top: 28px;
    bottom: -24px;
  }
  .tf-promo-section .content-left {
    align-items: stretch !important;
  }
  .tf-promo-section .content-left .banner-device {
    margin: auto !important;
  }
  .tf-promo-section .content-left .banner-device img {
    max-width: 400px;
    max-height: 400px;
  }
  .close-btn {
    right: 10px;
  }
}
@media (max-width: 425px) {
  .header .wrap-login-menu .login span {
    display: none;
  }
  .header .header-ct-right {
    gap: 5px;
  }
  .header .header-ct-right .wrap-login-menu ul .login {
    gap: 3px;
  }
  .tf-promo-section .content-left {
    align-items: stretch !important;
  }
  .tf-promo-section .content-left .banner-device {
    margin: auto !important;
  }
  .tf-promo-section .content-left .banner-device img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
  .categories-list a {
    flex: 0 0 calc(50% - 4px);
    justify-content: center;
  }
  .flat-blog-list .flat-blog-item .content-box .post-author span {
    font-size: 10px;
    gap: 5px;
  }
  .flat-blog-list .flat-blog-item .content-box .post-author span:not(:first-child) {
    margin-left: 0;
  }
  .flat-blog-list .flat-blog-item .content-box .description {
    font-size: 14px;
  }
  .flat-blog-list .flat-blog-item .content-box .blog-name {
    font-size: 20px;
    line-height: 100%;
  }
  .tf-best-trip .tf-scroll-text .heading {
    font-size: 38px !important;
  }
}

/*# sourceMappingURL=style.css.map */
