@charset "utf-8";
/*-------------------------------------------------------------------------------------------------------
* Template Name 	 : Payrul - Online Luxury Hotel Booking HTML Template 
* Version			 : 1.1
*---------------------------------------------------------------------------------------------------------
NOTE: This is the main stylesheet of the template, This file contains the styling for the actual Template
---------------------------------------------------------------------------------------------------------*/ 
/*----------------------------------------------------------------------------
Table of contents  
---------------------------------------------------------------------------- 
1. General
    1.1 Root Code Variables
	1.2 Theme Reset
	1.3 Global Elements

2. Header
	2.1 header-style-one
	2.2 header-style-two
    2.2 header-style-three

3. content
	3.1 banner-area
        3.1.1 banner-style-one
        3.1.2 banner-style-one
        3.1.3 banner-style-one
	3.2 availability-area
    3.3 pricing area
    3.4 testimonials area
        3.4.1 testimonials-style-one
        3.4.2 testimonials-style-two 
    3.5 booking area
        3.5.1 booking-style-one
        3.5.2 booking-style-two
    3.6 marquee-area
    3.7 intro-area
    3.8 video-area
        3.8.1 video-style-one
        3.8.2 video-style-two

4. footer
    4.1 footer-style-one
    4.2 footer-style-two
    4.3 footer-style-three 

### Inner Banner Section ###

5 about-area
    5.1 fun-factor-area
    5.2 hotel-review-area
    5.3 similar-room-area 

6 room-area
    6.1 room-style-one
    6.2 room-style-two
    6.3 room-style-three

7 room-details-area

8 services-area
    8.1 services-style-one
    8.2 services-style-two
    8.3 services-style-three

9 services-details-area

10 restaurant-booking-area

11 local-amenities-area
    11.1 local-amenities-one
    11.2 local-amenities-two

12 staffs-area

13 gallery-area

14 offer-area

15 news-area
    15.1 news-style-one
    15.2 news-style-two
    15.3 news-style-three

16 news-single
    16.1 sidebar-widget

17 contact-area

18 not-found-area

19 faq-area

20 policy

21 coming-soon-area
----------------------------------------------------------------------------*/ 

/*----------------------------------------------------------------------------
1. General
----------------------------------------------------------------------------*/
/* 1.1 Root Code Variables */
:root {
    /* Main color */
    --primary: #ffc1b4;
    --primary-hover: #e3a79b;
    --primary-dark: #dd9282;
    --secondary: #3b6ff5;
    --secondary-hover: #2e5fdd;
    --secondary-light: #a7bffe;
    /* text color */
    --white-color: #ffffff;
    --black-color: #000000;
    /* background Color */
    --light: #fffefd;
    --bg-light: #f3f8fc;
    --dark: #151f37;
    --dark-light: #515e7d;
    --footer-dark: #1c1c1c;
    --footer-light: #292929;
    /* border */
    --border-color: rgba(255, 255, 255, 0.4);
    /* Fonts */
    --font-family-base: "Poppins", sans-serif;
    --font-family-title: "Forum", cursive;
    /* transition and transform */
    --transition: all 300ms ease;
    /* shadow */
    --header-box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1);
    --box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    /* Primary RGBA */
    --rgba-primary-1: rgba(255, 193, 180, 0.1);
    --rgba-primary-2: rgba(255, 193, 180, 0.2);
    --rgba-primary-3: rgba(255, 193, 180, 0.3);
    --rgba-primary-4: rgba(255, 193, 180, 0.4);
    --rgba-primary-5: rgba(255, 193, 180, 0.5);
    --rgba-primary-6: rgba(255, 193, 180, 0.6);
    --rgba-primary-7: rgba(255, 193, 180, 0.7);
    --rgba-primary-8: rgba(255, 193, 180, 0.8);
    --rgba-primary-9: rgba(255, 193, 180, 0.9);
    /* Secondary RGBA */
    --rgba-secondary-1: rgba(59, 111, 245, 0.1);
    --rgba-secondary-2: rgba(59, 111, 245, 0.2);
    --rgba-secondary-3: rgba(59, 111, 245, 0.3);
    --rgba-secondary-4: rgba(59, 111, 245, 0.4);
    --rgba-secondary-5: rgba(59, 111, 245, 0.5);
    --rgba-secondary-6: rgba(59, 111, 245, 0.6);
    --rgba-secondary-7: rgba(59, 111, 245, 0.7);
    --rgba-secondary-8: rgba(59, 111, 245, 0.8);
    --rgba-secondary-9: rgba(59, 111, 245, 0.9);
    /* black RGBA */
    --rgba-black-1: rgba(0, 0, 0, 0.1);
    --rgba-black-2: rgba(0, 0, 0, 0.2);
    --rgba-black-3: rgba(0, 0, 0, 0.3);
    --rgba-black-4: rgba(0, 0, 0, 0.4);
    --rgba-black-5: rgba(0, 0, 0, 0.5);
    --rgba-black-6: rgba(0, 0, 0, 0.6);
    --rgba-black-7: rgba(0, 0, 0, 0.7);
    --rgba-black-8: rgba(0, 0, 0, 0.8);
    --rgba-black-9: rgba(0, 0, 0, 0.9);
    /* Gradient */
    --gradient1: linear-gradient(180deg, #ffffff 26.76%, rgba(59, 111, 245, 0.25) 109.73%);
    --gradient2: linear-gradient(180deg, rgba(255, 193, 180, 0) 0%, rgb(255 223 216) 100%);
    /* extra color */
    --star-color: #ffa200;
    --red-color: #ff0000;
}
/* 1.2 Theme Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
/* 1.3 Global Elements */
body {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black-color);
    background: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased; 
}

a {
    color: var(--primary);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

p {
    color: var(--black-color);
    margin: 0;
}

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

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: var(--font-family-title);
    font-weight: 400;
    margin-top: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: initial;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 68px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
}

input,
select,
button {
    font-family: var(--font-family-base);
}

textarea {
    overflow: hidden;
    resize: none;
}

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

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

iframe {
    border: none !important;
    display: block;
    width: 100%;
}

.form-control::-webkit-input-placeholder {
    color: var(--black-color);
}

.form-control:-ms-input-placeholder {
    color: var(--black-color);
}

.form-control::-ms-input-placeholder {
    color: var(--black-color);
}

.form-control::placeholder {
    color: var(--black-color);
}

.header-search-popup .form-control::placeholder {
    color: var(--white-color);
}

.subscribe-form .form-control::placeholder {
    color: var(--white-color);
}

.form-control:hover:focus,
.form-control:focus {
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    -ms-box-shadow: unset;
    -o-box-shadow: unset;
    box-shadow: unset;
}

section {
    position: relative;
}

main {
    position: relative;
    width: 100%;
    display: block;
}

.modal {
    cursor: url(../../assets/images/icon/icon-zoom-out.png), zoom-out;
}

.modal-content {
    cursor: default;
}

.modal-header {
    border-bottom: none;
    padding: 20px 35px 20px 30px;
    background: var(--rgba-primary-3);
}

.modal-header .close-bar .close-icon {
    border: 1px solid var(--black-color);
}

.modal-header .close-bar .close-icon::after,
.modal-header .close-bar .close-icon::before {
    background-color: var(--black-color);
}

.modal-body {
    padding: 30px 30px 0 30px;
}

button.btn-close {
    opacity: 1;
}

.modal-footer {
    padding: 5px 30px 30px 30px;
    border: none;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.review-form label {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

/* >> Helper Class */
/* # color */
.primary-color {
    color: var(--primary) !important;
}

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

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

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

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

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-gradient-one {
    background: var(--gradient1) !important;
}

.bg-gradient-two {
    background: var(--gradient2) !important;
}

/* # class */
.small-title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.desc {
    color: var(--dark-light);
}

.sticky-column .sticky-box {
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
}

.rotation-animation {
    -webkit-animation: rotation-animation 5s infinite;
    -moz-animation: rotation-animation 5s infinite;
    -o-animation: rotation-animation 5s infinite;
    animation: rotation-animation 5s infinite;
}

.animated-link {
    position: relative;
}

.animated-link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.animated-link:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
}

.animated-link.active::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
}
/* # margin */
.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.m-30 {
    margin: 30px;
}

.m-40 {
    margin: 40px;
}

.m-50 {
    margin: 50px;
}

.m-60 {
    margin: 60px;
}

.m-70 {
    margin: 70px;
}

.m-80 {
    margin: 80px;
}

.m-90 {
    margin: 90px;
}

.m-100 {
    margin: 100px;
}

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

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

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

.mt-25 {
    margin-top: 25px;
}

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

.mt-35 {
    margin-top: 35px;
}

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

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

.mt-50 {
    margin-top: 50px;
}

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

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

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

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

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

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

.mb-25 {
    margin-bottom: 25px;
}

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

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

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

.mb-50 {
    margin-bottom: 50px;
}

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

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

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

.mb-100 {
    margin-bottom: 100px;
}

/* # Padding */

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.p-60 {
    padding: 60px;
}

.p-70 {
    padding: 70px;
}

.p-80 {
    padding: 80px;
}

.p-90 {
    padding: 90px;
}

.p-100 {
    padding: 100px;
}

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

.pt-15 {
    padding-top: 15px;
}

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

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

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

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

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

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

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

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

/* >> button  */
.btn-style-one {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--black-color);
    letter-spacing: 1px;
    padding: 15px 25px;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background-image: linear-gradient(to right, var(--primary), var(--primary), var(--secondary), var(--secondary));
    background-size: 300% 100%;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.btn-style-one:hover {
    background-position: 100% 0;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: var(--white-color);
}

.btn-wrap ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.btn-style-one.btn-border {
    border: 2px solid var(--primary);
    background-image: none;
    padding: 13px 25px;
}

.btn-style-one.btn-border:hover {
    border-color: var(--secondary);
    background-image: linear-gradient(to right, transparent, transparent, var(--secondary), var(--secondary));
    background-position: 100% 0;
}

.btn-style-two {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    color: var(--white-color);
    letter-spacing: 1px;
    padding: 15px 25px;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background: var(--secondary);
}

.btn-style-two:hover {
    background: var(--secondary-hover);
    color: var(--white-color);
}

.btn-style-three {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    position: relative;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    color: var(--primary);
    padding: 0;
    margin: 0;
}

.btn-style-three .icon-arrow {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--black-color);
    border-radius: 100px;
    font-size: 22px;
    margin-right: 15px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-style-three:hover {
    color: var(--primary-hover);
}

.btn-style-three:hover .icon-arrow {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    background-color: var(--primary-hover);
}

.btn-style-three.secondary {
    color: var(--secondary);
}

.btn-style-three.secondary .icon-arrow {
    background-color: var(--secondary);
    color: var(--white-color);
}

.btn-style-three.secondary:hover {
    color: var(--secondary-hover);
}

.btn-style-three.secondary:hover .icon-arrow {
    background-color: var(--secondary-hover);
}

.btn-wrap ul li {
    margin-right: 20px;
    margin-bottom: 20px;
}

/* >> Default Form Style */
.default-form {
    position: relative;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control:focus,
.form-select:focus {
    color: inherit;
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.default-form .field-inner {
    position: relative;
    display: block;
}

.form-icon .field-inner i {
    position: absolute;
    top: 0;
    z-index: 1;
    font-size: 22px;
    bottom: 0;
    margin: 0 auto;
    display: block;
    line-height: 54px;
    left: 15px;
}

.form-icon .form-group .field-inner input[type="text"],
.form-icon .form-group .field-inner input[type="email"],
.form-icon .form-group .field-inner input[type="password"],
.form-icon .form-group .field-inner input[type="tel"],
.form-icon .form-group .field-inner input[type="url"],
.form-icon .form-group .field-inner input[type="file"],
.form-icon .form-group .field-inner input[type="number"],
.form-icon .form-group .field-inner textarea,
.form-icon .form-group .field-inner .select-time,
.form-icon .form-group .field-inner .select-person {
    padding-left: 50px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 54px;
    width: 100%;
    padding: 10px 20px;
    margin: 0;
    font-size: 14px;
    color: var(--black-color);
    background-color: var(--rgba-primary-1);
    border: 2px solid var(--rgba-primary-3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.default-form .form-group textarea {
    height: 130px;
    padding: 13px 20px;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    display: inline-block;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus {
    border-color: var(--primary);
}

.default-form .form-group .field-inner label {
    margin-bottom: 5px;
    color: var(--black-color);
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: none;
}

.default-form .form-group select {
    cursor: pointer;
}

.default-form .form-group select option {
    padding-left: 0;
    text-indent: 20px;
    cursor: pointer;
}

.default-form .form-group .datepicker {
    cursor: pointer;
}

.default-form .field-checkbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.alert-msg .alert h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.alert-error {
    color: var(--red-color);
    font-size: 14px;
}

.alert-msg .alert h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* >> keyframes */
.bounce-y {
    -webkit-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    -moz-transform: translatey(0);
    transform: translatey(0);
    -webkit-animation: bounceY 6s ease-in-out infinite;
    -moz-animation: bounceY 6s ease-in-out infinite;
    -o-animation: bounceY 6s ease-in-out infinite;
    animation: bounceY 6s ease-in-out infinite;
}

@keyframes bounceY {
    0% {
        -webkit-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        -moz-transform: translatey(0);
        transform: translatey(0);
    }

    50% {
        -webkit-transform: translatey(-20px);
        -ms-transform: translatey(-20px);
        -o-transform: translatey(-20px);
        -moz-transform: translatey(-20px);
        transform: translatey(-20px);
    }

    100% {
        -webkit-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        -moz-transform: translatey(0);
        transform: translatey(0);
    }
}

@-webkit-keyframes activeInset {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes activeInset {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes rotation {
    0% {
        border-radius: 5% 5% 5% 5%;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        -o-transform: translate(-50%, -50%) rotate(0deg);
        -moz-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    12.5% {
        border-radius: 50% 5% 5% 5%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        -o-transform: translate(-50%, -50%) rotate(45deg);
        -moz-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    25% {
        border-radius: 50% 50% 5% 5%;
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
        -o-transform: translate(-50%, -50%) rotate(90deg);
        -moz-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }

    37.5% {
        border-radius: 50% 50% 50% 5%;
        -webkit-transform: translate(-50%, -50%) rotate(135deg);
        -ms-transform: translate(-50%, -50%) rotate(135deg);
        -o-transform: translate(-50%, -50%) rotate(135deg);
        -moz-transform: translate(-50%, -50%) rotate(135deg);
        transform: translate(-50%, -50%) rotate(135deg);
    }

    50% {
        border-radius: 50% 50% 50% 50%;
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
        -o-transform: translate(-50%, -50%) rotate(180deg);
        -moz-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }

    62.5% {
        border-radius: 5% 50% 50% 50%;
        -webkit-transform: translate(-50%, -50%) rotate(225deg);
        -ms-transform: translate(-50%, -50%) rotate(225deg);
        -o-transform: translate(-50%, -50%) rotate(225deg);
        -moz-transform: translate(-50%, -50%) rotate(225deg);
        transform: translate(-50%, -50%) rotate(225deg);
    }

    75% {
        border-radius: 5% 5% 50% 50%;
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
        -ms-transform: translate(-50%, -50%) rotate(270deg);
        -o-transform: translate(-50%, -50%) rotate(270deg);
        -moz-transform: translate(-50%, -50%) rotate(270deg);
        transform: translate(-50%, -50%) rotate(270deg);
    }

    87.5% {
        border-radius: 5% 5% 5% 50%;
        -webkit-transform: translate(-50%, -50%) rotate(315deg);
        -ms-transform: translate(-50%, -50%) rotate(315deg);
        -o-transform: translate(-50%, -50%) rotate(315deg);
        -moz-transform: translate(-50%, -50%) rotate(315deg);
        transform: translate(-50%, -50%) rotate(315deg);
    }

    100% {
        border-radius: 5% 5% 5% 5%;
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        -ms-transform: translate(-50%, -50%) rotate(360deg);
        -o-transform: translate(-50%, -50%) rotate(360deg);
        -moz-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotation-animation {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
        -moz-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
        -ms-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
        -o-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
        box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
        -moz-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
        -ms-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
        -o-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
        box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
    }
}

@keyframes marquee {
    from {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
        -o-transform: translateX(-30%);
        -moz-transform: translateX(-30%);
        transform: translateX(-30%);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0);
    }

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

/* >> Preloader */
.preloader {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: var(--primary);
    z-index: 9999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.preloader-box {
    text-align: center;
}

.preloader-object {
    border: 2px solid var(--black-color);
    border-radius: 50%;
    animation: 1s rotate linear infinite;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
}

.preloader-object::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    left: 50%;
    border: 5px solid var(--black-color);
    border-radius: 50%;
}

.preloader-text {
    text-align: center;
    position: relative;
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: 13px;
    color: var(--black-color);
    text-transform: uppercase;
}

/* >> Progress Wrap  */
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 60px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: var(--black-color);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

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

.progress-wrap i {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    color: var(--primary);
}

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

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* >> Pagination */
.pagination-wrap .pagination {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagination-wrap .pagination .page-item .page-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 10px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 5px;
    background-color: var(--rgba-primary-1);
    color: var(--black-color);
}

.pagination-wrap .pagination .page-item .page-link.current,
.pagination-wrap .pagination .page-item .page-link.active,
.pagination-wrap .pagination .page-item .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black-color);
    -webkit-box-shadow: var(--header-box-shadow);
    -moz-box-shadow: var(--header-box-shadow);
    -ms-box-shadow: var(--header-box-shadow);
    -o-box-shadow: var(--header-box-shadow);
    box-shadow: var(--header-box-shadow);
}

.pagination-wrap .pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.pagination-wrap .pagination .page-item:first-child .page-link,
.pagination-wrap .pagination .page-item:last-child .page-link {
    width: auto;
    background-color: transparent;
    color: var(--primary);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.pagination-wrap .pagination .page-item:first-child .page-link:hover,
.pagination-wrap .pagination .page-item:last-child .page-link:hover {
    color: var(--black-color);
}

.pagination-wrap .pagination .page-item .page-link i.la-arrow-left {
    margin-right: 5px;
}

.pagination-wrap .pagination .page-item .page-link i.la-arrow-right {
    margin-left: 5px;
}

/* >> breadcrumb */
.breadcrumb-wrap ul {
    display: inline-block;
    padding: 10px 30px;
}

.breadcrumb-wrap ul li {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.breadcrumb-wrap ul li.active {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-wrap ul .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: var(--primary);
    font-weight: 700;
    font-family: "Line Awesome Free";
    font-size: 15px;
    padding-right: 15px;
    top: 0;
    position: relative;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}

/* >> List Style */
.list-style-one {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
}

.list-style-one > li {
    position: relative;
    color: var(--black-color);
    margin-right: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.list-style-one > li:nth-last-child(1) {
    margin-right: 0;
}

.list-style-one > li i {
    margin-right: 5px;
    color: var(--black-color);
}

.list-style-one > li a {
    display: inline-block;
    color: var(--black-color);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.list-style-one > li a:hover {
    color: var(--black-color);
}

/* >> Social Icon */
.social-area {
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    list-style: none;
}

.social-area li:not(:nth-last-child(1)) {
    margin-right: 15px;
}

.social-area li a {
    position: relative;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--black-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: inset 0 0 0 35px var(--primary);
    -moz-box-shadow: inset 0 0 0 35px var(--primary);
    -ms-box-shadow: inset 0 0 0 35px var(--primary);
    -o-box-shadow: inset 0 0 0 35px var(--primary);
    box-shadow: inset 0 0 0 35px var(--primary);
    -webkit-transition: box-shadow 0.4s;
    -ms-transition: box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    -moz-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
}

.social-area li a:hover {
    color: var(--primary);
    -webkit-box-shadow: inset 0 0 0 2px var(--primary);
    -moz-box-shadow: inset 0 0 0 2px var(--primary);
    -ms-box-shadow: inset 0 0 0 2px var(--primary);
    -o-box-shadow: inset 0 0 0 2px var(--primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}
/* # social-area-two */
.social-area-two {
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}

.social-area-two li:not(:nth-last-child(1)) {
    margin-right: 15px;
}

.social-area-two li a {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: var(--rgba-primary-3);
    color: var(--black-color);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.social-area-two li a:hover {
    background: var(--primary);
    color: var(--black-color);
}

/* >> Pattern One */
.pattern-one {
    position: relative;
    display: inline-block;
    height: 8px;
    width: 8px;
    border: 1px solid var(--white-color);
    -webkit-animation: rotation-animation 5s ease-in-out infinite;
    -moz-animation: rotation-animation 5s ease-in-out infinite;
    -o-animation: rotation-animation 5s ease-in-out infinite;
    animation: rotation-animation 5s ease-in-out infinite;
}

/* >> OWL Nav & Dots */
/* # owl nav */
.owl-prev,
.owl-next {
    width: 45px;
    height: 45px;
    background: var(--rgba-black-5) !important;
    border: 1px solid var(--rgba-black-6) !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    z-index: 99997;
    -webkit-transform: translateY(-30px) !important;
    -moz-transform: translateY(-30px) !important;
    -ms-transform: translateY(-30px) !important;
    -o-transform: translateY(-30px) !important;
    transform: translateY(-30px) !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.owl-prev i,
.owl-next i {
    font-size: 24px;
    line-height: 30px;
    color: var(--white-color);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
}

.owl-prev:hover i,
.owl-next:hover i {
    color: var(--black-color);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}
/* # owl dot */
.owl-dots {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-dots button.owl-dot {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--white-color);
    margin: 0 5px;
}

.owl-dots button.owl-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black-color);
}

.owl-dots button.owl-dot.active::before {
    background-color: var(--primary);
}

/* >> jQuery UI  Calander */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    text-align: center;
}

/* >> title section */
.section-subtitle {
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 500;
}

/* . info-bar */
.info-bar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.info-backdrop {
    position: fixed;
    right: -440px;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--rgba-black-8);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    cursor: url(../../assets/images/icon/icon-zoom-out.png), zoom-out;
}

.side-content-visible .info-bar,
.side-content-visible .info-backdrop {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.side-content-visible .info-container {
    right: 0;
}

.info-container {
    position: fixed;
    top: 0;
    height: 100%;
    right: -370px;
    width: 370px;
    max-width: 100%;
    overflow: auto;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    background: var(--dark);
    z-index: 1;
}

.info-container .info-heading {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 25px 30px;
    background: var(--secondary);
}

.close-bar {
    cursor: pointer;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.close-bar:hover {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-bar .close-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--white-color);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.close-bar .close-icon::after,
.close-bar .close-icon::before {
    position: absolute;
    left: 0;
    content: "";
    height: 12px;
    width: 1px;
    background-color: var(--white-color);
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.close-bar .close-icon::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.close-bar .close-icon::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.info-container .info-content {
    text-align: center;
    padding: 0;
    height: calc(100vh - 112px);
    overflow-y: auto;
}

.info-container .info-content .small-title {
    color: var(--secondary);
    margin-bottom: 10px;
}

.info-container .info-content .info-call {
    position: relative;
    padding-top: 50px;
}

.info-container .info-content .info-call .title {
    width: 100%;
    display: inline-block;
}

.info-container .info-content .info-call a {
    font-size: 28px;
    color: var(--dark-light);
    font-weight: 600;
}

.info-container .info-content .separator-shap {
    margin: 30px;
}

/*---------------------------------------------------------------------------
2. Header
----------------------------------------------------------------------------*/
/* All header CSS is included in the menu.css file */
/* 2.1 header-style-one */
/* 2.2 header-style-two */
/* 2.2 header-style-three */

/*---------------------------------------------------------------------------
3. Content
----------------------------------------------------------------------------*/
/*---------------------------------
3.1 banner-area
---------------------------------*/
/* 3.1.1 banner-style-one */
.banner-style-one {
    background: var(--rgba-primary-1);
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    margin-top: 83px;
    padding: 50px 0 150px 0;
}

.banner-style-one .banner-content {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
}

.banner-style-one .hero-banner-image {
    z-index: 1;
    position: relative;
    text-align: end;
}

.banner-bg1 {
    position: absolute;
    bottom: 80px;
    width: 220px;
    z-index: -1;
}

.banner-bg2 {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: -1;
}

/* 3.1.2 banner-style-two */
.banner-style-two {
    background: var(--rgba-primary-1);
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    margin-top: 155px;
    padding: 80px 0;
}

.hero-banner-area.banner-style-two .availability-form {
    padding: 30px;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1);
}

.banner-style-two .hero-banner-image {
    z-index: 1;
    position: relative;
    text-align: end;
}
/* 3.1.3 banner-style-three */
.banner-style-three {
    background-color: var(--bg-light) !important;
}

.banner-style-three .banner-media-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
    z-index: 1;
}

.banner-style-three .banner-content {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    height: 930px;
}

.banner-style-three .banner-item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--rgba-black-5);
    top: 0;
    z-index: 2;
    left: 0;
}

.banner-style-three .availability-area .default-form .form-group input,
.banner-style-three .availability-area .default-form .form-group select {
    background-color: var(--white-color);
}

.banner-style-three .banner-content .big-title {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-style-three .active .banner-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.banner-style-three .banner-content .banner-text {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-style-three .active .banner-content .banner-text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.banner-style-three .banner-content .btn-wrap {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.banner-style-three .active .banner-content .btn-wrap {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.banner-style-three .banner-slider .owl-prev,
.banner-style-three .banner-slider .owl-next {
    width: 60px;
    height: 60px;
}

.banner-style-three .banner-slider .owl-dots {
    display: none;
}

/*---------------------------------
3.2 availability-area
---------------------------------*/
.availability-search {
    position: relative;
    z-index: 2;
}

.availability-outer {
    width: 970px;
    z-index: 2;
    position: relative;
}

.availability-area {
    position: relative;
    margin-top: -70px;
    z-index: 3;
}

.availability-area .availability-form {
    box-shadow: var(--box-shadow);
    background: var(--white-color);
    padding: 30px;
    margin: 0 30px;
}

.availability-area .availability-form::before {
    position: absolute;
    content: "";
    top: -27px;
    left: -27px;
    border-left-color: transparent;
    border-top-color: transparent;
    border-bottom-color: var(--rgba-black-1);
    border-style: solid;
    border-width: 27px;
    border-right: transparent;
    border-bottom-width: 70px;
}

.availability-area .availability-form::after {
    position: absolute;
    content: "";
    top: -27px;
    right: -27px;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: var(--rgba-black-1);
    border-style: solid;
    border-width: 27px;
    border-left: transparent;
    border-bottom-width: 70px;
}

.availability-form .field-inner i {
    position: absolute;
    right: 15px;
    bottom: 15px;
    margin: auto;
    font-size: 24px;
}

.banner-style-three .availability-area .availability-form::before,
.banner-style-three .availability-area .availability-form::after {
    display: none;
}

.availability-area .default-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.hero-banner-area .availability-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.hero-banner-area .availability-area .availability-arrow {
    cursor: pointer;
    font-size: 26px;
    font-weight: 700;
    background: var(--primary);
    margin: 0 auto;
    width: 75px;
    height: 45px;
    -webkit-border-top-left-radius: 100px;
    -webkit-border-top-right-radius: 100px;
    -moz-border-radius-topleft: 100px;
    -moz-border-radius-topright: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-banner-area .availability-form {
    padding: 30px;
    border-radius: 15px 15px 0 0;
    background: var(--primary);
}

.hero-banner-area .availability-form .form-group {
    margin: 0;
}

.hero-banner-area .availability-arrow.close i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*---------------------------------
3.3 pricing area
---------------------------------*/
.pricing-area .section-title-box {
    margin-bottom: 50px;
}

.pricing-area .pricing-item {
    background-color: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
}

.pricing-area .pricing-item .pricing-inner .overlay-content {
    position: relative;
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .name {
    font-size: 32px;
    margin: 0;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .amount {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    padding-top: 5px;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .amount span {
    color: var(--dark-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .desc:nth-last-child(1) {
    margin-bottom: 0;
}

.pricing-area .pricing-item .pricing-inner .overlay-content .desc i {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--rgba-primary-2);
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}

/*---------------------------------
3.4 testimonials area
---------------------------------*/
/* 3.4.1 testimonial-style-one */
.testimonial-style-one .outer-box {
    margin-bottom: 50px;
}

.testimonial-style-one .bg-image {
    margin-bottom: -5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.testimonial-style-one .section-title-box {
    margin-bottom: 50px;
}

.testimonial-style-one .testimonial-inner {
    position: relative;
    background-color: var(--white-color);
    border: 1px solid var(--rgba-black-1);
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 5px;
}

.testimonial-style-one .testimonial-image {
    margin-bottom: 20px;
}

.testimonial-style-one .testimonial-image img {
    width: 90px;
    border-radius: 500px;
    height: 90px;
    display: inline-block;
}

.testimonial-style-one .testimonial-inner .quote-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: var(--white-color);
    border-radius: 50%;
    position: absolute;
    left: 100px;
    top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-style-one .testimonial-image-wapper .quote-icon {
    left: 90px;
    right: 0;
    margin: 0 auto;
}

.testimonial-style-one .testimonial-inner .quote-icon img {
    width: 20px;
    height: 20px;
}

.testimonial-style-one .testimonial-content .meta-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-style-one .testimonial-content .author-title {
    margin-bottom: 5px;
}

.la-star {
    color: var(--star-color);
}

.la-star-half {
    color: var(--dark-light);
}

/* 3.4.2 testimonial-style-two */
.testimonial-slider-two {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-style-two .section-title-box {
    margin-bottom: 50px;
}

.testimonial-style-two .testimonial-inner .testimonial-content .desc {
    font-size: 22px;
}

.testimonial-style-two .testimonial-inner .testimonial-content .author-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonial-style-two .testimonial-inner .testimonial-content .author-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-style-two .testimonial-inner .testimonial-content .author-info .author-title {
    font-size: 16px;
    font-weight: normal;
    color: var(--dark-light);
}

.testimonial-style-two .testimonial-inner .testimonial-image-wapper {
    position: relative;
    display: block;
}

.testimonial-style-two .testimonial-inner .testimonial-image-wapper .testimonial-image img {
    width: 90px;
    height: 90px;
    border-radius: 500px;
    margin: 0 auto;
}

.testimonial-style-two .testimonial-inner .testimonial-image-wapper .quote-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: var(--white-color);
    border-radius: 50%;
    position: absolute;
    left: 90px;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 0;
    margin: 0 auto;
}

.testimonial-style-two .testimonial-inner .testimonial-image-wapper .quote-icon img {
    width: 20px;
    height: 20px;
}

/*---------------------------------
3.5 booking area
---------------------------------*/
/* 3.5.1 booking-style-one */
.booking-area .section-title-box {
    margin-bottom: 50px;
}

.booking-area h2 {
    font-size: 48px;
}

.booking-style-one .outer-box {
    margin-bottom: 50px;
}

.booking-style-one .bg-image {
    margin-bottom: -5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.form-item {
    position: relative;
    padding-right: 60px;
}

.form-item .form-inner {
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
    min-height: 100%;
    background: var(--white-color);
    border-radius: 5px;
}

.form-item .form-inner .request-info {
    letter-spacing: 1px;
}

.contact-item {
    position: relative;
    height: 100%;
    border-radius: 5px;
    background: var(--secondary);
    padding: 30px;
}

.contact-item .contact-inner {
    position: relative;
    min-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-item .contact-content .separator-shap {
    margin: 20px;
}

.contact-item .contact-content .small-title {
    margin-bottom: 10px;
}

.contact-item .contact-content .info-call a {
    font-size: 28px;
    color: var(--white-color);
}

.contact-item .contact-content span {
    font-family: var(--font-family-title);
    font-size: 22px;
}

.contact-item .contact-content .desc {
    color: var(--white-color);
}

/* 3.5.2 booking-style-two */
.booking-style-two .form-item .form-inner {
    background: var(--rgba-primary-1);
}

/*---------------------------------
3.6 marquee-area 
---------------------------------*/
.marquee-area {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100px;
    overflow: hidden;
    font-size: 120px;
    font-weight: 400;
    margin-top: -60px;
    background-color: var(--bg-light);
    font-family: var(--font-family-title);
}

.marquee-area .marquee-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    -webkit-animation: marquee 140s linear infinite;
    -moz-animation: marquee 140s linear infinite;
    -o-animation: marquee 140s linear infinite;
    animation: marquee 140s linear infinite;
}

.marquee-area .marquee-content {
    opacity: 0.03;
    line-height: 1.2;
}

/*---------------------------------
3.7 intro-area
---------------------------------*/
.intro-area {
    background: var(--black-color);
    height: 680px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.intro-area .section-title-box {
    margin-bottom: 50px;
}

.intro-area .intro-media-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.intro-area .intro-content-item {
    position: relative;
}

.play-btn {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

.play-btn a {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 45px var(--rgba-primary-3);
    -moz-box-shadow: inset 0 0 0 45px var(--rgba-primary-3);
    -ms-box-shadow: inset 0 0 0 45px var(--rgba-primary-3);
    -o-box-shadow: inset 0 0 0 45px var(--rgba-primary-3);
    box-shadow: inset 0 0 0 45px var(--rgba-primary-3);
    -webkit-transition: box-shadow 0.4s;
    -ms-transition: box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    -moz-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
}
.play-btn a:hover {
    -webkit-box-shadow: inset 0 0 0 2px var(--primary);
    -moz-box-shadow: inset 0 0 0 2px var(--primary);
    -ms-box-shadow: inset 0 0 0 2px var(--primary);
    -o-box-shadow: inset 0 0 0 2px var(--primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}

.play-btn a .play-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    margin-top: -1px;
    margin-left: -1px;
    -webkit-box-shadow: 0 0 0 0 var(--rgba-primary-4);
    -moz-box-shadow: 0 0 0 0 var(--rgba-primary-4);
    -ms-box-shadow: 0 0 0 0 var(--rgba-primary-4);
    -o-box-shadow: 0 0 0 0 var(--rgba-primary-4);
    box-shadow: 0 0 0 0 var(--rgba-primary-4);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

/*---------------------------------
3.8 video-area
---------------------------------*/
.video-thumbnail {
    position: relative;
    z-index: 0;
    border-radius: 5px;
    overflow: hidden;
}

.video-thumbnail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--rgba-black-4);
}

.video-thumbnail::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 30px;
}

.video-thumbnail .borders img {
    width: 100%;
}

.video-thumbnail .play-btn {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.video-thumbnail .video-text {
    font-size: 170px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-style-one .outer-box {
    margin-bottom: 50px;
}

.video-area .bg-image {
    margin-bottom: -3px;
    position: relative;
    bottom: 0;
    z-index: 0;
    width: 100%;
}
/* 3.8.1 video-style-one */
.video-style-one .section-title-box {
    margin-right: 50px;
    margin-bottom: 50px;
}

.video-style-one .video-content {
    margin-bottom: 20px;
}
/* 3.8.2 video-style-two */
.video-style-two .section-title-box {
    margin-bottom: 50px;
}

/*---------------------------------------------------------------------------
4. footer
----------------------------------------------------------------------------*/

footer {
    position: relative;
}

footer .footer-image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

/* 4.1 footer-style-one */
.footer-style-one {
    background: var(--black-color);
}

.footer-style-one .footer-top {
    position: relative;
    z-index: 8;
    padding-top: 100px;
    padding-bottom: 20px;
}

.footer-style-one .footer-bottom {
    position: relative;
    z-index: 8;
    margin-bottom: 70px;
}

.footer-style-one .footer-info {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.footer-style-one .footer-info p {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--white-color);
    display: block;
    opacity: 0.5;
    margin-bottom: 10px;
}

.footer-style-one .footer-info .footer-info-title {
    color: var(--white-color);
    margin-bottom: 0;
    font-family: var(--font-family-base);
    font-size: 18px;
}

.footer-style-one .footer-widget-aboutus p {
    opacity: 0.7;
}

.footer-style-one .footer-info .footer-info-title,
.footer-style-one .footer-info .footer-info-title a {
    color: var(--white-color);
    margin-bottom: 0;
    text-transform: initial;
}

.footer-style-one .footer-info .footer-info-title a:hover {
    color: var(--primary);
}

.footer-style-one .footer-menu ul li a {
    margin-bottom: 10px;
    display: inline-block;
    color: var(--white-color);
    opacity: 0.7;
}

.footer-style-one .footer-menu ul li a:hover {
    opacity: 0.7;
}

.footer-style-one .footer-menu ul li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 3px;
    opacity: 0;
    background: var(--white-color);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.footer-style-one .footer-menu ul li a:hover::before {
    width: 100%;
    opacity: 1;
}

.footer-style-one .footer-widget-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-style-one .footer-widget-link-title {
    color: var(--white-color);
    line-height: 1.3;
    text-transform: capitalize;
    margin-right: 30px;
}

.footer-style-one .footer-widget-link-btn a {
    position: relative;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    font-size: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; 
    color: var(--black-color);
    overflow: hidden;
} 

.footer-style-one .footer-widget-link-btn a i{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
.footer-style-one .footer-widget-link-btn a:hover i{
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.footer-style-one .copyright-area {
    position: relative;
    z-index: 8;
    background-color: var(--black-color);
}

.footer-style-one .copyright-text {
    color: var(--white-color);
}

.footer-style-one .copyright-text a:hover {
    text-decoration: underline;
    color: var(--primary);
}

/* 4.2 footer-style-two */

.footer-style-two {
    background-color: var(--footer-dark);
}

.footer-style-two .footer-bottom {
    padding: 100px 0 70px 0;
}

.footer-style-two .footer-one-left .logo img {
    margin-bottom: 30px;
    max-width: 150px;
}

.footer-style-two .footer-one-left .desc {
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px;
    padding-right: 30px;
    color: var(--white-color);
    opacity: 0.6;
}

.footer-style-two .footer-right-one {
    padding-left: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-style-two .footer-right-one .single-wized-footer {
    margin-bottom: 30px;
}

.footer-style-two .footer-right-one .single-wized-footer .title-heading {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-style-two .footer-right-one .single-wized-footer .list li {
    margin-bottom: 20px;
}

.footer-style-two .footer-right-one .single-wized-footer .list li a {
    color: var(--white-color);
    opacity: 0.7;
}

.footer-style-two .footer-right-one .single-wized-footer .list li a:hover {
    opacity: 1;
}

.footer-style-two .footer-right-one .single-wized-footer .list li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 3px;
    opacity: 0;
    background: var(--white-color);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.footer-style-two .footer-right-one .single-wized-footer .list li a:hover::before {
    width: 100%;
    opacity: 1;
}

.footer-style-two .copyright-area {
    position: relative;
    padding: 30px 0;
    background: var(--footer-light);
}

.footer-style-two .copyright-area .copyright-text p {
    opacity: 0.7;
    color: var(--white-color);
}

.footer-style-two .copyright-area .copyright-text a:hover {
    color: var(--primary);
}

.footer-style-two .copyright-area .copyright-text a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 3px;
    opacity: 0;
    background: var(--primary);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.footer-style-two .copyright-area .copyright-text a:hover::before {
    width: 100%;
    opacity: 1;
}

/* 4.3 footer-style-three */
.footer-style-three {
    background-color: var(--footer-dark);
}

.footer-style-three .footer-icon-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.01;
}

.footer-style-three .footer-top {
    padding: 100px 0 70px 0;
}

.footer-style-three .single-wized-footer .title-heading {
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-style-three .single-wized-footer .list li {
    margin-bottom: 20px;
}

.footer-style-three .single-wized-footer .list li a,
.footer-style-three .single-wized-footer .list li p,
.footer-style-three .single-wized-footer-subscribe p {
    color: var(--white-color);
    opacity: 0.7;
}

.footer-style-three .single-wized-footer .list li a:hover {
    opacity: 1;
}

.footer-style-three .single-wized-footer .list li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 3px;
    opacity: 0;
    background: var(--white-color);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.footer-style-three .single-wized-footer .list li a:hover::before {
    width: 100%;
    opacity: 1;
}

.footer-style-three .single-wized-footer .list.list-contact li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-style-three .single-wized-footer .list.list-contact li i {
    font-size: 24px;
    color: var(--white-color);
    opacity: 0.7;
    margin-right: 10px;
}

.footer-style-three .single-wized-footer-services,
.footer-style-three .single-wized-footer-subscribe {
    padding-left: 50px;
}

.footer-style-three .default-form.subscribe-form .btn-style-one {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 10px 15px;
    font-size: 14px;
}

.footer-style-three .default-form.subscribe-form .form-group input {
    padding-right: 130px;
    color: var(--white-color);
    opacity: 0.7;
}

.footer-style-three .footer-bottom {
    position: relative;
    padding: 30px 0;
    background-color: var(--rgba-black-2);
}

.footer-style-three .copyright-text p {
    color: var(--white-color);
    opacity: 0.7;
}

.footer-style-three .footer-logo-widget img {
    width: 140px;
}

/*---------------------------------------------------------------------------
### Inner Banner Section ###
----------------------------------------------------------------------------*/
.inner-banner {
    position: relative;
    background: var(--dark);
    margin-top: 83px;
}

.inner-banner .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.inner-banner .inner {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.inner-banner .inner h1 {
    margin: 0;
    color: var(--white-color);
}

/*---------------------------------------------------------------------------
5 about-area
----------------------------------------------------------------------------*/
.about-area .section-title-box {
    margin-bottom: 50px;
}

.about-area .outer-box .about-image {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.about-area .outer-box .about-image img {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.about-area .outer-box .about-image .overlay-image {
    position: absolute;
    left: -25%;
    bottom: 10%;
}

.about-area .outer-box .about-image .overlay-image img {
    border: 4px solid var(--white-color);
    width: 50%;
    height: auto;
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.about-area .outer-box .about-content {
    display: block;
    position: relative;
    margin-bottom: 50px;
}

.about-area .outer-box .about-content .about-call {
    position: relative;
    padding-left: 80px;
}

.about-area .outer-box .about-content .about-call i {
    position: absolute;
    left: 0;
    font-size: 60px;
    line-height: normal;
    top: 8px;
    bottom: 0;
    margin: 0 auto;
    color: var(--dark-light);
}

.about-area .outer-box .about-content .about-call .small-title {
    margin-bottom: 5px;
}

.about-area .outer-box .about-content .about-call h4 {
    font-family: var(--font-family-base);
    font-size: 28px;
    font-weight: 600;
}

.about-area .outer-box .about-content .about-call a {
    position: relative;
    color: var(--dark);
}

.about-area .outer-box .about-image.about-image-right .overlay-image {
    position: absolute;
    right: -90%;
    bottom: 10%;
    left: inherit;
}

.about-area .bg-image {
    margin-bottom: -3px;
    position: relative;
    bottom: 0;
    z-index: 0;
    width: 100%;
}

.about-area .about-left {
    height: 100%;
    position: relative;
}

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

.about-area .about-center {
    padding: 30px 50px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-area .about-center .about-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-area .about-center .about-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.about-area .about-center .about-list ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.about-area .about-center .about-list ul li i {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--rgba-primary-2);
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}

.about-area .about-right {
    padding: 50px 0 0 0;
}

.about-area .about-right .about-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about-area .about-right .about-content .section-title-box p {
    max-width: 440px;
}

.about-area .about-right .about-content .happy-client-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-area .about-right .about-content .happy-client-img-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
}

.about-area .about-right .about-content .happy-client-single-img:not(:nth-child(1)) {
    margin-left: -20px;
}

.about-area .about-right .about-content .happy-client-single-img img {
    width: 62px;
    border-radius: 50px;
    border: 4px solid var(--white-color);
}

.about-area .about-right .about-content .happy-client-text-box h4 {
    margin: 0;
}

.about-area .about-right .about-content .happy-client-text-box h4 span {
    font-size: 30px;
}

.about-area .about-image-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-area .about-image-two img {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.about-area .about-image-two .about-image-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 180px;
    background-color: var(--white-color);
    text-align: center;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: translate(0, -50px);
    border-radius: 500px;
    box-shadow: var(--header-box-shadow);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-area .about-image-two .about-image-overlay .about-user-ratings {
    font-family: var(--font-family-title);
    color: var(--primary);
    font-weight: 400;
    font-size: 72px;
    line-height: 50px;
}

.about-area .about-image-two .about-image-overlay .about-user-ratings span {
    font-family: var(--font-family-base);
    color: var(--black-color);
    font-weight: 400;
    font-size: 16px;
    line-height: initial;
    margin-top: 10px;
    display: block;
}

.about-area .choose-amenities p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 20px 20px 0;
}

.about-area .choose-amenities p i {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--rgba-primary-2);
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}

/* 5.1 fun-factor-area */

.fun-factor-wrap {
    border-right: 1px dashed var(--border-color);
}

.fun-factor-wrap:last-child {
    border-right: none;
}

.fun-factor-area .fun-factor-item .fun-factor-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fun-factor-area .fun-factor-item .fun-factor-inner .fun-factor-count {
    position: relative;
    font-family: var(--font-family-title);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fun-factor-area .fun-factor-item .fun-factor-inner .count-number {
    margin-bottom: 0;
}
.fun-factor-area .fun-factor-item .fun-factor-inner .count-number .count-number span.counter {
    font-size: 68px;
}

.fun-factor-area .fun-factor-item .fun-factor-inner .fun-factor-content {
    font-family: var(--font-family-title);
    font-size: 24px;
}

/* 5.2 hotel-review-area */
.hotel-review-area .section-title-box {
    margin-bottom: 50px;
}

.hotel-review-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--rgba-primary-1);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.hotel-review-user-info {
    display: inline-block;
    width: 60px;
    position: relative;
    text-align: center;
    margin-right: 20px;
}

.hotel-review-user-info img {
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.hotel-review-user-info span {
    display: block;
}

.hotel-review-content {
    display: block;
    position: relative;
    width: 100%;
}

.hotel-rating-count {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.hotel-rating-count .hotel-rating {
    float: left;
    color: var(--primary);
    font-size: 26px;
    line-height: normal;
}

.hotel-rating-count .hotel-rating small,
.hotel-rating-count .hotel-rating strong {
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    color: var(--dark-light);
}

.hotel-rating-count .hotel-rating-time {
    float: right;
    padding-top: 10px;
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
    color: var(--dark-light);
}

.progress-box {
    padding-top: 30px;
}

.progress {
    margin-bottom: 0;
    height: 5px;
    background-color: var(--rgba-primary-2);
}

.progress-bar {
    background-color: var(--primary);
    width: 1px;
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.progress-list {
    display: block;
    margin-bottom: 30px;
}

.progress-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.progress-name {
    font-size: 26px;
    font-family: var(--font-family-title);
}

.progress-rating {
    color: var(--primary);
    font-size: 26px;
}

.progress-rating small {
    color: var(--dark-light);
    font-size: 14px;
}

.rate {
    float: left;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: var(--rgba-black-2);
}

.rate:not(:checked) > label::before {
    content: "★ ";
}

.rate > input:checked ~ label {
    color: var(--star-color);
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: var(--star-color);
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: var(--star-color);
}

/* 5.3 similar-room-area  */
.similar-room-area .section-title-box {
    margin-bottom: 50px;
}

/*---------------------------------------------------------------------------
6 room-area
----------------------------------------------------------------------------*/
.room-area .section-title-box {
    margin-bottom: 50px;
}

/* 6.1 room-style-one */
.room-style-one .outer-box {
    margin-bottom: 50px;
}

.room-style-one .bg-image {
    margin-bottom: -5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.room-style-one .section-title-box .desc {
    opacity: 0.7;
}

.single-room-item {
    position: relative;
    background-color: var(--white-color);
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-room-item .room-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.single-room-item .room-image > a,
.single-room-item .room-image > a img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.single-room-item .room-inner .price-night {
    margin-bottom: 10px;
    background: var(--primary);
    display: inline-block;
    padding: 12px 19px;
    border-radius: 5px 0 0 5px;
    z-index: 2;
    position: absolute;
    top: 20px;
    right: 0;
}

.single-room-item .room-inner .room-image .room-overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
    flex-wrap: wrap;
}

.single-room-item .room-inner .room-image .room-overlay .room-amenities-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-room-item .room-inner .room-image .room-overlay .room-amenities-list li {
    margin-right: 20px;
}

.single-room-item .room-inner .room-image .room-overlay .room-amenities-list li i {
    font-size: 24px;
    color: var(--white-color);
}

.single-room-item .room-inner .room-image .room-overlay .room-amenities-box {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
}

.single-room-item:hover .room-image .room-overlay .room-amenities-box {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.single-room-item .room-inner .room-image .room-overlay .btn-details {
    color: var(--white-color);
    position: relative;
    line-height: normal;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    -moz-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
}

.single-room-item:hover .room-inner .room-image .room-overlay .btn-details {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    color: var(--primary);
}

.single-room-item .room-inner .room-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, var(--rgba-black-1), var(--black-color));
    z-index: 0;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    pointer-events: none;
}

.single-room-item:hover .room-image::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.single-room-item .room-content {
    position: relative;
    padding: 30px;
}

.single-room-item .room-content .room-review {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.single-room-item .room-offer {
    margin-left: 20px;
    border-left: 1px solid var(--dark-light);
    padding-left: 20px;
}

.single-room-item .room-offer span {
    background: var(--primary);
    padding: 2px 10px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.line-animation::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--primary);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.line-animation:hover::after {
    width: 100%;
}

/* 6.2 room-style-two */
.room-style-two .room-item {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.room-style-two .room-inner {
    display: block;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.room-style-two .room-inner .room-image,
.room-style-two .room-inner .room-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.room-style-two .room-inner .room-image img {
    display: block;
    -o-transition: var(--transition);
    -ms-transition: var(--transition);
    -moz-transition: var(--transition);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.room-style-two .room-inner:hover .room-image img {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.room-style-two .room-inner .overlay-content {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: block;
    padding: 30px;
    color: var(--white-color);
    left: 0;
    bottom: -70px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, var(--black-color));
    background: linear-gradient(to bottom, transparent, var(--black-color));
}

.room-style-two .room-inner:hover .overlay-content {
    -webkit-transform: translate(0, -70px);
    -moz-transform: translate(0, -70px);
    -ms-transform: translate(0, -70px);
    -o-transform: translate(0, -70px);
    transform: translate(0, -70px);
}

.room-style-two .room-inner .overlay-content::before {
    content: "";
    position: absolute;
    background-color: var(--black-color-opacity);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transform: skew(0deg, -8deg) translateY(40px);
    -webkit-transform: skew(0deg, -8deg) translateY(40px);
    -moz-transform: skew(0deg, -8deg) translateY(40px);
    transition: all 0.5s;
}

.room-style-two .room-inner:hover .overlay-content::before {
    width: 100%;
    height: 100%;
    transform: skew(0deg, 0deg) translateY(0);
    -webkit-transform: skew(0deg, 0deg) translateY(0);
    -moz-transform: skew(0deg, 0deg) translateY(0);
    opacity: 0.8;
}

.room-style-two .room-inner .overlay-content .price-night {
    position: relative;
    margin-bottom: 10px;
}

.room-style-two .room-inner .overlay-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.3;
}

.room-style-two .room-inner .overlay-content .animated-link:hover {
    color: var(--primary);
}

/* 6.3 room-style-three */
.room-slider .owl-item {
    margin-bottom: 20px;
}

.room-style-three .room-flip {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -ms-transform: perspective(1000px);
    transform: perspective(1000px);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    background-size: cover;
    background-position: center center;
    min-height: 480px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.room-style-three .room-flip .room-flip-front,
.room-style-three .room-flip .room-flip-back {
    width: 100%;
    height: 100%;
}

.room-style-three .room-flip .room-flip-front {
    background-size: cover;
    background-position: center center;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.room-style-three .room-flip .room-flip-front .room-flip-front-content {
    position: relative;
    text-align: right;
    padding: 30px;
    height: 100%;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -webkit-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 2;
}

.room-style-three .room-flip:hover .room-flip-front-content {
    -webkit-transform: translateX(-650px) scale(0.88);
    -ms-transform: translateX(-650px) scale(0.88);
    transform: translateX(-650px) scale(0.88);
}

.room-style-three .room-flip .room-flip-front .room-flip-front-content .price-night {
    margin-bottom: 10px;
    color: var(--white-color);
}

.room-style-three .room-flip .room-flip-front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 1;
}

.room-style-three .room-flip:hover .room-flip-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.room-style-three .room-flip .room-flip-front .room-flip-front-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, var(--black-color));
    background: linear-gradient(to bottom, transparent, var(--black-color));
}

.room-style-three .room-flip .room-flip-back {
    background: var(--white-color);
    background-size: cover;
    background-position: center center;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid var(--rgba-black-1);
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.room-style-three .room-flip .room-flip-back::before {
    top: 25px;
    left: 15px;
    right: 15px;
    bottom: 25px;
}

.room-style-three .room-flip .room-flip-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 1;
}

.room-style-three .room-flip:hover .room-flip-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.room-style-three .room-flip .room-flip-back-content {
    padding: 30px;
    text-align: left;
    position: relative;
    top: 50%;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -o-transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25), -webkit-transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.25);
    -webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
    transform: translateY(-50%) translateX(650px) translateZ(60px) scale(0.88);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 2;
}

.room-style-three .room-flip:hover .room-flip-back-content {
    -webkit-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
    transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
}

.room-style-three .room-flip .room-flip-back-content .price-night {
    margin-bottom: 10px;
    color: var(--black-color);
}

.room-style-three .room-flip .room-flip-back-content h3 {
    position: relative;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.room-style-three .room-flip .room-flip-back-content p.desc {
    margin-bottom: 25px;
    position: relative;
    display: block;
}

.room-style-three .room-flip .room-flip-back-content .room-amenities-box {
    margin-bottom: 30px;
}

.room-style-three .room-flip .room-flip-back-content .room-amenities-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.room-style-three .room-flip .room-flip-back-content .room-amenities-list li {
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin: 0 0 10px 0;
}

.room-style-three .room-flip .room-flip-back-content .room-amenities-list li i {
    color: var(--primary);
    font-size: 24px;
    line-height: 24px;
}

.room-style-three .room-flip .room-flip-back-content .room-amenities-list li span {
    margin-left: 10px;
    color: var(--dark-light);
}

.room-style-three .room-flip .room-flip-back-content .animated-link {
    letter-spacing: 1px;
    color: var(--secondary);
}

.room-style-three .room-flip .room-flip-back-content .animated-link:hover {
    color: var(--secondary);
}

.room-style-three .room-flip .room-flip-back-content .animated-link::before {
    background-color: var(--secondary);
}

/*---------------------------------------------------------------------------
7 room-details-area
----------------------------------------------------------------------------*/
.room-details-image {
    display: block;
    margin-bottom: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.room-details-service .room-details-service-content {
    display: block;
    position: relative;
    padding: 30px;
    background: var(--rgba-primary-2);
    margin-bottom: 30px;
    border-radius: 5px;
}

.room-details-service .room-details-service-content i {
    display: block;
    position: relative;
    margin-bottom: 15px;
    font-size: 42px;
    color: var(--primary);
}

.room-details-service .room-details-service-content .room-service-name {
    position: relative;
    margin-bottom: 5px;
    display: block;
}

.room-details-service .room-details-service-content .room-service-dec {
    position: relative;
    display: block;
    color: var(--dark-light);
}

.room-details-amenities h3,
.room-details-rules h3 {
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-size: 32px;
}

.room-details-amenities-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.room-details-amenities-content:hover {
    color: var(--white-color);
}

.room-details-amenities-content i {
    position: relative;
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary);
}

.room-details-amenities-content .room-details-amenities-name {
    position: relative;
    display: block;
    color: var(--dark-light);
}

.room-details-rules ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.room-details-rules ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.room-details-rules ul li i {
    position: relative;
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary);
}

.room-details-rules ul li span {
    position: relative;
    color: var(--dark-light);
}

/*---------------------------------------------------------------------------
8 services-area
----------------------------------------------------------------------------*/
.services-area .section-title-box {
    margin-bottom: 50px;
}

.services-item .services-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -moz-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -ms-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -o-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--rgba-primary-3);
    margin-bottom: 20px !important;
}

.services-item .services-icon .icon-origenal {
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    width: 60px;
}

.services-item .services-icon .icon-hover {
    position: absolute;
    width: 60px;
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    -o-transform: translateY(90px);
    -moz-transform: translateY(90px);
    transform: translateY(90px);
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.services-item:hover .services-icon {
    background-color: var(--rgba-primary-4);
}

.services-item:hover .icon-origenal {
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    -o-transform: translateY(-90px);
    -moz-transform: translateY(-90px);
    transform: translateY(-90px);
}

.services-item:hover .icon-hover {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

/* 8.1 services-style-one */
.services-style-one .services-item {
    position: relative;
    display: block;
    padding: 30px;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border: 2px solid var(--white-color);
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -moz-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -ms-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -o-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
}

.services-style-one .services-item:hover {
    border-color: var(--primary);
    -webkit-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -moz-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -ms-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -o-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
}

.services-style-one .services-item .services-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}  

.services-style-one .services-item .services-inner .services-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.services-style-one .services-content h3 {
    font-size: 32px;
}

.services-style-one .services-image-wrapper {
    position: relative;
    display: block;
    margin-left: 45px;
    height: calc(100% - 30px);
    background: var(--bg-light);
}

.services-style-one .services-image-item {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.services-style-one .services-image-item > img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    clip-path: inset(0 100% 0 0);
    -webkit-animation: defaultInset 0.8s forwards ease;
    -moz-animation: defaultInset 0.8s forwards ease;
    -o-animation: defaultInset 0.8s forwards ease;
    animation: defaultInset 0.8s forwards ease;
}

.services-style-one .services-image-item.active img {
    -webkit-animation: activeInset 0.8s forwards ease;
    -moz-animation: activeInset 0.8s forwards ease;
    -o-animation: activeInset 0.8s forwards ease;
    animation: activeInset 0.8s forwards ease;
}

.services-style-one .services-image-item.active {
    z-index: 2;
}

.services-style-one .services-overlay-btn {
    position: absolute;
    right: 0;
    bottom: -70px;
    z-index: 3;
}

.services-style-one .services-overlay-btn a {
    position: relative;
    width: 153px;
    height: 153px;
    font-size: 72px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center; 
    color: var(--black-color);
    overflow: hidden;
    background-color: var(--primary);
    border: 20px solid var(--bg-light);
    border-radius: 50%;
}

.services-style-one .services-overlay-btn a:hover {
    background-color: var(--secondary);
    color: var(--white-color); 
}

.services-style-one .services-overlay-btn a i{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
.services-style-one .services-overlay-btn a:hover i{ 
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

/* 8.2 services-style-Two */
.services-style-two .services-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border: 2px solid var(--white-color);
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -moz-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -ms-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -o-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    overflow: hidden;
}

.services-style-two .services-item .services-icon {
    background-color: var(--bg-light);
    -webkit-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -moz-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -ms-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -o-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    margin-top: -100px;
    margin-right: 20px;
}

.services-style-two .services-item:hover .services-icon {
    background-color: var(--primary);
}

.services-style-two .services-item .services-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.services-style-two .services-item .services-inner .services-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.services-style-two .services-item .services-inner .services-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.services-style-two .services-item .services-inner .services-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
}

.services-style-two .services-item .services-inner .services-content h3 {
    font-size: 32px;
    margin: 0;
    flex: 1;
}

/* 8.3 services-style-three */
.services-style-three .services-wapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.services-style-three .services-item {
    margin-bottom: 50px;
    width: 20%;
}

.services-style-three .services-item .services-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.services-style-three .services-item .services-inner .services-content h3 {
    font-size: 28px;
    margin: 0;
}

/*---------------------------------------------------------------------------
9 services-details-area
----------------------------------------------------------------------------*/
.services-details-area .services-details-image {
    overflow: hidden;
    display: block;
    border-radius: 5px;
    margin-bottom: 30px;
}

.services-details-area .services-details-content .services-details-image-thumb {
    overflow: hidden;
    display: block;
    border-radius: 5px;
    margin-bottom: 30px;
}

.benifits-text .benifits-wapper .benifits-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
}

.services-details-content h3 {
    display: block;
    position: relative;
    font-size: 32px;
}

.benifits-text .benifits-wapper .benifits-item h4 {
    display: block;
    position: relative;
    margin-bottom: 10px;
    font-size: 24px;
}

.benifits-text .benifits-wapper .benifits-item .benifits-content i {
    position: absolute;
    left: 0;
    font-size: 24px;
    color: var(--primary);
}

/*---------------------------------------------------------------------------
10 restaurant-booking-area
----------------------------------------------------------------------------*/
.restaurant-booking-media-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.restaurant-booking-area .form-item {
    padding-right: 0;
}

.restaurant-area .section-title-box {
    max-width: 920px;
    margin-bottom: 50px;
}

.restaurant-area .restaurant-item {
    position: relative;
    display: block;
}

.restaurant-area .restaurant-image {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.restaurant-area .restaurant-image img {
    width: 100%;
}

.restaurant-area .restaurant-content {
    display: block;
    position: relative;
}

.restaurant-area .restaurant-content .restaurant-call {
    position: relative;
    padding-left: 80px;
}

.restaurant-area .restaurant-content .restaurant-call i {
    position: absolute;
    left: 0;
    font-size: 60px;
    line-height: normal;
    top: 8px;
    bottom: 0;
    margin: 0 auto;
    color: var(--dark-light);
}

.restaurant-area .restaurant-content .restaurant-call .small-title {
    margin-bottom: 5px;
}

.restaurant-area .restaurant-content .restaurant-call h4 {
    font-family: var(--font-family-base);
    font-size: 28px;
    font-weight: 600;
}

.restaurant-area .restaurant-content .restaurant-call a {
    position: relative;
    color: var(--dark);
}

.menu-area .section-title-box {
    margin-bottom: 50px;
}

.menu-area .menu-inner {
    position: relative;
    display: block;
    min-height: 100%;
}

.menu-area .row .col-xl-6:nth-child(1) .menu-inner {
    padding-right: 80px;
}

.menu-area .row .col-xl-6:nth-child(2) .menu-inner {
    padding-left: 80px;
}

.menu-area .row .col-xl-6:nth-child(1) .menu-inner::after {
    content: " ";
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 30px;
    border-right: 1px dashed var(--border-color);
}

.menu-inner .menu-block {
    position: relative;
    margin-bottom: 30px;
}

.menu-inner .menu-block .menu-inner-box {
    position: relative;
    padding-left: 120px;
    min-height: 100px;
    padding-top: 10px;
}

.menu-inner .menu-block .menu-inner-box .menu-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}

.menu-content {
    position: relative;
    line-height: 24px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu-content .menu-name {
    position: relative;
    margin-bottom: 0;
    padding-right: 15px;
    font-size: 26px;
    text-transform: capitalize;
    background-color: var(--dark);
    color: var(--white-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-area.bg-secondary-color .menu-content .menu-name,
.menu-area.bg-secondary-color .dish-price {
    background-color: var(--secondary);
}

.dish-tag {
    position: relative;
    display: inline-block;
    line-height: 20px;
    padding: 0 5px;
    color: var(--black-color);
    background: var(--primary);
    margin-left: 10px;
    font-size: 14px;
    line-height: normal;
}

.menu-inner .dish-price {
    position: relative;
    font-family: var(--font-family-title);
    font-size: 22px;
    line-height: normal;
    color: var(--white-color);
    padding-left: 15px;
    background-color: var(--dark);
}

.menu-inner .menu-inner-box .desc {
    font-size: 14px;
    color: var(--white-color);
}

.menu-inner .menu-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
    width: 100%;
    height: 6px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}

.menu-inner.menu-desserts .menu-content::before {
    border-top: 1px dashed var(--black-color);
    border-bottom: 1px dashed var(--black-color);
}

.menu-inner.menu-desserts .menu-content .menu-name {
    background-color: var(--bg-light);
    color: var(--black-color);
}

.menu-inner.menu-desserts .menu-inner-box .desc {
    color: var(--dark-light);
}

.menu-inner.menu-desserts .dish-price {
    background-color: var(--bg-light);
    color: var(--black-color);
}

.menu-area .row .col-xl-6:nth-child(1) .menu-inner.menu-desserts::after {
    border-right: 1px dashed var(--black-color);
}

.restaurant-booking-area .form-item h2 {
    font-size: 48px;
}

/*---------------------------------------------------------------------------
11 local-amenities-area
----------------------------------------------------------------------------*/
/* 11.1 local-amenities-two */
.local-amenities-area .section-title-box {
    margin-bottom: 50px;
}

.local-amenities-image {
    border-radius: 5px;
    overflow: hidden;
}

.local-amenities-wapper {
    margin-bottom: 50px;
}

.local-amenities-area .outer-box {
    margin-bottom: 50px;
}

.local-amenities-area .bg-image {
    margin-bottom: -3px;
    position: relative;
    bottom: 0;
    z-index: 0;
    width: 100%;
}

.local-amenities-area .text-miles {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 2px 10px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

/* 11.2 local-amenities-two */
.local-amenities-two .local-amenities-image-box:nth-last-child(1) {
    margin-bottom: 0;
}

.local-amenities-two .amenities-list-box {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.local-amenities-two .amenities-list-box li {
    margin-bottom: 30px;
    position: relative;
    display: block;
    padding-left: 45px;
}

.local-amenities-two .amenities-list-box li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 32px;
    color: var(--primary);
}

.local-amenities-two .amenities-list-box li h3 {
    margin-bottom: 10px;
    position: relative;
    display: block;
    font-size: 32px;
}

/*---------------------------------------------------------------------------
12 staffs-area
----------------------------------------------------------------------------*/
.staff-area .section-title-box {
    margin-bottom: 50px;
}

.staff-area .staff-slider .owl-item {
    margin-bottom: 20px;
}

.staff-area .single-staff-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border: 2px solid var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
}

.staff-area .single-staff-item .single-staff-image {
    position: relative;
    display: block;
    overflow: hidden;
}
.staff-area .single-staff-item .single-staff-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, var(--black-color));
    background: linear-gradient(to bottom, transparent, var(--black-color));
    width: 100%;
    height: 50%;
    opacity: 0;
}

.staff-area .single-staff-item .single-staff-image img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    width: 100%;
}
.staff-area .single-staff-item:hover .single-staff-image::after {
    opacity: 1;
}
.staff-area .single-staff-item:hover .single-staff-image img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.staff-area .single-staff-item .overlay-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    transition: var(--transition);
}

.staff-area .single-staff-item:hover .overlay-content {
    bottom: 30px;
}

.staff-area .single-staff-item .single-staff-content {
    position: relative;
    display: block;
    padding: 30px;
}

.staff-area .single-staff-item .single-staff-content h3 {
    font-size: 32px;
}
/*---------------------------------------------------------------------------
13 gallery-area
----------------------------------------------------------------------------*/
.gallery-area .section-title-box {
    margin-bottom: 50px;
}

.gallery-category {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery-category-menu {
    color: var(--dark-light);
    padding: 10px 20px;
    margin: 0 10px 10px 10px;
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.gallery-category-menu.mixitup-control-active,
.gallery-category-menu:hover {
    background: var(--primary);
    color: var(--black-color);
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-item .gallery-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
}

.gallery-item .gallery-inner .gallery-image,
.gallery-item .gallery-inner .gallery-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.gallery-item .overlay-content {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    background: var(--rgba-black-5);
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 5px;
}

.gallery-item:hover .overlay-content {
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    opacity: 1;
}

.gallery-item .overlay-content a {
    color: var(--white-color);
    font-size: 18px;
    width: 100%;
    height: 100%;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    cursor: url(../../assets/images/icon/icon-zoom-in.png), pointer;
}

.gallery-item .overlay-content a:hover {
    color: var(--white-color);
}

.gallery-slider .owl-item.active.center {
    opacity: 1;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1) !important;
    -ms-transform: translateZ(0) scale(1, 1) !important;
    -o-transform: translateZ(0) scale(1, 1) !important;
    -moz-transform: translateZ(0) scale(1, 1) !important;
    transform: translateZ(0) scale(1, 1) !important;
}

.gallery-slider .owl-carousel .owl-wrapper,
.gallery-slider .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gallery-slider .owl-item {
    opacity: 0.5;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(0.85, 0.85) !important;
    -moz-transform: translateZ(0) scale(0.85, 0.85) !important;
    -ms-transform: translateZ(0) scale(0.85, 0.85) !important;
    transform: translateZ(0) scale(0.85, 0.85) !important;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
    margin-bottom: 20px;
}

.fancybox-slide,
.fancybox-slide--image {
    cursor: url(../../assets/images/icon/icon-zoom-out.png), zoom-out;
}

.fancybox-can-drag .fancybox-image-wrap {
    cursor: url(../../assets/images/icon/icon-arrow-grab.png), grab;
}

/*---------------------------------------------------------------------------
14 offer-area
----------------------------------------------------------------------------*/
.offer-area .section-title-box {
    margin-bottom: 50px;
}

.offer-area .single-offer-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    background-color: var(--bg-light);
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    overflow: hidden;
}

.offer-area .offer-slider .single-offer-item {
    margin-bottom: 50px;
}

.offer-area .offer-image {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.offer-area .offer-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.offer-content {
    padding: 30px;
}

.offer-content .offer-upper-box {
    position: relative;
    display: block;
    padding-left: 200px;
    margin-bottom: 20px;
}

.offer-upper-box h2 {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    padding-right: 42px;
    font-family: var(--font-family-title);
}

.offer-upper-box h2::before {
    position: absolute;
    content: " ";
    background: var(--rgba-black-2);
    width: 1px;
    height: 75%;
    top: 6px;
    right: -20px;
}

.offer-upper-box h2 span {
    position: absolute;
    top: 10px;
    right: 0px;
    font-size: 20px;
    text-transform: uppercase;
}

.offer-title span {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 5px;
}

.offer-title h3 {
    font-size: 32px;
}
/*---------------------------------------------------------------------------
15 news-area
----------------------------------------------------------------------------*/
.news-area .section-title-box {
    margin-bottom: 50px;
}

/* 15.1 news-style-one */
.news-style-one .news-inner {
    display: block;
    height: 500px;
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background: var(--black-color);
}

.news-style-one .news-inner .news-image,
.news-style-one .news-inner .news-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.news-style-one .news-inner .news-image img {
    display: block;
    -o-transition: var(--transition);
    -ms-transition: var(--transition);
    -moz-transition: var(--transition);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.news-style-one .news-inner:hover .news-image img {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.news-style-one .news-inner .overlay-content {
    position: absolute;
    width: 100%;
    z-index: 8;
    display: block;
    padding: 30px;
    color: var(--white-color);
    left: 0;
    bottom: -70px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, var(--black-color));
    background: linear-gradient(to bottom, transparent, var(--black-color));
}

.news-style-one .news-inner:hover .overlay-content {
    -webkit-transform: translate(0, -70px);
    -moz-transform: translate(0, -70px);
    -ms-transform: translate(0, -70px);
    -o-transform: translate(0, -70px);
    transform: translate(0, -70px);
}

.news-style-one .news-inner .overlay-content .catagory {
    margin-bottom: 10px;
    background: var(--primary);
    display: inline-block;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 3px;
    color: var(--black-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-style-one .news-inner .overlay-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.3;
}

.news-style-one .news-inner .overlay-content .animated-link:hover {
    color: var(--primary);
}

/* 15.2 news-style-two */
.news-style-two .news-slider .owl-item {
    margin-bottom: 20px;
}

.news-style-two .news-item {
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid var(--rgba-black-1);
    overflow: hidden;
}

.news-style-two .news-item .news-inner .news-image {
    display: block;
    position: relative;
    height: 290px;
    overflow: hidden;
}

.news-style-two .news-item .news-inner .news-image:hover img {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.news-style-two .news-item .news-inner .news-image a,
.news-style-two .news-item .news-inner .news-image a img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.news-style-two .news-item .news-inner .news-image .news-meta {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.news-style-two .news-item .news-inner .news-image .news-meta-date {
    background: var(--primary);
    text-align: center;
    position: relative;
    width: 60px;
    padding: 5px 0;
    border-radius: 5px;
}

.news-style-two .news-item .news-inner .news-image .news-meta-date h5 {
    font-size: 30px;
    color: var(--black-color);
    margin: 0;
}

.news-style-two .news-item .news-inner .news-image .news-meta-date span {
    display: inline-block;
    color: var(--black-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.news-style-two .news-item .news-inner .overlay-content {
    padding: 0 30px 30px 30px;
}

.news-style-two .news-item .news-inner .overlay-content .blog-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.news-style-two .news-item .news-inner .overlay-content .blog-meta .blog-meta-tag {
    margin-right: 15px;
}

.news-style-two .news-item .news-inner .overlay-content .blog-meta span {
    margin-right: 5px;
    color: var(--primary);
    font-size: 18px;
}

.news-style-two .news-item .news-inner .overlay-content h3 {
    font-size: 32px;
    line-height: 1.3;
}

/* 15.3 news-style-three */

.news-style-three .news-slider .owl-item {
    margin-bottom: 20px;
}

.news-style-three .news-item {
    margin-bottom: 30px;
    border: 1px solid var(--rgba-black-1);
    border-radius: 5px;
    overflow: hidden;
}

.news-style-three .news-item .news-inner .news-image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 290px;
}

.news-style-three .news-item .news-inner .news-image:hover img {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.news-style-three .news-item .news-inner .news-image a,
.news-style-three .news-item .news-inner .news-image a img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.news-style-three .news-item .news-inner .overlay-content {
    padding: 0 30px 30px 30px;
}

.news-style-three .news-item .news-inner .overlay-content .blog-meta {
    margin-bottom: 15px;
    padding-right: 0;
    padding-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-style-three .news-item .news-inner .overlay-content .blog-meta i {
    margin-right: 5px;
    font-size: 20px;
    color: var(--primary);
}

.news-style-three .news-item .news-inner .overlay-content .blog-meta .blog-meta-tag a {
    padding: 2px 10px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.news-style-three .news-item .news-inner .overlay-content .blog-meta .blog-meta-tag a:hover {
    color: var(--black-color);
    background-color: var(--primary);
    border-radius: 50px;
}

.news-style-three .news-item .news-inner .overlay-content .blog-meta .blog-meta-comment a.desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.news-style-three .news-item .news-inner .overlay-content h3 {
    font-size: 32px;
    line-height: 1.3;
}

.news-style-three .news-item .news-inner .overlay-content .blog-author-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-style-three .news-item .news-inner .overlay-content .blog-author-image {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0 0 60px;
    -webkit-flex: 0 0 60px;
    -moz-box-flex: 0 0 60px;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 100%;
}

.news-style-three .news-item .news-inner .overlay-content .blog-author-username {
    font-family: var(--font-family-title);
    font-size: 22px;
    line-height: initial;
}

/*----------------------------------------------------------------------------
16 news-single
----------------------------------------------------------------------------*/
.inner-banner.news-details-inner-banner {
    padding-bottom: 200px;
}

.inner-banner.news-details-inner-banner .inner {
    max-width: 100%;
    text-align: start;
}

.inner-banner.news-details-inner-banner .inner .catagory {
    margin-bottom: 10px;
    background: var(--primary);
    display: inline-block;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 3px;
    color: var(--black-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.inner-banner.news-details-inner-banner .inner .post-by-box {
    padding-top: 30px;
    position: relative;
}

.inner-banner.news-details-inner-banner .inner .post-by-box .post-by-user-profile img {
    margin-right: 15px;
    width: 60px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.inner-banner.news-details-inner-banner .inner .post-by-box .post-by-content .post-by-username {
    position: relative;
    margin: 0 0 5px 0;
    background: none;
    line-height: initial;
    font-family: var(--font-family-title);
    font-size: 24px;
    color: var(--white-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-details-big-img {
    margin-top: -100px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 50px;
}

.news-details-big-img img {
    width: 100%;
}

.news-single-box .news-single-inner .news-single-content .desc {
    position: relative;
    margin-bottom: 20px;
}

.news-single-box .news-single-inner .news-single-content .big-text {
    float: left;
    padding-right: 20px;
    font-size: 80px;
    color: var(--primary);
    font-family: var(--font-family-title);
    line-height: normal;
}

.news-single-box .news-single-inner .news-single-content .news-blockquote {
    border-radius: 5px;
    overflow: hidden;
}

.news-single-box .news-single-inner .news-single-content blockquote {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 0;
    background: var(--rgba-primary-1);
    border-left: 5px solid var(--primary);
}

.news-single-box .news-single-inner .news-single-content blockquote .blockquote-desc {
    font-size: 24px;
    line-height: 1.3;
    font-family: var(--font-family-title);
    margin-bottom: 15px;
    position: relative;
    display: block;
}

.news-single-box .news-single-inner .news-single-content .news-details-releted-tags .releted-tags-box ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.news-single-box .news-single-inner .news-single-content .news-details-releted-tags .releted-tags-box ul li:not(:nth-last-child(1)) {
    margin-right: 15px;
}

.news-single-box .news-single-inner .news-single-content .news-details-releted-tags .releted-tags-box li a {
    position: relative;
    display: block;
    text-align: center;
    padding: 5px 10px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    background-color: var(--rgba-primary-2);
    color: var(--black-color);
    font-size: 14px;
    border-radius: 5px;
}

.news-single-box .news-single-inner .news-single-content .news-details-releted-tags .releted-tags-box li a:hover {
    background-color: var(--secondary);
    color: var(--white-color);
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation {
    position: relative;
    padding: 30px 15px;
    margin-bottom: 50px;
    background-color: var(--rgba-primary-2);
    border-radius: 5px;
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    border-right: 1px dashed var(--rgba-black-3);
    height: 60%;
    width: 3px;
    top: 0;
    bottom: 0;
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation a {
    font-family: var(--font-family-title);
    font-size: 24px;
    line-height: 1.5;
    color: var(--black-color);
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation span {
    color: var(--black-color);
    font-size: 14px;
    font-family: var(--font-family-base);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation a:hover {
    color: var(--primary);
}

.news-single-box .news-single-inner .news-single-content .news-details-navigation .next-link a {
    text-align: end;
}

/* # comment */
.comment-area {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.comment-area .comment-title {
    margin-bottom: 35px;
}

.comment-area .comment-title h3 {
    color: var(--primary);
}

.comment-area .comment-list {
    overflow: hidden;
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    list-style: none;
    border-bottom: 1px solid var(--rgba-primary-3);
}

.comment-area .comment-list.children {
    margin-left: 100px;
}

.comment-area .comment-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.comment-area .comment-user-profile {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-right: 20px;
}

.comment-area .comment-user-profile img {
    width: 80px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.comment-area .comment-content {
    display: block;
    position: relative;
    width: 100%;
}

.comment-area .comment-username {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.comment-area .comment-username span {
    font-family: var(--font-family-base);
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
    color: var(--dark-light);
}

.comment-area .comment-inner {
    position: relative;
    line-height: 20px;
    padding-left: 148px;
    min-height: 125px;
}

.comment-area .comment-media {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.comment-area .comment-media img {
    display: block;
    width: 120px;
    height: 120px;
}

.comment-area .comment-content .comment-name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white-color);
    font-family: var(--font-family-title);
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
}

.comment-area .comment-content .comment-name span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: var(--color-extra-three);
    padding: 0 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.comment-area .comment-reply {
    font-size: 14px;
    color: var(--primary);
}

/* # add-comment-area */
.add-comment-area .add-comment-title {
    margin-bottom: 30px;
}

.add-comment-area .add-comment-title h3 {
    color: var(--primary);
}

/* 16.1 sidebar-widget */
.sidebar-widget {
    margin-left: 20px;
}
.news-style-three aside.sidebar-widget {
    margin-left: 0;
    margin-right: 20px;
}

.sidebar-widget .widget {
    background: var(--rgba-primary-2);
    margin-bottom: 40px;
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
}

.sidebar-widget .widget .widget-title {
    margin-bottom: 25px;
}

.sidebar-widget .widget .widget-title h3 {
    border-bottom: 1px solid var(--rgba-primary-3);
    font-family: var(--font-family-title);
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sidebar-widget .widget .widget-title h3 i {
    color: var(--primary-dark);
    margin-right: 15px;
}

/* # widget-author */

.widget-author .widget-content {
    text-align: center;
    display: block;
}

.widget-author .author-image {
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.widget-author .author-image img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.widget-author .author-name {
    margin-bottom: 10px;
    font-size: 24px;
}

.widget-author .author-social-link {
    padding-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.widget-author .author-social-link a {
    font-size: 20px;
    color: var(--white-color);
}

.widget-author .author-social-link a:hover {
    color: var(--primary);
}

/* # widget-search */
.widget-search .default-form form .form-group {
    margin-bottom: 0;
}

.widget-search .default-form .field-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-search .default-form .field-inner button i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    transform: scaleX(-1);
}

.widget-search .default-form .field-inner .btn-style-one {
    padding: 0 22px;
    font-size: 20px;
    margin-left: 15px;
}

/* # widget-categories */

.widget-categories .category-list li a {
    background-color: var(--rgba-primary-2);
    color: var(--black-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.widget-categories .category-list li a:hover {
    background-color: var(--secondary);
    color: var(--white-color);
}

.widget-categories .category-list li:nth-last-child(1) a {
    margin-bottom: 0;
}

/* # widget-service */
.widget-services .category-list li a {
    background-color: var(--rgba-primary-2);
    color: var(--black-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.widget-services .category-list li a:hover {
    background-color: var(--secondary);
    color: var(--white-color);
}

.widget-services .category-list li a i {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.widget-services .category-list li a:hover i {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.widget-services .category-list li:nth-last-child(1) a {
    margin-bottom: 0;
}

/* # widget-recent-post */

.widget-recent-post .recent-post-box .recent-post-item {
    position: relative;
    margin-bottom: 20px;
}

.widget-recent-post .recent-post-box .recent-post-item:nth-last-child(1) {
    margin-bottom: 0;
}

.widget-recent-post .recent-post-box .recent-post-item .recent-post-content {
    position: relative;
    padding-left: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rgba-primary-3);
}

.widget-recent-post .recent-post-box .recent-post-item:nth-last-child(1) .recent-post-content {
    padding-bottom: 0;
    border-bottom: none;
}

.widget-recent-post .recent-post-box .recent-post-number {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.3;
    color: var(--dark);
    font-size: 28px;
    font-family: var(--font-family-title);
}

.widget-recent-post .recent-post-box .recent-post-content h4 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0;
}

.widget-recent-post .recent-post-box .recent-post-content a {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--black-color);
}

.widget-recent-post .recent-post-box .recent-post-content a:hover {
    color: var(--primary-hover);
}

.widget-recent-post .recent-post-box .recent-post-content .recent-post-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.widget-recent-post .recent-post-box .recent-post-content .recent-post-date i {
    font-size: 18px;
    color: var(--primary-hover);
    margin-right: 5px;
}

/* # widget-social */

.widget-social .category-list li a {
    background: transparent;
    border: 1px solid var(--primary);
}

.widget-social .category-list li a:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* # widget-tag */

.widget-tag .category-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-tag .category-list li a {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin: 0 0 10px 10px;
    border-radius: 5px;
    background-color: var(--rgba-primary-3);
    color: var(--black-color);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.widget-tag .category-list li a:hover {
    background-color: var(--secondary);
    color: var(--white-color);
}

/* # widget-hot-deal */

.sidebar-widget .widget-hot-deal {
    margin-bottom: 0;
    padding: 0;
}

.widget-hot-deal .inner {
    position: relative;
    padding-top: 75px;
    padding-bottom: 55px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100%;
    text-align: center;
}

.widget-hot-deal .inner .hot-deal-media-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.widget-hot-deal .inner .hot-deal-title {
    position: relative;
    margin-bottom: 40px;
}

.widget-hot-deal .inner .hot-deal-title .small-title {
    margin-bottom: 10px;
}

.widget-hot-deal .inner .hot-deal-data {
    position: relative;
}

.widget-hot-deal .inner .hot-deal-discount-info {
    position: relative;
    display: block;
    width: 224px;
    height: 224px;
    padding-top: 50px;
    margin: auto;
}

.widget-hot-deal .inner .hot-deal-discount-info::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 26px;
    width: 170px;
    height: 170px;
    background: var(--black-color);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 5px;
    animation-name: rotation-animation;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotation-animation;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation-animation;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotation-animation;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotation-animation;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.widget-hot-deal .inner .hot-deal-discount-info::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 26px;
    width: 170px;
    height: 170px;
    background: var(--color-extra-four);
    border: 3px solid var(--primary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.widget-hot-deal .inner .hot-deal-discount-info .small-title {
    position: relative;
    z-index: 1;
}

.widget-hot-deal .inner .hot-deal-discount-info .hot-deal-number {
    position: relative;
    line-height: 0.9em;
    font-size: 70px;
    font-family: var(--font-family-title);
    z-index: 1;
}

.widget-hot-deal .inner .hot-deal-data .link-box {
    padding-top: 40px;
}

/* # widget-room-booking */

.widget-room-booking .widget-room-price {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rgba-black-1);
}

.widget-room-booking .widget-room-price h3 {
    font-size: 52px;
    float: left;
    position: relative;
    margin: 0;
    line-height: initial;
}

.widget-room-booking .widget-room-price span {
    position: relative;
    float: left;
    width: auto;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    padding-left: 15px;
}

.widget-room-booking .widget-room-form {
    padding-top: 30px;
}

.widget-room-booking .widget-room-form .form-group .field-inner input {
    background-color: var(--rgba-primary-2);
}

.widget-room-booking .widget-room-form .form-group label {
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 5px;
} 
 

.widget-room-booking .widget-room-form .form-group .ui-widget-content {
    width: 100%;
    border: none !important;
    background: transparent;
}

.widget-room-booking .widget-room-form .form-group .ui-spinner a.ui-spinner-button {
    background: transparent;
    border: none;
}

/* # widget-contact */

.widget-contact .help-icon {
    margin-bottom: 20px;
}

.widget-contact .widget-call {
    text-align: center;
}

.widget-contact .widget-call span {
    margin-bottom: 15px;
}

.help-icon img {
    width: 80px;
}

.widget-contact h3 {
    font-family: var(--font-family-title);
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.help-box {
    margin-bottom: 30px;
}

.help-box a {
    color: var(--black-color);
    font-size: 18px;
}

/*----------------------------------------------------------------------------
17 contact-area
----------------------------------------------------------------------------*/
.field-inner .error {
    color: red;
    font-size: 13px;
    position: absolute;
}
.field-inner .form-control.error-border {
    border-color: red;
} 
.ajax-response.success {
    background-color: var(--white-color);
    padding: 15px;
    margin-top: 30px;
    color: green;
}
.ajax-response.error {
    background-color: var(--white-color);
    padding: 15px;
    margin-top: 30px;
    color: red;
} 

.contact-area .section-title-box {
    margin-bottom: 50px;
}

.contact-area h2 {
    font-size: 48px;
}

.contact-area .form-item .form-inner {
    background: var(--rgba-primary-1);
}

.contact-area .contactus-form .field-inner i {
    line-height: 112px;
}

.location-area .section-title-box {
    margin-bottom: 50px;
}

.location-item {
    position: relative;
    display: block;
    padding: 30px;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border: 2px solid var(--white-color);
    border-radius: 5px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -moz-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -ms-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    -o-box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
    box-shadow: 1px 2px 4px 0 rgba(156, 156, 156, 0.08);
}
.location-item:hover {
    border-color: var(--primary);
    -webkit-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -moz-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -ms-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    -o-box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
    box-shadow: 3px 5px 12px 0px rgba(124, 124, 124, 0.08);
}

.location-item .location-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.location-item .location-inner .location-icon {
    position: relative;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.location-item .location-inner:hover {
    border-color: var(--primary);
}

.location-item .location-inner:hover .location-icon {
    -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.location-item .location-inner .location-content h3 {
    font-size: 32px;
}

.location-item .location-inner .location-content .desc {
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
}

.map-item {
    position: relative;
    margin-bottom: 30px;
    margin-left: 50px;
    height: calc(100% - 30px);
    border-radius: 5px;
    overflow: hidden;
}

.map-item .map-inner,
.map-item .map-inner iframe {
    height: 100%;
}

/*----------------------------------------------------------------------------
18 not-found-area
----------------------------------------------------------------------------*/
.error-box-col .error-inner {
    text-align: center;
}

.error-box-col .error-inner .error-media {
    margin-bottom: 20px;
}

.error-box-col .error-inner .desc {
    position: relative;
    color: var(--dark-light);
    margin: 0 auto 30px auto;
}

/*----------------------------------------------------------------------------
19 faq-area
----------------------------------------------------------------------------*/
.faq-search-form {
    max-width: 570px;
    margin: 0 auto 60px;
}

.faq-search-form .default-form .field-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.faq-search-form .default-form .field-inner button {
    padding: 0 22px;
    font-size: 20px;
    margin-left: 20px;
}

.faq-search-form .default-form .field-inner button i {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    transform: scaleX(-1);
}

.accordion .accordion-item {
    background-color: var(--white-color);
    margin-bottom: 20px;
    border: 0;
    border-radius: 5px;
}

.accordion .accordion-collapse {
    border: 0;
    border-radius: 0 !important;
}

.accordion-header .accordion-button.collapsed {
    background-color: var(--rgba-primary-3);
    color: inherit;
    border-radius: 5px;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--secondary);
    color: var(--white-color);
    border-radius: 15px 15px 0 0;
}

.accordion-header .accordion-button {
    font-size: 22px;
    line-height: 1.3;
    border: 0;
    padding: 18px 60px 18px 25px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    color: var(--black-color);
}

.accordion-header .accordion-button::after {
    position: absolute;
    right: 20px;
}

.accordion-button:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.accordion-header .accordion-button::after {
    margin-left: auto;
    background-image: none;
    background-repeat: unset;
    background-size: unset;
    position: absolute;
    right: 20px;
    content: "\f107";
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.accordion .accordion-body {
    padding: 25px;
    border: 1px solid var(--secondary);
    border-top: 0;
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    color: var(--black-color);
}

/*----------------------------------------------------------------------------
20 policy
----------------------------------------------------------------------------*/
.about-privacy h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.sub-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sub-title-bar .point {
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sub-title-bar h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 0;
}

.privacy-info h4 {
    font-size: 26px;
}

.privacy-content {
    padding-left: 30px;
}

.privacy-content h6 {
    font-family: var(--font-family-base);
    font-size: 18px;
}

.info-list {
    padding-left: 20px;
}

.info-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.info-list li i {
    min-width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--rgba-primary-2);
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}

.info-list li p {
    flex: 1;
}

/*----------------------------------------------------------------------------
21 coming-soon-area
----------------------------------------------------------------------------*/
.coming-soon-area {
    background: var(--black-color);
}

.coming-soon-area .coming-soon-image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.coming-soon-content {
    padding: 40px 0;
    min-height: 100vh;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    padding-top: 20px;
    margin-bottom: 20px;
}
.coming-soon-content .coming-soon-title p {
    max-width: 620px;
    width: 100%;
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white-color);
}

.countdown {
    padding: 30px 0 80px 0;
}

.countdown .countdown-section {
    display: inline-block;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.countdown .countdown-section::before,
.countdown .countdown-section::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: var(--white-color);
    right: -5px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.countdown .countdown-section:last-child::after,
.countdown .countdown-section:last-child::before {
    display: none;
}
.countdown .countdown-section::before {
    top: 20px;
}
.countdown .countdown-section::after {
    bottom: 50px;
}
.countdown .countdown-section > div {
    position: relative;
    z-index: 1;
}
.countdown .countdown-section .countdown-number {
    font-size: 80px;
    line-height: 1;
    width: auto;
    color: var(--white-color);
}
.countdown .countdown-section .countdown-unit {
    color: var(--white-color);
    position: relative;
    z-index: 1;
    font-size: 18px;
    padding-top: 5px;
}

/* =========================================================
 Casino —Premium Header
   ========================================================= */

.info-bar,
.header-top,
.info-toggler,
.mobile-menu {
    display: none !important;
}

body {
    padding-top: 0 !important;
}

main {
    padding-top: 0 !important;
}

.site-header,
.header-area,
.header-area.header-style-three,
.header-area.header-style-three.sticky,
.header-area.header-style-three.fixed-header,
.header-area.header-style-three.sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #121b31 !important;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .header-lower,
.header-area .header-lower,
.header-area.header-style-three .header-lower,
.header-area.header-style-three.sticky .header-lower,
.header-area.header-style-three.fixed-header .header-lower,
.header-area.header-style-three.sticky-header .header-lower {
    background: #121b31 !important;
    padding: 0 !important;
}

/* Header layout */
.site-header-row {
    min-height: 92px;
    padding: 0 48px;
}

/* Logo */
.site-header .brand-logo .logo img,
.header-area .brand-logo .logo img {
    max-height: 72px;
    width: auto;
}

/* Desktop navigation */
.site-header .main-menu .navigation,
.header-area .main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-header .main-menu .navigation > li,
.header-area .main-menu .navigation > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-header .main-menu .navigation > li > a,
.header-area .main-menu .navigation > li > a {
    display: inline-flex;
    align-items: center;
    padding: 36px 0;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.site-header .main-menu .navigation > li > a:hover,
.header-area .main-menu .navigation > li > a:hover {
    color: #ffc1b4 !important;
}

/* Underline hover */
.site-header .main-menu .navigation > li > a::after,
.header-area .main-menu .navigation > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    height: 2px;
    background: #ffc1b4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease;
}

.site-header .main-menu .navigation > li > a:hover::after,
.header-area .main-menu .navigation > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* CTA button */
.site-header .header-button,
.header-area .header-button {
    display: flex;
    align-items: center;
}

.site-header .btn-style-one,
.header-area .btn-style-one {
    min-width: 170px;
    padding: 18px 30px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.04em;
    box-shadow: none;
}

.site-header .btn-style-one:hover,
.header-area .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

.hero-banner-area,
.banner-style-three {
    margin-top: 0 !important;
}

.hero-banner-area .banner-content,
.banner-style-three .banner-content {
    padding-top: 110px;
}

html {
    scroll-padding-top: 110px;
}

/* Mobile: only logo + Play Now */
@media (max-width: 991px) {
    .site-header .menu-area,
    .header-area .menu-area {
        display: none !important;
    }

    .site-header-row {
        min-height: 76px;
        padding: 0 18px;
    }

    .site-header .brand-logo .logo img,
    .header-area .brand-logo .logo img {
        max-height: 56px;
    }

    .site-header .btn-style-one,
    .header-area .btn-style-one {
        min-width: auto;
        padding: 13px 18px;
        font-size: 14px;
    }

    .hero-banner-area .banner-content,
    .banner-style-three .banner-content {
        padding-top: 90px;
    }

    html {
        scroll-padding-top: 90px;
    }
}

@media (max-width: 575px) {
    .site-header-row {
        min-height: 70px;
        padding: 0 14px;
    }

    .site-header .brand-logo .logo img,
    .header-area .brand-logo .logo img {
        max-height: 48px;
    }

    .site-header .btn-style-one,
    .header-area .btn-style-one {
        padding: 12px 15px;
        font-size: 13px;
    }

    .hero-banner-area .banner-content,
    .banner-style-three .banner-content {
        padding-top: 82px;
    }
}

/* =========================================================
   Static Hero Banner
   ========================================================= */

.static-hero-banner {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101827;
}

.static-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: 1;
}

.static-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 78% 25%, rgba(255, 193, 180, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(10, 15, 28, 0.96) 0%, rgba(18, 27, 49, 0.88) 42%, rgba(18, 27, 49, 0.54) 72%, rgba(18, 27, 49, 0.72) 100%);
}

.static-hero-banner .container {
    position: relative;
    z-index: 3;
    padding-top: 110px;
    padding-bottom: 80px;
}

.static-hero-content {
    max-width: 780px;
}

.static-hero-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 193, 180, 0.38);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffc1b4;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.static-hero-content h1 {
    margin-bottom: 26px;
    color: #ffffff;
    font-size: 76px;
    line-height: 1.02;
    font-weight: 400;
    text-transform: none;
}

.static-hero-content p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.75;
}

.static-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 40px;
}

.static-hero-point {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.static-hero-point i {
    color: #ffc1b4;
    font-size: 18px;
}

.static-hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.static-hero-actions .btn-style-one {
    min-width: 170px;
    padding: 18px 32px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-weight: 600;
    text-transform: none;
}

.static-hero-actions .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

.static-hero-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.static-hero-link:hover {
    color: #ffc1b4;
}

.static-hero-card {
    position: relative;
    padding: 36px 34px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.static-hero-card::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 2px;
    background: #ffc1b4;
}

.static-hero-card-label {
    display: block;
    margin-bottom: 18px;
    color: #ffc1b4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.static-hero-card h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.18;
    text-transform: none;
}

.static-hero-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

.static-hero-banner .owl-nav,
.static-hero-banner .owl-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .static-hero-content h1 {
        font-size: 64px;
    }

    .static-hero-banner {
        min-height: 760px;
    }
}

@media (max-width: 991px) {
    .static-hero-banner {
        min-height: 700px;
    }

    .static-hero-banner .container {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .static-hero-content h1 {
        font-size: 52px;
    }

    .static-hero-content p {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .static-hero-banner {
        min-height: 680px;
    }

    .static-hero-banner .container {
        padding-top: 100px;
        padding-bottom: 55px;
    }

    .static-hero-label {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .static-hero-content h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .static-hero-content p {
        font-size: 16px;
    }

    .static-hero-points {
        gap: 10px;
    }

    .static-hero-point {
        width: 100%;
        border-radius: 12px;
    }

    .static-hero-actions {
        gap: 18px;
    }

    .static-hero-actions .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Games Showcase Section
   ========================================================= */

.games-showcase-area {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 193, 180, 0.22), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255, 193, 180, 0.14), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f6eee8 48%, #efe4dc 100%);
}

.games-showcase-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 27, 49, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 27, 49, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.games-showcase-area .container {
    position: relative;
    z-index: 2;
}

.games-showcase-area .section-title-box h2 {
    color: #121b31;
    text-transform: none;
}

.games-showcase-area .section-title-box .desc {
    max-width: 760px;
    margin: 0 auto;
    color: #515e7d;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.game-preview-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    background: #121b31;
    box-shadow: 0 18px 42px rgba(18, 27, 49, 0.18);
    transform: translateY(0);
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.game-preview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    border: 1px solid rgba(255, 193, 180, 0.38);
    pointer-events: none;
}

.game-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(180deg, transparent 35%, rgba(18, 27, 49, 0.42) 100%),
        linear-gradient(90deg, rgba(255, 193, 180, 0.14), transparent 45%, rgba(255, 255, 255, 0.08));
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
}

.game-preview-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 420ms ease, filter 280ms ease;
}

.game-preview-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(18, 27, 49, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, visibility 280ms ease;
}

.game-preview-overlay .btn-style-one {
    min-width: 138px;
    padding: 14px 22px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.04em;
    transform: translateY(12px);
    transition: transform 280ms ease, background-color 280ms ease;
}

.game-preview-overlay .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

.game-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.28);
}

.game-preview-card:hover::after {
    opacity: 1;
}

.game-preview-card:hover .game-preview-image {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.game-preview-card:hover .game-preview-overlay {
    opacity: 1;
    visibility: visible;
}

.game-preview-card:hover .game-preview-overlay .btn-style-one {
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1199px) {
    .games-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
}

/* Mobile landscape / large phones */
@media (max-width: 767px) {
    .games-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .game-preview-card {
        border-radius: 14px;
    }

    .game-preview-overlay {
        padding: 10px;
    }

    .game-preview-overlay .btn-style-one {
        min-width: auto;
        padding: 11px 15px;
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-preview-card {
        border-radius: 12px;
    }

    .games-showcase-area .section-title-box h2 {
        font-size: 38px;
    }
}

/* =========================================================
   Overview Section
   ========================================================= */

.overview-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 48%, #efe4dc 100%);
}

.overview-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 38px rgba(255, 193, 180, 0.08),
        0 0 0 76px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.overview-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 120px;
    width: 240px;
    height: 240px;
    border-radius: 28px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.overview-section .container {
    position: relative;
    z-index: 2;
}

.overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
    gap: 28px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: #b9857b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    margin-right: 12px;
    background: #b9857b;
}

.overview-intro {
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 24px 70px rgba(18, 27, 49, 0.10);
}

.overview-intro h2 {
    max-width: 860px;
    margin-bottom: 24px;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.overview-intro p {
    max-width: 900px;
    color: #515e7d;
    font-size: 18px;
    line-height: 1.8;
}

.overview-highlight-card {
    position: relative;
    padding: 44px 38px;
    border-radius: 24px;
    background: #121b31;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.24);
}

.overview-highlight-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.16);
}

.overview-card-number {
    display: block;
    margin-bottom: 48px;
    color: rgba(255, 193, 180, 0.52);
    font-family: var(--font-family-title);
    font-size: 86px;
    line-height: 0.75;
}

.overview-highlight-card h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.16;
    text-transform: none;
}

.overview-highlight-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.overview-location-panel {
    grid-column: 1 / -1;
    padding: 42px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(18, 27, 49, 0.96), rgba(18, 27, 49, 0.88)),
        linear-gradient(90deg, rgba(255, 193, 180, 0.18), transparent);
    box-shadow: 0 28px 78px rgba(18, 27, 49, 0.22);
}

.overview-panel-heading {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 24px;
}

.overview-location-panel h3 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.overview-location-panel p {
    max-width: 980px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.overview-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.overview-location-item {
    padding: 24px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.overview-location-item span {
    display: block;
    margin-bottom: 8px;
    color: #ffc1b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overview-location-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
}

.overview-feature-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.overview-feature-card {
    position: relative;
    min-height: 290px;
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.overview-feature-card::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.18);
    transform: scale(1);
    transition: transform 260ms ease;
}

.overview-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.overview-feature-card:hover::after {
    transform: scale(1.18);
}

.overview-feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-feature-icon i {
    font-size: 30px;
}

.overview-feature-card h3 {
    margin-bottom: 16px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.overview-feature-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.overview-casino-focus {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
}

.overview-casino-content {
    padding: 46px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.overview-casino-content h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.overview-casino-content p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.overview-casino-list {
    padding: 26px;
    background: #121b31;
}

.overview-casino-list-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.overview-casino-list-item:last-child {
    border-bottom: 0;
}

.overview-casino-list-item span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.overview-casino-list-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.overview-summary-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.overview-summary-card h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 36px;
    line-height: 1.12;
    text-transform: none;
}

.overview-summary-card p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.overview-summary-card .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.overview-summary-card .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .overview-layout {
        grid-template-columns: 1fr;
    }

    .overview-highlight-card {
        min-height: auto;
    }

    .overview-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-summary-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .overview-intro,
    .overview-location-panel,
    .overview-casino-content,
    .overview-highlight-card {
        padding: 34px;
    }

    .overview-intro h2 {
        font-size: 46px;
    }

    .overview-location-panel h3,
    .overview-casino-content h3 {
        font-size: 36px;
    }

    .overview-panel-heading {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .overview-casino-focus {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .overview-feature-grid,
    .overview-location-grid {
        grid-template-columns: 1fr;
    }

    .overview-intro h2 {
        font-size: 40px;
    }

    .overview-intro p,
    .overview-location-panel p,
    .overview-casino-content p {
        font-size: 16px;
    }

    .overview-feature-card {
        min-height: auto;
    }

    .overview-casino-list-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .overview-intro,
    .overview-location-panel,
    .overview-casino-content,
    .overview-highlight-card,
    .overview-summary-card {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .overview-intro h2 {
        font-size: 34px;
    }

    .overview-location-panel h3,
    .overview-casino-content h3,
    .overview-summary-card h3 {
        font-size: 30px;
    }

    .overview-feature-card {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .overview-feature-card h3 {
        font-size: 26px;
    }

    .overview-summary-card .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Benefits Section
   ========================================================= */

.benefits-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 27, 49, 0.96), rgba(18, 27, 49, 0.90)),
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.26), transparent 32%),
        radial-gradient(circle at 90% 82%, rgba(255, 193, 180, 0.18), transparent 30%);
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.20);
    box-shadow:
        0 0 0 42px rgba(255, 193, 180, 0.045),
        0 0 0 86px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.benefits-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 38px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(255, 193, 180, 0.16), rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 56px;
}

.benefits-header h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.benefits-header-right p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}

.benefits-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.82fr;
    gap: 24px;
    margin-bottom: 28px;
}

.benefits-large-card,
.benefits-vertical-panel {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 38px;
    min-height: 420px;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
}

.benefits-large-card {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.28), transparent 28%),
        #fff8f5;
}

.benefits-large-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.26), transparent 30%),
        linear-gradient(180deg, #263552 0%, #18233b 100%);
}

.benefits-large-card::before,
.benefits-vertical-panel::before {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.38);
    pointer-events: none;
}

.benefits-card-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 42px;
}

.benefits-card-label,
.benefits-panel-title {
    display: inline-flex;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.benefits-card-number {
    color: rgba(18, 27, 49, 0.16);
    font-family: var(--font-family-title);
    font-size: 96px;
    line-height: 0.75;
}

.benefits-large-card h3,
.benefits-vertical-panel h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 36px;
    line-height: 1.12;
    text-transform: none;
}

.benefits-large-card p,
.benefits-vertical-panel p {
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.benefits-large-card-dark .benefits-card-label {
    color: #ffc1b4;
}

.benefits-large-card-dark .benefits-card-number {
    color: rgba(255, 255, 255, 0.14);
}

.benefits-large-card-dark h3 {
    color: #ffffff;
}

.benefits-large-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.benefits-vertical-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background:
        linear-gradient(180deg, rgba(255, 193, 180, 0.95), rgba(255, 225, 218, 0.96));
}

.benefits-vertical-panel .benefits-panel-title {
    margin-bottom: 36px;
    color: #7b4f48;
}

.benefits-vertical-panel .btn-style-one {
    margin-top: auto;
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.benefits-vertical-panel .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

.benefits-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.benefits-feature-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.benefits-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 193, 180, 0.36);
}

.benefits-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-feature-icon i {
    font-size: 32px;
}

.benefits-feature-item h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.14;
    text-transform: none;
}

.benefits-feature-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.72;
}

.benefits-bottom-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.18);
}

.benefits-strip-item {
    padding: 30px 26px;
    border-right: 1px solid rgba(18, 27, 49, 0.09);
}

.benefits-strip-item:last-child {
    border-right: 0;
}

.benefits-strip-item span {
    display: block;
    margin-bottom: 16px;
    color: #b9857b;
    font-family: var(--font-family-title);
    font-size: 42px;
    line-height: 1;
}

.benefits-strip-item p {
    color: #313a52;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1199px) {
    .benefits-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-vertical-panel {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .benefits-bottom-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-strip-item:nth-child(2) {
        border-right: 0;
    }

    .benefits-strip-item:nth-child(1),
    .benefits-strip-item:nth-child(2) {
        border-bottom: 1px solid rgba(18, 27, 49, 0.09);
    }
}

@media (max-width: 991px) {
    .benefits-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 42px;
    }

    .benefits-header h2 {
        font-size: 46px;
    }

    .benefits-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .benefits-main-grid {
        grid-template-columns: 1fr;
    }

    .benefits-large-card,
    .benefits-vertical-panel {
        min-height: auto;
        padding: 30px;
        border-radius: 20px;
    }

    .benefits-card-number {
        font-size: 76px;
    }

    .benefits-large-card h3,
    .benefits-vertical-panel h3 {
        font-size: 30px;
    }

    .benefits-feature-item {
        grid-template-columns: 1fr;
    }

    .benefits-bottom-strip {
        grid-template-columns: 1fr;
    }

    .benefits-strip-item,
    .benefits-strip-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 27, 49, 0.09);
    }

    .benefits-strip-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .benefits-header h2 {
        font-size: 36px;
    }

    .benefits-large-card,
    .benefits-vertical-panel,
    .benefits-feature-item {
        padding: 24px 22px;
    }

    .benefits-card-top {
        margin-bottom: 30px;
    }

    .benefits-card-number {
        font-size: 64px;
    }

    .benefits-feature-item h3 {
        font-size: 25px;
    }

    .benefits-vertical-panel .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Parallax CTA Section
   ========================================================= */

.parallax-cta-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #121b31;
    isolation: isolate;
}

.parallax-cta-bg {
    position: absolute;
    top: -18%;
    left: 0;
    right: 0;
    height: 136%;
    z-index: -3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.04);
}

.parallax-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 78% 24%, rgba(255, 193, 180, 0.30), transparent 30%),
        linear-gradient(90deg, rgba(18, 27, 49, 0.96) 0%, rgba(18, 27, 49, 0.84) 46%, rgba(18, 27, 49, 0.52) 100%);
}

.parallax-cta-section::before {
    content: "";
    position: absolute;
    inset: 24px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.parallax-cta-section::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -48px;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    box-shadow:
        0 0 0 34px rgba(255, 193, 180, 0.055),
        0 0 0 68px rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.parallax-cta-content {
    max-width: 760px;
    padding: 72px 0;
}

.parallax-cta-content h2 {
    max-width: 720px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.08;
    text-transform: none;
}

.parallax-cta-content p {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 17px;
    line-height: 1.75;
}

.parallax-cta-content .btn-style-one {
    min-width: 160px;
    padding: 17px 30px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-weight: 600;
    text-transform: none;
}

.parallax-cta-content .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .parallax-cta-section {
        min-height: 390px;
    }

    .parallax-cta-content {
        padding: 62px 0;
    }

    .parallax-cta-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .parallax-cta-section {
        min-height: 360px;
    }

    .parallax-cta-section::before {
        inset: 14px;
    }

    .parallax-cta-content {
        padding: 54px 0;
    }

    .parallax-cta-content h2 {
        font-size: 32px;
    }

    .parallax-cta-content p {
        font-size: 15px;
    }

    .parallax-cta-content .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Game Options Section
   ========================================================= */

.game-options-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(18, 27, 49, 0.10), transparent 32%),
        linear-gradient(180deg, #fff8f5 0%, #f7eee8 52%, #efe4dc 100%);
}

.game-options-section::before {
    content: "";
    position: absolute;
    top: 110px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 38px rgba(255, 193, 180, 0.08),
        0 0 0 78px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.game-options-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 180px;
    width: 230px;
    height: 230px;
    border-radius: 32px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.game-options-section .container {
    position: relative;
    z-index: 2;
}

.game-options-header {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.game-options-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.game-options-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.game-options-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 26px;
}

.game-options-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 193, 180, 0.32), transparent 28%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.game-options-feature-card::before {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.45);
    pointer-events: none;
}

.game-options-feature-card-dark {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.game-options-feature-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.game-options-feature-top span {
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.game-options-feature-top strong {
    color: rgba(18, 27, 49, 0.15);
    font-family: var(--font-family-title);
    font-size: 96px;
    font-weight: 400;
    line-height: 0.75;
}

.game-options-feature-card h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
}

.game-options-feature-card p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.game-options-feature-card p:last-child {
    margin-bottom: 0;
}

.game-options-feature-card-dark .game-options-feature-top span {
    color: #ffc1b4;
}

.game-options-feature-card-dark .game-options-feature-top strong {
    color: rgba(255, 255, 255, 0.15);
}

.game-options-feature-card-dark h3 {
    color: #ffffff;
}

.game-options-feature-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.game-options-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.game-options-info-card {
    position: relative;
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.game-options-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.game-options-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-options-icon i {
    font-size: 30px;
}

.game-options-info-card h3 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.game-options-info-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.game-options-online-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.20), transparent 32%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.game-options-online-panel::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 34px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.22);
    box-shadow: 0 0 0 28px rgba(255, 193, 180, 0.055);
    pointer-events: none;
}

.game-options-online-intro {
    max-width: 850px;
    margin-bottom: 38px;
}

.game-options-online-intro h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.game-options-online-intro p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.78;
}

.game-options-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.game-options-category-column {
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.game-options-category-column:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 193, 180, 0.36);
}

.game-options-category-column h4 {
    margin-bottom: 22px;
    color: #ffc1b4;
    font-size: 24px;
    line-height: 1.15;
    text-transform: none;
}

.game-options-category-column ul {
    display: grid;
    gap: 13px;
}

.game-options-category-column li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.4;
}

.game-options-category-column li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffc1b4;
}

.game-options-cta {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.game-options-cta h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.game-options-cta p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.game-options-cta .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.game-options-cta .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .game-options-header,
    .game-options-cta {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .game-options-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .game-options-header h2 {
        font-size: 46px;
    }

    .game-options-layout,
    .game-options-info-grid {
        grid-template-columns: 1fr;
    }

    .game-options-feature-card {
        min-height: auto;
    }

    .game-options-online-panel {
        padding: 34px;
    }

    .game-options-online-intro h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .game-options-header h2 {
        font-size: 40px;
    }

    .game-options-category-grid {
        grid-template-columns: 1fr;
    }

    .game-options-feature-card,
    .game-options-online-panel,
    .game-options-cta {
        border-radius: 20px;
    }

    .game-options-feature-top strong {
        font-size: 76px;
    }

    .game-options-feature-card h3 {
        font-size: 31px;
    }
}

@media (max-width: 575px) {
    .game-options-feature-card,
    .game-options-info-card,
    .game-options-online-panel,
    .game-options-cta {
        padding: 26px 22px;
    }

    .game-options-header h2 {
        font-size: 34px;
    }

    .game-options-online-intro h3,
    .game-options-cta h3 {
        font-size: 30px;
    }

    .game-options-feature-top {
        margin-bottom: 30px;
    }

    .game-options-feature-top strong {
        font-size: 62px;
    }

    .game-options-cta .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Slots Section
   ========================================================= */

.slots-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.26), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.slots-section::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -110px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.slots-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: 200px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.slots-section .container {
    position: relative;
    z-index: 2;
}

.slots-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.slots-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.slots-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.slots-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 28px;
}

.slots-main-card {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.34), transparent 30%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.slots-main-card::before {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.45);
    pointer-events: none;
}

.slots-main-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.slots-card-tag {
    display: inline-flex;
    margin-bottom: 34px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.slots-main-card h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 40px;
    line-height: 1.12;
    text-transform: none;
}

.slots-main-card p {
    margin-bottom: 18px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.slots-main-card-dark .slots-card-tag {
    color: #ffc1b4;
}

.slots-main-card-dark h3 {
    color: #ffffff;
}

.slots-main-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.slots-mini-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.slots-mini-list div {
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(18, 27, 49, 0.055);
    border: 1px solid rgba(18, 27, 49, 0.06);
}

.slots-mini-list strong {
    display: block;
    margin-bottom: 6px;
    color: #121b31;
    font-size: 15px;
}

.slots-mini-list span {
    display: block;
    color: #515e7d;
    font-size: 14px;
    line-height: 1.55;
}

.slots-main-card-dark .slots-mini-list div {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.10);
}

.slots-main-card-dark .slots-mini-list strong {
    color: #ffffff;
}

.slots-main-card-dark .slots-mini-list span {
    color: rgba(255, 255, 255, 0.68);
}

.slots-category-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 26px;
    background: #121b31;
    box-shadow: 0 28px 78px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.slots-category-item {
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.slots-category-item:last-child {
    border-right: 0;
}

.slots-category-item span {
    display: block;
    margin-bottom: 22px;
    color: rgba(255, 193, 180, 0.66);
    font-family: var(--font-family-title);
    font-size: 50px;
    line-height: 0.8;
}

.slots-category-item h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.12;
    text-transform: none;
}

.slots-category-item p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.68;
}

.slots-showcase-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.slots-showcase-intro {
    max-width: 850px;
    margin-bottom: 38px;
}

.slots-showcase-intro h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.slots-showcase-intro p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.slots-provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.slots-provider-card {
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.slots-provider-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 22px 54px rgba(18, 27, 49, 0.12);
}

.slots-provider-heading {
    margin-bottom: 22px;
}

.slots-provider-heading span {
    display: block;
    margin-bottom: 8px;
    color: #b9857b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.slots-provider-heading h4 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 26px;
    line-height: 1.14;
    text-transform: none;
}

.slots-provider-card ul {
    display: grid;
    gap: 12px;
}

.slots-provider-card li {
    position: relative;
    padding-left: 18px;
    color: #515e7d;
    font-size: 15px;
    line-height: 1.45;
}

.slots-provider-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffc1b4;
}

.slots-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.slots-type-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.slots-type-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.slots-type-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots-type-icon i {
    font-size: 30px;
}

.slots-type-card h3 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 27px;
    line-height: 1.16;
    text-transform: none;
}

.slots-type-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.slots-cta-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.slots-cta-panel h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.slots-cta-panel p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.slots-cta-panel .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.slots-cta-panel .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .slots-header,
    .slots-cta-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .slots-provider-grid,
    .slots-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-category-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-category-item:nth-child(2) {
        border-right: 0;
    }

    .slots-category-item:nth-child(1),
    .slots-category-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
}

@media (max-width: 991px) {
    .slots-header h2 {
        font-size: 46px;
    }

    .slots-hero-grid {
        grid-template-columns: 1fr;
    }

    .slots-main-card {
        min-height: auto;
    }

    .slots-showcase-panel {
        padding: 34px;
    }

    .slots-showcase-intro h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .slots-header h2 {
        font-size: 40px;
    }

    .slots-provider-grid,
    .slots-type-grid,
    .slots-category-strip {
        grid-template-columns: 1fr;
    }

    .slots-category-item,
    .slots-category-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .slots-category-item:last-child {
        border-bottom: 0;
    }

    .slots-main-card,
    .slots-showcase-panel,
    .slots-cta-panel {
        border-radius: 20px;
    }

    .slots-main-card h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .slots-main-card,
    .slots-showcase-panel,
    .slots-type-card,
    .slots-cta-panel {
        padding: 26px 22px;
    }

    .slots-header h2 {
        font-size: 34px;
    }

    .slots-showcase-intro h3,
    .slots-cta-panel h3 {
        font-size: 30px;
    }

    .slots-cta-panel .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Table Games Section
   ========================================================= */

.table-games-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 90% 88%, rgba(18, 27, 49, 0.10), transparent 32%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.table-games-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.table-games-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 210px;
    width: 240px;
    height: 240px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.table-games-section .container {
    position: relative;
    z-index: 2;
}

.table-games-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.table-games-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.table-games-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.table-games-main-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 28px;
}

.table-games-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.34), transparent 30%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.table-games-feature-card::before {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.45);
    pointer-events: none;
}

.table-games-feature-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.table-games-card-tag {
    display: inline-flex;
    margin-bottom: 34px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.table-games-feature-card h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 40px;
    line-height: 1.12;
    text-transform: none;
}

.table-games-feature-card p {
    margin-bottom: 24px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.table-games-feature-card-dark .table-games-card-tag {
    color: #ffc1b4;
}

.table-games-feature-card-dark h3 {
    color: #ffffff;
}

.table-games-feature-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.table-games-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.table-games-list-grid div {
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(18, 27, 49, 0.055);
    border: 1px solid rgba(18, 27, 49, 0.06);
}

.table-games-list-grid strong {
    display: block;
    margin-bottom: 7px;
    color: #121b31;
    font-size: 15px;
}

.table-games-list-grid span {
    display: block;
    color: #515e7d;
    font-size: 14px;
    line-height: 1.55;
}

.table-games-feature-card-dark .table-games-list-grid div {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.10);
}

.table-games-feature-card-dark .table-games-list-grid strong {
    color: #ffffff;
}

.table-games-feature-card-dark .table-games-list-grid span {
    color: rgba(255, 255, 255, 0.68);
}

.table-games-comparison-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.table-games-comparison-intro {
    max-width: 850px;
    margin-bottom: 38px;
}

.table-games-comparison-intro h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.table-games-comparison-intro p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.78;
}

.table-games-comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.table-games-comparison-card {
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.table-games-comparison-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 193, 180, 0.36);
}

.table-games-comparison-number {
    margin-bottom: 24px;
    color: rgba(255, 193, 180, 0.66);
    font-family: var(--font-family-title);
    font-size: 52px;
    line-height: 0.8;
}

.table-games-comparison-card h4 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.14;
    text-transform: none;
}

.table-games-comparison-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.66;
}

.table-games-category-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.table-games-category-heading {
    max-width: 850px;
    margin-bottom: 38px;
}

.table-games-category-heading h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.table-games-category-heading p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.table-games-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.table-games-category-card {
    padding: 30px 28px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.table-games-category-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 22px 54px rgba(18, 27, 49, 0.12);
}

.table-games-category-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-games-category-icon i {
    font-size: 30px;
}

.table-games-category-card h4 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 27px;
    line-height: 1.16;
    text-transform: none;
}

.table-games-category-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.table-games-providers-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.table-games-providers-intro {
    max-width: 850px;
    margin-bottom: 38px;
}

.table-games-providers-intro h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.table-games-providers-intro p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.78;
}

.table-games-provider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.table-games-provider-card {
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.table-games-provider-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 193, 180, 0.36);
}

.table-games-provider-card h4 {
    margin-bottom: 22px;
    color: #ffc1b4;
    font-size: 25px;
    line-height: 1.14;
    text-transform: none;
}

.table-games-provider-card ul {
    display: grid;
    gap: 12px;
}

.table-games-provider-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.45;
}

.table-games-provider-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffc1b4;
}

.table-games-cta-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.table-games-cta-panel h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.table-games-cta-panel p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.table-games-cta-panel .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.table-games-cta-panel .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .table-games-header,
    .table-games-cta-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .table-games-comparison-grid,
    .table-games-provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-games-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .table-games-header h2 {
        font-size: 46px;
    }

    .table-games-main-layout {
        grid-template-columns: 1fr;
    }

    .table-games-feature-card {
        min-height: auto;
    }

    .table-games-comparison-panel,
    .table-games-category-panel,
    .table-games-providers-panel {
        padding: 34px;
    }

    .table-games-comparison-intro h3,
    .table-games-category-heading h3,
    .table-games-providers-intro h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .table-games-header h2 {
        font-size: 40px;
    }

    .table-games-list-grid,
    .table-games-comparison-grid,
    .table-games-category-grid,
    .table-games-provider-grid {
        grid-template-columns: 1fr;
    }

    .table-games-feature-card,
    .table-games-comparison-panel,
    .table-games-category-panel,
    .table-games-providers-panel,
    .table-games-cta-panel {
        border-radius: 20px;
    }

    .table-games-feature-card h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .table-games-feature-card,
    .table-games-comparison-panel,
    .table-games-category-panel,
    .table-games-providers-panel,
    .table-games-cta-panel {
        padding: 26px 22px;
    }

    .table-games-header h2 {
        font-size: 34px;
    }

    .table-games-comparison-intro h3,
    .table-games-category-heading h3,
    .table-games-providers-intro h3,
    .table-games-cta-panel h3 {
        font-size: 30px;
    }

    .table-games-cta-panel .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Software Providers Section
   ========================================================= */

.software-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.software-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.software-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 260px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.software-section .container {
    position: relative;
    z-index: 2;
}

.software-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.software-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.software-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.software-intro-layout {
    display: grid;
    grid-template-columns: 1fr 0.48fr;
    gap: 26px;
    margin-bottom: 28px;
}

.software-main-card,
.software-side-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.software-main-card {
    padding: 44px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.34), transparent 30%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 27, 49, 0.08);
}

.software-side-card {
    padding: 42px;
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.software-card-label {
    display: inline-flex;
    margin-bottom: 28px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.software-main-card h3,
.software-side-card h3 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.12;
    text-transform: none;
}

.software-main-card h3 {
    color: #121b31;
}

.software-side-card h3 {
    color: #ffffff;
}

.software-main-card p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.software-main-card p:last-child {
    margin-bottom: 0;
}

.software-side-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.software-side-number {
    display: block;
    margin-bottom: 48px;
    color: rgba(255, 193, 180, 0.52);
    font-family: var(--font-family-title);
    font-size: 96px;
    line-height: 0.75;
}

.software-provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.software-provider-card {
    position: relative;
    min-height: 330px;
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.software-provider-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.software-provider-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-provider-icon i {
    font-size: 30px;
}

.software-provider-card h3 {
    margin-bottom: 16px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.software-provider-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.software-benefits-panel {
    display: grid;
    grid-template-columns: 0.74fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 54px;
}

.software-benefits-content {
    padding: 46px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.software-benefits-content h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.software-benefits-content p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.software-benefits-list {
    padding: 26px;
    background: #121b31;
}

.software-benefits-list div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.software-benefits-list div:last-child {
    border-bottom: 0;
}

.software-benefits-list span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.software-benefits-list p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

/* Logo marquee */
.software-logo-band {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background:
        linear-gradient(90deg, #121b31 0%, #202b45 50%, #121b31 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-logo-band::before,
.software-logo-band::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.software-logo-band::before {
    left: 0;
    background: linear-gradient(90deg, #121b31 0%, rgba(18, 27, 49, 0) 100%);
}

.software-logo-band::after {
    right: 0;
    background: linear-gradient(270deg, #121b31 0%, rgba(18, 27, 49, 0) 100%);
}

.software-logo-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: softwareLogoMarquee 42s linear infinite;
}

.software-logo-band:hover .software-logo-track {
    animation-play-state: paused;
}

.software-logo-item {
    width: 170px;
    height: 86px;
    flex: 0 0 auto;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-logo-item img {
    max-width: 100%;
    max-height: 52px;
    display: block;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: opacity 220ms ease, transform 220ms ease;
}

.software-logo-item:hover img {
    opacity: 1;
    transform: scale(1.04);
}

@keyframes softwareLogoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .software-header,
    .software-intro-layout,
    .software-benefits-panel {
        grid-template-columns: 1fr;
    }

    .software-provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .software-header {
        gap: 24px;
        margin-bottom: 42px;
    }

    .software-header h2 {
        font-size: 46px;
    }

    .software-main-card,
    .software-side-card,
    .software-benefits-content {
        padding: 34px;
    }

    .software-benefits-content h3 {
        font-size: 36px;
    }

    .software-logo-item {
        width: 150px;
        height: 78px;
    }
}

@media (max-width: 767px) {
    .software-provider-grid {
        grid-template-columns: 1fr;
    }

    .software-main-card,
    .software-side-card,
    .software-benefits-panel {
        border-radius: 20px;
    }

    .software-main-card h3,
    .software-side-card h3 {
        font-size: 32px;
    }

    .software-side-number {
        font-size: 76px;
    }

    .software-logo-track {
        gap: 14px;
        animation-duration: 34s;
    }

    .software-logo-item {
        width: 136px;
        height: 72px;
        padding: 15px 18px;
        border-radius: 14px;
    }

    .software-logo-item img {
        max-height: 44px;
    }
}

@media (max-width: 575px) {
    .software-header h2 {
        font-size: 34px;
    }

    .software-main-card,
    .software-side-card,
    .software-provider-card,
    .software-benefits-content {
        padding: 26px 22px;
    }

    .software-benefits-list {
        padding: 20px;
    }

    .software-benefits-list div {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .software-logo-band::before,
    .software-logo-band::after {
        width: 54px;
    }
}

/* =========================================================
   Account Access Section
   ========================================================= */

.account-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.account-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.account-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 220px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.account-section .container {
    position: relative;
    z-index: 2;
}

.account-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.account-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.account-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.account-layout {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 26px;
    margin-bottom: 28px;
}

.account-main-card,
.account-side-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.account-main-card {
    padding: 44px;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 193, 180, 0.32), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
}

.account-side-panel {
    padding: 42px;
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.account-card-label {
    display: inline-flex;
    margin-bottom: 28px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.account-main-card h3,
.account-side-panel h3 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.12;
    text-transform: none;
}

.account-main-card h3 {
    color: #121b31;
}

.account-side-panel h3 {
    color: #ffffff;
}

.account-main-card > p {
    margin-bottom: 30px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.account-side-panel p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.account-side-number {
    display: block;
    margin-bottom: 48px;
    color: rgba(255, 193, 180, 0.52);
    font-family: var(--font-family-title);
    font-size: 96px;
    line-height: 0.75;
}

.account-side-panel .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-weight: 600;
    text-transform: none;
}

.account-side-panel .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

.account-step-list {
    display: grid;
    gap: 16px;
}

.account-step-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.07);
}

.account-step-item span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.account-step-item h4 {
    margin-bottom: 8px;
    color: #121b31;
    font-size: 22px;
    line-height: 1.15;
    text-transform: none;
}

.account-step-item p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.65;
}

.account-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.account-info-card {
    position: relative;
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.account-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.account-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon i {
    font-size: 30px;
}

.account-info-card h3 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.account-info-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.account-recovery-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.account-recovery-content {
    padding: 46px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.account-recovery-content h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.account-recovery-content p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.account-recovery-steps {
    padding: 26px;
    background: #121b31;
}

.account-recovery-step {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.account-recovery-step:last-child {
    border-bottom: 0;
}

.account-recovery-step span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.account-recovery-step h4 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.15;
    text-transform: none;
}

.account-recovery-step p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

.account-warning-box {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.account-warning-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-warning-icon i {
    font-size: 34px;
}

.account-warning-box h3 {
    margin-bottom: 10px;
    color: #121b31;
    font-size: 30px;
    line-height: 1.16;
    text-transform: none;
}

.account-warning-box p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.72;
}

.account-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: #121b31;
    box-shadow: 0 28px 78px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.account-support-card {
    padding: 30px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.account-support-card:last-child {
    border-right: 0;
}

.account-support-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.14;
    text-transform: none;
}

.account-support-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.68;
}

.account-cta-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.account-cta-panel h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.account-cta-panel p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.account-cta-panel .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.account-cta-panel .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .account-header,
    .account-layout,
    .account-recovery-panel,
    .account-cta-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .account-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-support-card:nth-child(2) {
        border-right: 0;
    }

    .account-support-card:nth-child(1),
    .account-support-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
}

@media (max-width: 991px) {
    .account-header h2 {
        font-size: 46px;
    }

    .account-main-card,
    .account-side-panel,
    .account-recovery-content {
        padding: 34px;
    }

    .account-recovery-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .account-info-grid,
    .account-support-grid {
        grid-template-columns: 1fr;
    }

    .account-support-card,
    .account-support-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .account-support-card:last-child {
        border-bottom: 0;
    }

    .account-header h2 {
        font-size: 40px;
    }

    .account-main-card,
    .account-side-panel,
    .account-recovery-panel,
    .account-warning-box,
    .account-support-grid,
    .account-cta-panel {
        border-radius: 20px;
    }

    .account-step-item,
    .account-warning-box {
        grid-template-columns: 1fr;
    }

    .account-main-card h3,
    .account-side-panel h3 {
        font-size: 32px;
    }

    .account-side-number {
        font-size: 76px;
    }
}

@media (max-width: 575px) {
    .account-header h2 {
        font-size: 34px;
    }

    .account-main-card,
    .account-side-panel,
    .account-info-card,
    .account-recovery-content,
    .account-warning-box,
    .account-cta-panel {
        padding: 26px 22px;
    }

    .account-recovery-steps {
        padding: 20px;
    }

    .account-recovery-content h3,
    .account-cta-panel h3 {
        font-size: 30px;
    }

    .account-cta-panel .btn-style-one,
    .account-side-panel .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Mobile App Section
   ========================================================= */

.mobile-app-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.mobile-app-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.mobile-app-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 220px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.mobile-app-section .container {
    position: relative;
    z-index: 2;
}

.mobile-app-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.mobile-app-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.mobile-app-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.mobile-app-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.mobile-app-visual-column,
.mobile-app-content-column {
    display: grid;
    gap: 28px;
}

.mobile-app-image-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 42px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 193, 180, 0.28), transparent 35%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app-image-glow {
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.20);
    box-shadow:
        0 0 0 46px rgba(255, 193, 180, 0.07),
        0 0 0 92px rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.mobile-app-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.28));
}

.mobile-app-note-card,
.mobile-app-main-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.32), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.mobile-app-card-label {
    display: inline-flex;
    margin-bottom: 26px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mobile-app-note-card h3,
.mobile-app-main-card h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
}

.mobile-app-note-card p,
.mobile-app-main-card p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.mobile-app-main-card p:last-child {
    margin-bottom: 0;
}

.mobile-app-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mobile-app-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    height: 52px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #121b31;
    border: 1px solid rgba(18, 27, 49, 0.12);
    transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.mobile-app-store-link:hover {
    transform: translateY(-3px);
    background: #263552;
    box-shadow: 0 18px 40px rgba(18, 27, 49, 0.18);
}

.mobile-app-store-link img {
    max-width: 100%;
    max-height: 36px;
    display: block;
    object-fit: contain;
}

.mobile-app-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mobile-app-feature-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.mobile-app-feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.mobile-app-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app-icon i {
    font-size: 30px;
}

.mobile-app-feature-item h4 {
    margin-bottom: 10px;
    color: #121b31;
    font-size: 23px;
    line-height: 1.15;
    text-transform: none;
}

.mobile-app-feature-item p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.65;
}

.mobile-app-install-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
}

.mobile-app-install-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.mobile-app-install-heading h3 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
}

.mobile-app-install-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mobile-app-install-card {
    padding: 28px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-app-install-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #ffc1b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mobile-app-install-card h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.14;
    text-transform: none;
}

.mobile-app-install-card ol {
    margin: 0;
    padding-left: 18px;
}

.mobile-app-install-card li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.6;
}

.mobile-app-install-card li:last-child {
    margin-bottom: 0;
}

.mobile-app-bottom-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.mobile-app-bottom-panel h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.mobile-app-bottom-panel p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.mobile-app-bottom-panel .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.mobile-app-bottom-panel .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .mobile-app-header,
    .mobile-app-layout,
    .mobile-app-bottom-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mobile-app-image-card {
        min-height: 480px;
    }
}

@media (max-width: 991px) {
    .mobile-app-header h2 {
        font-size: 46px;
    }

    .mobile-app-note-card,
    .mobile-app-main-card,
    .mobile-app-install-panel {
        padding: 34px;
    }

    .mobile-app-feature-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-install-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-app-header h2 {
        font-size: 40px;
    }

    .mobile-app-image-card,
    .mobile-app-note-card,
    .mobile-app-main-card,
    .mobile-app-install-panel,
    .mobile-app-bottom-panel {
        border-radius: 20px;
    }

    .mobile-app-image-card {
        min-height: 420px;
        padding: 28px;
    }

    .mobile-app-note-card h3,
    .mobile-app-main-card h3,
    .mobile-app-install-heading h3 {
        font-size: 31px;
    }

    .mobile-app-feature-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .mobile-app-header h2 {
        font-size: 34px;
    }

    .mobile-app-image-card,
    .mobile-app-note-card,
    .mobile-app-main-card,
    .mobile-app-install-panel,
    .mobile-app-feature-item,
    .mobile-app-bottom-panel {
        padding: 26px 22px;
    }

    .mobile-app-image-card {
        min-height: 360px;
    }

    .mobile-app-store-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mobile-app-store-link {
        width: 100%;
    }

    .mobile-app-bottom-panel .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Mobile App Section — Balanced Layout Fix
   ========================================================= */

.mobile-app-layout-balanced {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
}

.mobile-app-layout-balanced .mobile-app-visual-column,
.mobile-app-layout-balanced .mobile-app-content-column {
    display: grid;
    gap: 28px;
    align-content: start;
}

.mobile-app-layout-balanced .mobile-app-image-card {
    min-height: 520px;
}

.mobile-app-layout-balanced .mobile-app-note-card {
    padding: 34px;
}

.mobile-app-compact-card h3 {
    font-size: 32px;
}

.mobile-app-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mobile-app-mini-card {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.mobile-app-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.mobile-app-mini-card h4 {
    margin: 18px 0 10px;
    color: #121b31;
    font-size: 23px;
    line-height: 1.15;
    text-transform: none;
}

.mobile-app-mini-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.65;
}

.mobile-app-install-panel-wide {
    grid-column: 1 / -1;
}

.mobile-app-install-panel-wide .mobile-app-install-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Make feature cards visually tighter */
.mobile-app-layout-balanced .mobile-app-feature-item {
    min-height: 190px;
}

.mobile-app-layout-balanced .mobile-app-feature-item p {
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1199px) {
    .mobile-app-layout-balanced {
        grid-template-columns: 1fr;
    }

    .mobile-app-layout-balanced .mobile-app-image-card {
        min-height: 480px;
    }

    .mobile-app-install-panel-wide {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .mobile-app-mini-grid,
    .mobile-app-install-panel-wide .mobile-app-install-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-layout-balanced .mobile-app-image-card {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .mobile-app-layout-balanced .mobile-app-image-card {
        min-height: 360px;
    }

    .mobile-app-layout-balanced .mobile-app-note-card,
    .mobile-app-mini-card {
        padding: 26px 22px;
    }

    .mobile-app-compact-card h3 {
        font-size: 30px;
    }
}

/* =========================================================
   Banking / Payments Section
   ========================================================= */

.banking-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.banking-section::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.banking-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: 220px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.banking-section .container {
    position: relative;
    z-index: 2;
}

.banking-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.banking-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.banking-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.banking-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 36px;
}

.banking-intro-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.34), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.banking-intro-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.banking-card-label {
    display: inline-flex;
    margin-bottom: 26px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.banking-intro-card h3 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
    color: #121b31;
}

.banking-intro-card p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.76;
}

.banking-intro-card p:last-child {
    margin-bottom: 0;
}

.banking-intro-card-dark .banking-card-label {
    color: #ffc1b4;
}

.banking-intro-card-dark h3 {
    color: #ffffff;
}

.banking-intro-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

/* Table area */
.banking-table-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.banking-table-panel {
    width: 100%;
    max-width: 980px;
    padding: 28px 20px 20px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 193, 180, 0.12), transparent 26%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.banking-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.banking-tab-btn {
    min-width: 170px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 193, 180, 0.45);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 220ms ease;
}

.banking-tab-btn:hover {
    background: rgba(255, 193, 180, 0.12);
    color: #ffffff;
}

.banking-tab-btn.active {
    background: #ffc1b4;
    border-color: #ffc1b4;
    color: #111827;
    box-shadow: 0 10px 30px rgba(255, 193, 180, 0.28);
}

.banking-table-pane {
    display: none;
}

.banking-table-pane.active {
    display: block;
}

.banking-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.banking-table-row:last-child {
    margin-bottom: 0;
}

.banking-method {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.banking-method-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.banking-range {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

.banking-icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.banking-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.banking-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.banking-note {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.banking-note p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.banking-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.banking-benefit-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.banking-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.banking-benefit-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banking-benefit-icon i {
    font-size: 30px;
}

.banking-benefit-card h3 {
    margin-bottom: 12px;
    color: #121b31;
    font-size: 28px;
    line-height: 1.14;
    text-transform: none;
}

.banking-benefit-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.banking-extra-panel {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
}

.banking-extra-left {
    padding: 44px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.banking-extra-left h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 42px;
    line-height: 1.12;
    text-transform: none;
}

.banking-extra-left p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.banking-extra-list {
    padding: 26px;
    background: #121b31;
}

.banking-extra-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.banking-extra-item:last-child {
    border-bottom: 0;
}

.banking-extra-item span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.banking-extra-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1199px) {
    .banking-header,
    .banking-intro-grid,
    .banking-extra-panel,
    .banking-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banking-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .banking-extra-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .banking-header h2 {
        font-size: 46px;
    }

    .banking-intro-grid,
    .banking-benefits-grid {
        grid-template-columns: 1fr;
    }

    .banking-intro-card,
    .banking-extra-left {
        padding: 34px;
    }

    .banking-extra-left h3 {
        font-size: 36px;
    }

    .banking-table-panel {
        padding: 24px 16px 16px;
    }
}

@media (max-width: 767px) {
    .banking-header h2 {
        font-size: 40px;
    }

    .banking-table-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .banking-range {
        white-space: normal;
    }

    .banking-tab-btn {
        width: 100%;
        min-width: 0;
    }

    .banking-table-panel {
        border-radius: 22px;
    }

    .banking-intro-card,
    .banking-extra-panel {
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .banking-header h2 {
        font-size: 34px;
    }

    .banking-intro-card,
    .banking-benefit-card,
    .banking-extra-left {
        padding: 26px 22px;
    }

    .banking-extra-list {
        padding: 20px;
    }

    .banking-method-name,
    .banking-range {
        font-size: 15px;
    }

    .banking-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }
}

/* =========================================================
   Visitor Guide Section
   ========================================================= */

.visitor-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.visitor-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.visitor-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 260px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.visitor-section .container {
    position: relative;
    z-index: 2;
}

.visitor-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.visitor-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.visitor-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.visitor-hero-panel {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 26px;
    margin-bottom: 28px;
}

.visitor-hero-content,
.visitor-quick-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.visitor-hero-content {
    padding: 46px;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 193, 180, 0.32), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
}

.visitor-quick-card {
    padding: 42px;
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.visitor-label,
.visitor-card-label {
    display: inline-flex;
    margin-bottom: 26px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.visitor-hero-content h3,
.visitor-quick-card h3 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-hero-content h3 {
    color: #121b31;
}

.visitor-hero-content p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.visitor-hero-content p:last-child {
    margin-bottom: 0;
}

.visitor-number {
    display: block;
    margin-bottom: 52px;
    color: rgba(255, 193, 180, 0.52);
    font-family: var(--font-family-title);
    font-size: 96px;
    line-height: 0.75;
}

.visitor-quick-card h3 {
    color: #ffffff;
}

.visitor-quick-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.visitor-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 26px;
    background: #121b31;
    box-shadow: 0 28px 78px rgba(18, 27, 49, 0.22);
    margin-bottom: 28px;
}

.visitor-stat-card {
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.visitor-stat-card:last-child {
    border-right: 0;
}

.visitor-stat-card span {
    display: block;
    margin-bottom: 22px;
    color: rgba(255, 193, 180, 0.66);
    font-family: var(--font-family-title);
    font-size: 54px;
    line-height: 0.8;
}

.visitor-stat-card h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-stat-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.68;
}

.visitor-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 28px;
}

.visitor-large-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.34), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.visitor-large-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.visitor-card-icon,
.visitor-detail-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-card-icon i,
.visitor-detail-icon i {
    font-size: 30px;
}

.visitor-large-card h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-large-card p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.76;
}

.visitor-large-card p:last-child {
    margin-bottom: 0;
}

.visitor-large-card-dark .visitor-card-label {
    color: #ffc1b4;
}

.visitor-large-card-dark .visitor-card-icon {
    background: rgba(255, 193, 180, 0.14);
}

.visitor-large-card-dark h3 {
    color: #ffffff;
}

.visitor-large-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.visitor-details-panel,
.visitor-planning-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.visitor-details-intro,
.visitor-planning-heading {
    max-width: 900px;
    margin-bottom: 38px;
}

.visitor-details-intro h3,
.visitor-planning-heading h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-details-intro p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.visitor-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.visitor-detail-card {
    padding: 30px 26px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.visitor-detail-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 22px 54px rgba(18, 27, 49, 0.12);
}

.visitor-detail-card h4 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 25px;
    line-height: 1.16;
    text-transform: none;
}

.visitor-detail-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.visitor-rules-panel,
.visitor-experience-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.visitor-rules-content,
.visitor-experience-left {
    padding: 46px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.visitor-rules-content h3,
.visitor-experience-left h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-rules-content p,
.visitor-experience-left p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.visitor-rules-list,
.visitor-experience-list {
    padding: 26px;
    background: #121b31;
}

.visitor-rule-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.visitor-rule-item:last-child {
    border-bottom: 0;
}

.visitor-rule-item > span,
.visitor-experience-list span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.visitor-rule-item h4 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.15;
    text-transform: none;
}

.visitor-rule-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

.visitor-limits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.visitor-limit-card {
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.visitor-limit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.visitor-limit-card h3 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.visitor-limit-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.75;
}

.visitor-experience-list div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.visitor-experience-list div:last-child {
    border-bottom: 0;
}

.visitor-experience-list p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.visitor-checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.visitor-check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
}

.visitor-check-item i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.visitor-check-item p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.6;
}

.visitor-final-cta {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.visitor-final-cta h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.visitor-final-cta p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.visitor-final-cta .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.visitor-final-cta .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .visitor-header,
    .visitor-hero-panel,
    .visitor-rules-panel,
    .visitor-experience-panel,
    .visitor-final-cta {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .visitor-details-grid,
    .visitor-checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitor-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitor-stat-card:nth-child(2) {
        border-right: 0;
    }

    .visitor-stat-card:nth-child(1),
    .visitor-stat-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
}

@media (max-width: 991px) {
    .visitor-header h2 {
        font-size: 46px;
    }

    .visitor-main-grid,
    .visitor-limits-grid {
        grid-template-columns: 1fr;
    }

    .visitor-hero-content,
    .visitor-quick-card,
    .visitor-large-card,
    .visitor-details-panel,
    .visitor-rules-content,
    .visitor-experience-left,
    .visitor-planning-panel {
        padding: 34px;
    }

    .visitor-details-intro h3,
    .visitor-rules-content h3,
    .visitor-experience-left h3,
    .visitor-planning-heading h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .visitor-header h2 {
        font-size: 40px;
    }

    .visitor-details-grid,
    .visitor-checklist-grid,
    .visitor-stats-grid {
        grid-template-columns: 1fr;
    }

    .visitor-stat-card,
    .visitor-stat-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .visitor-stat-card:last-child {
        border-bottom: 0;
    }

    .visitor-rule-item,
    .visitor-experience-list div {
        grid-template-columns: 1fr;
    }

    .visitor-hero-content h3,
    .visitor-quick-card h3,
    .visitor-large-card h3 {
        font-size: 32px;
    }

    .visitor-hero-panel,
    .visitor-details-panel,
    .visitor-rules-panel,
    .visitor-experience-panel,
    .visitor-planning-panel,
    .visitor-final-cta {
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .visitor-header h2 {
        font-size: 34px;
    }

    .visitor-hero-content,
    .visitor-quick-card,
    .visitor-large-card,
    .visitor-details-panel,
    .visitor-rules-content,
    .visitor-experience-left,
    .visitor-planning-panel,
    .visitor-final-cta {
        padding: 26px 22px;
    }

    .visitor-rules-list,
    .visitor-experience-list {
        padding: 20px;
    }

    .visitor-details-intro h3,
    .visitor-rules-content h3,
    .visitor-experience-left h3,
    .visitor-planning-heading h3,
    .visitor-final-cta h3 {
        font-size: 30px;
    }

    .visitor-final-cta .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Casino Integrity & Player Care Section
   ========================================================= */

.integrity-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.integrity-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.integrity-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 260px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.integrity-section .container {
    position: relative;
    z-index: 2;
}

.integrity-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.integrity-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.integrity-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.integrity-hero-panel {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 26px;
    margin-bottom: 28px;
}

.integrity-hero-content,
.integrity-status-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(18, 27, 49, 0.11);
}

.integrity-hero-content {
    padding: 46px;
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 193, 180, 0.32), transparent 30%),
        rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 27, 49, 0.08);
}

.integrity-status-card {
    padding: 42px;
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 193, 180, 0.24), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.integrity-label,
.integrity-card-label {
    display: inline-flex;
    margin-bottom: 26px;
    color: #b9857b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.integrity-hero-content h3,
.integrity-status-card h3 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.12;
    text-transform: none;
}

.integrity-hero-content h3 {
    color: #121b31;
}

.integrity-hero-content p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.78;
}

.integrity-hero-content p:last-child {
    margin-bottom: 0;
}

.integrity-status-number {
    display: block;
    margin-bottom: 52px;
    color: rgba(255, 193, 180, 0.52);
    font-family: var(--font-family-title);
    font-size: 96px;
    line-height: 0.75;
}

.integrity-status-card h3 {
    color: #ffffff;
}

.integrity-status-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.integrity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.integrity-card {
    position: relative;
    min-height: 420px;
    padding: 34px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.integrity-card-dark {
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 193, 180, 0.22), transparent 30%),
        linear-gradient(180deg, #263552 0%, #121b31 100%);
    border-color: rgba(255, 255, 255, 0.10);
}

.integrity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.integrity-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integrity-icon i {
    font-size: 30px;
}

.integrity-card h3 {
    margin-bottom: 16px;
    color: #121b31;
    font-size: 29px;
    line-height: 1.16;
    text-transform: none;
}

.integrity-card p {
    margin-bottom: 14px;
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.integrity-card p:last-child {
    margin-bottom: 0;
}

.integrity-card-dark .integrity-card-label {
    color: #ffc1b4;
}

.integrity-card-dark .integrity-icon {
    background: rgba(255, 193, 180, 0.14);
}

.integrity-card-dark h3 {
    color: #ffffff;
}

.integrity-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.integrity-regulation-panel,
.integrity-support-panel {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.integrity-regulation-content,
.integrity-support-left {
    padding: 46px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 193, 180, 0.24), transparent 32%),
        #ffffff;
}

.integrity-regulation-content h3,
.integrity-support-left h3 {
    margin-bottom: 20px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.integrity-regulation-content p,
.integrity-support-left p {
    margin-bottom: 16px;
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.integrity-regulation-list,
.integrity-support-list {
    padding: 26px;
    background: #121b31;
}

.integrity-regulation-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.integrity-regulation-item:last-child {
    border-bottom: 0;
}

.integrity-regulation-item > span,
.integrity-support-item span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.integrity-regulation-item h4 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.15;
    text-transform: none;
}

.integrity-regulation-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

.integrity-care-panel,
.integrity-complaints-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.22), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 28px 76px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.integrity-care-heading,
.integrity-complaints-heading {
    max-width: 900px;
    margin-bottom: 38px;
}

.integrity-care-heading h3,
.integrity-complaints-heading h3 {
    margin-bottom: 18px;
    color: #121b31;
    font-size: 44px;
    line-height: 1.12;
    text-transform: none;
}

.integrity-care-heading p,
.integrity-complaints-heading p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.78;
}

.integrity-care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.integrity-care-card {
    padding: 30px 26px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.integrity-care-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 22px 54px rgba(18, 27, 49, 0.12);
}

.integrity-care-card h4 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 25px;
    line-height: 1.16;
    text-transform: none;
}

.integrity-care-card p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.integrity-support-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.integrity-support-item:last-child {
    border-bottom: 0;
}

.integrity-support-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.integrity-complaints-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.integrity-complaint-step {
    padding: 30px 26px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.045);
    border: 1px solid rgba(18, 27, 49, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.integrity-complaint-step:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 22px 54px rgba(18, 27, 49, 0.12);
}

.integrity-complaint-step span {
    display: flex;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #121b31;
    color: #ffc1b4;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.integrity-complaint-step h4 {
    margin-bottom: 14px;
    color: #121b31;
    font-size: 24px;
    line-height: 1.16;
    text-transform: none;
}

.integrity-complaint-step p {
    color: #515e7d;
    font-size: 15px;
    line-height: 1.72;
}

.integrity-warning-panel {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
    margin-bottom: 28px;
}

.integrity-warning-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integrity-warning-icon i {
    font-size: 34px;
}

.integrity-warning-panel h3 {
    margin-bottom: 10px;
    color: #121b31;
    font-size: 30px;
    line-height: 1.16;
    text-transform: none;
}

.integrity-warning-panel p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.72;
}

.integrity-final-cta {
    display: grid;
    grid-template-columns: 0.72fr 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.integrity-final-cta h3 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 34px;
    line-height: 1.12;
    text-transform: none;
}

.integrity-final-cta p {
    color: #313a52;
    font-size: 16px;
    line-height: 1.7;
}

.integrity-final-cta .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 7px;
    background-image: none !important;
    background-color: #121b31 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: none;
}

.integrity-final-cta .btn-style-one:hover {
    background-color: #263552 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .integrity-header,
    .integrity-hero-panel,
    .integrity-regulation-panel,
    .integrity-support-panel,
    .integrity-final-cta {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .integrity-grid,
    .integrity-complaints-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrity-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .integrity-header h2 {
        font-size: 46px;
    }

    .integrity-hero-content,
    .integrity-status-card,
    .integrity-care-panel,
    .integrity-complaints-panel,
    .integrity-regulation-content,
    .integrity-support-left {
        padding: 34px;
    }

    .integrity-regulation-content h3,
    .integrity-care-heading h3,
    .integrity-support-left h3,
    .integrity-complaints-heading h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .integrity-header h2 {
        font-size: 40px;
    }

    .integrity-grid,
    .integrity-care-grid,
    .integrity-complaints-steps {
        grid-template-columns: 1fr;
    }

    .integrity-regulation-item,
    .integrity-support-item,
    .integrity-warning-panel {
        grid-template-columns: 1fr;
    }

    .integrity-hero-content h3,
    .integrity-status-card h3 {
        font-size: 32px;
    }

    .integrity-hero-panel,
    .integrity-care-panel,
    .integrity-support-panel,
    .integrity-complaints-panel,
    .integrity-warning-panel,
    .integrity-final-cta {
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .integrity-header h2 {
        font-size: 34px;
    }

    .integrity-hero-content,
    .integrity-status-card,
    .integrity-card,
    .integrity-care-panel,
    .integrity-complaints-panel,
    .integrity-regulation-content,
    .integrity-support-left,
    .integrity-warning-panel,
    .integrity-final-cta {
        padding: 26px 22px;
    }

    .integrity-regulation-list,
    .integrity-support-list {
        padding: 20px;
    }

    .integrity-regulation-content h3,
    .integrity-care-heading h3,
    .integrity-support-left h3,
    .integrity-complaints-heading h3,
    .integrity-final-cta h3 {
        font-size: 30px;
    }

    .integrity-final-cta .btn-style-one {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   Reviews Section
   ========================================================= */

.reviews-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.reviews-section::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.reviews-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: 180px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.reviews-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.reviews-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

.reviews-image-column {
    display: grid;
    gap: 24px;
}

.reviews-image-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 30px;
    background: #121b31;
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
}

.reviews-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    opacity: 0.88;
}

.reviews-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 193, 180, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(18, 27, 49, 0.08), rgba(18, 27, 49, 0.82));
    z-index: 1;
}

.reviews-image-overlay {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    padding: 30px;
    border-radius: 22px;
    background: rgba(18, 27, 49, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.reviews-image-overlay span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ffc1b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.reviews-image-overlay h3 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.12;
    text-transform: none;
}

.reviews-summary-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(18, 27, 49, 0.12);
}

.reviews-summary-score {
    color: #121b31;
    font-family: var(--font-family-title);
    font-size: 72px;
    line-height: 0.9;
}

.reviews-summary-card p {
    margin-top: 8px;
    color: #313a52;
    font-size: 15px;
    line-height: 1.62;
}

.reviews-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffc1b4;
}

.reviews-summary-card .reviews-stars {
    color: #121b31;
}

.reviews-stars i {
    font-size: 19px;
}

.reviews-slider-column {
    min-width: 0;
}

.reviews-slider-wrap {
    height: 100%;
    min-height: 560px;
    padding: 42px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.20), transparent 32%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    box-shadow: 0 30px 82px rgba(18, 27, 49, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews-slider-track {
    position: relative;
    min-height: 390px;
}

.review-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 320ms ease, visibility 320ms ease, transform 320ms ease;
}

.review-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.review-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.12;
    text-transform: none;
}

.review-card-top span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.4;
}

.review-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.review-meta span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.review-meta strong {
    color: #ffc1b4;
    font-family: var(--font-family-title);
    font-size: 44px;
    line-height: 1;
    font-weight: 400;
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.reviews-slider-btn {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    border: 1px solid rgba(255, 193, 180, 0.34);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 220ms ease;
}

.reviews-slider-btn:hover {
    background: #ffc1b4;
    color: #121b31;
}

.reviews-slider-btn i {
    font-size: 24px;
}

.reviews-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    border: 0;
    padding: 0;
    transition: all 220ms ease;
}

.reviews-dot.active {
    width: 34px;
    border-radius: 999px;
    background: #ffc1b4;
}

.reviews-static-panel {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.reviews-static-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 15px 0;
}

.reviews-static-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-static-item span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 193, 180, 0.14);
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviews-static-item h4 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.15;
    text-transform: none;
}

.reviews-static-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.58;
}

/* Responsive */
@media (max-width: 1199px) {
    .reviews-header,
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reviews-image-card,
    .reviews-image {
        min-height: 460px;
    }

    .reviews-slider-wrap {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .reviews-header h2 {
        font-size: 46px;
    }

    .reviews-slider-wrap {
        padding: 34px;
    }

    .review-card h3 {
        font-size: 32px;
    }

    .review-card p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .reviews-header h2 {
        font-size: 40px;
    }

    .reviews-image-card,
    .reviews-slider-wrap,
    .reviews-summary-card {
        border-radius: 20px;
    }

    .reviews-image-card,
    .reviews-image {
        min-height: 380px;
    }

    .reviews-image-overlay {
        left: 22px;
        right: 22px;
        bottom: 22px;
        padding: 24px;
    }

    .review-card-top {
        flex-direction: column;
        gap: 14px;
    }

    .reviews-summary-card {
        grid-template-columns: 1fr;
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-static-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .reviews-header h2 {
        font-size: 34px;
    }

    .reviews-slider-wrap {
        padding: 26px 22px;
    }

    .reviews-image-overlay h3 {
        font-size: 26px;
    }

    .review-card h3 {
        font-size: 28px;
    }

    .reviews-slider-controls {
        gap: 12px;
    }

    .reviews-slider-btn {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
}

/* =========================================================
   FAQ Section
   ========================================================= */

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.24), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(18, 27, 49, 0.10), transparent 30%),
        linear-gradient(180deg, #fff8f5 0%, #f8efe9 52%, #efe4dc 100%);
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(18, 27, 49, 0.12);
    box-shadow:
        0 0 0 40px rgba(255, 193, 180, 0.08),
        0 0 0 82px rgba(18, 27, 49, 0.035);
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 180px;
    width: 230px;
    height: 230px;
    border-radius: 34px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(18, 27, 49, 0.08), rgba(255, 193, 180, 0.18));
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.faq-header h2 {
    margin-bottom: 0;
    color: #121b31;
    font-size: 58px;
    line-height: 1.04;
    text-transform: none;
}

.faq-header p {
    color: #515e7d;
    font-size: 17px;
    line-height: 1.85;
}

.faq-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-column {
    display: grid;
    gap: 18px;
    align-content: start;
}

.faq-item {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 27, 49, 0.08);
    box-shadow: 0 18px 46px rgba(18, 27, 49, 0.08);
    transition: border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.faq-item.active {
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 193, 180, 0.20), transparent 32%),
        #ffffff;
    border-color: rgba(255, 193, 180, 0.42);
    box-shadow: 0 26px 58px rgba(18, 27, 49, 0.13);
}

.faq-question {
    width: 100%;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    color: #121b31;
    display: grid;
    grid-template-columns: 46px 1fr 34px;
    gap: 18px;
    align-items: center;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
}

.faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.faq-question i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(18, 27, 49, 0.07);
    color: #121b31;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 240ms ease, background-color 240ms ease, color 240ms ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #ffc1b4;
    color: #121b31;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.faq-answer p {
    padding: 0 26px 26px 90px;
    color: #515e7d;
    font-size: 16px;
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 1199px) {
    .faq-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .faq-header h2 {
        font-size: 46px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .faq-header h2 {
        font-size: 40px;
    }

    .faq-question {
        grid-template-columns: 40px 1fr 30px;
        gap: 14px;
        padding: 22px;
        font-size: 19px;
    }

    .faq-question span {
        width: 38px;
        height: 38px;
    }

    .faq-answer p {
        padding: 0 22px 24px 76px;
    }
}

@media (max-width: 575px) {
    .faq-header h2 {
        font-size: 34px;
    }

    .faq-question {
        grid-template-columns: 1fr 30px;
    }

    .faq-question span {
        display: none;
    }

    .faq-answer p {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}

/* =========================================================
   Site Footer
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background: #121b31;
    color: #ffffff;
}

.site-footer-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 193, 180, 0.18), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255, 193, 180, 0.10), transparent 30%),
        linear-gradient(135deg, #121b31 0%, #202b45 100%);
    pointer-events: none;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 180, 0.20);
    box-shadow:
        0 0 0 42px rgba(255, 193, 180, 0.055),
        0 0 0 86px rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.site-footer-top {
    position: relative;
    z-index: 2;
    padding: 86px 0 38px;
}

.site-footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 0.85fr;
    gap: 44px;
    margin-bottom: 42px;
}

.site-footer-logo {
    display: inline-flex;
    margin-bottom: 26px;
}

.site-footer-logo img {
    max-width: 170px;
    height: auto;
    display: block;
}

.site-footer-brand p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 26px;
}

.site-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 180, 0.12);
    border: 1px solid rgba(255, 193, 180, 0.28);
    color: #ffc1b4;
    font-size: 13px;
    font-weight: 700;
}

.site-footer-column h3 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
    text-transform: none;
}

.site-footer-column ul {
    display: grid;
    gap: 13px;
}

.site-footer-column a {
    position: relative;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.45;
    transition: color 220ms ease, padding-left 220ms ease;
}

.site-footer-column a::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffc1b4;
    transition: width 220ms ease;
}

.site-footer-column a:hover {
    color: #ffc1b4;
    padding-left: 18px;
}

.site-footer-column a:hover::before {
    width: 10px;
}

.site-footer-payments {
    display: grid;
    grid-template-columns: 0.58fr 1fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 28px;
}

.site-footer-small-title {
    display: inline-flex;
    margin-bottom: 12px;
    color: #ffc1b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-footer-payments h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.15;
    text-transform: none;
}

.site-footer-payments p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.7;
}

.site-footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer-payment-icons span {
    width: 58px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.site-footer-payment-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-footer-notice {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 32px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 193, 180, 0.94), rgba(255, 225, 218, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.site-footer-notice-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #121b31;
    color: #ffc1b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer-notice-icon i {
    font-size: 34px;
}

.site-footer-notice h3 {
    margin-bottom: 10px;
    color: #121b31;
    font-size: 28px;
    line-height: 1.16;
    text-transform: none;
}

.site-footer-notice p {
    color: #313a52;
    font-size: 15px;
    line-height: 1.72;
}

.site-footer-bottom {
    position: relative;
    z-index: 2;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.16);
}

.site-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
}

.site-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.site-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
    transition: color 220ms ease;
}

.site-footer-bottom-links a:hover {
    color: #ffc1b4;
}

/* Responsive */
@media (max-width: 1199px) {
    .site-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-payments {
        grid-template-columns: 1fr;
    }

    .site-footer-payment-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .site-footer-top {
        padding: 68px 0 34px;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer-payments,
    .site-footer-notice {
        border-radius: 20px;
    }

    .site-footer-notice {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-bottom-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .site-footer-payments,
    .site-footer-notice {
        padding: 26px 22px;
    }

    .site-footer-payments h3 {
        font-size: 26px;
    }

    .site-footer-notice h3 {
        font-size: 25px;
    }

    .site-footer-payment-icons span {
        width: 52px;
        height: 38px;
    }
}

/* =========================================================
   CASINO NSW HEADER AND HERO START
   ========================================================= */


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 14, 29, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header .header-lower {
    position: relative;
    width: 100%;
}

.site-header .container-fluid {
    padding-left: 42px;
    padding-right: 42px;
}

.site-header-row {
    min-height: 88px;
    flex-wrap: nowrap;
}


/* ---------------------------------------------------------
   HEADER LOGO
   --------------------------------------------------------- */

.site-header .brand-logo {
    display: flex;
    align-items: center;
    height: 88px;
    margin: 0;
    padding: 0;
}

.site-header .brand-logo .logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-header .brand-logo .logo a {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-header .brand-logo .logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   DESKTOP NAVIGATION
   --------------------------------------------------------- */

.site-header .menu-area {
    display: flex;
    align-items: center;
}

.site-header .main-menu {
    display: flex;
    align-items: center;
}

.site-header .main-menu .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.site-header .main-menu .navigation > li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-header .main-menu .navigation > li > a {
    display: flex;
    align-items: center;
    padding: 35px 0;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.site-header .main-menu .navigation > li > a:hover {
    color: #ffc1b4 !important;
}

.site-header .main-menu .navigation > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 26px;
    width: 100%;
    height: 2px;
    background: #ffc1b4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease;
}

.site-header .main-menu .navigation > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ---------------------------------------------------------
   HEADER PLAY NOW BUTTON
   --------------------------------------------------------- */

.site-header .header-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 88px;
}

.site-header .header-button .find-btn {
    display: flex;
    align-items: center;
}

.site-header .header-button .btn-style-one {
    min-width: 150px;
    padding: 16px 25px;
    border-radius: 6px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0.03em;
    box-shadow: none;
}

.site-header .header-button .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}


/* ---------------------------------------------------------
   HERO LAYOUT
   --------------------------------------------------------- */

.video-hero-banner {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0 !important;
    padding: 150px 0 80px;
    background: #0b1222;
}

.video-hero-banner > .container {
    position: relative;
    z-index: 4;
}

.video-hero-banner .row {
    min-height: 550px;
}


/* ---------------------------------------------------------
   HERO VIDEO BACKGROUND
   --------------------------------------------------------- */

.hero-video-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background-image: url("../images/banner/hero.jpg");
    background-position: center;
    background-size: cover;
    transform: none;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}


/* ---------------------------------------------------------
   HERO OVERLAY
   --------------------------------------------------------- */

.video-hero-banner .static-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(6, 11, 24, 0.96) 0%,
            rgba(8, 15, 31, 0.9) 42%,
            rgba(9, 16, 32, 0.58) 70%,
            rgba(9, 16, 32, 0.48) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 9, 20, 0.24) 0%,
            rgba(4, 9, 20, 0.12) 55%,
            rgba(4, 9, 20, 0.42) 100%
        );
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.video-hero-banner .static-hero-content {
    position: relative;
    z-index: 4;
    max-width: 760px;
    padding: 0;
    margin: 0;
}

.video-hero-banner .static-hero-label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 26px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 193, 180, 0.5);
    border-radius: 50px;
    color: #ffc1b4;
    background: rgba(11, 18, 34, 0.42);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.video-hero-banner .static-hero-content h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 68px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.video-hero-banner .static-hero-content p {
    max-width: 700px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   HERO INFORMATION POINTS
   --------------------------------------------------------- */

.video-hero-banner .static-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 34px;
}

.video-hero-banner .static-hero-point {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.video-hero-banner .static-hero-point i {
    flex: 0 0 auto;
    margin-right: 9px;
    color: #ffc1b4;
    font-size: 17px;
}


/* ---------------------------------------------------------
   HERO ACTIONS
   --------------------------------------------------------- */

.video-hero-banner .static-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
}

.video-hero-banner .static-hero-actions .btn-style-one {
    min-width: 160px;
    padding: 17px 28px;
    border-radius: 6px;
    background-image: none !important;
    background-color: #ffc1b4 !important;
    color: #111827 !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.03em;
}

.video-hero-banner .static-hero-actions .btn-style-one:hover {
    background-color: #e3a79b !important;
    color: #111827 !important;
}

.video-hero-banner .static-hero-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.video-hero-banner .static-hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #ffc1b4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease;
}

.video-hero-banner .static-hero-link:hover {
    color: #ffc1b4;
}

.video-hero-banner .static-hero-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (max-width: 1399px) {

    .site-header .container-fluid {
        padding-left: 26px;
        padding-right: 26px;
    }

    .site-header .brand-logo .logo img {
        max-width: 155px;
        max-height: 52px;
    }

    .site-header .main-menu .navigation {
        gap: 18px;
    }

    .site-header .main-menu .navigation > li > a {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .site-header .header-button .btn-style-one {
        min-width: 135px;
        padding: 15px 20px;
    }

    .video-hero-banner .static-hero-content h1 {
        font-size: 60px;
    }

}


/* ---------------------------------------------------------
   LAPTOP
   --------------------------------------------------------- */

@media (max-width: 1199px) {

    .site-header .main-menu .navigation {
        gap: 14px;
    }

    .site-header .main-menu .navigation > li > a {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .site-header .header-button .btn-style-one {
        min-width: 120px;
        padding: 14px 17px;
        font-size: 14px;
    }

    .video-hero-banner {
        min-height: 720px;
    }

    .video-hero-banner .static-hero-content {
        max-width: 680px;
    }

    .video-hero-banner .static-hero-content h1 {
        max-width: 680px;
        font-size: 56px;
    }

}


/* ---------------------------------------------------------
   TABLET AND MOBILE
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .site-header {
        position: absolute;
    }

    .site-header .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header-row {
        min-height: 76px;
    }

    .site-header .brand-logo {
        height: 76px;
    }

    .site-header .brand-logo .logo img {
        max-width: 150px;
        max-height: 48px;
    }

    .site-header .menu-area {
        display: none !important;
    }

    .site-header .header-button {
        height: 76px;
    }

    .site-header .header-button .btn-style-one {
        min-width: auto;
        padding: 13px 18px;
        font-size: 14px;
    }

    .video-hero-banner {
        min-height: 720px;
        padding: 125px 0 70px;
    }

    .video-hero-banner .row {
        min-height: 520px;
    }

    .video-hero-banner .static-hero-content {
        max-width: 680px;
    }

    .video-hero-banner .static-hero-content h1 {
        max-width: 650px;
        font-size: 52px;
    }

    .video-hero-banner .static-hero-content p {
        max-width: 620px;
        font-size: 17px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 575px) {

    .site-header .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header-row {
        min-height: 70px;
    }

    .site-header .brand-logo {
        height: 70px;
    }

    .site-header .brand-logo .logo img {
        max-width: 125px;
        max-height: 42px;
    }

    .site-header .header-button {
        height: 70px;
    }

    .site-header .header-button .btn-style-one {
        padding: 11px 14px;
        font-size: 13px;
    }

    .video-hero-banner {
        min-height: 690px;
        padding: 110px 0 55px;
    }

    .video-hero-banner .row {
        min-height: 500px;
    }

    .video-hero-banner .static-hero-label {
        margin-bottom: 22px;
        padding: 9px 15px;
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .video-hero-banner .static-hero-content h1 {
        margin-bottom: 20px;
        font-size: 42px;
        line-height: 1.06;
    }

    .video-hero-banner .static-hero-content p {
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.65;
    }

    .video-hero-banner .static-hero-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 28px;
    }

    .video-hero-banner .static-hero-point {
        width: fit-content;
        min-height: 42px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .video-hero-banner .static-hero-actions {
        gap: 20px;
    }

    .video-hero-banner .static-hero-actions .btn-style-one {
        min-width: 145px;
        padding: 15px 21px;
        font-size: 15px;
    }

    .video-hero-banner .static-hero-link {
        font-size: 11px;
    }

}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .hero-background-video {
        display: none;
    }

}


/* =========================================================
   CASINO NSW HEADER AND HERO END
   ========================================================= */
   
   /* =========================================================
   CASINO NSW HERO IMAGE CLEAN TEST START
   ========================================================= */

.video-hero-banner .static-hero-overlay {
    background: transparent !important;
    opacity: 0 !important;
}

.video-hero-banner .static-hero-bg,
.video-hero-banner .hero-video-background {
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

.video-hero-banner::before,
.video-hero-banner::after {
    display: none !important;
    content: none !important;
}

/* =========================================================
   CASINO NSW HERO IMAGE CLEAN TEST END
   ========================================================= */
   
/* =========================================================
   CASINO NSW ABOUT SECTION START
   ========================================================= */

.casino-nsw-about-section {
    position: relative;
    padding: 110px 0;
    background: #f5f2ee;
}


/* ---------------------------------------------------------
   MAIN PANEL
   --------------------------------------------------------- */

.casino-nsw-about-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(18, 25, 40, 0.08);
}


/* ---------------------------------------------------------
   IMAGE COLUMN
   --------------------------------------------------------- */

.casino-nsw-about-image-column {
    position: relative;
    width: 100%;
    min-width: 0;
}

.casino-nsw-about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111827;
}

.casino-nsw-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(6, 10, 20, 0.02) 0%,
        rgba(6, 10, 20, 0.08) 100%
    );
}

.casino-nsw-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ---------------------------------------------------------
   CONTENT COLUMN
   --------------------------------------------------------- */

.casino-nsw-about-content-column {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 68px 70px;
    background: #ffffff;
}

.casino-nsw-about-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   CONTENT TYPOGRAPHY
   --------------------------------------------------------- */

.casino-nsw-about-label {
    margin-bottom: 16px;
    color: #b76f64;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.casino-nsw-about-content h2 {
    margin: 0 0 30px;
    color: #111827;
    font-family: "Forum", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.casino-nsw-about-content p {
    margin: 0 0 17px;
    color: #686e79;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
}

.casino-nsw-about-content p:last-child {
    margin-bottom: 0;
}

.casino-nsw-about-content .casino-nsw-about-lead {
    margin-bottom: 23px;
    color: #252d3d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.66;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (min-width: 1400px) {

    .casino-nsw-about-section .container {
        max-width: 1320px;
    }

}


/* ---------------------------------------------------------
   LAPTOP
   --------------------------------------------------------- */

@media (max-width: 1199px) {

    .casino-nsw-about-section {
        padding: 95px 0;
    }

    .casino-nsw-about-panel {
        min-height: 680px;
    }

    .casino-nsw-about-content-column {
        padding: 55px 50px;
    }

    .casino-nsw-about-content h2 {
        font-size: 51px;
    }

    .casino-nsw-about-content p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.72;
    }

    .casino-nsw-about-content .casino-nsw-about-lead {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.62;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .casino-nsw-about-section {
        padding: 80px 0;
    }

    .casino-nsw-about-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .casino-nsw-about-image-column {
        height: 580px;
    }

    .casino-nsw-about-image {
        position: absolute;
    }

    .casino-nsw-about-content-column {
        padding: 58px 55px;
    }

    .casino-nsw-about-content {
        max-width: 680px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 575px) {

    .casino-nsw-about-section {
        padding: 60px 0;
    }

    .casino-nsw-about-image-column {
        height: 430px;
    }

    .casino-nsw-about-content-column {
        padding: 42px 28px;
    }

    .casino-nsw-about-label {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .casino-nsw-about-content h2 {
        margin-bottom: 24px;
        font-size: 42px;
        line-height: 1.05;
    }

    .casino-nsw-about-content p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.68;
    }

    .casino-nsw-about-content .casino-nsw-about-lead {
        margin-bottom: 19px;
        font-size: 16px;
        line-height: 1.6;
    }

}


/* =========================================================
   CASINO NSW ABOUT SECTION END
   ========================================================= */
   
   /* =========================================================
   CASINO NSW CASINO SECTION START
   ========================================================= */

.casino-nsw-casino-section {
    position: relative;
    padding: 110px 0;
    background: #111827;
}


/* ---------------------------------------------------------
   MAIN PANEL
   --------------------------------------------------------- */

.casino-nsw-casino-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: #182135;
}


/* ---------------------------------------------------------
   CONTENT COLUMN
   --------------------------------------------------------- */

.casino-nsw-casino-content-column {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 68px 70px;
    background: #182135;
}

.casino-nsw-casino-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */

.casino-nsw-casino-label {
    margin-bottom: 16px;
    color: #ffc1b4;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.casino-nsw-casino-content h2 {
    margin: 0 0 30px;
    color: #ffffff;
    font-family: "Forum", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.casino-nsw-casino-content p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
}

.casino-nsw-casino-content p:last-child {
    margin-bottom: 0;
}

.casino-nsw-casino-content .casino-nsw-casino-lead {
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.66;
}


/* ---------------------------------------------------------
   IMAGE COLUMN
   --------------------------------------------------------- */

.casino-nsw-casino-image-column {
    position: relative;
    min-width: 0;
}

.casino-nsw-casino-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0b1120;
}

.casino-nsw-casino-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(24, 33, 53, 0.18) 0%,
            rgba(24, 33, 53, 0) 22%
        ),
        linear-gradient(
            180deg,
            rgba(5, 9, 18, 0.02) 60%,
            rgba(5, 9, 18, 0.18) 100%
        );
}

.casino-nsw-casino-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (min-width: 1400px) {

    .casino-nsw-casino-section .container {
        max-width: 1320px;
    }

}


/* ---------------------------------------------------------
   LAPTOP
   --------------------------------------------------------- */

@media (max-width: 1199px) {

    .casino-nsw-casino-section {
        padding: 95px 0;
    }

    .casino-nsw-casino-panel {
        min-height: 680px;
    }

    .casino-nsw-casino-content-column {
        padding: 55px 50px;
    }

    .casino-nsw-casino-content h2 {
        font-size: 51px;
    }

    .casino-nsw-casino-content p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.72;
    }

    .casino-nsw-casino-content .casino-nsw-casino-lead {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.62;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .casino-nsw-casino-section {
        padding: 80px 0;
    }

    .casino-nsw-casino-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .casino-nsw-casino-content-column {
        padding: 58px 55px;
    }

    .casino-nsw-casino-content {
        max-width: 680px;
    }

    .casino-nsw-casino-image-column {
        height: 580px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 575px) {

    .casino-nsw-casino-section {
        padding: 60px 0;
    }

    .casino-nsw-casino-content-column {
        padding: 42px 28px;
    }

    .casino-nsw-casino-label {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .casino-nsw-casino-content h2 {
        margin-bottom: 24px;
        font-size: 42px;
        line-height: 1.05;
    }

    .casino-nsw-casino-content p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.68;
    }

    .casino-nsw-casino-content .casino-nsw-casino-lead {
        margin-bottom: 19px;
        font-size: 16px;
        line-height: 1.6;
    }

    .casino-nsw-casino-image-column {
        height: 430px;
    }

}


/* =========================================================
   CASINO NSW CASINO SECTION END
   ========================================================= */
   
  /* =========================================================
   CASINO NSW GAMES SECTION START
   ========================================================= */

.casino-nsw-games-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #f5f2ee;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.casino-nsw-games-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 72px;
    margin-bottom: 62px;
}

.casino-nsw-games-heading,
.casino-nsw-games-intro {
    min-width: 0;
}

.casino-nsw-games-label,
.casino-nsw-poker-label,
.casino-nsw-additional-label {
    margin-bottom: 16px;
    color: #b76f64;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.casino-nsw-games-heading h2 {
    margin: 0;
    color: #111827;
    font-family: "Forum", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.casino-nsw-games-intro p {
    max-width: 590px;
    margin: 0 0 4px auto;
    color: #626976;
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   THREE MAIN GAME CARDS
   --------------------------------------------------------- */

.casino-nsw-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
}

.casino-nsw-game-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(17, 24, 39, 0.06);
}

.casino-nsw-game-image {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
    background: #111827;
}

.casino-nsw-game-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(7, 12, 24, 0) 62%,
        rgba(7, 12, 24, 0.16) 100%
    );
}

.casino-nsw-game-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.casino-nsw-game-card:hover .casino-nsw-game-image img {
    transform: scale(1.025);
}

.casino-nsw-game-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 36px 34px 38px;
}

.casino-nsw-game-content h3 {
    margin: 0 0 22px;
    color: #111827;
    font-family: "Forum", serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 1.12;
    text-transform: none;
}

.casino-nsw-game-content p {
    margin: 0 0 16px;
    color: #676d78;
    font-size: 14px;
    line-height: 1.76;
}

.casino-nsw-game-content p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   STAR POKER PANEL
   --------------------------------------------------------- */

.casino-nsw-poker-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    min-height: 620px;
    margin-top: 65px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.07);
}

.casino-nsw-poker-image {
    position: relative;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
    background: #111827;
}

.casino-nsw-poker-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(7, 12, 24, 0.02) 55%,
        rgba(7, 12, 24, 0.18) 100%
    );
}

.casino-nsw-poker-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}

.casino-nsw-poker-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 65px 68px;
}

.casino-nsw-poker-content h3 {
    margin: 0 0 26px;
    color: #111827;
    font-family: "Forum", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.04;
    text-transform: none;
}

.casino-nsw-poker-content p {
    margin: 0 0 17px;
    color: #676d78;
    font-size: 15px;
    line-height: 1.76;
}

.casino-nsw-poker-content p:last-child {
    margin-bottom: 0;
}

.casino-nsw-poker-content .casino-nsw-poker-lead {
    margin-bottom: 22px;
    color: #252d3d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   ADDITIONAL GAMES PANEL
   --------------------------------------------------------- */

.casino-nsw-additional-games {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 72px;
    margin-top: 65px;
    padding: 58px 62px;
    background: #111827;
}

.casino-nsw-additional-label {
    color: #ffc1b4;
}

.casino-nsw-additional-heading h3 {
    max-width: 390px;
    margin: 0;
    color: #ffffff;
    font-family: "Forum", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.08;
    text-transform: none;
}

.casino-nsw-additional-content p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.78;
}

.casino-nsw-additional-content p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (min-width: 1400px) {

    .casino-nsw-games-section .container {
        max-width: 1320px;
    }

}


/* ---------------------------------------------------------
   LAPTOP
   --------------------------------------------------------- */

@media (max-width: 1199px) {

    .casino-nsw-games-section {
        padding: 95px 0;
    }

    .casino-nsw-games-header {
        gap: 50px;
        margin-bottom: 52px;
    }

    .casino-nsw-games-heading h2 {
        font-size: 51px;
    }

    .casino-nsw-games-grid {
        gap: 22px;
    }

    .casino-nsw-game-image {
        height: 250px;
    }

    .casino-nsw-game-content {
        padding: 30px 27px 33px;
    }

    .casino-nsw-game-content h3 {
        font-size: 29px;
    }

    .casino-nsw-poker-panel {
        min-height: 580px;
        margin-top: 55px;
    }

    .casino-nsw-poker-image,
    .casino-nsw-poker-image img {
        min-height: 580px;
    }

    .casino-nsw-poker-content {
        padding: 52px 48px;
    }

    .casino-nsw-poker-content h3 {
        font-size: 46px;
    }

    .casino-nsw-additional-games {
        gap: 50px;
        margin-top: 55px;
        padding: 50px;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .casino-nsw-games-section {
        padding: 80px 0;
    }

    .casino-nsw-games-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 44px;
    }

    .casino-nsw-games-intro p {
        max-width: 720px;
        margin-left: 0;
    }

    .casino-nsw-games-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .casino-nsw-game-card {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .casino-nsw-game-image {
        height: 100%;
        min-height: 360px;
    }

    .casino-nsw-poker-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .casino-nsw-poker-image,
    .casino-nsw-poker-image img {
        min-height: 520px;
    }

    .casino-nsw-poker-content {
        padding: 55px;
    }

    .casino-nsw-additional-games {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 575px) {

    .casino-nsw-games-section {
        padding: 60px 0;
    }

    .casino-nsw-games-heading h2 {
        font-size: 42px;
    }

    .casino-nsw-games-intro p {
        font-size: 14px;
        line-height: 1.7;
    }

    .casino-nsw-game-card {
        display: flex;
    }

    .casino-nsw-game-image {
        height: 245px;
        min-height: 0;
    }

    .casino-nsw-game-content {
        padding: 28px 24px 31px;
    }

    .casino-nsw-game-content h3 {
        font-size: 28px;
    }

    .casino-nsw-poker-panel {
        margin-top: 40px;
    }

    .casino-nsw-poker-image,
    .casino-nsw-poker-image img {
        min-height: 390px;
    }

    .casino-nsw-poker-content {
        padding: 40px 27px;
    }

    .casino-nsw-poker-content h3 {
        margin-bottom: 22px;
        font-size: 39px;
    }

    .casino-nsw-poker-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .casino-nsw-poker-content .casino-nsw-poker-lead {
        font-size: 16px;
        line-height: 1.62;
    }

    .casino-nsw-additional-games {
        gap: 27px;
        margin-top: 40px;
        padding: 38px 27px;
    }

    .casino-nsw-additional-heading h3 {
        font-size: 34px;
    }

    .casino-nsw-additional-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================================
   CASINO NSW GAMES SECTION END
   ========================================================= */
   
/* =========================================================
   THE STAR APP SECTION START
========================================================= */

.star-app-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;

  background:
    radial-gradient(
      circle at 13% 35%,
      rgba(255, 193, 180, 0.07) 0,
      rgba(255, 193, 180, 0) 34%
    ),
    radial-gradient(
      circle at 89% 77%,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0) 30%
    ),
    var(--dark);
}

.star-app-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );

  transform: translateX(-50%);
}

.star-app-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(58px, 6vw, 96px);
  width: min(1440px, 100%);
  margin: 0 auto;
}


/* =========================================================
   THE STAR APP IMAGE START
========================================================= */

.star-app-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
}

.star-app-image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 760px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--dark);

  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.star-app-image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(21, 31, 55, 0.01) 54%,
    rgba(21, 31, 55, 0.24) 100%
  );
}

.star-app-image-frame::after {
  content: none;
}

.star-app-image {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 48% center;

  transition:
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 800ms ease;
}

.star-app-image-frame:hover .star-app-image {
  transform: scale(1.012);
  filter: brightness(1.025);
}

.star-app-image-glow {
  position: absolute;
  z-index: 1;
  left: 7%;
  bottom: -7%;
  width: 82%;
  height: 35%;
  border-radius: 50%;

  background: rgba(255, 193, 180, 0.08);
  filter: blur(82px);
  pointer-events: none;
}

/* =========================================================
   THE STAR APP IMAGE END
========================================================= */


/* =========================================================
   THE STAR APP CONTENT START
========================================================= */

.star-app-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: none;
}

.star-app-eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.star-app-title {
  max-width: 690px;
  margin: 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(2.7rem, 4vw, 4.55rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.035em;
}

.star-app-introduction {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  line-height: 1.75;
}

.star-app-description {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* =========================================================
   THE STAR APP CONTENT END
========================================================= */


/* =========================================================
   THE STAR APP FEATURES START
========================================================= */

.star-app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.star-app-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 176px;
  padding: 23px 21px;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);

  transition:
    background-color 250ms ease,
    border-color 250ms ease;
}

.star-app-feature:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.24);
}

.star-app-feature-number {
  padding-top: 2px;
  color: var(--primary);
  font-family: var(--font-family-title);
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.star-app-feature-copy {
  min-width: 0;
}

.star-app-feature-title {
  margin: 0;
  color: var(--white-color);
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.star-app-feature-text {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  line-height: 1.64;
}

/* =========================================================
   THE STAR APP FEATURES END
========================================================= */


/* =========================================================
   THE STAR APP ACTIONS START
========================================================= */

.star-app-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.star-app-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;

  border: 1px solid var(--primary);
  color: var(--white-color);
  background: transparent;

  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.star-app-button:hover {
  color: var(--black-color);
  border-color: var(--primary);
  background: var(--primary);
}

.star-app-button-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.star-app-button:hover .star-app-button-arrow {
  transform: translate(3px, -3px);
}

.star-app-note {
  max-width: 245px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  line-height: 1.5;
}

/* =========================================================
   THE STAR APP ACTIONS END
========================================================= */


/* =========================================================
   THE STAR APP MEDIUM DESKTOP START
========================================================= */

@media (max-width: 1250px) {
  .star-app-container {
    gap: 54px;
  }

  .star-app-image-frame {
    min-height: 720px;
  }

  .star-app-title {
    font-size: clamp(2.55rem, 4.1vw, 4rem);
  }

  .star-app-feature {
    min-height: 185px;
    padding: 22px 19px;
  }

  .star-app-feature-title {
    font-size: 0.86rem;
  }

  .star-app-feature-text {
    font-size: 0.84rem;
  }
}

/* =========================================================
   THE STAR APP MEDIUM DESKTOP END
========================================================= */


/* =========================================================
   THE STAR APP TABLET START
========================================================= */

@media (max-width: 1050px) {
  .star-app-section {
    padding: 88px 24px;
  }

  .star-app-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .star-app-visual {
    max-width: 780px;
    height: auto;
    margin: 0 auto;
  }

  .star-app-image-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .star-app-image {
    object-position: center center;
  }

  .star-app-content {
    max-width: 780px;
    margin: 0 auto;
  }

  .star-app-title,
  .star-app-introduction,
  .star-app-description {
    max-width: 760px;
  }
}

/* =========================================================
   THE STAR APP TABLET END
========================================================= */


/* =========================================================
   THE STAR APP MOBILE START
========================================================= */

@media (max-width: 760px) {
  .star-app-section {
    padding: 72px 18px;
  }

  .star-app-section::before {
    width: calc(100% - 36px);
  }

  .star-app-container {
    gap: 42px;
  }

  .star-app-image-frame {
    aspect-ratio: 4 / 3;
  }

  .star-app-features {
    grid-template-columns: 1fr;
  }

  .star-app-feature {
    min-height: auto;
  }

  .star-app-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .star-app-note {
    max-width: 440px;
  }
}

/* =========================================================
   THE STAR APP MOBILE END
========================================================= */


/* =========================================================
   THE STAR APP SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {
  .star-app-section {
    padding: 62px 16px;
  }

  .star-app-container {
    gap: 36px;
  }

  .star-app-image-frame {
    aspect-ratio: 4 / 5;
  }

  .star-app-image {
    object-position: 49% center;
  }

  .star-app-eyebrow {
    margin-bottom: 15px;
    font-size: 0.67rem;
  }

  .star-app-title {
    font-size: clamp(2.1rem, 11vw, 3.15rem);
  }

  .star-app-introduction {
    margin-top: 23px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .star-app-description {
    font-size: 0.91rem;
    line-height: 1.7;
  }

  .star-app-features {
    margin-top: 30px;
  }

  .star-app-feature {
    padding: 22px 19px;
  }

  .star-app-feature-title {
    font-size: 0.88rem;
  }

  .star-app-feature-text {
    font-size: 0.86rem;
  }

  .star-app-button {
    width: 100%;
    padding: 0 18px;
  }

  .star-app-note {
    max-width: none;
  }
}

/* =========================================================
   THE STAR APP SMALL MOBILE END
========================================================= */


/* =========================================================
   THE STAR APP REDUCED MOTION START
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .star-app-image,
  .star-app-feature,
  .star-app-button,
  .star-app-button-arrow {
    transition: none;
  }

  .star-app-image-frame:hover .star-app-image {
    transform: none;
  }
}

/* =========================================================
   THE STAR APP REDUCED MOTION END
========================================================= */


/* =========================================================
   THE STAR APP SECTION END
========================================================= */


/* =========================================================
   HOTELS AND SPA SECTION START
========================================================= */

.hotels-spa-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;

  background:
    radial-gradient(
      circle at 8% 22%,
      rgba(255, 193, 180, 0.18) 0,
      rgba(255, 193, 180, 0) 31%
    ),
    radial-gradient(
      circle at 91% 78%,
      rgba(21, 31, 55, 0.055) 0,
      rgba(21, 31, 55, 0) 29%
    ),
    var(--light);
}

.hotels-spa-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 31, 55, 0.18),
    transparent
  );

  transform: translateX(-50%);
}

.hotels-spa-container {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HOTELS AND SPA HEADER START
========================================================= */

.hotels-spa-header {
  max-width: 980px;
  margin: 0 auto 68px;
  text-align: center;
}

.hotels-spa-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hotels-spa-title {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.hotels-spa-introduction {
  max-width: 790px;
  margin: 30px auto 0;
  color: rgba(21, 31, 55, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.76;
}

/* =========================================================
   HOTELS AND SPA HEADER END
========================================================= */


/* =========================================================
   HOTELS GRID START
========================================================= */

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.hotel-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;

  border: 1px solid rgba(21, 31, 55, 0.13);
  background: rgba(255, 255, 255, 0.58);

  box-shadow:
    0 22px 55px rgba(21, 31, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}


/* =========================================================
   HOTEL PHOTO AREAS START
========================================================= */

.hotel-card-media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;

  border-bottom: 1px solid rgba(21, 31, 55, 0.12);
  background: rgba(21, 31, 55, 0.055);
}

.hotel-card-media::before {
  content: none;
}

.hotel-card-media::after {
  content: none;
}

.hotel-card-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  text-align: center;
}

.hotel-card-placeholder-number {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-family-title);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.hotel-card-placeholder-title {
  max-width: 280px;
  color: rgba(21, 31, 55, 0.68);
  font-family: var(--font-family-title);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.hotel-card-placeholder-note {
  margin-top: 58px;
  color: rgba(21, 31, 55, 0.45);
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hotel-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   HOTEL PHOTO AREAS END
========================================================= */


.hotel-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 30px 34px;
}

.hotel-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotel-card-number {
  flex: 0 0 auto;
  color: var(--primary);
  font-family: var(--font-family-title);
  font-size: 0.76rem;
}

.hotel-card-type {
  margin: 0;
  color: rgba(21, 31, 55, 0.52);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hotel-card-title {
  margin: 22px 0 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hotel-card-text {
  margin: 24px 0 0;
  color: rgba(21, 31, 55, 0.78);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hotel-card-detail {
  margin: 16px 0 0;
  color: rgba(21, 31, 55, 0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* =========================================================
   HOTELS GRID END
========================================================= */


/* =========================================================
   THE DARLING SPA START
========================================================= */

.darling-spa {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  margin-top: 88px;
  overflow: hidden;

  border: 1px solid rgba(21, 31, 55, 0.13);
  background: rgba(255, 255, 255, 0.62);

  box-shadow:
    0 28px 70px rgba(21, 31, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}


/* =========================================================
   SPA PHOTO AREA START
========================================================= */

.darling-spa-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;

  border-right: 1px solid rgba(21, 31, 55, 0.12);
  background: rgba(21, 31, 55, 0.055);
}

.darling-spa-media::before {
  content: none;
}

.darling-spa-media::after {
  content: none;
}

.darling-spa-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  text-align: center;
}

.darling-spa-placeholder-label {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.darling-spa-placeholder-title {
  max-width: 370px;
  margin-top: 72px;
  color: rgba(21, 31, 55, 0.64);
  font-family: var(--font-family-title);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.2;
}

.darling-spa-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   SPA PHOTO AREA END
========================================================= */


.darling-spa-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 5vw, 82px);
}

.darling-spa-eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.darling-spa-title {
  max-width: 590px;
  margin: 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.darling-spa-introduction {
  margin: 28px 0 0;
  color: rgba(21, 31, 55, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}


/* =========================================================
   SPA FEATURES START
========================================================= */

.darling-spa-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;

  border-top: 1px solid rgba(21, 31, 55, 0.13);
  border-left: 1px solid rgba(21, 31, 55, 0.13);
}

.darling-spa-feature {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;

  border-right: 1px solid rgba(21, 31, 55, 0.13);
  border-bottom: 1px solid rgba(21, 31, 55, 0.13);

  background: rgba(21, 31, 55, 0.018);
}

.darling-spa-feature strong {
  color: var(--primary);
  font-family: var(--font-family-title);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.darling-spa-feature span {
  margin-top: 10px;
  color: rgba(21, 31, 55, 0.56);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* =========================================================
   SPA FEATURES END
========================================================= */


.darling-spa-text {
  margin: 28px 0 0;
  color: rgba(21, 31, 55, 0.62);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* =========================================================
   THE DARLING SPA END
========================================================= */


/* =========================================================
   HOTELS AND SPA TABLET START
========================================================= */

@media (max-width: 1100px) {
  .hotels-spa-section {
    padding: 96px 24px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hotel-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hotel-card-media {
    height: 100%;
    min-height: 440px;
    aspect-ratio: auto;
  }

  .darling-spa {
    grid-template-columns: 1fr;
  }

  .darling-spa-media {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 31, 55, 0.12);
  }

  .darling-spa-placeholder {
    min-height: 500px;
  }
}

/* =========================================================
   HOTELS AND SPA TABLET END
========================================================= */


/* =========================================================
   HOTELS AND SPA MOBILE START
========================================================= */

@media (max-width: 720px) {
  .hotels-spa-section {
    padding: 76px 18px;
  }

  .hotels-spa-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .hotels-spa-introduction {
    margin-left: 0;
  }

  .hotel-card {
    display: flex;
  }

  .hotel-card-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hotel-card-content {
    padding: 28px 24px 30px;
  }

  .darling-spa {
    margin-top: 64px;
  }

  .darling-spa-media,
  .darling-spa-placeholder {
    min-height: 390px;
  }

  .darling-spa-content {
    padding: 42px 28px;
  }
}

/* =========================================================
   HOTELS AND SPA MOBILE END
========================================================= */


/* =========================================================
   HOTELS AND SPA SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {
  .hotels-spa-section {
    padding: 64px 16px;
  }

  .hotels-spa-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hotels-grid {
    gap: 22px;
  }

  .hotel-card-content {
    padding: 26px 21px 28px;
  }

  .hotel-card-heading {
    align-items: flex-start;
  }

  .hotel-card-placeholder-note {
    margin-top: 52px;
  }

  .darling-spa-media,
  .darling-spa-placeholder {
    min-height: 330px;
  }

  .darling-spa-content {
    padding: 36px 22px;
  }

  .darling-spa-title {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .darling-spa-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOTELS AND SPA SMALL MOBILE END
========================================================= */


/* =========================================================
   HOTELS AND SPA REDUCED MOTION START
========================================================= */

@media (prefers-reduced-motion: reduce) {
}

/* =========================================================
   HOTELS AND SPA REDUCED MOTION END
========================================================= */


/* =========================================================
   HOTELS AND SPA SECTION END
========================================================= */

/* =========================================================
   RESTAURANTS SECTION START
========================================================= */

.restaurants-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0) 32%
    ),
    radial-gradient(
      circle at 9% 82%,
      rgba(255, 193, 180, 0.07) 0,
      rgba(255, 193, 180, 0) 28%
    ),
    var(--dark);
}

.restaurants-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );

  transform: translateX(-50%);
}

.restaurants-container {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}


/* =========================================================
   RESTAURANTS HEADER START
========================================================= */

.restaurants-header {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.restaurants-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.restaurants-title {
  margin: 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.restaurants-introduction {
  max-width: 780px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.76;
}

/* =========================================================
   RESTAURANTS HEADER END
========================================================= */


/* =========================================================
   FEATURED RESTAURANTS START
========================================================= */

.restaurants-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.restaurant-feature {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.035);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


/* =========================================================
   RESTAURANT IMAGE AREA START
========================================================= */

.restaurant-feature-media {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark);
}

.restaurant-feature-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
  image-rendering: auto;
  backface-visibility: hidden;
}

.restaurant-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(21, 31, 55, 0) 62%,
    rgba(21, 31, 55, 0.22) 100%
  );
}

/* =========================================================
   RESTAURANT IMAGE AREA END
========================================================= */


.restaurant-feature-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 40px 42px 44px;
}

.restaurant-feature-cuisine {
  margin: 0;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.restaurant-feature-title {
  margin: 18px 0 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.restaurant-feature-text {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.restaurant-feature-detail {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* =========================================================
   FEATURED RESTAURANTS END
========================================================= */


/* =========================================================
   CUISINE SELECTION START
========================================================= */

.restaurants-cuisines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.restaurant-cuisine-card {
  min-width: 0;
  padding: 38px 30px 42px;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);
}

.restaurant-cuisine-label {
  margin: 0;
  color: var(--primary);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.restaurant-cuisine-title {
  margin: 17px 0 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.restaurant-cuisine-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.72;
}

/* =========================================================
   CUISINE SELECTION END
========================================================= */


/* =========================================================
   RESTAURANTS CLOSING START
========================================================= */

.restaurants-closing {
  max-width: 980px;
  margin: 58px auto 0;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.restaurants-closing-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.restaurants-closing-text {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-family-title);
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  line-height: 1.4;
}

/* =========================================================
   RESTAURANTS CLOSING END
========================================================= */


/* =========================================================
   RESTAURANTS TABLET START
========================================================= */

@media (max-width: 1100px) {
  .restaurants-section {
    padding: 96px 24px;
  }

  .restaurants-cuisines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   RESTAURANTS TABLET END
========================================================= */


/* =========================================================
   RESTAURANTS MOBILE START
========================================================= */

@media (max-width: 760px) {
  .restaurants-section {
    padding: 76px 18px;
  }

  .restaurants-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .restaurants-introduction {
    margin-left: 0;
  }

  .restaurants-featured {
    grid-template-columns: 1fr;
  }

  .restaurant-feature-media {
    aspect-ratio: 16 / 10;
  }

  .restaurant-feature-content {
    padding: 32px 26px 34px;
  }

  .restaurants-cuisines {
    grid-template-columns: 1fr;
  }

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

/* =========================================================
   RESTAURANTS MOBILE END
========================================================= */


/* =========================================================
   RESTAURANTS SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {
  .restaurants-section {
    padding: 64px 16px;
  }

  .restaurants-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .restaurant-feature-media {
    aspect-ratio: 4 / 3;
  }

  .restaurant-feature-content {
    padding: 28px 22px 30px;
  }

  .restaurant-cuisine-card {
    padding: 32px 24px 36px;
  }
}

/* =========================================================
   RESTAURANTS SMALL MOBILE END
========================================================= */

/* =========================================================
   RESTAURANTS SECTION END
========================================================= */

/* =========================================================
   ENTERTAINMENT SECTION START
========================================================= */

.entertainment-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(255, 193, 180, 0.18) 0,
      rgba(255, 193, 180, 0) 31%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(21, 31, 55, 0.055) 0,
      rgba(21, 31, 55, 0) 29%
    ),
    var(--light);
}

.entertainment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 31, 55, 0.18),
    transparent
  );

  transform: translateX(-50%);
}

.entertainment-container {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}


/* =========================================================
   ENTERTAINMENT HEADER START
========================================================= */

.entertainment-header {
  max-width: 1000px;
  margin: 0 auto 72px;
  text-align: center;
}

.entertainment-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.entertainment-title {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.entertainment-introduction {
  max-width: 820px;
  margin: 30px auto 0;
  color: rgba(21, 31, 55, 0.7);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.76;
}

/* =========================================================
   ENTERTAINMENT HEADER END
========================================================= */


/* =========================================================
   ENTERTAINMENT EXPERIENCES START
========================================================= */

.entertainment-experiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.entertainment-experience {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;

  border: 1px solid rgba(21, 31, 55, 0.13);
  background: rgba(255, 255, 255, 0.6);

  box-shadow:
    0 22px 55px rgba(21, 31, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}


/* =========================================================
   ENTERTAINMENT IMAGE AREA START
========================================================= */

.entertainment-experience-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;

  border-bottom: 1px solid rgba(21, 31, 55, 0.12);
  background: rgba(21, 31, 55, 0.055);
}

.entertainment-experience-photo {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 700ms ease;
}

.entertainment-experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(21, 31, 55, 0) 68%,
    rgba(21, 31, 55, 0.13) 100%
  );
}

.entertainment-experience:hover .entertainment-experience-photo {
  transform: scale(1.018);
  filter: brightness(1.025);
}

/* =========================================================
   ENTERTAINMENT IMAGE AREA END
========================================================= */


/* =========================================================
   ENTERTAINMENT CONTENT START
========================================================= */

.entertainment-experience-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 42px 42px 46px;
}

.entertainment-experience-label {
  margin: 0;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.entertainment-experience-title {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.entertainment-experience-text {
  margin: 28px 0 0;
  color: rgba(21, 31, 55, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.entertainment-experience-detail {
  margin: 17px 0 0;
  color: rgba(21, 31, 55, 0.58);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* =========================================================
   ENTERTAINMENT CONTENT END
========================================================= */


/* =========================================================
   ENTERTAINMENT CLOSING START
========================================================= */

.entertainment-closing {
  max-width: 980px;
  margin: 72px auto 0;
  padding-top: 50px;

  border-top: 1px solid rgba(21, 31, 55, 0.15);

  text-align: center;
}

.entertainment-closing-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.entertainment-closing-title {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.entertainment-closing-text {
  max-width: 790px;
  margin: 28px auto 0;
  color: rgba(21, 31, 55, 0.66);
  font-size: 1rem;
  line-height: 1.76;
}

/* =========================================================
   ENTERTAINMENT CLOSING END
========================================================= */


/* =========================================================
   ENTERTAINMENT TABLET START
========================================================= */

@media (max-width: 1050px) {
  .entertainment-section {
    padding: 96px 24px;
  }

  .entertainment-experiences {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .entertainment-experience {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .entertainment-experience-media {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
    border-bottom: 0;
    border-right: 1px solid rgba(21, 31, 55, 0.12);
  }
}

/* =========================================================
   ENTERTAINMENT TABLET END
========================================================= */


/* =========================================================
   ENTERTAINMENT MOBILE START
========================================================= */

@media (max-width: 720px) {
  .entertainment-section {
    padding: 76px 18px;
  }

  .entertainment-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .entertainment-introduction {
    margin-left: 0;
  }

  .entertainment-experience {
    display: flex;
  }

  .entertainment-experience-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 31, 55, 0.12);
  }

  .entertainment-experience-content {
    padding: 34px 28px 38px;
  }

  .entertainment-closing {
    margin-top: 58px;
    padding-top: 42px;
    text-align: left;
  }

  .entertainment-closing-title,
  .entertainment-closing-text {
    margin-left: 0;
  }
}

/* =========================================================
   ENTERTAINMENT MOBILE END
========================================================= */


/* =========================================================
   ENTERTAINMENT SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {
  .entertainment-section {
    padding: 64px 16px;
  }

  .entertainment-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .entertainment-experience-content {
    padding: 30px 22px 34px;
  }

  .entertainment-experience-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .entertainment-closing-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }
}

/* =========================================================
   ENTERTAINMENT SMALL MOBILE END
========================================================= */


/* =========================================================
   ENTERTAINMENT REDUCED MOTION START
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .entertainment-experience-photo {
    transition: none;
  }

  .entertainment-experience:hover .entertainment-experience-photo {
    transform: none;
  }
}

/* =========================================================
   ENTERTAINMENT REDUCED MOTION END
========================================================= */


/* =========================================================
   ENTERTAINMENT SECTION END
========================================================= */

/* =========================================================
   VISIT SECTION START
========================================================= */

.visit-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;

  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0) 32%
    ),
    radial-gradient(
      circle at 8% 84%,
      rgba(255, 193, 180, 0.07) 0,
      rgba(255, 193, 180, 0) 29%
    ),
    var(--dark);
}

.visit-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );

  transform: translateX(-50%);
}

.visit-container {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
}


/* =========================================================
   VISIT HEADER START
========================================================= */

.visit-header {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.visit-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.visit-title {
  margin: 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.visit-introduction {
  max-width: 790px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.76;
}

/* =========================================================
   VISIT HEADER END
========================================================= */


/* =========================================================
   VISIT ESSENTIALS START
========================================================= */

.visit-essentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-essential {
  min-width: 0;
  padding: 38px 30px 42px;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);
}

.visit-essential-label {
  margin: 0;
  color: var(--primary);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-essential-title {
  margin: 18px 0 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.visit-essential-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.72;
}

/* =========================================================
   VISIT ESSENTIALS END
========================================================= */


/* =========================================================
   VISIT FEATURE START
========================================================= */

.visit-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;

  margin-top: 82px;
  padding: 66px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-feature-intro {
  min-width: 0;
}

.visit-feature-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.visit-feature-title {
  max-width: 600px;
  margin: 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(2.7rem, 4.3vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.visit-feature-content {
  min-width: 0;
  padding-top: 38px;
}

.visit-feature-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.visit-feature-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.76;
}

/* =========================================================
   VISIT FEATURE END
========================================================= */


/* =========================================================
   VISIT CHECKLIST START
========================================================= */

.visit-checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;

  margin-top: 70px;
}

.visit-checklist-heading {
  min-width: 0;
}

.visit-checklist-eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.visit-checklist-title {
  margin: 0;
  color: var(--white-color);
  font-family: var(--font-family-title);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.visit-checklist-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-checklist-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 18px;
  padding: 24px;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);
}

.visit-checklist-mark {
  display: flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 193, 180, 0.48);
  border-radius: 50%;

  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
}

.visit-checklist-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =========================================================
   VISIT CHECKLIST END
========================================================= */


/* =========================================================
   VISIT TABLET START
========================================================= */

@media (max-width: 1100px) {
  .visit-section {
    padding: 96px 24px;
  }

  .visit-essentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   VISIT TABLET END
========================================================= */


/* =========================================================
   VISIT MOBILE START
========================================================= */

@media (max-width: 760px) {
  .visit-section {
    padding: 76px 18px;
  }

  .visit-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .visit-introduction {
    margin-left: 0;
  }

  .visit-essentials {
    grid-template-columns: 1fr;
  }

  .visit-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 58px;
    padding: 52px 0;
  }

  .visit-feature-content {
    padding-top: 0;
  }

  .visit-checklist {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 56px;
  }
}

/* =========================================================
   VISIT MOBILE END
========================================================= */


/* =========================================================
   VISIT SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {
  .visit-section {
    padding: 64px 16px;
  }

  .visit-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .visit-essential {
    padding: 32px 24px 36px;
  }

  .visit-feature-title {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .visit-checklist-items {
    grid-template-columns: 1fr;
  }

  .visit-checklist-item {
    min-height: 96px;
    padding: 22px;
  }
}

/* =========================================================
   VISIT SMALL MOBILE END
========================================================= */

/* =========================================================
   VISIT SECTION END
========================================================= */

/* =========================================================
   FAQ SECTION START
========================================================= */

.faq-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 120px 24px;
  box-sizing: border-box;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(255, 193, 180, 0.18) 0,
      rgba(255, 193, 180, 0) 31%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(21, 31, 55, 0.055) 0,
      rgba(21, 31, 55, 0) 29%
    ),
    var(--light);
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
  box-sizing: border-box;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 31, 55, 0.18),
    transparent
  );

  transform: translateX(-50%);
}

.faq-container {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/* =========================================================
   FAQ HEADER START
========================================================= */

.faq-header {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.faq-eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 20px;

  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.faq-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;

  color: var(--dark);
  font-family: var(--font-family-title);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
  text-align: center;
}

.faq-introduction {
  display: block;
  width: 100%;
  max-width: 790px;
  margin: 30px auto 0;

  color: rgba(21, 31, 55, 0.7);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.76;
  text-align: center;
}


/* =========================================================
   FAQ HEADER END
========================================================= */


/* =========================================================
   FAQ GRID START
========================================================= */

.faq-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.faq-column {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex-direction: column;
  gap: 16px;
}


/* =========================================================
   FAQ GRID END
========================================================= */


/* =========================================================
   FAQ ITEM START
========================================================= */

.faq-item {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(21, 31, 55, 0.13);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);

  box-shadow:
    0 14px 36px rgba(21, 31, 55, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  transition:
    border-color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

.faq-item:hover {
  border-color: rgba(21, 31, 55, 0.23);
}

.faq-item[open] {
  border-color: rgba(255, 193, 180, 0.7);
  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 18px 44px rgba(21, 31, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}


/* =========================================================
   FAQ ITEM END
========================================================= */


/* =========================================================
   FAQ QUESTION START
========================================================= */

.faq-section .faq-question {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 104px;
  margin: 0;
  padding: 28px 30px;

  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 24px;
  align-items: center;

  color: var(--dark);
  cursor: pointer;

  font-family: var(--font-family-title);
  font-size: clamp(1.25rem, 1.65vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: left;

  list-style: none;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .faq-question::marker {
  content: "";
  display: none;
}

.faq-section .faq-question > span:first-child {
  display: block;
  position: static;

  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 0;

  margin: 0;
  padding: 0;

  color: var(--dark);
  background: transparent;

  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;

  transform: none;
  opacity: 1;
}

.faq-section .faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -4px;
}


/* =========================================================
   FAQ QUESTION END
========================================================= */


/* =========================================================
   FAQ ICON START
========================================================= */

.faq-section .faq-icon {
  position: relative;
  display: block;
  flex: none;

  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 42px;
  min-height: 42px;
  max-height: 42px;

  margin: 0;
  padding: 0;

  justify-self: end;

  border: 1px solid rgba(21, 31, 55, 0.2);
  border-radius: 50%;
  background: transparent;

  transform: none;
  opacity: 1;

  transition:
    border-color 250ms ease,
    background-color 250ms ease,
    transform 350ms ease;
}

.faq-section .faq-icon::before,
.faq-section .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 14px;
  height: 1px;

  margin: 0;
  padding: 0;

  background: var(--dark);

  transform: translate(-50%, -50%);

  transition:
    background-color 250ms ease,
    transform 350ms ease;
}

.faq-section .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-item:hover .faq-icon {
  border-color: var(--primary);
}

.faq-section .faq-item[open] .faq-icon {
  border-color: var(--primary);
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-section .faq-item[open] .faq-icon::before,
.faq-section .faq-item[open] .faq-icon::after {
  background: var(--dark);
}

.faq-section .faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}


/* =========================================================
   FAQ ICON END
========================================================= */


/* =========================================================
   FAQ ANSWER START
========================================================= */

.faq-answer {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;

  margin: 0;
  padding: 0 92px 32px 30px;
}

.faq-answer p {
  display: block;
  position: static;

  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;

  margin: 0;
  padding: 24px 0 0;

  border-top: 1px solid rgba(21, 31, 55, 0.1);

  color: rgba(21, 31, 55, 0.68);
  background: transparent;

  font-size: 0.93rem;
  line-height: 1.76;
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;

  transform: none;
  opacity: 1;
}


/* =========================================================
   FAQ ANSWER END
========================================================= */


/* =========================================================
   FAQ TABLET START
========================================================= */

@media (max-width: 1000px) {

  .faq-section {
    padding: 96px 24px;
  }

  .faq-grid {
    gap: 18px;
  }

  .faq-section .faq-question {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 18px;
    min-height: 98px;
    padding: 26px 24px;
  }

  .faq-section .faq-icon {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
  }

  .faq-answer {
    padding: 0 80px 30px 24px;
  }

}


/* =========================================================
   FAQ TABLET END
========================================================= */


/* =========================================================
   FAQ MOBILE START
========================================================= */

@media (max-width: 760px) {

  .faq-section {
    padding: 76px 18px;
  }

  .faq-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .faq-eyebrow,
  .faq-title,
  .faq-introduction {
    text-align: left;
  }

  .faq-introduction {
    margin-left: 0;
    margin-right: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-column {
    gap: 16px;
  }

  .faq-section .faq-question {
    min-height: 92px;
  }

}


/* =========================================================
   FAQ MOBILE END
========================================================= */


/* =========================================================
   FAQ SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {

  .faq-section {
    padding: 64px 16px;
  }

  .faq-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .faq-section .faq-question {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 16px;
    min-height: 88px;
    padding: 24px 20px;

    font-size: 1.22rem;
  }

  .faq-section .faq-icon {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    min-height: 36px;
    max-height: 36px;
  }

  .faq-answer {
    padding: 0 20px 28px;
  }

  .faq-answer p {
    padding-top: 22px;
    font-size: 0.9rem;
  }

}


/* =========================================================
   FAQ SMALL MOBILE END
========================================================= */


/* =========================================================
   FAQ REDUCED MOTION START
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .faq-item,
  .faq-icon,
  .faq-icon::before,
  .faq-icon::after {
    transition: none;
  }

}


/* =========================================================
   FAQ REDUCED MOTION END
========================================================= */


/* =========================================================
   FAQ SECTION END
========================================================= */

/* =========================================================
   FOOTER SECTION START
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;

  color: var(--white-color);
  background: var(--dark);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 10% 16%,
      rgba(255, 193, 180, 0.07) 0,
      rgba(255, 193, 180, 0) 31%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0) 30%
    );
}


/* =========================================================
   FOOTER CONTAINERS START
========================================================= */

.site-footer .container {
  position: relative;
  z-index: 1;

  width: min(1440px, calc(100% - 48px));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

/* =========================================================
   FOOTER CONTAINERS END
========================================================= */


/* =========================================================
   FOOTER MAIN START
========================================================= */

.site-footer-top {
  position: relative;
  z-index: 1;
  padding: 82px 0 64px;
}

.site-footer-main {
  display: grid;
  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(0, 0.72fr)
    minmax(0, 0.8fr)
    minmax(0, 1fr);

  gap: clamp(42px, 5vw, 78px);
  align-items: start;
}

/* =========================================================
   FOOTER MAIN END
========================================================= */


/* =========================================================
   FOOTER BRAND START
========================================================= */

.site-footer-brand {
  min-width: 0;
  max-width: 520px;
}

.site-footer-logo {
  display: inline-flex;
  position: static;

  width: auto;
  max-width: 220px;
  height: auto;

  margin: 0;
  padding: 0;

  color: inherit;
  background: transparent;

  opacity: 1;
  transform: none;
}

.site-footer-logo img {
  display: block;

  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;

  margin: 0;
  padding: 0;

  object-fit: contain;
}

.site-footer-brand > p {
  display: block;
  position: static;

  width: 100%;
  max-width: 500px;
  height: auto;

  margin: 28px 0 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.68);
  background: transparent;

  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0;
  text-align: left;

  opacity: 1;
  transform: none;
}

.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.site-footer-badges span {
  display: inline-flex;
  position: static;

  min-height: 36px;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0 14px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;

  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.025);

  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;

  opacity: 1;
  transform: none;
}

/* =========================================================
   FOOTER BRAND END
========================================================= */


/* =========================================================
   FOOTER COLUMNS START
========================================================= */

.site-footer-column {
  min-width: 0;
  width: 100%;
}

.site-footer-column h3 {
  display: block;
  position: static;

  width: 100%;
  margin: 0 0 26px;
  padding: 0;

  color: var(--primary);
  background: transparent;

  font-family: var(--font-family-base);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: left;
  text-transform: uppercase;

  opacity: 1;
  transform: none;
}

.site-footer-column ul {
  display: block;

  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;
}

.site-footer-column li {
  display: block;

  width: 100%;
  margin: 0;
  padding: 0;

  list-style: none;
}

.site-footer-column li + li {
  margin-top: 15px;
}

.site-footer-column a {
  display: inline-block;
  position: static;

  width: auto;
  max-width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.72);
  background: transparent;

  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;

  opacity: 1;
  transform: none;

  transition:
    color 220ms ease,
    transform 220ms ease;
}

.site-footer-column a:hover {
  color: var(--white-color);
  transform: translateX(3px);
}

/* =========================================================
   FOOTER COLUMNS END
========================================================= */


/* =========================================================
   FOOTER ADDRESS START
========================================================= */

.site-footer .site-footer-address {
  display: block;

  width: 100%;
  margin-top: 32px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer .site-footer-address p {
  display: block;
  position: static;

  width: 100%;
  max-width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.72);
  background: transparent;

  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;

  opacity: 1;
  transform: none;
}

.site-footer .site-footer-address p + p {
  margin-top: 3px;
}

.site-footer .site-footer-address p:first-child {
  margin-bottom: 7px;
}

.site-footer .site-footer-address strong {
  color: #ffffff;
  background: transparent;

  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;

  opacity: 1;
}

/* =========================================================
   FOOTER ADDRESS END
========================================================= */


/* =========================================================
   RESPONSIBLE PLAY START
========================================================= */

.site-footer-notice-wrapper {
  position: relative;
  z-index: 1;
}

.site-footer-notice {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  width: 100%;
  margin: 0;
  padding: 28px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;

  color: var(--white-color);
  background: transparent;

  box-shadow: none;
}

.site-footer-notice-icon {
  display: flex;
  position: static;

  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;

  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: 1px solid rgba(255, 193, 180, 0.46);
  border-radius: 50%;

  color: var(--primary);
  background: rgba(255, 255, 255, 0.025);

  font-size: 1.08rem;

  opacity: 1;
  transform: none;
}

.site-footer-notice h3 {
  display: block;
  position: static;

  margin: 0;
  padding: 0;

  color: var(--white-color);
  background: transparent;

  font-family: var(--font-family-title);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;

  opacity: 1;
  transform: none;
}

.site-footer-notice p {
  display: block;
  position: static;

  width: 100%;
  max-width: 1060px;
  height: auto;

  margin: 8px 0 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.58);
  background: transparent;

  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
  text-align: left;

  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIBLE PLAY END
========================================================= */


/* =========================================================
   FOOTER BOTTOM START
========================================================= */

.site-footer-bottom {
  position: relative;
  z-index: 1;
}

.site-footer-bottom-inner {
  display: flex;

  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer-bottom-inner > p {
  display: block;
  position: static;
  flex: 0 0 auto;

  margin: 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.48);
  background: transparent;

  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;

  opacity: 1;
  transform: none;
}

/* =========================================================
   FOOTER BOTTOM END
========================================================= */


/* =========================================================
   FOOTER BOTTOM ANCHORS START
========================================================= */

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  justify-content: flex-end;

  margin: 0;
  padding: 0;
}

.site-footer-bottom-links a {
  position: relative;
  display: inline-flex;

  align-items: center;

  width: auto;
  height: auto;

  margin: 0;
  padding: 8px 14px;

  color: rgba(255, 255, 255, 0.62);
  background: transparent;

  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;

  opacity: 1;
  transform: none;

  transition: color 220ms ease;
}

.site-footer-bottom-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 12px;

  background: rgba(255, 255, 255, 0.16);

  transform: translateY(-50%);
}

.site-footer-bottom-links a:last-child::after {
  display: none;
}

.site-footer-bottom-links a:hover {
  color: var(--primary);
}

/* =========================================================
   FOOTER BOTTOM ANCHORS END
========================================================= */


/* =========================================================
   FOOTER TABLET START
========================================================= */

@media (max-width: 1100px) {

  .site-footer-top {
    padding: 72px 0 58px;
  }

  .site-footer-main {
    grid-template-columns:
      minmax(0, 1.35fr)
      repeat(3, minmax(0, 1fr));

    gap: 40px;
  }

  .site-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    gap: 18px;
    padding: 28px 0;
  }

  .site-footer-bottom-links {
    justify-content: flex-start;
  }

}

/* =========================================================
   FOOTER TABLET END
========================================================= */


/* =========================================================
   FOOTER MOBILE START
========================================================= */

@media (max-width: 760px) {

  .site-footer .container {
    width: calc(100% - 36px);
  }

  .site-footer-top {
    padding: 62px 0 50px;
  }

  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 30px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .site-footer-notice {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;

    padding: 24px 0;
  }

  .site-footer-notice-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;

    font-size: 1rem;
  }

  .site-footer-bottom-links {
    justify-content: flex-start;
  }

  .site-footer-bottom-links a {
    padding: 8px 11px;
  }

}

/* =========================================================
   FOOTER MOBILE END
========================================================= */


/* =========================================================
   FOOTER SMALL MOBILE START
========================================================= */

@media (max-width: 520px) {

  .site-footer .container {
    width: calc(100% - 32px);
  }

  .site-footer-top {
    padding: 54px 0 44px;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer-brand {
    grid-column: auto;
  }

  .site-footer-logo {
    max-width: 190px;
  }

  .site-footer-brand > p {
    margin-top: 25px;
    font-size: 0.87rem;
  }

  .site-footer-column h3 {
    margin-bottom: 21px;
  }

  .site-footer-notice {
    grid-template-columns: 1fr;
    gap: 14px;

    align-items: start;
    padding: 27px 0;
  }

  .site-footer-notice p {
    font-size: 0.75rem;
  }

  .site-footer-bottom-inner {
    padding: 25px 0;
  }

  .site-footer-bottom-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-bottom-links a {
    padding: 7px 0;
  }

  .site-footer-bottom-links a::after {
    display: none;
  }

}

/* =========================================================
   FOOTER SMALL MOBILE END
========================================================= */


/* =========================================================
   FOOTER REDUCED MOTION START
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .site-footer-column a,
  .site-footer-bottom-links a {
    transition: none;
  }

}

/* =========================================================
   FOOTER REDUCED MOTION END
========================================================= */


/* =========================================================
   FOOTER SECTION END
========================================================= */

/* =========================================================
   HERO IMAGE VISIBILITY OVERRIDE START
========================================================= */

.static-hero-banner .static-hero-bg {
  opacity: 1;
  filter: none;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.static-hero-banner .static-hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 20, 43, 0.94) 0%,
      rgba(8, 20, 43, 0.82) 27%,
      rgba(8, 20, 43, 0.48) 52%,
      rgba(8, 20, 43, 0.14) 76%,
      rgba(8, 20, 43, 0.05) 100%
    );

  opacity: 1;
}

.static-hero-banner::before,
.static-hero-banner::after {
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   HERO IMAGE VISIBILITY OVERRIDE END
========================================================= */
/* =========================================================
   THE STAR APP IMAGE SIZE OVERRIDE START
========================================================= */

.star-app-visual {
  align-self: start;
}

.star-app-image-frame {
  width: 100%;
  height: 830px;
  aspect-ratio: auto;
}

.star-app-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   THE STAR APP IMAGE SIZE OVERRIDE END
========================================================= */

/* =========================================================
   FAQ HEADER LAYOUT OVERRIDE START
========================================================= */

.faq-header {
  display: flex;
  max-width: 980px;
  margin: 0 auto 64px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-eyebrow {
  width: auto;
  margin: 0 0 18px;
  text-align: center;
}

.faq-title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-introduction {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
}

/* =========================================================
   FAQ HEADER LAYOUT OVERRIDE END
========================================================= */

/* =========================================================
   LEGAL PAGES START
========================================================= */
.section-anchor-alias {
  position: relative;
  top: -110px;
  display: block;
  visibility: hidden;
}

.legal-page {
  background: #f7f8fb;
  color: var(--dark);
}

.legal-page .site-header {
  position: relative;
  background: #08142b;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    linear-gradient(135deg, rgba(8, 20, 43, 0.97), rgba(21, 31, 55, 0.88)),
    url('../images/banner/hero.jpg') center/cover no-repeat;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -130px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--rgba-primary-2);
  filter: blur(2px);
}

.legal-hero .container { position: relative; z-index: 1; }

.legal-eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--white-color);
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.03;
  text-transform: none;
}

.legal-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.legal-meta strong { color: var(--white-color); }

.legal-content-section { padding: 90px 0 110px; }

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  align-items: start;
}

.legal-article {
  padding: 48px;
  border: 1px solid rgba(21,31,55,.08);
  border-radius: 18px;
  background: var(--white-color);
  box-shadow: 0 20px 60px rgba(8,20,43,.08);
}

.legal-article h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: 38px;
  line-height: 1.15;
  text-transform: none;
}

.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 25px;
  text-transform: none;
}
.legal-article p,
.legal-article li {
  color: #45506a;
  line-height: 1.85;
}
.legal-article p + p { margin-top: 16px; }
.legal-article ul,
.legal-article ol { margin: 16px 0 18px 24px; }
.legal-article li { list-style: disc; margin-bottom: 10px; }
.legal-article ol li { list-style: decimal; }
.legal-article a { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; }

.legal-callout {
  margin: 26px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--primary-dark);
  border-radius: 0 10px 10px 0;
  background: var(--rgba-primary-1);
}
.legal-callout p { color: var(--dark); }

.legal-nav {
  position: sticky;
  top: 30px;
  padding: 28px;
  border-radius: 16px;
  background: #08142b;
  box-shadow: 0 18px 42px rgba(8,20,43,.16);
}
.legal-nav h2 {
  margin-bottom: 18px;
  color: var(--white-color);
  font-size: 26px;
  text-transform: none;
}
.legal-nav li + li { margin-top: 10px; }
.legal-nav a {
  display: block;
  padding: 9px 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.legal-nav a:hover { color: var(--primary); }
.legal-nav .legal-back-home {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--primary);
}

/* Legal links are kept in the compact footer bottom row. */
.site-footer-bottom-inner { gap: 20px; }

@media (min-width: 1101px) {
  .site-footer-top { padding: 68px 0 50px; }
  .site-footer-bottom-inner { min-height: 78px; }
}

@media (max-width: 767px) {
  .site-footer-bottom-links { justify-content: flex-start; }
  .site-footer-bottom-links a { padding: 7px 12px 7px 0; margin-right: 12px; }
  .site-footer-bottom-links a::after { display: none; }
}

@media (max-width: 991px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; order: -1; }
  .legal-article { padding: 34px; }
}

@media (max-width: 575px) {
  .legal-hero { padding: 82px 0 66px; }
  .legal-content-section { padding: 58px 0 76px; }
  .legal-article { padding: 25px 20px; border-radius: 12px; }
  .legal-article h2 { font-size: 31px; }
  .legal-article h3 { font-size: 23px; }
}
/* =========================================================
   LEGAL PAGES END
========================================================= */
