/* Table of Contents
----------------------------------


/*------------------------------ (00)-Global CSS ------------------------------*/
/*   
0- Global CSS    
1- Heading CSS
2- Button CSS   
3- Logo Area CSS 
4- Page Title CSS  
5- Header Area CSS 
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Dark Form CSS
10- Swiper Pagination CSS
11- Sidebar Heading CSS
12- Sidebar CSS
*/

/*------------------------------ (01)-Home ------------------------------*/
/*
1- Home
2- Features
3- Counter
4- Section Slider
5- Why Attend
6- Banner
7- Speaker Slider
8- Testimonials
9- Newsletter
10- Blogs
11- Sponsor Slider
*/

/*------------------------------ (02)-About ------------------------------*/

/*--------------- PAGES ---------------*/
/*
1- About Us
2- Team
3- Team Single
4- Testimonials
5- Faqs
*/

/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Tab Information
02- Page Single
03- Page Sidebar
04- Custom Form
*/

/*--------------- PAGES ---------------*/
/*
1- Gallery
2- Portfolio
3- Portfolio Single
4- Services
5- Service Single
6- Tickets
7- Registration
8- Sponsors
9- Venue
*/

/*------------------------------ (04)-Speaker ------------------------------*/
/*
1- Speakers
2- Speaker Single
*/

/*------------------------------ (05)-Schedule ------------------------------*/
/*
1- Schedule Tab
2- Schedule List
3- Schedule Event
4- Schedule Single
*/

/*------------------------------ (06)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Comment 
03- Pages-No
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Single 
*/

/*------------------------------ (07)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Filter
02- Shop Header
03- Quantity Box
04- Product-Item
05- Shop-Title
06- Cart-Summary
07- Radio Button
08- Account-Form
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid
2- Shop Standard
3- Product Single
4- Wishlist
5- Cart
6- Checkout
7- Login
8- Register
*/

/*------------------------------ (08)-Contact ------------------------------*/



/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #f112a2;
    --secondary-color: #4F1787;
    --black: #000; 
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #666; 
    --custom-bg: rgba(0, 0, 0, 0.8);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 30px 30px 0 0 / 30px 30px 20px 20px;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --custom-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

*{
    font-family: "Poppins", sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0; 
    text-decoration: none;
    text-transform: none !important; 
    border: none;
    outline: none;
}

*:not(.portfolio-item){
    -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

body{
    background: #f2f3f8;
    overflow-x: hidden;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 3rem 5%;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius-2);
    background: var(--main-color);
}

p{
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--grey);
}

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

/*----- 1- Heading CSS -----*/
.heading{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.heading .sub{
    letter-spacing: 0.2rem;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
}

.heading h2{
    text-align: center;
    font-size: 4rem;  
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    line-height: 1.2;
}

.linear-bg .heading h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
.btn{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.4rem 3rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background-image: -webkit-linear-gradient(306deg, var(--secondary-color), var(--main-color), var(--secondary-color));
    background-image:         linear-gradient(144deg, var(--secondary-color), var(--main-color), var(--secondary-color));
    background-size: 300% 100%;
    border-radius: var(--border-radius-2);
    cursor: pointer;
}

.btn:hover{
    background-position: 100% 0px; 
}

/*----- 3- Logo Area CSS -----*/  
.logo{
    z-index: 100000;
}

.logo img{
    height: 6rem;
    width: auto;
}

/*----- 4- Page Title CSS -----*/
.page-title{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../../assets/images/Background/PageTitle.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../../assets/images/Background/PageTitle.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0rem 5%;
    padding-top: 8rem;
    min-height: 40rem;
}

.page-title .title{
    border-left: var(--custom-border);
    padding-left: 1rem;
}

.page-title .title h2{
    color: var(--white);
    line-height: 1.2;
    font-size: 5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.page-title .link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
}

.page-title .link a{
    font-weight: 600; 
    color: var(--white);
}

.page-title .link a:hover{
    color: var(--main-color);
}

.page-title .link i{
    color: var(--white);
}

.page-title .link span{
    font-weight: 500;
    color: var(--white);
}

/*----- 5- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .header-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 5%;
}

.header.active .header-1{
    display: none;
}

.header .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    list-style-type: none;
}

.header .header-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--white);
}

.header .header-contacts span{
    text-transform: none;
}

.header .social-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    list-style-type: none;
}

.header .social-contacts li a{
    height: 3rem;
    width: 3rem;
    font-size: 1.6rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .social-contacts li a:hover{
    color: var(--main-color);
}

.header .header-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 8rem;
    padding: 0rem 5%;
}

.header.active .header-2{
    background-color: var(--black);
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 2rem;
}

.mobile-menu{
    display: none;
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5rem;
}

.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
}

.header .navbar .nav-btn:hover{
    color: var(--main-color);
}

.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--black);
    width: 20rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    -webkit-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
    overflow: hidden;
}

.header .dropdown-menu:hover button{
    color: var(--main-color);
}

.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: var(--custom-border);
}

.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.header .dropdown-content a:hover{
    background-color: var(--main-color);
}

.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

.header .search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 40rem;
    padding: 1.5rem 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    opacity: 0;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
    -o-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    border-radius: 50rem;
    -webkit-transform: translateX(300%);
        -ms-transform: translateX(300%);
            transform: translateX(300%);
}

.header .search-container.active{
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
}

.header .search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

.header .search-container button{
    color: var(--secondary-color);
    background-color: transparent;
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

.header .search-container button:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Footer.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Footer.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
}

.footer .footer-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.footer .box-container{
    max-width: 80rem;
    padding: 3rem 5%;
    text-align: center;
}

.footer-item > p{
    padding-top: 1.5rem;
    font-size: 1.5rem;
} 

.footer-item p{
    color: var(--white); 
    font-weight: 500;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.footer-item .social a{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 0.15rem solid var(--white);
    border-radius: 50%;
}

.footer-item .social a i{
    color: var(--white);
    font-size: 1.7rem;
}

.footer-item .social a:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.footer-item .social a:hover i{
    color: var(--white);
}

.footer-item .links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 0.15rem solid rgba(255, 255, 255, 0.7);
}

.footer-item .links a{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

.footer-item .input-field{
    margin-bottom: 1rem;
}

.footer-item .dark-form{
    max-width: 40rem;
    margin: 0 auto;
}

.footer-item .dark-form .alert {
    display: block;
    font-size: 1.6rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/*----- 7- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 6rem;
    width: 6rem;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.scroll-top:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--secondary-color) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
         -o-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;

}
  
.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
  
.form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding: 1rem 1.5rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-1);
    text-transform: none;
}

.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.form .box::-moz-placeholder{
    text-transform: capitalize;
}
.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.form .box::placeholder{
    text-transform: capitalize;
}

.form .box:focus{
    border-color: var(--main-color);
}

.form textarea{
    resize: none;
    height: 20rem;
}

.form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

/*----- 9- Dark Form CSS -----*/
.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            -o-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    border: 1.2px solid rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-radius: var(--border-radius-1);
}

.dark-form .input-box > .input-field{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: transparent;
    -webkit-text-stroke: 1px var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form textarea{
    height: 15rem;
    resize: none;
}

.dark-form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dark-form .checkbox-label {
    color: var(--white);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.dark-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}
  
.dark-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}

.dark-form .select option{
    color: var(--grey);
}

.dark-form .select{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border: 1.2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-1);
    width: 100%;
}
  
.dark-form .select-container{
    height: 100%;
    min-width: 100%;
    position: relative;
}

.dark-form .select-box{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    color: var(--white);
    background-color: transparent;
    padding: 1.5rem;
    font-size: 1.6rem;
    padding-left: 4.5rem;
}

.dark-form .select-container label{
    position: absolute;
    height: 100%;
    top: 0;
    left: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .select-container .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            pointer-events: none;
}

.dark-form .select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--white);
}

/*----- 10- Swiper Pagination CSS -----*/
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 4rem;
    border-radius: 0;
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active{
    background: var(--main-color) !important;
}

/*----- 11- Sidebar Heading CSS -----*/
.sidebar-heading h2{
    position: relative;
    font-size: 3rem; 
    font-weight: 500;
    word-spacing: 1px; 
    color: var(--secondary-color);
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
}

.sidebar-heading h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
}

/*----- 12- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28rem; 
        flex: 1 1 28rem;  
}

.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1.5rem;
    border-radius: var(--border-radius-3);
}

/*-- 1- Search --*/
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 5rem;
}

.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem; 
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

.sidebar .search .input-box input:focus{ 
    border-color: var(--main-color);
}

.sidebar .search .input-box button{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

.sidebar .search .input-box button:hover{
    background-color: var(--main-color);
}

/*-- 2- Category --*/ 
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem 0rem;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.1);
}

.sidebar .category a:last-child{
    margin-bottom: 0;
}

.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.sidebar .category a span i{
    font-size: 1.8rem;
    color: var(--main-color);
}

.sidebar .category a p{
    font-size: 1.5rem;
}

.sidebar .category a:hover span,
.sidebar .category a:hover p{
    color: var(--main-color);
}

/*-- 3- Post Items --*/
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar .post-item:last-child{
    margin-bottom: 0;
}

.sidebar .post-item img{
    height: 8rem;
    width: 8rem;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.sidebar .recent-posts .post-item img{
    width: 10rem;
}

.sidebar .post-item a{
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.sidebar .recent-posts .post-item a{
    font-size: 1.8rem;
}

.sidebar .post-item a:hover{
    color: var(--main-color);
}

.sidebar .post-item .price p{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
}

.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: line-through;
    padding-left: 0.2rem;
}

/*-- 4- Tags --*/
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
}

.sidebar .tag-item{
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    padding: 1rem 1.6rem;
}

.sidebar .tag-item:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*----- 1- Home-----*/
.home{
    padding: 0;
    position: relative;
    height: 70rem;
}

.home .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.home .content .text{
    width: 90rem;
    margin-top: 8rem;
}

.home .content h5{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.home .content h1{
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.1;
}

.home .content h1 span{
    color: var(--main-color);
}

.home .content .counter{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 3rem;
}

.home .counter-item h3{
    color: var(--white);
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home .counter-item span{
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 2- Features -----*/
.features{
    padding-bottom: 2rem;
}

.features .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.feature-item {
    cursor: pointer;
    text-align: center;
    background-color: var(--black);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-3);
}

.feature-item i{
    height: 8rem;
    width: 9rem;
    margin: 0rem auto;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.feature-item h3{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-item p{
    color: var(--light-grey);
}

/*----- 3- Counter -----*/
.counting{
    padding: 4rem 5%;
    margin: 1rem 0;
    display: -webkit-box;  
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 4rem;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
}

.counting .box i{
    margin: 0 auto;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 4.5rem;
}

.counting .box .count{
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 500;
}

.counting .box h3{
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
}

/*----- 4- Section Slider -----*/
.section-slider{
    overflow: hidden;
    padding: 0.5rem;
}

/*----- 5- Why Attend -----*/
.whyAttend{
    padding: 0;
}

.whyAttend .box-container{
    background-image: url("../../assets/images/Background/whyAttend.jpg");
}

.whyAttend .content p{
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--light-grey);
} 

.whyAttend .whyAttend-points{
    list-style-type: none;
    padding-top: 0.5rem;
}

.whyAttend .whyAttend-points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
}

.whyAttend .whyAttend-points li i{
    height: 7rem;
    width: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.4rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.whyAttend .whyAttend-points .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
}

.whyAttend .whyAttend-points li h5{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.whyAttend .whyAttend-points li p{
    color: var(--light-grey);
}

/*----- 6- Banner -----*/
.banner{
    padding: 8rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../../assets/images/Background/Banner.jpg");
    background-position: left;
    background-size: cover;
}

.banner .content{
    width: 70rem;
}

.banner .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
    padding-bottom: 0;
}

.banner h2{
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

/*----- 7- Speaker Slider -----*/
.speaker-slider{
    overflow: hidden;
    padding: 0.5rem;
}

/*----- 8- Testimonials -----*/
.testimonial-bg{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 9- Newsletter -----*/
.newsletter-subscribe{
    padding: 8rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url("../../assets/images/Background/Newsletter.jpg");
    background-position: center;
    background-size: cover;
}

.newsletter-subscribe .content{
    width: 70rem;
    text-align: center;
}

.newsletter-subscribe h2{
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
}

.newsletter-subscribe p{
    letter-spacing: 0.15rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.newsletter-subscribe .box-container {
    max-width: 60rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-2);
}

.newsletter-subscribe input{
    padding: 0rem 1.5rem;
    width: 100%;
    color: var(--secondary-color);
    background-color: var(--white);
    text-transform: none;
    font-size: 1.5rem;
}

.newsletter-form .alert {
    min-height: 3.5rem;
    display: block;
    font-size: 1.6rem;
    color: var(--white);
    padding-top: 1rem;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

/*----- 10- Blogs -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

/*----- 11- Sponsor Slider -----*/
.home-sponsors{
    background-color: rgba(0, 0, 0, 0.05);
}

.sponsors .sponsor-slider{
    overflow: hidden;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
}

/*----- 1- About Us -----*/
.about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
}

.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.about .sub-image{
    height: 50rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.about .image img{
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.about .sub-image.one img{
    height: 50%;
}

.about .sub-image.two{
    margin-top: 2rem;
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.about .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.about .heading h2{
    text-align: left;
}

.about .content p{
    padding-bottom: 1rem;
}

.about .about-features{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.about .about-features li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.about .about-features i{
    color: var(--main-color);
}

.about .about-features span{
    color: var(--grey);
}

/*----- 2- Team -----*/
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.team-item {
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 40rem;
    border-bottom: var(--custom-border);
    overflow: hidden;
    border-radius: var(--border-radius-3);
}

.team-item .content{
    position: absolute;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    background:         linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
}

.team-item .text{
    text-align: center;
    padding-top: 1rem;
}

.team-item .content h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.2rem;
}

.team-item .content h3:hover{
    color: var(--main-color);
}

.team-item .content p{
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
}

.team-item .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--main-color);
    border-radius: 5rem;
    padding: 0.5rem 1.5rem;
}

.team-item .icon-container a{
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.7rem;
    color: var(--white);
}

.team-item .icon-container a:hover{
    color: var(--secondary-color);
}

/*----- 3- Team Single -----*/
.team-single .team-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-3);
}

.team-single .image{ 
    width: 40rem;
    height: 50rem;
    border-radius: var(--border-radius-3);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.team-single .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.team-single .information h3{
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.team-single .information h5{
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.team-single .information .team-about{
    padding-top: 1.5rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.team-single .text{
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.7;
}

.team-single .team-personal-info{
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.team-single .team-personal-info li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.team-single .team-personal-info i{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-right: 0.5rem;
}

.team-single .team-personal-info h6{
    font-size: 2rem;
    color: var(--secondary-color);
}

.team-single .team-personal-info span{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--grey);
    text-transform: none;
}

.team-single .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.team-single .icon-container a{
    height: 4.5rem;
    width: 4.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.team-single .icon-container a:hover{
    background: var(--secondary-color);
}

.team-single .page-info{
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}

.team-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.team-single h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.team-single .sub-section{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
            flex: 1 1 40rem;
}

.team-single .skills .box{
    padding: 1rem 0;
}

.team-single .skills .box h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.team-single .skills .box .progress-bar{
    width: 100%;
    background: var(--secondary-color);
    overflow: hidden;
    height: 1.2rem;
    border-radius: 50rem;
}
 
.team-single .skills .box .progress-bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
}

.team-single .events .box-container{
    padding-top: 1rem;
}

/*----- 4- Testimonials -----*/
.testimonial-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem;
}

.testimonial .swiper-pagination-bullet{
    background: var(--secondary-color);
    opacity: 0.9;
}

.testi-item{
    background-color: var(--black);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.testi-item .content{
    padding: 4rem 3rem;
}

.testi-item .rating i{
    font-size: 2rem;
    color: var(--main-color);
}

.testi-item p{
    padding-top: 3rem;
    color: var(--light-grey);
}

.testi-item .bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color:var(--main-color);
    padding: 2rem 3rem;
}

.testi-item .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.testi-item img{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}

.testi-item h4{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.testi-item h6{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-grey);
}

.testi-item .fa-quote-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 7rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

/*----- 5- Faqs -----*/
.faq .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.accordion{
    background: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-1);
} 
 
.accordion:last-child{
    margin-bottom: 0rem;
}  

.accordion .accordion-heading{
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1.8rem;
}

.accordion.active .accordion-heading {
    border-bottom: 0.3rem solid var(--main-color);
}

.accordion .accordion-heading i{
    height: 4rem;
    width: 4rem;
    border-radius: 0.2rem;
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.accordion .accordion-heading h3{
    color: var(--secondary-color);
}

.accordion.active .accordion-heading h3{
    color: var(--main-color);
}

.accordion.active .accordion-content{
    display: block;
}

.accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    height: 55rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (05)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Tab Informatin -----*/
.tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-buttons .button{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    color: var(--white);
    background-color: var(--secondary-color);
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--border-radius-1);
}

.tab-buttons .button:hover,
.tab-buttons .button.active{
    background-color: var(--main-color);        
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;
}

.tab-sections .tab-section{
    display: none;
}

.tab-sections .tab-section.active{
    display: block;
    margin-top: 2rem;
}

/*----- 02- Page Single -----*/
.page-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.page-single .sidebar .sidebar-item{
    margin-bottom: 0;
}

.page-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
}

.page-info .image{
    height: 40rem;
}

.page-info .image img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.page-info .content{
    padding-top: 2rem;
}

.page-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    padding-bottom: 1rem;
}

.page-info .important{
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.page-info p{
    padding-bottom: 1rem;
}

.page-info .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.page-info .page-gallery img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.page-info .sub-section{
    padding-top: 2rem;
}

.page-info .sub-section p{
    margin-bottom: -1rem;
}

.page-info .sub-section ul{
    list-style: none;
}

.page-info .sub-section ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.page-info .sub-section ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-info .sub-section ul strong{
    color: var(--black);
}

/*----- 03- Page Sidebar -----*/
.page-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
    flex: 1 1 25rem;
    padding: 4rem;
    background: var(--black);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.page-sidebar .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1;
}

.page-sidebar .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

.page-sidebar .detail-item:last-child{
    padding-bottom: 0;
}

.page-sidebar .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.8rem;
    color: var(--main-color);
}

.page-sidebar .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-bottom: 0.5rem;
}

.page-sidebar .detail-item .detail-content p{
    font-weight: 400;
    color: var(--light-grey);
    line-height: 1.3;
}

.page-sidebar .gmail{
    text-transform: none;
}

.page-sidebar .btn{
    margin-top: 3rem;
}

/*----- 04- Custom Form -----*/
.custom-form{
    padding: 2rem 0;
}

.custom-form .alert{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-left: 1rem;
}

.custom-form .box-container{
    background-position: center;
    background-size: cover;
}

.custom-form .content{
    padding: 4rem 5%;
    max-width: 90rem;
    padding-right: 20%;
    background: var(--custom-bg);
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.custom-form .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.custom-form .heading h2{
    text-align: left;
}

.custom-form form{
    width: 100%;
}

/*--------------- PAGES ---------------*/

/*----- 1- Gallery -----*/
.gallery .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 2rem;
    grid-template-areas: 
    'gallery-1 gallery-1 gallery-4'
    'gallery-2 gallery-3 gallery-4'
    'gallery-5 gallery-6 gallery-6'
    'gallery-5 gallery-7 gallery-8'
}

.gallery-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    cursor: pointer;
    height: 30rem;
}

/* Assign grid areas to Each Category Box */
.gallery-1 {
    grid-area: gallery-1;
}

.gallery-2 {
    grid-area: gallery-2;
}

.gallery-3 {
    grid-area: gallery-3;
}

.gallery-4 {
    grid-area: gallery-4;
    height: auto;
}

.gallery-5 {
    grid-area: gallery-5;
    height: auto;
}

.gallery-6 {
    grid-area: gallery-6;
}

.gallery-7 {
    grid-area: gallery-7;
}

.gallery-8 {
    grid-area: gallery-8;
}

.gallery-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    position: absolute;
    left: 10%;
    top: 10%;
    opacity: 0;
    width: 80%;
    height: 80%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background-color:rgba(235, 54, 120, 0.9);
}

.gallery-item:hover .content{
    opacity: 1;
}

.gallery-item a i{
    scale: 0;
    font-size: 5rem;
    color: var(--white);
}

.gallery-item:hover a i{
    scale: 1;
}

/*----- 2- Portfolio -----*/
.portfolio .tab-buttons{
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio-item{
    width: 33.3%;
    padding: 0.8rem;
}

.portfolio-content{
    height: 30rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.portfolio-item .content{
    position: absolute;
    left: 2.5%;
    bottom: 0;
    width: 95%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0.9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2rem;
    gap: 1rem;
    border-radius: var(--border-radius-3);
}

.portfolio-item .text p{
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}

.portfolio-item .text h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.portfolio-item .text h3:hover{
    color: var(--main-color);
}

.portfolio-item .view{
    height: 5rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    background-color: var(--main-color);
}
 
.portfolio-item a i{
    font-size: 2rem;
    color: var(--white);
}

/*----- 3- Portfolio Single -----*/

/*----- 4- Services -----*/
.services .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.service-item{
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 35rem;
    overflow: hidden;
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.service-item .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.service-item .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-item i{
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-item h6{
    color: #02010100;
    font-size: 7rem;
    font-weight: 900;
    -webkit-text-stroke-width: 0.1rem;
    stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--white);
    stroke: var(--white);
    line-height: 1;
}

.service-item h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.service-item h3:hover{
    color: var(--main-color);
}

.service-item p{
    color: var(--light-grey);
    padding-bottom: 2.5rem;
}

/*----- 5- Service Single -----*/
.service-single .faq .accordion-container{
    padding-top: 0.5rem;
}

/*----- 6- Tickets -----*/
.tickets .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

.ticket-item{
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-3);
    overflow: hidden;
}

.ticket-header, 
.ticket-footer{
    text-align: center;
    background-color: var(--black);
}

.ticket-header{
    position: relative;
}

.ticket-footer{
    padding: 2rem;
}

.ticket-item .top{
    height: 10rem;
    width: 100%;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(100% 0, 100% 65%, 50% 100%, 0 65%, 0 0);
            clip-path: polygon(100% 0, 100% 65%, 50% 100%, 0 65%, 0 0);
}

.ticket-item .intro{
    position: relative;
    padding: 2rem;
    padding-top: 7rem;
}

.ticket-item .icon{
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 12rem;
    width: 12rem;
    border: 1rem solid var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 4rem;
    color: var(--white);
    background-color: var(--main-color);
    margin: 0 auto;
    border-radius: 50%;
    z-index: 1;
}
  
.ticket-item h3{
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
}
  
.ticket-item p{
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
}
  
.ticket-item .price{
    color: var(--main-color);
    font-size: 4rem;
    font-weight: 600;
}

.ticket-item ul{ 
    border-top: 0.1rem dashed var(--light-grey);
    padding: 1rem 2rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
    
.ticket-item ul li{
    padding: 0.6rem 0;
    font-size: 1.6rem;
    color: var(--light-grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 0.7rem;
}
  
.ticket-item ul li i{
    height: 1.8rem;
    width: 1.8rem;
    color: var(--main-color);
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ticket-item .cut{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem;
    background-color: var(--black);
    height: 2rem;
    margin: 0 1rem;
    background-size: 0.4rem 0.2rem;
    background-repeat: repeat-x;
    background-position: center;
    position: relative;
}

.ticket-item .cut .dash{
    height: 0.1rem;
    width: 100%;
    border: 0.1rem dashed var(--light-grey);
}

.ticket-item .cut:before,
.ticket-item .cut:after{
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    border: 0.5rem solid transparent;
    border-top-color: var(--black);
    border-right-color: var(--black);
    border-radius: 100%;
    pointer-events:none;
}

.ticket-item .cut:before{
    left: -10px;
}

.ticket-item .cut:after{
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
        transform: translate(-50%, -50%) rotate(225deg);
    right: -3.9rem;
}

/*----- 7- Registration -----*/
.registration-form .box-container{
    background-image: url("../../assets/images/Background/Register.jpg");
}

.registration-form .content{
    padding: 4rem 5%;
    margin-left: auto;
    max-width: 85rem;
    padding-left: 20%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
}

/*----- 8- Sponsors -----*/
.sponsors .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.sponsor-item{
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*----- 9- Venue -----*/
.venue{
    padding: 0;
}

.venue iframe{
    width: 100%;
    height: 30rem;
    margin: 1rem 0;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.venue-info{
    padding: 0;
}

.venue-info .box-container{
    background-image: url("../../assets/images/Background/venueInfo.jpg");
}

.venue-info .content{
    margin-left: auto;
    padding: 4rem;
    max-width: 70rem;
    background: var(--custom-bg);
    -webkit-clip-path: none;
            clip-path: none;
}

.venue-points{
    list-style-type: none;
}

.venue-points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.4);
}

.venue-points li:last-child{
    border: 0;
    padding-bottom: 0;
}

.venue-points li i{
    height: 7rem;
    width: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.4rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    border-radius: 50%;
}

.venue-points .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
}

.venue-points li h5{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

.venue-points li p{
    color: var(--light-grey);
}

.venue-points .gmail{
    text-transform: none;
}

.venue-gallery .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 2rem;
}
  
.venue-gallery .page-gallery img{
    height: 40rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.venue-features{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/venueFeatures.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/venueFeatures.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 5%;
}

.venue-features .venue-feature{
    text-align: center;
}

.venue-features .venue-feature i{
    height: 8rem;
    width: 10rem;
    font-size: 2.5rem;
    margin: 0rem auto;
    margin-bottom: 1.5rem;
    color: var(--white);
    background-color: rgba(241, 18, 162, 0.9);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.venue-features .venue-feature h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.venue-features .venue-feature p{
    color: var(--light-grey);
}

.hotel-rooms .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.room-item{
    height: 40rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.room-item .content{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    background:         linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2rem;
}

.room-item .text h3{
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--white);
}

.room-item .text p{
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

/*------------------------------ (05)-Pages (End) ------------------------------*/




/*------------------------------ (04)-Speaker (Start) ------------------------------*/

/*----- 1- Speakers -----*/

/*----- 2- Speaker Single -----*/
.speaker-single .image{ 
    height: 60rem;
}

/*------------------------------ (04)-Speaker (End) ------------------------------*/




/*------------------------------ (05)-Schedule (Start) ------------------------------*/

/*----- 1- Schedule Tab -----*/
.schedule .tab-buttons{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.schedule .tab-buttons button{
    display: inline-block;
    padding: 2rem 3rem;
    letter-spacing: 0.1rem;
    font-size: 2.2rem;
}

.schedule-date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2.5rem;
}

.schedule-date h5{
    font-size: 3.5rem; 
    font-weight: 500;
    color: var(--secondary-color);
}

.schedule-date h2{
    position: relative;
    font-size: 3.5rem; 
    font-weight: 500;
    color: var(--main-color);
    line-height: 1;
    padding-bottom: 1.2rem;
}

.schedule-date h2:before{
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
}

.schedule-item{
    border-radius: var(--border-radius-3);
    margin-bottom: 2rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.session-intro{
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
}

.session-intro .intro-content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(241, 18, 162, 0.8);
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    color: var(--white);
}

.session-intro .session-timing{
    font-size: 2.5rem;
    font-weight: 600;
}

.session-intro .session-venue{
    font-size: 2rem;
}

.schedule-item .session-topic{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50rem;
            flex: 1 1 50rem;
    padding: 2rem;
}

.schedule-item .session-topic h3{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.schedule-item .session-topic h3:hover{
    color: var(--main-color);
}

.session-speakers{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25rem;
            flex: 1 1 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    border-left: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.session-speaker img{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}

.session-speaker{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}

.session-speaker .text{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 10rem;
            flex: 1 1 10rem;
}

.session-speaker h4{
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.session-speaker h6{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
}

/*----- 2- Schedule List -----*/
.schedule.list .schedule-container{
    display: block;
    margin: 4rem 0;
}

/*----- 3- Schedule Event -----*/
.events .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(42rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr));
    gap: 1.5rem;
}

.event-item{
    height: 30rem;
    overflow: hidden;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
}

.event-item .content{
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
    padding: 2rem;
}

.event-item .date{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--secondary-color);
    border-bottom: var(--custom-border);
    border-right: var(--custom-border);
    border-radius: var(--border-radius-3);
    padding: 1.5rem;
    text-align: center;
    width: 8rem;
    line-height: 1;
}

.event-item .date span{
    font-size: 3.5rem;
    font-weight: 500;
}

.event-item h5{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.event-item .main-heading{
    display: block;
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.event-item .main-heading:hover{
    color: var(--main-color);
}

.event-item h3{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--main-color);
}

/*----- 4- Schedule Single -----*/
.session-info iframe{
    width: 100%;
    height: 30rem;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.session-info .team .box-container{
    padding-top: 1rem;
}

/*------------------------------ (05)-Schedule (End) ------------------------------*/



/*------------------------------ (06)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
.blog-item{
    border-bottom: var(--custom-border);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    border-radius: var(--border-radius-3);
}

.blog-item .image{
    height: 30rem;
} 

.blog-item .label{
    position: absolute;
    right: 0;
    top: 3rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    background-color:rgba(241, 18, 162, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-item .content{
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    background:         linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
}

.blog-item .main-heading{
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    padding-bottom: 1rem;
}

.blog-item .main-heading:hover{
    color: var(--main-color);
}

.blog-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    border-top: 0.2rem solid rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
}

.blog-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-item h3 i{
    height: 2rem;
    width: 2rem;
    font-size: 1.8rem;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.blog-item h3 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--light-grey);
}

/*----- 02- Comments -----*/
.comment-item{
    padding-bottom: 1rem;
}

.comment-item:last-child{
    padding-bottom: 0;
}

.comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
}

.comment .comment-image{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 0.4rem solid var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.comment .comment-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.comment .comment-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.comment h3{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.comment h6{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--main-color);
}

.comment .text{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

.comment .icon-item{
    display: inline-block;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.7rem 1.5rem;
    border-radius: 5rem;
    cursor: pointer;
}

.comment .icon-item:hover{
    background-color: var(--secondary-color);
}

.comment .icon-item i{
    font-size: 1.5rem;
    padding-right: 0.5rem
}

.comment .icon-item span{
    font-size: 1.6rem;
}

.comment.reply{
    margin-left: 12rem;
}

.comment.reply .comment-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
}

/*----- 03- Pages-No -----*/
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}

.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.pages-no .item{
    color: var(--white);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    border-radius: var(--border-radius-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/*--------------- PAGES ---------------*/
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Blog Grid -----*/
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.5rem;
}

.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

/*----- 2- Blog List -----*/
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

.blog-container.list .blog-item .image{
    height: 40rem;
}

/*----- 3- Blog Single -----*/
/*
1- Blog Info
2- Comments
3- Leave A Reply
*/

.blog-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

/*-- 1- Blog Info --*/ 
.blog-info .image{
    position: relative;
}

.blog-info .label{
    position: absolute;
    right: 0;
    top: 3rem;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    background-color:rgba(241, 18, 162, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
  
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.blog-info .details h5{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-info .details h5 i{
    font-size: 1.8rem;
    color: var(--main-color);
}

.blog-info .details h5 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}
  
.blog-info .important{
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.8;
    color: var(--light-grey) !important; 
    background-color: var(--black);
    border: var(--custom-border);
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-info .important i{
    height: 7rem;
    width: 8rem;
    font-size: 3.2rem;
    color: var(--white);
    background-color: var(--main-color); 
    margin: 0 auto;
    margin-bottom: 1.5rem;
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-info .important .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.blog-info .important .intro span{
    height: 0.2rem;
    width: 2rem;
    background-color: var(--main-color);
}

.blog-info .important .intro h6{
    font-size: 2rem;
    color: var(--main-color);
    font-style: normal;
}

.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}
  
.blog-info .tags span{
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 5rem;
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
}

.blog-info .tags span:hover{
    background-color: var(--secondary-color);
}
 
.blog-info .share h3{
    color: var(--secondary-color);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
.blog-info .share i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    color: var(--grey);
    font-size: 1.6rem;
}
  
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-single .comments{
    margin: 4rem 0;
    overflow: hidden;
} 

.blog-single .comments h4{  
    font-size: 2.5rem; 
    color: var(--secondary-color); 
    padding-bottom: 2rem;
} 

/*-- 3- Leave A Reply --*/
.blog-single .leave-reply h3{
    font-size: 2.5rem; 
    color: var(--secondary-color); 
    padding-bottom: 2rem;
}

/*------------------------------ (06)-Blog (End) ------------------------------*/



/*------------------------------ (07)-Shop (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/
.filter .box-container{
    padding-top: 4rem;
}

.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--secondary-color);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.range-input{
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: #242424;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
            appearance: textfield;
    color: var(--secondary-color);
    background-color: transparent;
}

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

.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-3);
}

.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.shop .intro .styles a{
    font-size: 2rem;
    color: var(--secondary-color);
}

.shop .intro .styles a:hover{
    color: var(--main-color);
}

.shop .intro .sorting-type label{
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    padding: 1rem;
}

/*----- 03- Quantity Box -----*/
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--secondary-color);
    cursor:pointer;
    background-color: transparent;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
    
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}

/*----- 04- product-item -----*/
.product-item{
    background-color: var(--white);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
} 

.product-item .image {
    width: 100%;
    height: 25rem;
    position: relative;
    overflow: hidden;
}

.product-item .options{
    position: absolute;
    top: 0rem;
    left: 0rem;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    opacity: 0;
}

.product-item:hover .options{
    opacity: 1;
}

.product-item .options a{
    height: 5rem;
    width: 5rem;
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--white);
    background: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
    scale: 0;
}

.product-item:hover .options a{
    scale: 1;
}

.product-item .options a:hover {
    color: var(--main-color);
    background: var(--white);
}

.product-item .content{
    padding: 2rem;
}

.product-item .rating i{
    font-size: 1.4rem;
    color: var(--main-color);
    padding-bottom: 0.5rem;
}

.product-item h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.product-item h3:hover{
    color: var(--main-color);
}

.product-item p{
    padding-bottom: 1rem;
}

.product-item .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-item .price span{ 
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--secondary-color);
    padding-left: 0.2rem;
}

/*----- 06- Shop-Title -----*/
.shoplist-title{
    background-color: var(--main-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    font-size: 2rem;
    text-align: center;
}

.shoplist-title h3.product-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: left;
}

/*----- 07- Cart-Summary -----*/
.summary-list{
    padding-top: 1rem;
} 

.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color); 
} 

.summary-item .name{
    font-weight: 600;
}

.summary-item .value{
    font-weight: 500;
    color: var(--main-color);
}

/*----- 08- Radio Button -----*/
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}
  
.payment input[type="radio"] {
    position: absolute;
    opacity: 0;
}
  
.payment input[type="radio"] + 
.radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 0.1rem solid var(--grey);
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}
  
.payment input[type="radio"]:checked + 
.radio-label:before {
    background-color: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
            box-shadow: inset 0 0 0 4px #f4f4f4;
    outline: none;
    border-color: var(--main-color);
}

/*----- 09- Account-Form -----*/
.account-form{
    max-width: 45rem;
    padding: 5rem;
    background: var(--black);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 0rem auto;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius-3);
}

.account-form input:-webkit-autofill,
.account-form input:-webkit-autofill:hover,
.account-form input:-webkit-autofill:focus,
.account-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
  
.account-form h3{ 
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.account-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    border: 0.15rem solid var(--white);
    border-radius: var(--border-radius-1);
    padding: 1.2rem;
    text-transform: none;
    margin: 0.7rem 0;
}

.account-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}
.account-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form .box:focus{
    border-color: var(--main-color);
}

.account-form p{
    padding-top: 2rem;
    color: var(--white);
    text-align: center;
    padding-bottom: 1rem;
}

.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1.5rem;
}

.account-form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

.account-form .link:hover{
    text-decoration: underline;
}

.account-form .checkbox-label {
    color: var(--grey);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.account-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}
  
.account-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}
  
.account-form .checkbox-label input:checked ~ 
.checkbox-indicator {
    background: var(--main-color);
    outline-color: var(--main-color);
}
  
.account-form .checkbox-indicator:after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    width: 0.3rem;
    height: 0.8rem;
    border: solid var(--light-grey);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    display: none;
}

.account-form .checkbox-label input:checked ~ 
.checkbox-indicator:after {
    display: initial;
}

/*--------------- PAGES ---------------*/
.shop{
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

/*----- 2- Shop Standard -----*/
.shop .product-container.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.shop .product-container.list .product-item .image{
    height: 100%;
}

.shop .product-container.list .product-item img{
    height: 100%;
}

.shop .product-container.list .product-item .content{
    text-align: left;
    padding: 1.5rem;
}

/*----- 3- Product Single -----*/
.product-single .product-des{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 3.5rem;
    border-radius: var(--border-radius-3);
}

.product-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 2rem;
}

.product-single .product-des .box-container .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .image-container{
    max-width: 50rem;
}

.product-single .product-des .box-container .image-container .main{
    width: 100%;
    height: 40rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.product-single .product-des .box-container .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(7rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-single .product-des .box-container .image .change-btns img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;    
}

.product-single .product-des .image .change-btns img:hover,
.product-single .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

.product-single .product-des .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .content h2{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.product-single .product-des .box-container .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-single .product-des .box-container .content .intro .rating{
    color: var(--main-color);
    font-size: 1.6rem;
}

.product-single .product-des .box-container .content .intro span{
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 500;
    padding-left: 1rem;
}

.product-single .product-des .box-container .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.product-single .product-des .box-container .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-single .product-des .box-container .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

.product-single .product-des .box-container .content p{
    padding: 2rem 0;
    margin-top: 1rem;
    font-weight: 400;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.product-single .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

.product-single .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    width: 15rem;
}

.product-single .product-des .box-container .content .btn{
    margin: 2rem 0;
}

.product-single .categories,
.product-single .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
}

.product-single .qty h4,
.product-single .categories h4,
.product-single .tags h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-single .categories a,
.product-single .tags a{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-color);
    padding: 0 0.5rem;
}

.product-single .categories a:hover,
.product-single .tags a:hover{
    color: var(--secondary-color);
}

/*-- Product Addtional Information --*/
.product-single .tab-info{
    margin-top: 4rem;
}

.product-info .additional-info .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.product-info .additional-info h3{
    width: 20rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.product-info .additional-info span{
    font-size: 1.6rem;
    color: var(--grey);
}

.product-info h2{
    font-size: 3rem; 
    color: var(--secondary-color); 
    padding-bottom: 1rem;
}

.product-info .reviews{
    margin-bottom: 2rem;
} 

.product-info .leave-reply{
    width: 60rem;
} 

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/*----- 4- Wishlist  ------*/
.wishlist-container{
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.wishlist-container::-webkit-scrollbar{
    height: 0.8rem;
}

.wishlist .container{
    min-width: 90rem;
}

.wishlist .box-container{
    padding: 0rem 1rem;
}

.wishlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.wishlist-item:last-child{
    border: none;
}

.wishlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.wishlist-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.wishlist-item img{
    height: 8rem;
    width: 8rem;
    background-color: #f7f7f7;
    border-radius: var(--border-radius-3);
}

.wishlist-item .name{
    color: var(--secondary-color);
    font-weight: 600;
}

.wishlist-item .price{
    color: var(--grey);
    font-weight: 500;
}

.wishlist-item .status.in{
    color: green;
}

.wishlist-item .status.out{
    color: red;
}

.wishlist-item .action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.wishlist-item a{
    font-size: 2rem;
    cursor: pointer;
}

.wishlist-item a:hover{
    color: var(--main-color);
}

.wishlist-item .delete{
    color: red;
}

.wishlist-item .cart{
    color: var(--secondary-color);
}

/*----- 5- Cart  ------*/
.shopping-cart{
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
}

.cart .container{
    min-width: 90rem;
}

.shopping-cart::-webkit-scrollbar{
    height: 0.8rem;
}

.cart .box-container{
    padding: 0rem 1rem;
}

.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.cart-item:last-child{
    border: none;
}

.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.cart-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.cart-item img{
    height: 8rem;
    width: 8rem;
    background-color:#f7f7f7;
    border-radius: var(--border-radius-3);
}

.cart-item .name{
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item .price,
.cart-item .total{
    color: var(--grey);
}

.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

.cart-item .icon:hover{
    color: var(--main-color);
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 40rem;
    padding: 1rem;
    margin-left: auto;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.cart .cart-summary .btn{
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/*----- 6- Checkout -----*/
/*
1- Payment Method
2- Cart Total
*/

.checkout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1.5rem;
}

.checkout .heading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.checkout h2{
    font-size: 3.5rem;
}

.checkout h2:before{
    left: 0;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
        transform: translateX(0%);
}

.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;  
}

.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.checkout-item{
    margin-bottom: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.checkout .box-1 .checkout-item:last-child{
    margin-bottom: 0;   
}

/*-- 1- Payment Method --*/
.payment-methods .payment{
    margin-bottom: 1.5rem;
}

.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.payment-body{ 
    display: none;
}

.payment-body.active{
    display: block;
}

.payment-methods .payment .payment-body p{
    font-size: 1.4rem;
    padding-top: 1rem;
}

.checkout .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.checkout .btn{
    width: 100%;
    text-align: center;
}

/*----- 7- Login -----*/
.login form .info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2rem 0;
}
  
.login form label{
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}
  
/*----- 8- Register -----*/
.register form .checkbox-label{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 2rem 0;
}
  
.register form label{
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}
  
.register form label span{
    color: var(--main-color);
}

/*------------------------------ (07)-Shop (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/
.contact{
    padding: 2rem 0;
}

.contact .box-container{
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Contact.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../../assets/images/Background/Contact.jpg");
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 4rem 5%;
    gap: 4rem;
}

/*-- Contact Information --*/
.contact-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.contact-info .contact-info-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
}

.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contact .contact-info .info-item i{
    height: 8rem;
    width: 10rem;
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: var(--custom-clip-path);
            clip-path: var(--custom-clip-path);
}

.contact .contact-info .info-item h3{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 0.7rem;
}

.contact .contact-info .info-item p{
    font-size: 1.6rem;
    color: var(--light-grey);
}

.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

.contact .heading h2{
    color: var(--white);
}

.contact .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}

/*-- Contact Form --*/
.contact form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.contact form .alert{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-left: 1rem;
} 

/*-- Google Map --*/
.contact iframe{
    width: 100%;
    height: 40rem;
    margin-top: 1rem;
}


/*------------------------------ (06)-Contact (End) ------------------------------*/

.top-games {
  padding: 60px 20px;
  background-color: #0e0f2c;
  color: #fff;
  text-align: center;
}

.top-games .heading h2 {
  font-size: 2.5rem;
  color: #ff1cad; 
  margin-bottom: 40px;
}

.top-games .heading span {
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1e1f3e;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
}

.game-card:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.game-card:hover .overlay {
  opacity: 1;
}

.btn-play {
  background-color: #ff1cad;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: #d80078;
}

/* ==================  Promotions Section ================== */

.steugene-promos{
  padding:80px 20px; 
}

.steugene-promos .container{
  max-width:1200px;
  margin:auto;
}

.steugene-promos .heading.center{
  text-align:center;
  margin-bottom:60px;
}

.promo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.promo-column{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.promo-card{
  background:rgba(0,0,0,0.03);
  border-radius:14px;
  padding:25px;
  border:1px solid rgba(0,0,0,0.06);
}

.promo-card.highlight{
  border:1px solid rgba(255,28,173,0.35);
}

.promo-card.soft{
  background:rgba(0,0,0,0.02);
}

.big-bonus{
  font-size:1.3rem;
  font-weight:700;
  color:#ff1cad;
  margin:10px 0;
}

.badge{
  display:inline-block;
  background:#ff1cad;
  color:#fff;
  padding:5px 12px;
  font-size:.75rem;
  border-radius:20px;
  margin-bottom:10px;
}

.badge.accent{
  background:#ffd000;
  color:#111;
}

.badge.small{
  font-size:.65rem;
  margin-right:8px;
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.feature{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.feature i{
  color:#ff1cad;
  font-size:1.2rem;
  margin-top:4px;
}

.styled-list{
  list-style:none;
  padding:0;
  margin-top:10px;
}

.styled-list li{
  padding:8px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.promo-list{
  list-style:none;
  padding:0;
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.promo-list li{
  background:rgba(0,0,0,0.02);
  padding:12px 15px;
  border-radius:10px;
  line-height:1.5;
  border:1px solid rgba(0,0,0,0.05);
}

@media(max-width:900px){
  .promo-grid{
    grid-template-columns:1fr;
  }
}

.promo-column{
  display:flex;
  flex-direction:column;
  height:100%;
}

.promo-column .promo-card:last-child{
  margin-top:auto;   /* ВОТ ЭТО КЛЮЧ */
}

/* ================== Access & Registration Section ================== */

.steugene-access{
  padding:80px 20px;
}

.access-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:40px;
}

.access-card{
  background:#ffffff;
  border-radius:16px;
  padding:30px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  position:relative;
}

.access-card.highlight{
  border:1px solid rgba(255,28,173,0.35);
}

.access-badge{
  display:inline-block;
  font-size:.75rem;
  padding:6px 12px;
  background:#f1f1f1;
  border-radius:20px;
  margin-bottom:12px;
}

.access-badge.accent{
  background:#ff1cad;
  color:#fff;
}

.access-list{
  list-style:none;
  padding:0;
  margin-top:15px;
}

.access-list li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.access-list i{
  color:#ff1cad;
  margin-top:4px;
}

/* STEPS DESIGN */
.access-steps{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:10px;
}

.step{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.step-number{
  min-width:36px;
  height:36px;
  border-radius:50%;
  background:#ff1cad;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.8rem;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .access-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Online Casino App ================== */

.steugene-app{
  padding:80px 20px;
}

.app-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-top:40px;
  align-items:start;
}

.app-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}

..app-image img{
  width:100%;
  border-radius:0;     
  box-shadow:none;     
}


/* FEATURES */
.app-features{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.app-feature{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.app-feature i{
  color:#ff1cad;
  font-size:1.3rem;
  margin-top:4px;
}

/* INSTALL BLOCK */
.app-install{
  margin-top:10px;
}

.app-steps{
  list-style:none;
  padding:0;
  margin-top:10px;
}

.app-steps li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.store-buttons{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.store-buttons img{
  height:48px;
  width:auto;
}

/* RESPONSIVE */
@media(max-width:900px){
  .app-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Payments ================== */

.steugene-payments{
  padding:80px 20px;
  background:#fff;
}

.steugene-payments .container{
  max-width:1200px;
  margin:auto;
}

.steugene-payments .heading.center{
  text-align:center;
  margin-bottom:40px;
}

.payments-intro{
  max-width:900px;
  margin:0 auto 40px;
}

.payments-intro p{
  margin-bottom:15px;
}

/* TABLE */
.payments-table{
  background:#0e0f2c;
  padding:30px;
  border-radius:12px;
  color:#fff;
  margin-bottom:40px;
}

.payments-table table{
  width:100%;
  border-collapse:collapse;
}

.payments-table th,
.payments-table td{
  padding:15px;
  text-align:left;
}

.payments-table thead tr{
  border-bottom:1px solid #444;
}

/* INFO GRID */
.payments-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.payments-info{
  background:#f7f7f9;
  border-radius:14px;
  padding:25px;
}

.payments-info h4{
  margin-bottom:10px;
}

.payments-info i{
  color:#ff1cad;
  margin-right:8px;
}

/* PAYMENT ICONS */
.payment-icon{
  width:70px;
  max-height:90px;
  display:block;
  margin:0 auto;
}

/* RESPONSIVE */
@media(max-width:900px){
  .payments-info-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Trust & Security Section ================== */

.steugene-trust{
  padding:90px 20px;
  background:#fff;
}

.steugene-trust .container{
  max-width:1200px;
  margin:auto;
}

.steugene-trust .heading.center{
  text-align:center;
  margin-bottom:50px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.trust-card{
  background:#f7f7f9;
  border-radius:16px;
  padding:30px;
  transition:.3s ease;
}

.trust-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
}

.trust-card h3{
  margin-bottom:10px;
}

.trust-card i{
  color:#ff1cad;
  margin-right:8px;
}

.trust-card ul{
  margin-top:12px;
  padding-left:18px;
}

.trust-card ul li{
  margin-bottom:6px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .trust-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .trust-grid{
    grid-template-columns:1fr;
  }
}

/* ================== Resort Experience ================== */

.steugene-resort{
  padding:90px 20px;
  background:#fff;
}

.steugene-resort .container{
  max-width:1200px;
  margin:auto;
}

.steugene-resort .heading.center{
  text-align:center;
  margin-bottom:40px;
}

.resort-intro{
  max-width:900px;
  margin:0 auto 50px;
  text-align:center;
}

.resort-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.resort-card{
  background:#f7f7f9;
  border-radius:16px;
  padding:30px;
  transition:.3s ease;
}

.resort-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
}

.resort-card i{
  color:#ff1cad;
  font-size:1.4rem;
  margin-bottom:10px;
  display:inline-block;
}

.resort-card h3{
  margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .resort-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .resort-grid{
    grid-template-columns:1fr;
  }
}

/* ================== FAQ Section ================== */

.steugene-faq{
  padding:90px 20px;
  background:#fff;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
}

.faq-item{
  border-bottom:1px solid #eee;
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  font-size:1rem;
  font-weight:600;
  padding:18px 0;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:1.2rem;
  color:#ff1cad;
}

.faq-item.active .faq-question::after{
  content:"−";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}
.faq-question{
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:.2px;
}

/* Sponsor block container */
.sponsor-item{
  display:flex;
  align-items:center;
  justify-content:center;
  height:90px;       
  padding:10px;
}

.sponsor-item a{
  width:140px;        
  height:60px;        
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Сами картинки */
.sponsor-item img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;  
}

.hero-desc{
  font-size:1.05rem;
  line-height:1.6;
  margin:20px 0 30px;
}
.home .hero-desc{
  color:#fff;
  opacity:.9;
}
/* HERO DESCRIPTION SIZE — DESKTOP */
@media (min-width: 992px){

  .home .hero-desc{
    font-size:1.5rem;      /
    line-height:1.7;
    max-width:700px;       
  }

}

/* =========================================================
   NEW HEADER — MIDNIGHT COPPER
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .header-2 {
    width: 100%;
    height: 8.8rem;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(17, 20, 23, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(184, 115, 79, 0.25);
}

/* ---------- LOGO ---------- */

.header .header-2 > .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 4rem;
}

.header .header-2 > .logo img {
    display: block;
    width: auto;
    height: 5rem;
    object-fit: contain;
}


/* ---------- RIGHT SIDE ---------- */

.header .header-2 .container {
    flex: 1;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 3.5rem;
}


/* ---------- NAVIGATION ---------- */

.header .navbar {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 2.7rem;
}

.header .navbar a {
    position: relative;

    display: flex;
    align-items: center;
    height: 100%;

    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;

    color: #F8F6F2;

    white-space: nowrap;
    text-decoration: none;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.header .navbar a:hover {
    color: #D6A084;
}


/* underline */

.header .navbar a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 2.2rem;

    width: 0;
    height: 1px;

    background: #B8734F;

    transition: width 0.25s ease;
}

.header .navbar a:hover::after {
    width: 100%;
}


/* ---------- ICON / CTA CONTAINER ---------- */

.header .icon-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}


/* ---------- CTA BUTTON ---------- */

.header .icon-container .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: auto;

    padding: 1.25rem 2.2rem;

    border: 1px solid #B8734F;
    border-radius: 0.4rem;

    background: #B8734F;
    background-image: none;

    color: #F8F6F2;

    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    box-shadow: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.header .icon-container .btn:hover {
    background: #D6A084;
    border-color: #D6A084;
    color: #111417;
}


/* ---------- MOBILE MENU ICON ---------- */

.header #menu-btn {
    display: none;

    font-size: 2.2rem;
    color: #F8F6F2;

    cursor: pointer;
}


/* ---------- HEADER AFTER SCROLL ---------- */

.header.active .header-2 {
    background: rgba(17, 20, 23, 0.97);

    border-bottom:
        1px solid rgba(184, 115, 79, 0.4);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .header .navbar {
        gap: 1.8rem;
    }

    .header .navbar a {
        font-size: 1.35rem;
    }

    .header .header-2 {
        padding-left: 3%;
        padding-right: 3%;
    }

}


@media (max-width: 991px) {

    .header .navbar {
        display: none;
    }

    .header #menu-btn {
        display: block;
    }

    .header .header-2 .container {
        justify-content: flex-end;
    }

}


@media (max-width: 576px) {

    .header .header-2 {
        height: 7.5rem;
        padding: 0 2rem;
    }

    .header .header-2 > .logo img {
        height: 4rem;
    }

    .header .icon-container .btn {
        padding: 1.1rem 1.5rem;
        font-size: 1.3rem;
    }

}
/* =========================================================
   HERO — MIDNIGHT COPPER
   ========================================================= */

.home {
    position: relative;
    width: 100%;
    height: 74rem;
    min-height: 68rem;
    padding: 0;
    overflow: hidden;
    background: #111417;
}


/* ---------- IMAGE ---------- */

.home .home-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);
}


/* ---------- OVERLAY ---------- */

.home .content {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 12rem 7% 7rem;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            90deg,
            rgba(10, 12, 14, 0.90) 0%,
            rgba(10, 12, 14, 0.72) 38%,
            rgba(10, 12, 14, 0.28) 70%,
            rgba(10, 12, 14, 0.10) 100%
        ),
        linear-gradient(
            0deg,
            rgba(10, 12, 14, 0.72) 0%,
            rgba(10, 12, 14, 0) 50%
        );
}


/* ---------- TEXT CONTAINER ---------- */

.home .content .text {
    width: 100%;
    max-width: 82rem;
    margin: 0;
}


/* ---------- EYEBROW ---------- */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 2rem;

    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.22rem;

    color: #D6A084;
}

.hero-eyebrow::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #B8734F;
}


/* ---------- MAIN H1 ---------- */

.home .content h1 {
    margin: 0 0 1.5rem;

    font-size: clamp(5rem, 6vw, 8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.15rem;

    color: #F8F6F2;
}

.home .content h1 span {
    display: block;

    margin-top: 0.8rem;

    color: #D6A084;

    font-weight: 600;
}


/* ---------- SECONDARY TITLE ---------- */

.home .hero-title {
    margin-bottom: 2rem;

    font-size: clamp(2.4rem, 3vw, 3.6rem);
    font-weight: 400;
    line-height: 1.2;

    color: #F8F6F2;
}


/* ---------- DESCRIPTION ---------- */

.home .hero-desc {
    max-width: 65rem;

    margin-bottom: 3.2rem;

    font-size: 1.7rem;
    line-height: 1.75;
    font-weight: 400;

    color: #C8C5C0;
}


/* ---------- ACTIONS ---------- */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}


/* Primary button */

.home .hero-actions .btn {
    padding: 1.45rem 2.6rem;

    border: 1px solid #B8734F;
    border-radius: 0.4rem;

    background: #B8734F;
    background-image: none;

    color: #F8F6F2;

    font-size: 1.4rem;
    font-weight: 600;

    box-shadow: none;
}

.home .hero-actions .btn:hover {
    background: #D6A084;
    border-color: #D6A084;

    color: #111417;
}


/* Secondary text link */

.hero-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 1rem;

    padding: 1rem 0;

    font-size: 1.45rem;
    font-weight: 500;

    color: #F8F6F2;

    border-bottom: 1px solid rgba(248, 246, 242, 0.35);
}

.hero-link i {
    font-size: 1.2rem;

    color: #D6A084;

    transition: transform 0.25s ease;
}

.hero-link:hover {
    color: #D6A084;
    border-color: #B8734F;
}

.hero-link:hover i {
    transform: translateX(0.5rem);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .home {
        height: 68rem;
    }

    .home .content {
        padding: 12rem 5% 6rem;

        background:
            linear-gradient(
                90deg,
                rgba(10, 12, 14, 0.90) 0%,
                rgba(10, 12, 14, 0.67) 65%,
                rgba(10, 12, 14, 0.28) 100%
            );
    }

}


@media (max-width: 576px) {

    .home {
        height: 68rem;
        min-height: 68rem;
    }

    .home .content {
        align-items: flex-end;

        padding:
            10rem 2rem
            5rem;
    }

    .hero-eyebrow {
        font-size: 1.1rem;
        letter-spacing: 0.15rem;
    }

    .home .content h1 {
        font-size: 4.7rem;
    }

    .home .hero-title {
        font-size: 2.5rem;
    }

    .home .hero-desc {
        font-size: 1.5rem;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 1.8rem;
    }

}
/* Hero button */
.home .btn {
    background: #B8734F;
    background-image: none;
    color: #F8F6F2;

    border: 1px solid #B8734F;
    border-radius: 4px;

    box-shadow: none;
}

.home .btn:hover {
    background: #D6A084;
    background-image: none;
    border-color: #D6A084;
    color: #111417;
}

/* ==================== About Area ==================== */

.about {
    padding: 10rem 5%;
    background: #f3efe8;
}

.about-shell {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Introduction ---------- */

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: 7rem;
    align-items: center;
}

.about-copy {
    max-width: 720px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;

    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #9a7044;
}

.about-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #9a7044;
}

.about-copy h2 {
    margin: 0 0 2.5rem;
    font-size: clamp(4rem, 5vw, 6.8rem);
    line-height: .98;
    font-weight: 600;
    letter-spacing: -.045em;
    color: #191918;
}

.about-copy p {
    margin: 0 0 1.8rem;
    font-size: 1.65rem;
    line-height: 1.8;
    color: #5d5a55;
}

.about-copy .about-lead {
    margin-bottom: 2.4rem;
    font-size: 2rem;
    line-height: 1.6;
    color: #292725;
}


/* ---------- Image ---------- */

.about-visual {
    position: relative;
    height: 620px;
    overflow: hidden;
    border-radius: 2px;
    background: #222;
}

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

.about-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(15, 14, 13, .7) 100%
    );
}

.about-visual-note {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    z-index: 2;

    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.35);

    display: flex;
    flex-direction: column;
}

.about-visual-note span {
    margin-bottom: .5rem;
    font-size: 1.2rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d9b98d;
}

.about-visual-note strong {
    font-size: 2.3rem;
    font-weight: 500;
    color: #fff;
}

.about-visual-note small {
    margin-top: .5rem;
    font-size: 1.4rem;
    color: rgba(255,255,255,.76);
}


/* ---------- Fact Cards ---------- */

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 7rem;
    border-top: 1px solid #d8d0c5;
    border-bottom: 1px solid #d8d0c5;
}

.about-fact {
    min-height: 265px;
    padding: 3.2rem 3rem;
    border-right: 1px solid #d8d0c5;
}

.about-fact:last-child {
    border-right: 0;
}

.about-fact-icon {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b89267;
    border-radius: 50%;
    color: #8b6238;
    font-size: 1.8rem;
}

.about-fact-label {
    display: block;
    margin-bottom: .7rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #8d867e;
}

.about-fact strong {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1e1d1b;
}

.about-fact p {
    font-size: 1.45rem;
    line-height: 1.65;
    color: #706b65;
}


/* ---------- Bottom Detail ---------- */

.about-detail {
    display: grid;
    grid-template-columns: .75fr 1.25fr .8fr;
    gap: 5rem;
    margin-top: 7rem;
    padding: 5.5rem;
    background: #20211f;
}

.about-detail-title span {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c39a6b;
}

.about-detail-title h3 {
    margin: 0;
    font-size: 3.3rem;
    line-height: 1.2;
    font-weight: 500;
    color: #f5f0e8;
}

.about-detail-text {
    padding-left: 4rem;
    border-left: 1px solid rgba(255,255,255,.14);
}

.about-detail-text p {
    margin: 0 0 1.8rem;
    font-size: 1.55rem;
    line-height: 1.8;
    color: #c9c6c0;
}

.about-detail-text p:last-child {
    margin-bottom: 0;
}


/* ---------- Security Card ---------- */

.about-detail-side {
    display: flex;
}

.about-status {
    width: 100%;
    padding: 2.8rem;
    background: #292a27;
    border: 1px solid rgba(255,255,255,.08);
}

.about-status > i {
    margin-bottom: 3rem;
    font-size: 2.6rem;
    color: #c39a6b;
}

.about-status span {
    display: block;
    margin-bottom: .7rem;
    font-size: 1.1rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9e9b95;
}

.about-status strong {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 500;
    color: #f5f0e8;
}

.about-status p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #aaa7a1;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .about-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-copy {
        max-width: 850px;
    }

    .about-visual {
        height: 520px;
    }

    .about-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-fact:nth-child(2) {
        border-right: 0;
    }

    .about-fact:nth-child(-n+2) {
        border-bottom: 1px solid #d8d0c5;
    }

    .about-detail {
        grid-template-columns: 1fr 1.5fr;
    }

    .about-detail-side {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {

    .about {
        padding: 7rem 5%;
    }

    .about-copy h2 {
        font-size: 4.2rem;
    }

    .about-copy .about-lead {
        font-size: 1.8rem;
    }

    .about-visual {
        height: 430px;
    }

    .about-visual-note {
        left: 2rem;
        right: 2rem;
        bottom: 2rem;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .about-fact {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #d8d0c5;
    }

    .about-fact:last-child {
        border-bottom: 0;
    }

    .about-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3.5rem 2.5rem;
    }

    .about-detail-text {
        padding-left: 0;
        padding-top: 3rem;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .about-detail-side {
        grid-column: auto;
    }
}

/* ==================== Overview Area ==================== */

.overview {
    padding: 9rem 5%;
    background: #20211f;
}

.overview-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.overview-heading {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8rem;
    align-items: end;
    margin-bottom: 5rem;
}

.overview-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c39a6b;
}

.overview-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #c39a6b;
}

.overview-title h2 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(3.8rem, 4.6vw, 6rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -.035em;
    color: #f5f0e8;
}

.overview-intro {
    max-width: 680px;
    margin: 0;
    padding-left: 3rem;
    border-left: 1px solid rgba(255,255,255,.18);

    font-size: 1.7rem;
    line-height: 1.8;
    color: #c5c1ba;
}


/* ---------- Grid ---------- */

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.overview-card {
    position: relative;
    min-height: 330px;
    padding: 3.2rem 2.8rem;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);

    background: #20211f;
}

.overview-card:hover {
    background: #252623;
}


/* Main gaming card */

.overview-card-main {
    grid-column: span 2;
    background: #292a27;
}

.overview-card-main:hover {
    background: #2d2e2a;
}


/* First visit accent */

.overview-card-accent {
    background: #eee6da;
}

.overview-card-accent:hover {
    background: #f3ece2;
}

.overview-card-accent .overview-icon {
    color: #8b6238;
    border-color: rgba(139,98,56,.45);
}

.overview-card-accent .overview-label {
    color: #8b6238;
}

.overview-card-accent h3 {
    color: #22211f;
}

.overview-card-accent p {
    color: #69635c;
}


/* ---------- Card Content ---------- */

.overview-icon {
    width: 4.6rem;
    height: 4.6rem;
    margin-bottom: 3.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,154,107,.5);
    border-radius: 50%;

    font-size: 1.7rem;
    color: #c39a6b;
}

.overview-label {
    display: block;
    margin-bottom: 1rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b58c60;
}

.overview-card h3 {
    margin: 0 0 1.5rem;
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 500;
    color: #f4efe7;
}

.overview-card p {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.7;
    color: #aaa7a1;
}

.overview-note {
    display: inline-block;
    margin-top: 2.2rem;
    padding-top: 1.5rem;

    border-top: 1px solid rgba(255,255,255,.12);

    font-size: 1.25rem;
    letter-spacing: .05em;
    color: #d2c4b2;
}


/* ---------- Location Strip ---------- */

.overview-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;

    padding: 2.8rem 3rem;
    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.overview-bottom-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,154,107,.4);
    border-radius: 50%;

    font-size: 1.8rem;
    color: #c39a6b;
}

.overview-bottom span {
    display: block;
    margin-bottom: .5rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c39a6b;
}

.overview-bottom p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #c4c0b9;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .overview-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-intro {
        padding-left: 0;
        padding-top: 2.5rem;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.15);
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-card-main {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {

    .overview {
        padding: 7rem 5%;
    }

    .overview-title h2 {
        font-size: 4rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card-main {
        grid-column: auto;
    }

    .overview-card {
        min-height: auto;
        padding: 3rem 2.5rem;
    }

    .overview-bottom {
        align-items: start;
    }
}

/* ==================== Slots Area ==================== */

.slots {
    padding: 10rem 5%;
    background: #f3efe8;
}

.slots-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Intro ---------- */

.slots-intro {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 7rem;
    align-items: center;
}

.slots-content {
    max-width: 680px;
}

.slots-kicker,
.slots-small-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #9a7044;
}

.slots-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #9a7044;
}

.slots-content h2 {
    margin: 0 0 2.5rem;
    font-size: clamp(4rem, 5vw, 6.4rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;
    color: #1d1c1a;
}

.slots-content p {
    margin: 0 0 1.8rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #625e58;
}

.slots-content .slots-lead {
    font-size: 2rem;
    line-height: 1.6;
    color: #292724;
}


/* ---------- Image ---------- */

.slots-image {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: #1c1d1b;
}

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

.slots-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(13, 14, 12, .68) 100%
        );
}

.slots-image-stat {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    z-index: 2;

    min-width: 190px;
    padding: 2.2rem 2.5rem;

    background: rgba(24, 25, 22, .9);
    border-left: 2px solid #bd8b56;
}

.slots-image-stat strong {
    display: block;
    font-size: 4.3rem;
    line-height: 1;
    font-weight: 500;
    color: #f7f1e8;
}

.slots-image-stat span {
    display: block;
    margin-top: .7rem;
    font-size: 1.3rem;
    color: #c8c1b8;
}


/* ---------- Fact Strip ---------- */

.slots-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 0;
    background: #20211f;
}

.slots-fact {
    min-height: 135px;
    padding: 2.8rem;

    display: flex;
    align-items: center;
    gap: 2rem;

    border-right: 1px solid rgba(255,255,255,.12);
}

.slots-fact:last-child {
    border-right: 0;
}

.slots-fact i {
    font-size: 2.3rem;
    color: #c39768;
}

.slots-fact strong {
    display: block;
    margin-bottom: .5rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #f3eee6;
}

.slots-fact span {
    font-size: 1.3rem;
    color: #99968f;
}


/* ---------- Guide ---------- */

.slots-guide {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 7rem;

    margin-top: 8rem;
    padding: 6rem;

    background: #e8dfd2;
}

.slots-guide-heading > span,
.slots-terms-head > span {
    display: block;
    margin-bottom: 1.4rem;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #987047;
}

.slots-guide-heading h3,
.slots-terms-head h3 {
    margin: 0 0 2rem;
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;
    color: #211f1c;
}

.slots-guide-heading p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.75;
    color: #6b655e;
}


/* ---------- Steps ---------- */

.slots-steps {
    border-top: 1px solid #c7bbac;
}

.slots-step {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 2.5rem;

    padding: 2.7rem 0;
    border-bottom: 1px solid #c7bbac;
}

.slots-step-number {
    font-size: 1.3rem;
    letter-spacing: .08em;
    color: #9a7044;
}

.slots-step h4 {
    margin: 0 0 .8rem;
    font-size: 1.9rem;
    font-weight: 500;
    color: #25221f;
}

.slots-step p {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.7;
    color: #69635c;
}


/* ---------- Terms ---------- */

.slots-terms {
    margin-top: 8rem;
}

.slots-terms-head {
    margin-bottom: 3.5rem;
}

.slots-terms-head h3 {
    margin-bottom: 0;
}

.slots-terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d1c7bb;
    border-left: 1px solid #d1c7bb;
}

.slots-terms-grid article {
    min-height: 240px;
    padding: 3rem;

    border-right: 1px solid #d1c7bb;
    border-bottom: 1px solid #d1c7bb;
}

.slots-terms-grid i {
    margin-bottom: 3.5rem;
    font-size: 2rem;
    color: #9a7044;
}

.slots-terms-grid h4 {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 500;
    color: #24221f;
}

.slots-terms-grid p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #706a63;
}


/* ---------- Feature / Jackpot ---------- */

.slots-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 8rem;
}

.slots-feature,
.slots-jackpot {
    min-height: 470px;
    padding: 5rem;
}

.slots-feature {
    background: #eee7dd;
}

.slots-jackpot {
    background: #20211f;
}

.slots-feature h3,
.slots-jackpot h3 {
    margin: 0 0 2rem;
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 500;
}

.slots-feature h3 {
    color: #22201d;
}

.slots-jackpot h3 {
    color: #f3eee6;
}

.slots-feature > p,
.slots-jackpot > p {
    margin: 0 0 1.7rem;
    font-size: 1.5rem;
    line-height: 1.8;
}

.slots-feature > p {
    color: #69635c;
}

.slots-jackpot > p {
    color: #aaa69f;
}

.slots-jackpot .slots-small-label {
    color: #c39768;
}

.slots-feature-line {
    display: flex;
    gap: 1.5rem;

    margin-top: 3rem;
    padding-top: 2.5rem;

    border-top: 1px solid #cfc4b7;
}

.slots-feature-line i {
    margin-top: .3rem;
    font-size: 1.8rem;
    color: #9a7044;
}

.slots-feature-line span {
    font-size: 1.4rem;
    line-height: 1.65;
    color: #5f5952;
}

.slots-jackpot-note {
    display: block;
    margin-top: 2.5rem;
    padding: 1.8rem 2rem;

    border: 1px solid rgba(195,151,104,.35);

    font-size: 1.3rem;
    line-height: 1.6;
    color: #c6b49f;
}


/* ---------- Payout ---------- */

.slots-payout {
    display: grid;
    grid-template-columns: .7fr 1.3fr .8fr;
    gap: 4rem;
    align-items: center;

    padding: 4rem;
    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.slots-payout-title {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.slots-payout-title > i {
    font-size: 2.5rem;
    color: #c39768;
}

.slots-payout-title span {
    display: block;
    margin-bottom: .5rem;

    font-size: 1.1rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #9c9891;
}

.slots-payout-title h3 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 500;
    color: #f3eee6;
}

.slots-payout-text {
    padding: 0 4rem;
    border-left: 1px solid rgba(255,255,255,.12);
    border-right: 1px solid rgba(255,255,255,.12);
}

.slots-payout-text p,
.slots-help p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #aaa69f;
}

.slots-help {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.slots-help i {
    margin-top: .3rem;
    font-size: 1.8rem;
    color: #c39768;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .slots-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .slots-image {
        height: 520px;
    }

    .slots-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-fact:nth-child(2) {
        border-right: 0;
    }

    .slots-fact:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .slots-guide {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .slots-terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-payout {
        grid-template-columns: 1fr;
    }

    .slots-payout-text {
        padding: 3rem 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
}

@media (max-width: 700px) {

    .slots {
        padding: 7rem 5%;
    }

    .slots-content h2 {
        font-size: 4rem;
    }

    .slots-image {
        height: 420px;
    }

    .slots-facts {
        grid-template-columns: 1fr;
    }

    .slots-fact {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .slots-guide {
        padding: 3.5rem 2.5rem;
    }

    .slots-guide-heading h3,
    .slots-terms-head h3 {
        font-size: 3.2rem;
    }

    .slots-step {
        grid-template-columns: 4rem 1fr;
        gap: 1.5rem;
    }

    .slots-terms-grid {
        grid-template-columns: 1fr;
    }

    .slots-extra {
        grid-template-columns: 1fr;
    }

    .slots-feature,
    .slots-jackpot {
        min-height: auto;
        padding: 4rem 2.5rem;
    }

    .slots-payout {
        padding: 3rem 2.5rem;
    }
}

/* ==================== Jackpots Area ==================== */

.jackpots {
    padding: 10rem 5%;
    background: #191a18;
}

.jackpots-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.jackpots-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;
    margin-bottom: 6rem;
}

.jackpots-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #c39869;
}

.jackpots-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #c39869;
}

.jackpots-heading h2 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.4rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;
    color: #f4eee5;
}

.jackpots-heading-copy {
    padding-left: 3rem;
    border-left: 1px solid rgba(255,255,255,.15);
}

.jackpots-heading-copy p {
    margin: 0;

    font-size: 1.6rem;
    line-height: 1.8;
    color: #aaa69f;
}


/* ---------- Jackpot Types ---------- */

.jackpots-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.jackpot-type {
    min-height: 540px;
    padding: 5rem;

    border: 1px solid rgba(255,255,255,.1);
}

.jackpot-type-progressive {
    background: #252623;
}

.jackpot-type-mystery {
    background: #eee5d8;
}

.jackpot-type-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.jackpot-icon {
    width: 5.4rem;
    height: 5.4rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.5);
    border-radius: 50%;

    font-size: 2rem;
    color: #c39869;
}

.jackpot-number {
    font-size: 1.2rem;
    letter-spacing: .12em;
    color: #817d76;
}

.jackpot-label {
    display: block;
    margin-bottom: 1.2rem;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c39869;
}

.jackpot-type h3 {
    max-width: 560px;
    margin: 0 0 2rem;

    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 500;
}

.jackpot-type-progressive h3 {
    color: #f4eee5;
}

.jackpot-type-mystery h3 {
    color: #211f1c;
}

.jackpot-type > p {
    max-width: 570px;
    margin: 0 0 3.5rem;

    font-size: 1.5rem;
    line-height: 1.8;
}

.jackpot-type-progressive > p {
    color: #aaa69f;
}

.jackpot-type-mystery > p {
    color: #676159;
}


/* ---------- Detail Box ---------- */

.jackpot-detail {
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.14);
}

.jackpot-type-mystery .jackpot-detail {
    border-color: #cfc2b2;
}

.jackpot-detail span {
    display: block;
    margin-bottom: .8rem;

    font-size: 1.1rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #9c754c;
}

.jackpot-detail p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;
}

.jackpot-type-progressive .jackpot-detail p {
    color: #b3afa8;
}

.jackpot-type-mystery .jackpot-detail p {
    color: #686159;
}


/* ---------- Random Principle ---------- */

.jackpots-random {
    display: grid;
    grid-template-columns: auto .8fr 1.3fr;
    gap: 4rem;
    align-items: start;

    padding: 5rem;
    background: #111210;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.jackpots-random-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #9b7045;
    border-radius: 50%;

    font-size: 2.2rem;
    color: #c39869;
}

.jackpots-random-title span {
    display: block;
    margin-bottom: 1rem;

    font-size: 1.1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #b48859;
}

.jackpots-random-title h3 {
    margin: 0;

    font-size: 2.8rem;
    line-height: 1.25;
    font-weight: 500;
    color: #f1ebe2;
}

.jackpots-random-copy {
    padding-left: 4rem;
    border-left: 1px solid rgba(255,255,255,.12);
}

.jackpots-random-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.45rem;
    line-height: 1.75;
    color: #a9a59e;
}

.jackpots-random-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Payout ---------- */

.jackpots-payout {
    margin-top: 8rem;
    padding: 5.5rem;
    background: #f0e9df;
}

.jackpots-payout-heading {
    max-width: 760px;
    margin-bottom: 5rem;
}

.jackpots-payout-heading > span {
    display: block;
    margin-bottom: 1.2rem;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #946b42;
}

.jackpots-payout-heading h3 {
    margin: 0 0 1.5rem;

    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;
    color: #211f1c;
}

.jackpots-payout-heading p {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;
    color: #69635c;
}


/* ---------- Payout Flow ---------- */

.jackpots-payout-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.payout-item {
    min-height: 240px;
    padding: 3rem;

    background: #e5dbcd;
}

.payout-icon {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #946b42;
}

.payout-content > span {
    display: block;
    margin-bottom: .8rem;

    font-size: 1.05rem;
    letter-spacing: .14em;
    color: #a07950;
}

.payout-content h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;
    color: #28241f;
}

.payout-content p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;
    color: #6d665e;
}

.payout-divider {
    font-size: 1.8rem;
    color: #a27b54;
}


/* ---------- Note ---------- */

.jackpots-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;

    padding: 3rem 3.5rem;

    background: #242522;
    border-left: 2px solid #b98652;
}

.jackpots-note-icon {
    width: 4.7rem;
    height: 4.7rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 1.7rem;
    color: #c39869;
}

.jackpots-note span {
    display: block;
    margin-bottom: .6rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #c39869;
}

.jackpots-note p {
    max-width: 900px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;
    color: #aaa69f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .jackpots-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .jackpots-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .jackpots-random {
        grid-template-columns: auto 1fr;
    }

    .jackpots-random-copy {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .jackpots-payout-flow {
        grid-template-columns: 1fr;
    }

    .payout-divider {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 750px) {

    .jackpots {
        padding: 7rem 5%;
    }

    .jackpots-types {
        grid-template-columns: 1fr;
    }

    .jackpot-type {
        min-height: auto;
        padding: 4rem 2.5rem;
    }

    .jackpots-random {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 2.5rem;
    }

    .jackpots-random-copy {
        grid-column: auto;
    }

    .jackpots-payout {
        padding: 4rem 2.5rem;
    }

    .jackpots-payout-heading h3 {
        font-size: 3.2rem;
    }

    .jackpots-note {
        grid-template-columns: 1fr;
    }
}

/* ==================== Roulette Area ==================== */

.roulette {
    padding: 10rem 5%;
    background: #f3efe8;
}

.roulette-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Intro ---------- */

.roulette-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 7rem;
    align-items: center;
}

.roulette-copy {
    max-width: 680px;
}

.roulette-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #9a7044;
}

.roulette-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #9a7044;
}

.roulette-copy h2 {
    margin: 0 0 2.5rem;

    font-size: clamp(4rem, 5vw, 6.4rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.roulette-copy p {
    margin: 0 0 1.8rem;

    font-size: 1.6rem;
    line-height: 1.8;
    color: #625e58;
}

.roulette-copy .roulette-lead {
    font-size: 2rem;
    line-height: 1.6;
    color: #292724;
}


/* ---------- Image ---------- */

.roulette-image {
    position: relative;
    height: 610px;
    overflow: hidden;
    background: #191a18;
}

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

.roulette-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(14, 15, 13, .72) 100%
    );
}

.roulette-image-info {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    z-index: 2;

    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.35);
}

.roulette-image-info span {
    display: block;
    margin-bottom: .7rem;

    font-size: 1.1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #d1a97d;
}

.roulette-image-info strong {
    font-size: 2.3rem;
    font-weight: 500;
    color: #fff;
}


/* ---------- Facts ---------- */

.roulette-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #1d1e1c;
}

.roulette-fact {
    min-height: 135px;
    padding: 2.8rem;

    display: flex;
    align-items: center;
    gap: 2rem;

    border-right: 1px solid rgba(255,255,255,.12);
}

.roulette-fact:last-child {
    border-right: 0;
}

.roulette-fact i {
    font-size: 2.2rem;
    color: #c39869;
}

.roulette-fact strong {
    display: block;
    margin-bottom: .5rem;

    font-size: 1.7rem;
    font-weight: 500;
    color: #f3eee6;
}

.roulette-fact span {
    font-size: 1.3rem;
    color: #99958f;
}


/* ---------- Guide ---------- */

.roulette-guide {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 7rem;

    margin-top: 8rem;
    padding: 6rem;

    background: #e7ded1;
}

.roulette-guide-heading > span,
.roulette-bets-heading > span,
.roulette-chances-title > span,
.roulette-zero-content > span,
.roulette-live-content > span {
    display: block;
    margin-bottom: 1.3rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #946b42;
}

.roulette-guide-heading h3,
.roulette-bets-heading h3,
.roulette-chances-title h3,
.roulette-zero-content h3,
.roulette-live-content h3 {
    margin: 0 0 1.8rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;
    color: #211f1c;
}

.roulette-guide-heading p {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;
    color: #69635c;
}


/* ---------- Steps ---------- */

.roulette-steps {
    border-top: 1px solid #c6baab;
}

.roulette-step {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 2.5rem;

    padding: 2.6rem 0;
    border-bottom: 1px solid #c6baab;
}

.roulette-step-number {
    font-size: 1.2rem;
    letter-spacing: .1em;
    color: #9a7044;
}

.roulette-step h4 {
    margin: 0 0 .7rem;

    font-size: 1.9rem;
    font-weight: 500;
    color: #25221f;
}

.roulette-step p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;
    color: #69635c;
}


/* ---------- Bets ---------- */

.roulette-bets {
    margin-top: 8rem;
}

.roulette-bets-heading {
    max-width: 800px;
    margin-bottom: 4rem;
}

.roulette-bets-heading p {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;
    color: #69635c;
}

.roulette-bets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d0c6ba;
    border-left: 1px solid #d0c6ba;
}

.roulette-bets-grid article {
    min-height: 260px;
    padding: 3rem;

    border-right: 1px solid #d0c6ba;
    border-bottom: 1px solid #d0c6ba;
}

.roulette-bet-number {
    display: inline-block;
    margin-bottom: 3rem;

    font-size: 1.1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9a7044;
}

.roulette-bets-grid h4 {
    margin: 0 0 1rem;

    font-size: 2.1rem;
    font-weight: 500;
    color: #24211e;
}

.roulette-bets-grid p {
    margin: 0 0 2rem;

    font-size: 1.4rem;
    line-height: 1.65;
    color: #6d665f;
}

.roulette-bets-grid small {
    font-size: 1.25rem;
    color: #946b42;
}


/* ---------- Simple Chances ---------- */

.roulette-chances {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 6rem;

    margin-top: 7rem;
    padding: 5rem;

    background: #1d1e1c;
}

.roulette-chances-title h3 {
    color: #f4eee5;
}

.roulette-chances-content {
    padding-left: 4rem;
    border-left: 1px solid rgba(255,255,255,.13);
}

.roulette-chance-list {
    margin-bottom: 3rem;
}

.roulette-chance {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.roulette-chance span {
    font-size: 1.5rem;
    color: #c2beb7;
}

.roulette-chance strong {
    font-size: 1.5rem;
    font-weight: 500;
    color: #d0a372;
}

.roulette-chances-content > p {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.75;
    color: #9f9b95;
}


/* ---------- Zero ---------- */

.roulette-zero {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 5rem;
    align-items: center;

    margin-top: 0;
    padding: 5rem;

    background: #eee6db;
}

.roulette-zero-number {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #354c3d;
    border: 1px solid #617967;

    font-size: 6rem;
    line-height: 1;
    font-weight: 400;
    color: #f5f1ea;
}

.roulette-zero-content {
    max-width: 850px;
}

.roulette-zero-content p {
    margin: 0 0 1.5rem;

    font-size: 1.5rem;
    line-height: 1.75;
    color: #69635c;
}


/* ---------- Live Roulette ---------- */

.roulette-live {
    display: grid;
    grid-template-columns: auto 1.3fr .7fr;
    gap: 4rem;
    align-items: center;

    margin-top: 8rem;
    padding: 5rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.roulette-live-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 2rem;
    color: #c39869;
}

.roulette-live-content h3 {
    color: #f3eee6;
}

.roulette-live-content p {
    margin: 0 0 1.5rem;

    font-size: 1.45rem;
    line-height: 1.75;
    color: #aaa69f;
}

.roulette-live-badge {
    padding-left: 4rem;
    border-left: 1px solid rgba(255,255,255,.13);
}

.roulette-live-badge span {
    display: block;
    margin-bottom: .4rem;

    font-size: 1.05rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #8f8b85;
}

.roulette-live-badge strong {
    display: block;

    font-size: 2rem;
    font-weight: 500;
    color: #f0eae2;
}

.roulette-live-badge div {
    width: 100%;
    height: 1px;

    margin: 2rem 0;

    background: rgba(255,255,255,.12);
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .roulette-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .roulette-image {
        height: 520px;
    }

    .roulette-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .roulette-fact:nth-child(2) {
        border-right: 0;
    }

    .roulette-fact:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .roulette-guide {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .roulette-bets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roulette-chances {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .roulette-chances-content {
        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.13);
    }

    .roulette-live {
        grid-template-columns: auto 1fr;
    }

    .roulette-live-badge {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.13);
    }
}


@media (max-width: 700px) {

    .roulette {
        padding: 7rem 5%;
    }

    .roulette-copy h2 {
        font-size: 4rem;
    }

    .roulette-image {
        height: 420px;
    }

    .roulette-facts {
        grid-template-columns: 1fr;
    }

    .roulette-fact {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .roulette-guide {
        padding: 3.5rem 2.5rem;
    }

    .roulette-guide-heading h3,
    .roulette-bets-heading h3,
    .roulette-chances-title h3,
    .roulette-zero-content h3,
    .roulette-live-content h3 {
        font-size: 3.1rem;
    }

    .roulette-step {
        grid-template-columns: 4rem 1fr;
        gap: 1.5rem;
    }

    .roulette-bets-grid {
        grid-template-columns: 1fr;
    }

    .roulette-chances {
        padding: 4rem 2.5rem;
    }

    .roulette-zero {
        grid-template-columns: 1fr;
        gap: 3rem;

        padding: 4rem 2.5rem;
    }

    .roulette-zero-number {
        width: 110px;
        height: 110px;
        font-size: 4.5rem;
    }

    .roulette-live {
        grid-template-columns: 1fr;
        padding: 4rem 2.5rem;
    }

    .roulette-live-badge {
        grid-column: auto;
    }
}

/* ==================== Poker & Bingo Area ==================== */

.poker-bingo {
    padding: 10rem 5%;
    background: #f3efe8;
}

.poker-bingo-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.poker-bingo-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.poker-bingo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.poker-bingo-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #9a7044;
}

.poker-bingo-heading h2 {
    max-width: 720px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.4rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.poker-bingo-heading > p {
    margin: 0;
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;

    font-size: 1.6rem;
    line-height: 1.8;

    color: #666059;
}


/* ---------- Split ---------- */

.poker-bingo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.poker-panel,
.bingo-panel {
    min-height: 600px;
    padding: 5rem;
}

.poker-panel {
    background: #1d1e1c;
}

.bingo-panel {
    background: #e9e0d4;
}

.game-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 5rem;
}

.game-panel-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(191,145,96,.5);
    border-radius: 50%;

    font-size: 2rem;
    color: #c39869;
}

.game-panel-top > span {
    font-size: 1.1rem;
    letter-spacing: .12em;
    color: #817b73;
}

.game-label {
    display: block;

    margin-bottom: 1.2rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #b88451;
}

.poker-panel h3,
.bingo-panel h3 {
    margin: 0 0 2rem;

    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
}

.poker-panel h3 {
    color: #f3ede5;
}

.bingo-panel h3 {
    color: #211f1c;
}

.game-lead {
    font-size: 1.65rem !important;
    line-height: 1.7 !important;
}

.poker-panel > p,
.bingo-panel > p {
    margin: 0 0 1.7rem;

    font-size: 1.45rem;
    line-height: 1.8;
}

.poker-panel > p {
    color: #aaa69f;
}

.bingo-panel > p {
    color: #69635c;
}


/* ---------- Game Note ---------- */

.game-note {
    display: flex;
    gap: 1.5rem;

    margin-top: 3rem;
    padding-top: 2.5rem;

    border-top: 1px solid;
}

.poker-panel .game-note {
    border-color: rgba(255,255,255,.13);
}

.bingo-panel .game-note {
    border-color: #c9bdaf;
}

.game-note i {
    margin-top: .3rem;

    font-size: 1.7rem;
    color: #b88451;
}

.game-note p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;
}

.poker-panel .game-note p {
    color: #a7a39c;
}

.bingo-panel .game-note p {
    color: #666058;
}


/* ---------- Poker Hands ---------- */

.poker-hands {
    margin-top: 8rem;
}

.poker-hands-heading {
    max-width: 780px;
    margin-bottom: 4rem;
}

.poker-hands-heading > span,
.bingo-guide-heading > span,
.bingo-extra-heading > span {
    display: block;

    margin-bottom: 1.2rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #956c43;
}

.poker-hands-heading h3,
.bingo-guide-heading h3,
.bingo-extra-heading h3 {
    margin: 0 0 1.7rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.poker-hands-heading p {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;

    color: #69635c;
}

.poker-hands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d0c5b8;
    border-left: 1px solid #d0c5b8;
}

.poker-hands-grid article {
    min-height: 180px;
    padding: 2.8rem;

    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;

    border-right: 1px solid #d0c5b8;
    border-bottom: 1px solid #d0c5b8;
}

.hand-rank {
    font-size: 1.1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.poker-hands-grid h4 {
    margin: 0 0 .8rem;

    font-size: 1.9rem;
    font-weight: 500;

    color: #25221f;
}

.poker-hands-grid p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.65;

    color: #6d665f;
}


/* ---------- Bingo Guide ---------- */

.bingo-guide {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #20211f;
}

.bingo-guide-heading h3 {
    color: #f3eee6;
}

.bingo-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.bingo-flow article {
    min-height: 210px;
    padding: 2.8rem;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.bingo-flow article > span {
    display: block;
    margin-bottom: 2rem;

    font-size: 1.1rem;
    letter-spacing: .1em;

    color: #c39869;
}

.bingo-flow h4 {
    margin: 0 0 .8rem;

    font-size: 1.9rem;
    font-weight: 500;

    color: #f0ebe3;
}

.bingo-flow p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #a5a19b;
}


/* ---------- Bingo Extras ---------- */

.bingo-extra {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 6rem;

    margin-top: 7rem;
}

.bingo-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bingo-extra-grid article {
    min-height: 260px;
    padding: 3.5rem;

    border: 1px solid #d0c5b8;
}

.bingo-extra-grid article + article {
    border-left: 0;
}

.bingo-extra-grid i {
    margin-bottom: 3rem;

    font-size: 2rem;
    color: #9a7044;
}

.bingo-extra-grid h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;

    color: #24211e;
}

.bingo-extra-grid p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #6a645d;
}


/* ---------- Clarification ---------- */

.poker-bingo-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    margin-top: 7rem;
    padding: 4rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.poker-bingo-note-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 1.9rem;
    color: #c39869;
}

.poker-bingo-note span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.poker-bingo-note h3 {
    margin: 0 0 .8rem;

    font-size: 2.4rem;
    font-weight: 500;

    color: #f3eee6;
}

.poker-bingo-note p {
    max-width: 900px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #aaa69f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .poker-bingo-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .poker-bingo-heading > p {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .poker-bingo-split {
        grid-template-columns: 1fr;
    }

    .poker-panel,
    .bingo-panel {
        min-height: auto;
    }

    .poker-hands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bingo-guide,
    .bingo-extra {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}


@media (max-width: 700px) {

    .poker-bingo {
        padding: 7rem 5%;
    }

    .poker-bingo-heading h2 {
        font-size: 4rem;
    }

    .poker-panel,
    .bingo-panel {
        padding: 4rem 2.5rem;
    }

    .poker-panel h3,
    .bingo-panel h3,
    .poker-hands-heading h3,
    .bingo-guide-heading h3,
    .bingo-extra-heading h3 {
        font-size: 3.1rem;
    }

    .poker-hands-grid {
        grid-template-columns: 1fr;
    }

    .bingo-guide {
        padding: 4rem 2.5rem;
    }

    .bingo-flow {
        grid-template-columns: 1fr;
    }

    .bingo-extra-grid {
        grid-template-columns: 1fr;
    }

    .bingo-extra-grid article + article {
        border-left: 1px solid #d0c5b8;
        border-top: 0;
    }

    .poker-bingo-note {
        grid-template-columns: 1fr;
        padding: 3.5rem 2.5rem;
    }
}

/* ==================== Live Games Area ==================== */

.live-games {
    padding: 10rem 5%;
    background: #f3efe8;
}

.live-games-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Intro ---------- */

.live-games-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 7rem;
    align-items: center;
}


/* ---------- Image ---------- */

.live-games-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #191a18;
}

.live-games-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-games-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(14, 15, 13, .78) 100%
        );
}

.live-games-image-label {
    position: absolute;
    z-index: 2;

    left: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255,255,255,.34);
}

.live-games-image-label span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #d3aa7b;
}

.live-games-image-label strong {
    font-size: 2.5rem;
    font-weight: 500;

    color: #f7f2eb;
}


/* ---------- Copy ---------- */

.live-games-copy {
    max-width: 660px;
}

.live-games-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.live-games-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.live-games-copy h2 {
    margin: 0 0 2.5rem;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.live-games-copy p {
    margin: 0 0 1.8rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #625e58;
}

.live-games-copy .live-games-lead {
    font-size: 2rem;
    line-height: 1.6;

    color: #292724;
}


/* ---------- Status ---------- */

.live-games-status {
    margin-top: 8rem;
}

.live-games-status-title {
    max-width: 760px;
    margin-bottom: 4rem;
}

.live-games-status-title > span,
.live-games-event-heading > span,
.live-games-blackjack-heading > span,
.live-games-demo-copy > span {
    display: block;

    margin-bottom: 1.2rem;

    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #956c43;
}

.live-games-status-title h3,
.live-games-event-heading h3,
.live-games-blackjack-heading h3,
.live-games-demo-copy h3 {
    margin: 0;

    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.live-games-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.live-games-status-card {
    min-height: 340px;
    padding: 3.5rem;

    background: #20211f;

    border-right: 1px solid rgba(255,255,255,.11);
}

.live-games-status-card-special {
    background: #e9dfd2;
}

.live-games-status-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 3.5rem;

    border: 1px solid rgba(195,152,105,.48);
    border-radius: 50%;

    font-size: 1.8rem;

    color: #c39869;
}

.live-games-status-label {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #b28353;
}

.live-games-status-card h4 {
    margin: 0 0 1.4rem;

    font-size: 2.3rem;
    line-height: 1.25;
    font-weight: 500;

    color: #f2ede5;
}

.live-games-status-card p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #a8a49d;
}

.live-games-status-card-special h4 {
    color: #24211e;
}

.live-games-status-card-special p {
    color: #686159;
}


/* ---------- Event ---------- */

.live-games-event {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 7rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #171816;
}

.live-games-event-heading h3 {
    color: #f3eee6;
}

.live-games-event-heading p {
    margin: 1.8rem 0 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #aaa69f;
}

.live-games-event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.live-games-event-details article {
    min-height: 310px;
    padding: 3.5rem;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.live-games-event-details i {
    margin-bottom: 4rem;

    font-size: 2.2rem;

    color: #c39869;
}

.live-games-event-details span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1.05rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #9b958e;
}

.live-games-event-details h4 {
    margin: 0 0 1.2rem;

    font-size: 2.2rem;
    font-weight: 500;

    color: #f3eee6;
}

.live-games-event-details p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #a6a29b;
}


/* ---------- Black Jack ---------- */

.live-games-blackjack {
    margin-top: 8rem;
}

.live-games-blackjack-heading {
    max-width: 720px;
    margin-bottom: 4rem;
}

.live-games-blackjack-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
}

.live-games-blackjack-copy {
    padding: 5rem;

    background: #e8dfd2;
}

.live-games-blackjack-copy p {
    margin: 0 0 1.7rem;

    font-size: 1.5rem;
    line-height: 1.8;

    color: #676159;
}

.live-games-blackjack-values {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #20211f;
}

.live-games-blackjack-values > div {
    min-height: 190px;
    padding: 3rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-right: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.live-games-blackjack-values span {
    display: block;

    margin-bottom: .8rem;

    font-size: 3rem;
    font-weight: 500;

    color: #c39869;
}

.live-games-blackjack-values p {
    margin: 0;

    font-size: 1.3rem;

    color: #a6a29b;
}

.live-games-blackjack-target {
    background: #2b2c28;
}

.live-games-blackjack-target span {
    font-size: 4rem;
    color: #f0e6d9;
}


/* ---------- Demo ---------- */

.live-games-demo {
    display: grid;
    grid-template-columns: auto .9fr 1.1fr;
    gap: 4rem;
    align-items: center;

    margin-top: 8rem;
    padding: 5rem;

    background: #eee6db;
}

.live-games-demo-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b4885c;
    border-radius: 50%;

    font-size: 2rem;

    color: #946b42;
}

.live-games-demo-copy h3 {
    font-size: 3rem;
}

.live-games-demo-copy p {
    margin: 1.5rem 0 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #686159;
}

.live-games-demo-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-left: 1px solid #cdbfaf;
}

.live-games-demo-facts > div {
    padding: 2.5rem;

    border-right: 1px solid #cdbfaf;
}

.live-games-demo-facts i {
    display: block;

    margin-bottom: 2rem;

    font-size: 1.8rem;

    color: #946b42;
}

.live-games-demo-facts span {
    display: block;

    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8c8379;
}

.live-games-demo-facts strong {
    font-size: 1.7rem;
    font-weight: 500;

    color: #28241f;
}


/* ---------- Current Event Example ---------- */

.live-games-example {
    display: grid;
    grid-template-columns: .5fr 1.4fr .5fr;
    gap: 4rem;
    align-items: center;

    margin-top: 1px;
    padding: 4rem 5rem;

    background: #292a27;
}

.live-games-example-date span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1rem;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #a19b93;
}

.live-games-example-date strong {
    font-size: 2rem;
    font-weight: 500;

    color: #d2a675;
}

.live-games-example-copy {
    padding: 0 4rem;

    border-left: 1px solid rgba(255,255,255,.12);
    border-right: 1px solid rgba(255,255,255,.12);
}

.live-games-example-copy h3 {
    margin: 0 0 .8rem;

    font-size: 2.2rem;
    font-weight: 500;

    color: #f3eee6;
}

.live-games-example-copy p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #aaa69f;
}

.live-games-example-time {
    text-align: right;
}

.live-games-example-time i {
    display: block;

    margin-bottom: 1.5rem;

    font-size: 1.8rem;

    color: #c39869;
}

.live-games-example-time span,
.live-games-example-time strong {
    display: block;
}

.live-games-example-time span {
    font-size: 1.2rem;
    color: #aaa69f;
}

.live-games-example-time strong {
    margin-top: .4rem;

    font-size: 1.8rem;
    font-weight: 500;

    color: #f3eee6;
}


/* ---------- Final Note ---------- */

.live-games-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;

    padding: 3rem 3.5rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.live-games-note-icon {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 1.7rem;

    color: #c39869;
}

.live-games-note span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #c39869;
}

.live-games-note p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #aaa69f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .live-games-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .live-games-image {
        height: 520px;
    }

    .live-games-status-grid {
        grid-template-columns: 1fr;
    }

    .live-games-status-card {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .live-games-event {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .live-games-blackjack-layout {
        grid-template-columns: 1fr;
    }

    .live-games-demo {
        grid-template-columns: auto 1fr;
    }

    .live-games-demo-facts {
        grid-column: 1 / -1;

        border-left: 0;
        border-top: 1px solid #cdbfaf;
    }

    .live-games-example {
        grid-template-columns: 1fr;
    }

    .live-games-example-copy {
        padding: 3rem 0;

        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .live-games-example-time {
        text-align: left;
    }
}


@media (max-width: 700px) {

    .live-games {
        padding: 7rem 5%;
    }

    .live-games-image {
        height: 420px;
    }

    .live-games-copy h2 {
        font-size: 4rem;
    }

    .live-games-status-title h3,
    .live-games-event-heading h3,
    .live-games-blackjack-heading h3 {
        font-size: 3.1rem;
    }

    .live-games-status-card {
        padding: 3rem 2.5rem;
    }

    .live-games-event {
        padding: 4rem 2.5rem;
    }

    .live-games-event-details {
        grid-template-columns: 1fr;
    }

    .live-games-blackjack-copy {
        padding: 3.5rem 2.5rem;
    }

    .live-games-blackjack-values {
        grid-template-columns: 1fr 1fr;
    }

    .live-games-demo {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .live-games-demo-facts {
        grid-column: auto;
        grid-template-columns: 1fr;

        border-top: 1px solid #cdbfaf;
    }

    .live-games-demo-facts > div {
        border-right: 0;
        border-bottom: 1px solid #cdbfaf;
    }

    .live-games-example {
        padding: 3.5rem 2.5rem;
    }

    .live-games-note {
        grid-template-columns: 1fr;
    }
}

/* ==================== Events Area ==================== */

.events {
    padding: 10rem 5%;
    background: #f3efe8;
}

.events-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.events-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.events-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.events-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.events-heading h2 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.events-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.events-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.events-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Event Cards ---------- */

.events-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.events-card {
    min-height: 520px;
    padding: 4rem;

    display: flex;
    flex-direction: column;

    background: #20211f;

    border-right: 1px solid rgba(255,255,255,.11);
}

.events-card-featured {
    background: #e8dfd2;
}

.events-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 5rem;
}

.events-icon {
    width: 5.3rem;
    height: 5.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.5);
    border-radius: 50%;

    font-size: 1.9rem;

    color: #c39869;
}

.events-card-top > span {
    font-size: 1rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #8d8881;
}

.events-label {
    display: block;

    margin-bottom: 1.1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #b58452;
}

.events-card h3 {
    margin: 0 0 1.7rem;

    font-size: 2.7rem;
    line-height: 1.2;
    font-weight: 500;

    color: #f2ede5;
}

.events-card p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #a8a49d;
}

.events-card-featured h3 {
    color: #24211e;
}

.events-card-featured p {
    color: #676159;
}


/* ---------- Footer ---------- */

.events-card-footer {
    margin-top: auto;
    padding-top: 3rem;

    border-top: 1px solid rgba(255,255,255,.12);
}

.events-card-featured .events-card-footer {
    border-color: #c9bcad;
}

.events-card-footer span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #918b84;
}

.events-card-footer strong {
    font-size: 1.55rem;
    line-height: 1.6;
    font-weight: 500;

    color: #d8b085;
}

.events-card-featured .events-card-footer strong {
    color: #8e653e;
}


/* ---------- Participation ---------- */

.events-participation {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #171816;
}

.events-participation-title > span,
.events-program-copy > span {
    display: block;

    margin-bottom: 1.2rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.events-participation-title h3,
.events-program-copy h3 {
    margin: 0;

    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 500;

    color: #f3eee6;
}

.events-participation-content {
    border-top: 1px solid rgba(255,255,255,.12);
}

.events-participation-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 2rem;
    align-items: center;

    padding: 2.5rem 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.events-participation-item i {
    font-size: 1.8rem;

    color: #c39869;
}

.events-participation-item span {
    display: block;

    margin-bottom: .4rem;

    font-size: 1rem;
    letter-spacing: .11em;
    text-transform: uppercase;

    color: #8f8a83;
}

.events-participation-item strong {
    font-size: 1.7rem;
    font-weight: 500;

    color: #f0ebe3;
}


/* ---------- Program ---------- */

.events-program {
    display: grid;
    grid-template-columns: auto .9fr 1.1fr;
    gap: 4rem;
    align-items: center;

    margin-top: 1px;
    padding: 5rem;

    background: #292a27;
}

.events-program-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.events-program-copy p {
    margin: 1.5rem 0 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}

.events-program-meta {
    padding-left: 4rem;

    border-left: 1px solid rgba(255,255,255,.12);
}

.events-program-meta > div {
    padding: 1.4rem 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.events-program-meta > div:last-child {
    border-bottom: 0;
}

.events-program-meta span {
    display: block;

    margin-bottom: .4rem;

    font-size: 1rem;
    letter-spacing: .11em;
    text-transform: uppercase;

    color: #8f8a83;
}

.events-program-meta strong {
    font-size: 1.5rem;
    font-weight: 500;

    color: #ded7ce;
}


/* ---------- Note ---------- */

.events-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;

    padding: 3rem 3.5rem;

    background: #eee6db;
    border-bottom: 2px solid #a87b4c;
}

.events-note-icon {
    width: 4.8rem;
    height: 4.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b58a5e;
    border-radius: 50%;

    font-size: 1.7rem;

    color: #946b42;
}

.events-note span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #946b42;
}

.events-note p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #686159;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .events-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .events-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-card {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .events-participation {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .events-program {
        grid-template-columns: auto 1fr;
    }

    .events-program-meta {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }
}


@media (max-width: 700px) {

    .events {
        padding: 7rem 5%;
    }

    .events-heading h2 {
        font-size: 4rem;
    }

    .events-card {
        padding: 3.5rem 2.5rem;
    }

    .events-participation {
        padding: 4rem 2.5rem;
    }

    .events-participation-title h3,
    .events-program-copy h3 {
        font-size: 3rem;
    }

    .events-program {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .events-program-meta {
        grid-column: auto;
    }

    .events-note {
        grid-template-columns: 1fr;

        padding: 3rem 2.5rem;
    }
}

/* ==================== First Visit Area ==================== */

.first-visit {
    padding: 10rem 5%;
    background: #f3efe8;
}

.first-visit-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.first-visit-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;
    margin-bottom: 6rem;
}

.first-visit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #9a7044;
}

.first-visit-kicker::before {
    content: "";
    width: 4rem;
    height: 1px;
    background: #9a7044;
}

.first-visit-heading h2 {
    max-width: 780px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;
    color: #1d1c1a;
}

.first-visit-heading > p {
    margin: 0;
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;

    font-size: 1.6rem;
    line-height: 1.8;
    color: #676159;
}


/* ---------- Welcome ---------- */

.first-visit-welcome {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
}

.first-visit-welcome-main {
    padding: 5rem;
    background: #20211f;
}

.first-visit-welcome-main > span,
.first-visit-highlight > span,
.first-visit-steps-heading > span,
.first-visit-choice-title > span,
.first-visit-info-head > span,
.first-visit-budget-copy > span {
    display: block;
    margin-bottom: 1.2rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c39869;
}

.first-visit-welcome-main h3 {
    max-width: 680px;
    margin: 0 0 2rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;
    color: #f3eee6;
}

.first-visit-welcome-main p {
    max-width: 820px;
    margin: 0 0 1.6rem;

    font-size: 1.5rem;
    line-height: 1.8;
    color: #aaa69f;
}


/* ---------- Welcome Highlight ---------- */

.first-visit-highlight {
    padding: 5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #e8dfd2;
}

.first-visit-highlight-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: auto;

    border: 1px solid #ae8052;
    border-radius: 50%;

    font-size: 2rem;
    color: #946b42;
}

.first-visit-highlight > span {
    margin-top: 7rem;
    color: #946b42;
}

.first-visit-highlight strong {
    display: block;
    margin-bottom: 1.5rem;

    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    color: #24211e;
}

.first-visit-highlight p {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.7;
    color: #676159;
}


/* ---------- Steps ---------- */

.first-visit-steps {
    margin-top: 8rem;
}

.first-visit-steps-heading {
    max-width: 760px;
    margin-bottom: 4rem;
}

.first-visit-steps-heading h3,
.first-visit-choice-title h3,
.first-visit-info-head h3,
.first-visit-budget-copy h3 {
    margin: 0;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;
    color: #211f1c;
}

.first-visit-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #cfc4b7;
    border-left: 1px solid #cfc4b7;
}

.first-visit-steps-grid article {
    min-height: 350px;
    padding: 3.2rem;

    border-right: 1px solid #cfc4b7;
    border-bottom: 1px solid #cfc4b7;
}

.first-visit-step-number {
    display: block;
    margin-bottom: 3rem;

    font-size: 1.05rem;
    letter-spacing: .1em;
    color: #9a7044;
}

.first-visit-step-icon {
    margin-bottom: 3rem;

    font-size: 2rem;
    color: #946b42;
}

.first-visit-steps-grid h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;
    color: #24211e;
}

.first-visit-steps-grid p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;
    color: #6b655d;
}


/* ---------- No Pressure ---------- */

.first-visit-choice {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #171816;
}

.first-visit-choice-title h3 {
    color: #f3eee6;
}

.first-visit-choice-options {
    border-top: 1px solid rgba(255,255,255,.12);
}

.first-visit-choice-options article {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 2rem;

    padding: 2.5rem 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.first-visit-choice-options i {
    font-size: 1.8rem;
    color: #c39869;
}

.first-visit-choice-options h4 {
    margin: 0 0 .6rem;

    font-size: 1.8rem;
    font-weight: 500;
    color: #f0ebe3;
}

.first-visit-choice-options p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;
    color: #a6a29b;
}


/* ---------- Practical Info ---------- */

.first-visit-info {
    margin-top: 8rem;
}

.first-visit-info-head {
    margin-bottom: 3.5rem;
}

.first-visit-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #e8dfd2;
}

.first-visit-info-grid > div {
    min-height: 180px;
    padding: 3rem;

    border-right: 1px solid #c8bcad;
}

.first-visit-info-grid > div:last-child {
    border-right: 0;
}

.first-visit-info-grid i {
    display: block;
    margin-bottom: 2.7rem;

    font-size: 2rem;
    color: #946b42;
}

.first-visit-info-grid span {
    display: block;
    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8e867d;
}

.first-visit-info-grid strong {
    font-size: 1.8rem;
    font-weight: 500;
    color: #28241f;
}


/* ---------- Budget ---------- */

.first-visit-budget {
    display: grid;
    grid-template-columns: auto 1fr .75fr;
    gap: 4rem;
    align-items: center;

    margin-top: 1px;
    padding: 4.5rem 5rem;

    background: #292a27;
    border-bottom: 2px solid #a87b4c;
}

.first-visit-budget-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 1.9rem;
    color: #c39869;
}

.first-visit-budget-copy h3 {
    font-size: 2.6rem;
    color: #f3eee6;
}

.first-visit-budget-copy p,
.first-visit-budget-note p {
    margin: 1rem 0 0;

    font-size: 1.4rem;
    line-height: 1.7;
    color: #aaa69f;
}

.first-visit-budget-note {
    padding-left: 4rem;
    border-left: 1px solid rgba(255,255,255,.12);
}

.first-visit-budget-note span {
    display: block;
    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c39869;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .first-visit-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .first-visit-heading > p {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .first-visit-welcome {
        grid-template-columns: 1fr;
    }

    .first-visit-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .first-visit-choice {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .first-visit-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .first-visit-budget {
        grid-template-columns: auto 1fr;
    }

    .first-visit-budget-note {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }
}


@media (max-width: 700px) {

    .first-visit {
        padding: 7rem 5%;
    }

    .first-visit-heading h2 {
        font-size: 4rem;
    }

    .first-visit-welcome-main,
    .first-visit-highlight {
        padding: 4rem 2.5rem;
    }

    .first-visit-highlight > span {
        margin-top: 4rem;
    }

    .first-visit-welcome-main h3,
    .first-visit-steps-heading h3,
    .first-visit-choice-title h3,
    .first-visit-info-head h3 {
        font-size: 3.1rem;
    }

    .first-visit-steps-grid,
    .first-visit-info-grid {
        grid-template-columns: 1fr;
    }

    .first-visit-choice {
        padding: 4rem 2.5rem;
    }

    .first-visit-info-grid > div {
        border-right: 0;
        border-bottom: 1px solid #c8bcad;
    }

    .first-visit-budget {
        grid-template-columns: 1fr;
        padding: 4rem 2.5rem;
    }

    .first-visit-budget-note {
        grid-column: auto;
    }
}

/* ==================== Experience & Bar Area ==================== */

.experience {
    padding: 10rem 5%;
    background: #f3efe8;
}

.experience-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Intro ---------- */

.experience-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 7rem;
    align-items: center;
}

.experience-copy {
    max-width: 680px;
}

.experience-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.experience-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.experience-copy h2 {
    margin: 0 0 2.5rem;

    font-size: clamp(4rem, 5vw, 6.4rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.experience-copy p {
    margin: 0 0 1.8rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #625e58;
}

.experience-copy .experience-lead {
    font-size: 2rem;
    line-height: 1.6;

    color: #292724;
}


/* ---------- Image ---------- */

.experience-image {
    position: relative;

    height: 620px;

    overflow: hidden;

    background: #1b1c1a;
}

.experience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.experience-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(14, 15, 13, .8) 100%
    );
}

.experience-image-label {
    position: absolute;
    z-index: 2;

    left: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255,255,255,.32);
}

.experience-image-label span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #d0a474;
}

.experience-image-label strong {
    font-size: 2.5rem;
    font-weight: 500;

    color: #f6f1e9;
}


/* ---------- Statement ---------- */

.experience-statement {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;

    margin-top: 0;
    padding: 5rem;

    background: #1d1e1c;
    border-bottom: 2px solid #a87b4c;
}

.experience-statement-icon {
    width: 6.5rem;
    height: 6.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.5);
    border-radius: 50%;

    font-size: 2.2rem;

    color: #c39869;
}

.experience-statement span,
.experience-bar-heading > span,
.experience-food-copy > span,
.experience-situations-heading > span,
.experience-welcome-copy > span {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.experience-statement h3 {
    margin: 0 0 1rem;

    font-size: 3rem;
    font-weight: 500;

    color: #f3eee6;
}

.experience-statement p {
    max-width: 900px;
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Reasons ---------- */

.experience-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 8rem;

    border-top: 1px solid #cfc4b7;
    border-left: 1px solid #cfc4b7;
}

.experience-reasons article {
    min-height: 340px;
    padding: 3.5rem;

    border-right: 1px solid #cfc4b7;
    border-bottom: 1px solid #cfc4b7;
}

.experience-reason-icon {
    margin-bottom: 4rem;

    font-size: 2.1rem;

    color: #946b42;
}

.experience-reasons article > span {
    display: block;

    margin-bottom: .8rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #9a7044;
}

.experience-reasons h3 {
    margin: 0 0 1.2rem;

    font-size: 2.3rem;
    font-weight: 500;

    color: #25221f;
}

.experience-reasons p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Bar ---------- */

.experience-bar {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #e8dfd2;
}

.experience-bar-heading h3,
.experience-food-copy h3,
.experience-situations-heading h3,
.experience-welcome-copy h3 {
    margin: 0 0 1.5rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.experience-bar-heading p {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #686159;
}

.experience-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #c8bcad;
    border-left: 1px solid #c8bcad;
}

.experience-bar-grid article {
    min-height: 310px;
    padding: 3rem;

    border-right: 1px solid #c8bcad;
    border-bottom: 1px solid #c8bcad;
}

.experience-bar-number {
    display: block;

    margin-bottom: 3rem;

    font-size: 1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.experience-bar-grid i {
    display: block;

    margin-bottom: 3rem;

    font-size: 2rem;

    color: #946b42;
}

.experience-bar-grid h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;

    color: #25221f;
}

.experience-bar-grid p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #6b655d;
}


/* ---------- Food Note ---------- */

.experience-food-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;

    padding: 4.5rem 5rem;

    background: #292a27;
}

.experience-food-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.46);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.experience-food-copy h3 {
    font-size: 2.8rem;
    color: #f3eee6;
}

.experience-food-copy p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Situations ---------- */

.experience-situations {
    margin-top: 8rem;
}

.experience-situations-heading {
    max-width: 720px;
    margin-bottom: 4rem;
}

.experience-situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #20211f;
}

.experience-situations-grid article {
    min-height: 260px;
    padding: 3rem;

    border-right: 1px solid rgba(255,255,255,.11);
}

.experience-situations-grid article:last-child {
    border-right: 0;
}

.experience-situations-grid > article > span {
    display: block;

    margin-bottom: 3.5rem;

    font-size: 1.05rem;
    letter-spacing: .11em;

    color: #c39869;
}

.experience-situations-grid h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;

    color: #f2ede5;
}

.experience-situations-grid p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #a8a49d;
}


/* ---------- Welcome ---------- */

.experience-welcome {
    display: grid;
    grid-template-columns: auto 1fr .55fr;
    gap: 4rem;
    align-items: center;

    margin-top: 1px;
    padding: 5rem;

    background: #eee6db;
}

.experience-welcome-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ad8054;
    border-radius: 50%;

    font-size: 2rem;

    color: #946b42;
}

.experience-welcome-copy h3 {
    font-size: 2.8rem;
}

.experience-welcome-copy p {
    max-width: 850px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #676159;
}

.experience-welcome-badge {
    padding-left: 4rem;

    border-left: 1px solid #cabdae;
}

.experience-welcome-badge span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8c8379;
}

.experience-welcome-badge strong {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;

    color: #8e653e;
}


/* ---------- Final ---------- */

.experience-final {
    display: flex;
    gap: 1.7rem;
    align-items: center;

    padding: 2.6rem 3rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.experience-final i {
    font-size: 1.7rem;

    color: #c39869;
}

.experience-final p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #aaa69f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .experience-intro {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-image {
        height: 520px;
    }

    .experience-reasons {
        grid-template-columns: 1fr;
    }

    .experience-bar {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-welcome {
        grid-template-columns: auto 1fr;
    }

    .experience-welcome-badge {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid #cabdae;
    }
}


@media (max-width: 760px) {

    .experience {
        padding: 7rem 5%;
    }

    .experience-copy h2 {
        font-size: 4rem;
    }

    .experience-image {
        height: 420px;
    }

    .experience-statement {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .experience-bar {
        padding: 4rem 2.5rem;
    }

    .experience-bar-heading h3,
    .experience-situations-heading h3 {
        font-size: 3.1rem;
    }

    .experience-bar-grid {
        grid-template-columns: 1fr;
    }

    .experience-food-note {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .experience-situations-grid {
        grid-template-columns: 1fr;
    }

    .experience-situations-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .experience-welcome {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .experience-welcome-badge {
        grid-column: auto;
    }

    .experience-final {
        align-items: flex-start;
    }
}

/* ==================== Opening Hours Area ==================== */

.hours {
    padding: 10rem 5%;
    background: #f3efe8;
}

.hours-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.hours-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.hours-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.hours-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.hours-heading h2 {
    max-width: 800px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.hours-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.hours-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.hours-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Main Hours ---------- */

.hours-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hours-card {
    min-height: 460px;
    padding: 4.5rem;

    display: flex;
    flex-direction: column;

    background: #20211f;

    border-right: 1px solid rgba(255,255,255,.12);
}

.hours-card-weekend {
    background: #e8dfd2;
}

.hours-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 5rem;
}

.hours-card-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.5);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.hours-card-top > span {
    font-size: 1rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #8e8982;
}

.hours-days {
    display: block;

    margin-bottom: 1.5rem;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 1.7rem;

    margin-bottom: 3rem;
}

.hours-time strong {
    font-size: clamp(4.2rem, 5vw, 6.5rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #f3eee6;
}

.hours-time span {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .1em;

    color: #817d77;
}

.hours-card > p {
    max-width: 550px;
    margin: auto 0 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* Light Weekend */

.hours-card-weekend .hours-card-icon {
    border-color: #b58b60;
    color: #946b42;
}

.hours-card-weekend .hours-days {
    color: #946b42;
}

.hours-card-weekend .hours-time strong {
    color: #24211e;
}

.hours-card-weekend .hours-time span {
    color: #91887e;
}

.hours-card-weekend > p {
    color: #686159;
}


/* ---------- Week Strip ---------- */

.hours-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    background: #171816;
}

.hours-week > div {
    padding: 2.7rem 2rem;
    text-align: center;

    border-right: 1px solid rgba(255,255,255,.1);
}

.hours-week > div:last-child {
    border-right: 0;
}

.hours-week span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8e8982;
}

.hours-week strong {
    font-size: 1.55rem;
    font-weight: 500;

    color: #e9e3db;
}

.hours-week-long {
    background: #292a27;
}

.hours-week-long strong {
    color: #cfa678;
}


/* ---------- Midnight Note ---------- */

.hours-midnight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    padding: 3.5rem 4rem;

    background: #eee6db;
}

.hours-midnight-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b4875a;
    border-radius: 50%;

    font-size: 1.6rem;

    color: #946b42;
}

.hours-midnight span,
.closed-days-heading > span,
.hours-holiday-note span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #946b42;
}

.hours-midnight h3 {
    margin: 0 0 .7rem;

    font-size: 2.3rem;
    font-weight: 500;

    color: #25221f;
}

.hours-midnight p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #6a645d;
}


/* ========================================
   Closed Days
======================================== */

.closed-days {
    margin-top: 9rem;
}

.closed-days-heading {
    max-width: 800px;

    margin-bottom: 4rem;
}

.closed-days-heading h3 {
    margin: 0 0 1.5rem;

    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.closed-days-heading p {
    max-width: 700px;
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Closed Grid ---------- */

.closed-days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #cec3b6;
    border-left: 1px solid #cec3b6;
}

.closed-days-grid article {
    min-height: 250px;
    padding: 3rem;

    display: flex;
    flex-direction: column;

    border-right: 1px solid #cec3b6;
    border-bottom: 1px solid #cec3b6;
}

.closed-days-number {
    display: block;

    margin-bottom: 3rem;

    font-size: 1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.closed-days-icon {
    margin-bottom: 2.5rem;

    font-size: 1.9rem;

    color: #946b42;
}

.closed-days-grid h4 {
    margin: auto 0 .7rem;

    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 500;

    color: #25221f;
}

.closed-days-grid p {
    margin: 0;

    font-size: 1.25rem;

    color: #827a71;
}


/* ---------- Holiday Note ---------- */

.hours-holiday-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    margin-top: 1px;
    padding: 4rem;

    background: #292a27;
}

.hours-holiday-note-icon {
    width: 5.3rem;
    height: 5.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.45);
    border-radius: 50%;

    font-size: 1.8rem;

    color: #c39869;
}

.hours-holiday-note span {
    color: #c39869;
}

.hours-holiday-note h3 {
    margin: 0 0 .7rem;

    font-size: 2.4rem;
    font-weight: 500;

    color: #f2ede5;
}

.hours-holiday-note p {
    max-width: 900px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #aaa69f;
}


/* ---------- Summary ---------- */

.hours-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #e8dfd2;

    border-bottom: 2px solid #a87b4c;
}

.hours-summary > div {
    padding: 3rem;

    border-right: 1px solid #c8bcad;
}

.hours-summary > div:last-child {
    border-right: 0;
}

.hours-summary span {
    display: block;

    margin-bottom: .6rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8d857c;
}

.hours-summary strong {
    font-size: 1.65rem;
    line-height: 1.35;
    font-weight: 500;

    color: #29251f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .hours-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hours-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .hours-main {
        grid-template-columns: 1fr;
    }

    .hours-card {
        min-height: 400px;
    }

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

    .hours-week > div {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .closed-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .hours {
        padding: 7rem 5%;
    }

    .hours-heading h2 {
        font-size: 4rem;
    }

    .hours-card {
        min-height: auto;
        padding: 4rem 2.5rem;
    }

    .hours-time {
        gap: 1rem;
    }

    .hours-time strong {
        font-size: 4.2rem;
    }

    .hours-week {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-midnight {
        grid-template-columns: 1fr;

        padding: 3.5rem 2.5rem;
    }

    .closed-days {
        margin-top: 7rem;
    }

    .closed-days-heading h3 {
        font-size: 3.1rem;
    }

    .closed-days-grid {
        grid-template-columns: 1fr;
    }

    .closed-days-grid article {
        min-height: 210px;
    }

    .hours-holiday-note {
        grid-template-columns: 1fr;

        padding: 3.5rem 2.5rem;
    }

    .hours-summary {
        grid-template-columns: 1fr;
    }

    .hours-summary > div {
        border-right: 0;
        border-bottom: 1px solid #c8bcad;
    }
}

/* ==================== Admission Area ==================== */

.admission {
    padding: 10rem 5%;
    background: #f3efe8;
}

.admission-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.admission-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.admission-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.admission-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.admission-heading h2 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.admission-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.admission-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.admission-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Main Admission ---------- */

.admission-hero {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
}

.admission-hero-main {
    padding: 5rem;

    background: #20211f;
}

.admission-hero-main > span,
.admission-hero-side > span,
.admission-requirements-heading > span,
.admission-process-heading > span,
.entry-fee-copy > span,
.dresscode-heading > span,
.dresscode-main span,
.dresscode-note span {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.admission-age {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;

    margin: 2.5rem 0 4rem;
}

.admission-age strong {
    font-size: clamp(7rem, 9vw, 11rem);
    line-height: .8;
    font-weight: 500;
    letter-spacing: -.06em;

    color: #f3eee6;
}

.admission-age p {
    margin: 0 0 .5rem;

    font-size: 1.2rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #9d9891;
}

.admission-hero-main h3 {
    max-width: 720px;
    margin: 0 0 1.5rem;

    font-size: 3.3rem;
    line-height: 1.2;
    font-weight: 500;

    color: #f3eee6;
}

.admission-hero-main > p {
    max-width: 790px;
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.8;

    color: #aaa69f;
}


/* ---------- Hero Side ---------- */

.admission-hero-side {
    padding: 5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #e8dfd2;
}

.admission-hero-icon {
    width: 6.5rem;
    height: 6.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: auto;

    border: 1px solid #ad8053;
    border-radius: 50%;

    font-size: 2.2rem;

    color: #946b42;
}

.admission-hero-side > span {
    margin-top: 7rem;
    color: #946b42;
}

.admission-hero-side h3 {
    margin: 0 0 1.4rem;

    font-size: 3rem;
    font-weight: 500;

    color: #24211e;
}

.admission-hero-side p {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #686159;
}


/* ---------- Requirements ---------- */

.admission-requirements {
    margin-top: 8rem;
}

.admission-requirements-heading {
    max-width: 760px;
    margin-bottom: 4rem;
}

.admission-requirements-heading h3,
.admission-process-heading h3,
.dresscode-heading h3 {
    margin: 0;

    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.admission-requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #cec3b6;
    border-left: 1px solid #cec3b6;
}

.admission-requirements-grid article {
    min-height: 350px;
    padding: 3.5rem;

    border-right: 1px solid #cec3b6;
    border-bottom: 1px solid #cec3b6;
}

.admission-number {
    display: block;

    margin-bottom: 3rem;

    font-size: 1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.admission-requirement-icon {
    margin-bottom: 3rem;

    font-size: 2rem;

    color: #946b42;
}

.admission-requirements-grid h4 {
    margin: 0 0 1rem;

    font-size: 2.1rem;
    font-weight: 500;

    color: #25221f;
}

.admission-requirements-grid p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Entrance Process ---------- */

.admission-process {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #171816;
}

.admission-process-heading h3 {
    color: #f3eee6;
}

.admission-process-heading p {
    margin: 1.5rem 0 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}

.admission-process-steps {
    border-top: 1px solid rgba(255,255,255,.12);
}

.admission-process-steps article {
    display: grid;
    grid-template-columns: 5rem .75fr 1.25fr;
    gap: 2rem;
    align-items: start;

    padding: 2.5rem 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.admission-process-steps > article > span {
    font-size: 1.05rem;

    color: #c39869;
}

.admission-process-steps h4 {
    margin: 0;

    font-size: 1.8rem;
    font-weight: 500;

    color: #f0ebe3;
}

.admission-process-steps p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #a6a29b;
}


/* ========================================
   Entry Fee
======================================== */

.entry-fee {
    display: grid;
    grid-template-columns: auto 1fr .4fr;
    gap: 4rem;
    align-items: center;

    margin-top: 1px;
    padding: 5rem;

    background: #e8dfd2;
}

.entry-fee-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ad8053;
    border-radius: 50%;

    font-size: 2rem;

    color: #946b42;
}

.entry-fee-copy > span {
    color: #946b42;
}

.entry-fee-copy h3 {
    margin: 0 0 1rem;

    font-size: 3.2rem;
    font-weight: 500;

    color: #24211e;
}

.entry-fee-copy p {
    max-width: 760px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #686159;
}

.entry-fee-price {
    padding-left: 4rem;

    border-left: 1px solid #c6b9a9;
}

.entry-fee-price span {
    display: block;

    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8e867d;
}

.entry-fee-price strong {
    display: block;

    font-size: 5rem;
    line-height: 1;
    font-weight: 500;

    color: #946b42;
}

.entry-fee-price p {
    margin: .7rem 0 0;

    font-size: 1.2rem;

    color: #777067;
}


/* ========================================
   Dresscode
======================================== */

.dresscode {
    margin-top: 9rem;
}

.dresscode-heading {
    max-width: 800px;
    margin-bottom: 4rem;
}

.dresscode-heading p {
    max-width: 720px;
    margin: 1.5rem 0 0;

    font-size: 1.5rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Main Dresscode ---------- */

.dresscode-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;

    padding: 4.5rem 5rem;

    background: #20211f;
}

.dresscode-main-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.48);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.dresscode-main h4 {
    margin: 0 0 .8rem;

    font-size: 2.6rem;
    font-weight: 500;

    color: #f2ede5;
}

.dresscode-main p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Dresscode Cards ---------- */

.dresscode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.dresscode-grid article {
    min-height: 330px;
    padding: 3.5rem;

    background: #e8dfd2;

    border-right: 1px solid #c8bcad;
}

.dresscode-card-icon {
    width: 5rem;
    height: 5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 3.5rem;

    border: 1px solid #b68a5c;
    border-radius: 50%;

    font-size: 1.7rem;

    color: #946b42;
}

.dresscode-grid article > span {
    display: block;

    margin-bottom: .8rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #946b42;
}

.dresscode-grid h4 {
    margin: 0 0 1rem;

    font-size: 2.1rem;
    font-weight: 500;

    color: #25221f;
}

.dresscode-grid p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Dresscode Note ---------- */

.dresscode-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    padding: 4rem;

    background: #292a27;
    border-bottom: 2px solid #a87b4c;
}

.dresscode-note-icon {
    width: 5.3rem;
    height: 5.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.46);
    border-radius: 50%;

    font-size: 1.8rem;

    color: #c39869;
}

.dresscode-note h3 {
    margin: 0 0 .7rem;

    font-size: 2.3rem;
    font-weight: 500;

    color: #f2ede5;
}

.dresscode-note p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Summary ---------- */

.admission-summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    margin-top: 8rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.admission-summary > div {
    min-height: 180px;
    padding: 3rem;

    border-right: 1px solid rgba(255,255,255,.11);
}

.admission-summary > div:last-child {
    border-right: 0;
}

.admission-summary i {
    display: block;

    margin-bottom: 2.5rem;

    font-size: 1.8rem;

    color: #c39869;
}

.admission-summary span {
    display: block;

    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .11em;
    text-transform: uppercase;

    color: #8f8a83;
}

.admission-summary strong {
    font-size: 1.55rem;
    line-height: 1.4;
    font-weight: 500;

    color: #f0ebe3;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .admission-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .admission-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .admission-hero {
        grid-template-columns: 1fr;
    }

    .admission-requirements-grid {
        grid-template-columns: 1fr;
    }

    .admission-process {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .entry-fee {
        grid-template-columns: auto 1fr;
    }

    .entry-fee-price {
        grid-column: 1 / -1;

        padding-left: 0;
        padding-top: 3rem;

        border-left: 0;
        border-top: 1px solid #c6b9a9;
    }

    .dresscode-grid {
        grid-template-columns: 1fr;
    }

    .dresscode-grid article {
        border-right: 0;
        border-bottom: 1px solid #c8bcad;
    }

    .admission-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .admission {
        padding: 7rem 5%;
    }

    .admission-heading h2 {
        font-size: 4rem;
    }

    .admission-hero-main,
    .admission-hero-side {
        padding: 4rem 2.5rem;
    }

    .admission-hero-side > span {
        margin-top: 4rem;
    }

    .admission-age strong {
        font-size: 7rem;
    }

    .admission-requirements-heading h3,
    .admission-process-heading h3,
    .dresscode-heading h3 {
        font-size: 3.1rem;
    }

    .admission-requirements-grid article {
        padding: 3rem 2.5rem;
    }

    .admission-process {
        padding: 4rem 2.5rem;
    }

    .admission-process-steps article {
        grid-template-columns: 4rem 1fr;
    }

    .admission-process-steps p {
        grid-column: 2;
    }

    .entry-fee {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .entry-fee-price {
        grid-column: auto;
    }

    .dresscode-main {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .dresscode-grid article {
        padding: 3.5rem 2.5rem;
    }

    .dresscode-note {
        grid-template-columns: 1fr;

        padding: 3.5rem 2.5rem;
    }

    .admission-summary {
        grid-template-columns: 1fr;
    }

    .admission-summary > div {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }
}

/* ==================== Comfort Area ==================== */

.comfort {
    padding: 10rem 5%;
    background: #f3efe8;
}

.comfort-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.comfort-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.comfort-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.comfort-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.comfort-heading h2 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.comfort-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.comfort-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.comfort-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Main ---------- */

.comfort-main {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
}

.comfort-main-content {
    padding: 5rem;

    background: #20211f;
}

.comfort-main-content > span,
.comfort-main-highlight > span,
.comfort-note span {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.comfort-main-content h3 {
    max-width: 800px;
    margin: 0 0 2rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;

    color: #f3eee6;
}

.comfort-main-content p {
    max-width: 800px;
    margin: 0 0 1.5rem;

    font-size: 1.5rem;
    line-height: 1.8;

    color: #aaa69f;
}


/* ---------- Highlight ---------- */

.comfort-main-highlight {
    padding: 5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #e8dfd2;
}

.comfort-main-icon {
    width: 6.5rem;
    height: 6.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: auto;

    border: 1px solid #ad8053;
    border-radius: 50%;

    font-size: 2.2rem;

    color: #946b42;
}

.comfort-main-highlight > span {
    margin-top: 7rem;

    color: #946b42;
}

.comfort-main-highlight strong {
    display: block;

    margin-bottom: 1.4rem;

    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;

    color: #24211e;
}

.comfort-main-highlight p {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #686159;
}


/* ---------- Cards ---------- */

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 8rem;

    border-top: 1px solid #cec3b6;
    border-left: 1px solid #cec3b6;
}

.comfort-grid article {
    min-height: 330px;
    padding: 3.5rem;

    border-right: 1px solid #cec3b6;
    border-bottom: 1px solid #cec3b6;
}

.comfort-card-icon {
    width: 5.2rem;
    height: 5.2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 3.5rem;

    border: 1px solid #b4875a;
    border-radius: 50%;

    font-size: 1.8rem;

    color: #946b42;
}

.comfort-grid article > span {
    display: block;

    margin-bottom: .8rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #946b42;
}

.comfort-grid h3 {
    margin: 0 0 1rem;

    font-size: 2.2rem;
    font-weight: 500;

    color: #25221f;
}

.comfort-grid p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Note ---------- */

.comfort-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    margin-top: 1px;
    padding: 4.5rem 5rem;

    background: #292a27;
    border-bottom: 2px solid #a87b4c;
}

.comfort-note-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.46);
    border-radius: 50%;

    font-size: 1.8rem;

    color: #c39869;
}

.comfort-note h3 {
    margin: 0 0 .8rem;

    font-size: 2.5rem;
    font-weight: 500;

    color: #f2ede5;
}

.comfort-note p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Summary ---------- */

.comfort-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 8rem;

    background: #e8dfd2;
}

.comfort-summary > div {
    min-height: 180px;
    padding: 3rem;

    border-right: 1px solid #c8bcad;
}

.comfort-summary > div:last-child {
    border-right: 0;
}

.comfort-summary i {
    display: block;

    margin-bottom: 2.5rem;

    font-size: 1.9rem;

    color: #946b42;
}

.comfort-summary span {
    display: block;

    margin-bottom: .5rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8d857c;
}

.comfort-summary strong {
    font-size: 1.65rem;
    line-height: 1.4;
    font-weight: 500;

    color: #29251f;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .comfort-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comfort-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .comfort-main {
        grid-template-columns: 1fr;
    }

    .comfort-grid {
        grid-template-columns: 1fr;
    }

    .comfort-summary {
        grid-template-columns: 1fr;
    }

    .comfort-summary > div {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid #c8bcad;
    }
}


@media (max-width: 700px) {

    .comfort {
        padding: 7rem 5%;
    }

    .comfort-heading h2 {
        font-size: 4rem;
    }

    .comfort-main-content,
    .comfort-main-highlight {
        padding: 4rem 2.5rem;
    }

    .comfort-main-content h3 {
        font-size: 3rem;
    }

    .comfort-main-highlight > span {
        margin-top: 4rem;
    }

    .comfort-grid article {
        min-height: auto;
        padding: 3.5rem 2.5rem;
    }

    .comfort-note {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }
}

/* ==================== Vouchers Area ==================== */

.vouchers {
    padding: 10rem 5%;
    background: #f3efe8;
}

.vouchers-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.vouchers-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.vouchers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.vouchers-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.vouchers-heading h2 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.vouchers-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.vouchers-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.vouchers-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Main ---------- */

.vouchers-main {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #20211f;
}

.vouchers-main-copy {
    padding: 5rem;
}

.vouchers-main-copy > span,
.vouchers-values-heading > span,
.vouchers-locations-heading > span,
.vouchers-order-heading > span,
.vouchers-contact-copy > span {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.vouchers-main-copy h3 {
    max-width: 650px;
    margin: 0 0 2rem;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;

    color: #f3eee6;
}

.vouchers-main-copy p {
    max-width: 700px;
    margin: 0 0 1.5rem;

    font-size: 1.5rem;
    line-height: 1.8;

    color: #aaa69f;
}


/* ---------- Voucher Visual ---------- */

.vouchers-card {
    margin: 5rem;

    min-height: 360px;
    padding: 3.5rem;

    display: flex;
    flex-direction: column;

    background: #e8dfd2;

    border: 1px solid #b98c5c;
}

.vouchers-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 2rem;

    border-bottom: 1px solid #c7b8a6;
}

.vouchers-card-top span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .15em;

    color: #786f65;
}

.vouchers-card-top i {
    font-size: 2.2rem;
    color: #946b42;
}

.vouchers-card-middle {
    margin: auto 0;
}

.vouchers-card-middle span {
    display: block;

    margin-bottom: 1.2rem;

    font-size: 1.1rem;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #946b42;
}

.vouchers-card-middle strong {
    font-size: clamp(3rem, 4vw, 5rem);
    line-height: 1.1;
    font-weight: 500;

    color: #25221f;
}

.vouchers-card-bottom {
    display: flex;
    gap: 2rem;

    padding-top: 2rem;

    border-top: 1px solid #c7b8a6;
}

.vouchers-card-bottom span {
    font-size: 1.1rem;
    color: #716a62;
}


/* ---------- Values ---------- */

.vouchers-values {
    margin-top: 8rem;
}

.vouchers-values-heading {
    margin-bottom: 3.5rem;
}

.vouchers-values-heading h3,
.vouchers-locations-heading h3,
.vouchers-order-heading h3 {
    margin: 0;

    font-size: 3.7rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.vouchers-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #cec3b6;
    border-left: 1px solid #cec3b6;
}

.vouchers-values-grid article {
    min-height: 260px;
    padding: 3.5rem;

    border-right: 1px solid #cec3b6;
    border-bottom: 1px solid #cec3b6;
}

.vouchers-values-grid article > span {
    display: block;

    margin-bottom: 4rem;

    font-size: 1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.vouchers-values-grid strong {
    display: block;

    margin-bottom: 1rem;

    font-size: 4.5rem;
    font-weight: 500;

    color: #946b42;
}

.vouchers-values-grid p {
    margin: 0;

    font-size: 1.35rem;

    color: #6c655d;
}


/* ---------- Locations ---------- */

.vouchers-locations {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 6rem;

    margin-top: 8rem;
    padding: 5.5rem;

    background: #e8dfd2;
}

.vouchers-locations-heading p {
    margin: 1.5rem 0 0;

    font-size: 1.45rem;
    line-height: 1.75;

    color: #686159;
}

.vouchers-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #c8bcad;
    border-left: 1px solid #c8bcad;
}

.vouchers-locations-grid article {
    min-height: 260px;
    padding: 3rem;

    border-right: 1px solid #c8bcad;
    border-bottom: 1px solid #c8bcad;
}

.vouchers-location-icon {
    margin-bottom: 4rem;

    font-size: 2rem;

    color: #946b42;
}

.vouchers-locations-grid article > span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #8b8278;
}

.vouchers-locations-grid h4 {
    margin: 0;

    font-size: 2.2rem;
    font-weight: 500;

    color: #25221f;
}


/* ---------- Order ---------- */

.vouchers-order {
    margin-top: 8rem;
}

.vouchers-order-heading {
    margin-bottom: 4rem;
}

.vouchers-order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #171816;
}

.vouchers-order-grid article {
    min-height: 340px;
    padding: 3.5rem;

    border-right: 1px solid rgba(255,255,255,.11);
}

.vouchers-order-grid article:last-child {
    border-right: 0;
}

.vouchers-order-number {
    display: block;

    margin-bottom: 3rem;

    font-size: 1rem;

    color: #c39869;
}

.vouchers-order-icon {
    margin-bottom: 3rem;

    font-size: 2rem;

    color: #c39869;
}

.vouchers-order-grid h4 {
    margin: 0 0 1rem;

    font-size: 2rem;
    font-weight: 500;

    color: #f0ebe3;
}

.vouchers-order-grid p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #a6a29b;
}


/* ---------- Contact ---------- */

.vouchers-contact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;

    margin-top: 1px;
    padding: 4.5rem 5rem;

    background: #292a27;
}

.vouchers-contact-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.46);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.vouchers-contact-copy h3 {
    margin: 0 0 .8rem;

    font-size: 2.6rem;
    font-weight: 500;

    color: #f3eee6;
}

.vouchers-contact-copy p {
    max-width: 900px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Note ---------- */

.vouchers-note {
    display: flex;
    gap: 1.8rem;
    align-items: center;

    padding: 2.8rem 3.2rem;

    background: #eee6db;

    border-bottom: 2px solid #a87b4c;
}

.vouchers-note i {
    font-size: 1.8rem;

    color: #946b42;
}

.vouchers-note p {
    max-width: 1000px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.7;

    color: #686159;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .vouchers-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vouchers-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .vouchers-main {
        grid-template-columns: 1fr;
    }

    .vouchers-values-grid {
        grid-template-columns: 1fr;
    }

    .vouchers-locations {
        grid-template-columns: 1fr;
    }

    .vouchers-order-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .vouchers {
        padding: 7rem 5%;
    }

    .vouchers-heading h2 {
        font-size: 4rem;
    }

    .vouchers-main-copy {
        padding: 4rem 2.5rem;
    }

    .vouchers-card {
        margin: 0;
        padding: 3rem 2.5rem;
    }

    .vouchers-card-bottom {
        flex-wrap: wrap;
    }

    .vouchers-values-heading h3,
    .vouchers-locations-heading h3,
    .vouchers-order-heading h3 {
        font-size: 3.1rem;
    }

    .vouchers-locations {
        padding: 4rem 2.5rem;
    }

    .vouchers-locations-grid {
        grid-template-columns: 1fr;
    }

    .vouchers-order-grid {
        grid-template-columns: 1fr;
    }

    .vouchers-order-grid article {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .vouchers-contact {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .vouchers-note {
        align-items: flex-start;

        padding: 3rem 2.5rem;
    }
}

/* ==================== Location Area ==================== */

.location {
    padding: 10rem 5%;
    background: #f3efe8;
}

.location-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.location-heading {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 6rem;
}

.location-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.location-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.location-heading h2 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.location-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.location-heading-copy p {
    margin: 0 0 1.5rem;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}

.location-heading-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- Main Location ---------- */

.location-main {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
}

.location-main-copy {
    padding: 5rem;

    background: #20211f;
}

.location-main-copy > span,
.arrival-heading > span,
.parking-heading > span,
.arrival-note span,
.parking-info span {
    display: block;

    margin-bottom: 1rem;

    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.location-main-copy h3 {
    margin: 0 0 2rem;

    font-size: clamp(4rem, 5vw, 6rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.035em;

    color: #f3eee6;
}

.location-main-copy > p {
    max-width: 760px;
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.8;

    color: #aaa69f;
}


/* ---------- Location Details ---------- */

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 5rem;

    border-top: 1px solid rgba(255,255,255,.12);
}

.location-details > div {
    padding: 3rem 2rem 0 0;
}

.location-details i {
    display: block;

    margin-bottom: 2rem;

    font-size: 1.8rem;

    color: #c39869;
}

.location-details span {
    display: block;

    margin-bottom: .6rem;

    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #85817b;
}

.location-details strong {
    font-size: 1.6rem;
    font-weight: 500;

    color: #f0ebe3;
}


/* ---------- Location Visual ---------- */

.location-visual {
    position: relative;

    min-height: 540px;
    padding: 5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: #e8dfd2;
}

.location-visual::before,
.location-visual::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(148,107,66,.18);
    border-radius: 50%;
}

.location-visual::before {
    width: 430px;
    height: 430px;

    top: -120px;
    right: -120px;
}

.location-visual::after {
    width: 260px;
    height: 260px;

    top: -35px;
    right: -35px;
}

.location-pin {
    position: relative;
    z-index: 2;

    width: 7rem;
    height: 7rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: auto;

    border: 1px solid #ad8053;
    border-radius: 50%;

    font-size: 2.7rem;

    color: #946b42;
}

.location-visual > span {
    position: relative;
    z-index: 2;

    margin-bottom: .7rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #946b42;
}

.location-visual > strong {
    position: relative;
    z-index: 2;

    font-size: 5rem;
    line-height: 1;
    font-weight: 500;

    color: #25221f;
}

.location-visual > p {
    position: relative;
    z-index: 2;

    margin: 1rem 0 0;

    font-size: 1.45rem;

    color: #70685f;
}

.location-visual-line {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 1px;

    margin: 3.5rem 0 2.5rem;

    background: #c6b9a9;
}

.location-visual-address {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.location-visual-address span {
    font-size: 1.05rem;
    letter-spacing: .1em;

    color: #393530;
}

.location-visual-address p {
    margin: 0;

    font-size: 1.25rem;

    color: #7b7369;
}


/* ---------- Orientation ---------- */

.location-orientation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 8rem;

    border-top: 1px solid #cec3b6;
    border-left: 1px solid #cec3b6;
}

.location-orientation article {
    min-height: 320px;
    padding: 3.5rem;

    border-right: 1px solid #cec3b6;
    border-bottom: 1px solid #cec3b6;
}

.location-orientation article > span {
    display: block;

    margin-bottom: 3rem;

    font-size: 1rem;

    color: #9a7044;
}

.location-orientation-icon {
    margin-bottom: 3rem;

    font-size: 2rem;

    color: #946b42;
}

.location-orientation h3 {
    margin: 0 0 1rem;

    font-size: 2.2rem;
    font-weight: 500;

    color: #25221f;
}

.location-orientation p {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #69635c;
}


/* ========================================
   Arrival
======================================== */

.arrival {
    margin-top: 9rem;
}

.arrival-heading {
    max-width: 820px;

    margin-bottom: 4rem;
}

.arrival-heading h3,
.parking-heading h3 {
    margin: 0 0 1.5rem;

    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 500;

    color: #211f1c;
}

.arrival-heading p,
.parking-heading p {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.75;

    color: #69635c;
}


/* ---------- Route ---------- */

.arrival-route {
    display: grid;
    grid-template-columns: .7fr 1.3fr;

    background: #171816;
}

.arrival-route-side {
    padding: 5rem;

    display: flex;
    flex-direction: column;
}

.arrival-route-icon {
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: auto;

    border: 1px solid rgba(195,152,105,.48);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.arrival-route-side span {
    display: block;

    margin: 7rem 0 1rem;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #c39869;
}

.arrival-route-side h4 {
    margin: 0;

    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;

    color: #f2ede5;
}

.arrival-route-steps {
    border-left: 1px solid rgba(255,255,255,.11);
}

.arrival-route-steps article {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 2rem;

    padding: 3rem 4rem;

    border-bottom: 1px solid rgba(255,255,255,.11);
}

.arrival-route-steps article:last-child {
    border-bottom: 0;
}

.arrival-route-steps > article > span {
    font-size: 1rem;

    color: #c39869;
}

.arrival-route-steps h4 {
    margin: 0 0 .7rem;

    font-size: 1.8rem;
    font-weight: 500;

    color: #f0ebe3;
}

.arrival-route-steps p {
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;

    color: #a6a29b;
}


/* ---------- Arrival Note ---------- */

.arrival-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    padding: 4rem 5rem;

    background: #e8dfd2;
}

.arrival-note-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ad8053;
    border-radius: 50%;

    font-size: 1.8rem;

    color: #946b42;
}

.arrival-note span {
    color: #946b42;
}

.arrival-note h4 {
    margin: 0 0 .8rem;

    font-size: 2.3rem;
    font-weight: 500;

    color: #25221f;
}

.arrival-note p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #686159;
}


/* ========================================
   Parking
======================================== */

.parking {
    margin-top: 9rem;
}

.parking-heading {
    max-width: 780px;

    margin-bottom: 4rem;
}

.parking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.parking-grid article {
    min-height: 370px;
    padding: 4rem;

    display: flex;
    flex-direction: column;

    background: #20211f;

    border-right: 1px solid rgba(255,255,255,.11);
}

.parking-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 5rem;
}

.parking-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.48);
    border-radius: 50%;

    font-size: 2rem;

    color: #c39869;
}

.parking-card-top > span {
    font-size: 1rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #c39869;
}

.parking-grid h4 {
    margin: 0 0 1.3rem;

    font-size: 2.8rem;
    font-weight: 500;

    color: #f3eee6;
}

.parking-grid article > p {
    max-width: 560px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}

.parking-card-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;

    margin-top: auto;
    padding-top: 3rem;

    border-top: 1px solid rgba(255,255,255,.11);
}

.parking-card-bottom i {
    color: #c39869;
}

.parking-card-bottom span {
    font-size: 1.2rem;

    color: #9d9992;
}


/* ---------- Parking Information ---------- */

.parking-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;

    padding: 4rem 5rem;

    background: #292a27;

    border-bottom: 2px solid #a87b4c;
}

.parking-info-icon {
    width: 5.5rem;
    height: 5.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(195,152,105,.46);
    border-radius: 50%;

    font-size: 1.8rem;

    color: #c39869;
}

.parking-info h4 {
    margin: 0 0 .8rem;

    font-size: 2.3rem;
    font-weight: 500;

    color: #f2ede5;
}

.parking-info p {
    max-width: 950px;
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.75;

    color: #aaa69f;
}


/* ---------- Summary ---------- */

.location-summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    margin-top: 8rem;

    background: #e8dfd2;
}

.location-summary > div {
    min-height: 190px;
    padding: 3rem;

    border-right: 1px solid #c8bcad;
}

.location-summary > div:last-child {
    border-right: 0;
}

.location-summary i {
    display: block;

    margin-bottom: 2.5rem;

    font-size: 1.8rem;

    color: #946b42;
}

.location-summary span {
    display: block;

    margin-bottom: .5rem;

    font-size: .95rem;
    letter-spacing: .11em;
    text-transform: uppercase;

    color: #8d857c;
}

.location-summary strong {
    display: block;

    margin-bottom: .5rem;

    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: 500;

    color: #29251f;
}

.location-summary p {
    margin: 0;

    font-size: 1.2rem;
    line-height: 1.5;

    color: #777067;
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {

    .location-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .location-main {
        grid-template-columns: 1fr;
    }

    .location-orientation {
        grid-template-columns: 1fr;
    }

    .arrival-route {
        grid-template-columns: 1fr;
    }

    .arrival-route-steps {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.11);
    }

    .parking-grid {
        grid-template-columns: 1fr;
    }

    .location-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .location {
        padding: 7rem 5%;
    }

    .location-heading h2 {
        font-size: 4rem;
    }

    .location-main-copy,
    .location-visual {
        padding: 4rem 2.5rem;
    }

    .location-main-copy h3 {
        font-size: 4rem;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .location-details > div {
        padding: 2.5rem 0;

        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .location-visual {
        min-height: 430px;
    }

    .location-visual > strong {
        font-size: 4rem;
    }

    .location-orientation article {
        min-height: auto;

        padding: 3.5rem 2.5rem;
    }

    .arrival-heading h3,
    .parking-heading h3 {
        font-size: 3.1rem;
    }

    .arrival-route-side {
        padding: 4rem 2.5rem;
    }

    .arrival-route-steps article {
        padding: 2.5rem;
    }

    .arrival-note {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .parking-grid article {
        min-height: 340px;

        padding: 3.5rem 2.5rem;
    }

    .parking-info {
        grid-template-columns: 1fr;

        padding: 4rem 2.5rem;
    }

    .location-summary {
        grid-template-columns: 1fr;
    }

    .location-summary > div {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid #c8bcad;
    }
}

/* ==================== FAQ Area ==================== */

.faq {
    padding: 10rem 5%;
    background: #f3efe8;
}

.faq-container {
    max-width: 1380px;
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.faq-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 8rem;
    align-items: end;

    margin-bottom: 5rem;
}

.faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.7rem;

    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: #9a7044;
}

.faq-kicker::before {
    content: "";

    width: 4rem;
    height: 1px;

    background: #9a7044;
}

.faq-heading h2 {
    max-width: 850px;
    margin: 0;

    font-size: clamp(4rem, 5vw, 6.3rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;

    color: #1d1c1a;
}

.faq-heading-copy {
    padding-left: 3rem;

    border-left: 1px solid #cec3b6;
}

.faq-heading-copy p {
    margin: 0;

    font-size: 1.55rem;
    line-height: 1.8;

    color: #676159;
}


/* ---------- Quick Facts ---------- */

.faq-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-bottom: 7rem;

    background: #20211f;
    border-bottom: 2px solid #a87b4c;
}

.faq-quick > div {
    padding: 3rem;

    border-right: 1px solid rgba(255, 255, 255, .11);
}

.faq-quick > div:last-child {
    border-right: 0;
}

.faq-quick span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #8f8a83;
}

.faq-quick strong {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;

    color: #f2ede5;
}


/* ---------- FAQ List ---------- */

.faq-list {
    border-top: 1px solid #c9bdae;
}

.faq-item {
    border-bottom: 1px solid #c9bdae;
}

.faq-item summary {
    position: relative;

    display: grid;
    grid-template-columns: 6rem 1fr auto;
    gap: 2rem;
    align-items: center;

    min-height: 105px;
    padding: 2.5rem 2rem;

    cursor: pointer;
    list-style: none;

    transition:
        background .25s ease,
        padding .25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: #eae2d7;
    padding-left: 3rem;
}

.faq-number {
    font-size: 1rem;
    letter-spacing: .1em;

    color: #9a7044;
}

.faq-item summary h3 {
    margin: 0;

    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;

    color: #25221f;
}

.faq-item summary > i {
    width: 4.5rem;
    height: 4.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b58a5d;
    border-radius: 50%;

    font-size: 1.3rem;

    color: #946b42;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


/* ---------- Open State ---------- */

.faq-item[open] {
    background: #e8dfd2;
}

.faq-item[open] summary {
    padding-bottom: 1.5rem;
}

.faq-item[open] summary > i {
    transform: rotate(45deg);

    background: #946b42;
    color: #f5f0e8;
}


/* ---------- Answer ---------- */

.faq-answer {
    padding: 0 8rem 3rem 10rem;
}

.faq-answer p {
    max-width: 900px;
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.8;

    color: #666057;
}


/* ---------- Bottom ---------- */

.faq-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 7rem;

    background: #171816;
    border-bottom: 2px solid #a87b4c;
}

.faq-bottom > div {
    padding: 3.5rem;

    border-right: 1px solid rgba(255, 255, 255, .11);
}

.faq-bottom > div:last-child {
    border-right: 0;
}

.faq-bottom span {
    display: block;

    margin-bottom: .7rem;

    font-size: 1rem;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #c39869;
}

.faq-bottom strong {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 500;

    color: #f0ebe3;
}


/* ---------- Responsive ---------- */

@media (max-width: 1050px) {

    .faq-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-heading-copy {
        padding-left: 0;
        padding-top: 2.5rem;

        border-left: 0;
        border-top: 1px solid #cec3b6;
    }

    .faq-quick {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-bottom {
        grid-template-columns: 1fr;
    }

    .faq-bottom > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }
}


@media (max-width: 700px) {

    .faq {
        padding: 7rem 5%;
    }

    .faq-heading h2 {
        font-size: 4rem;
    }

    .faq-quick {
        grid-template-columns: 1fr 1fr;
    }

    .faq-quick > div {
        padding: 2.5rem 2rem;
    }

    .faq-item summary {
        grid-template-columns: 3rem 1fr auto;
        gap: 1.2rem;

        min-height: 90px;
        padding: 2rem .5rem;
    }

    .faq-item summary:hover {
        padding-left: 1rem;
    }

    .faq-item summary h3 {
        font-size: 1.65rem;
    }

    .faq-item summary > i {
        width: 3.8rem;
        height: 3.8rem;

        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 2rem 2.5rem 4.7rem;
    }

    .faq-answer p {
        font-size: 1.35rem;
    }

    .faq-bottom {
        margin-top: 5rem;
    }

    .faq-bottom > div {
        padding: 3rem 2.5rem;
    }
}

/* ==================== Dresden Footer Redesign ==================== */
.footer{background:#171816;color:#f3eee6;border-top:1px solid rgba(195,152,105,.35);}
.footer .footer-container{display:block;max-width:1380px;margin:0 auto;padding:7rem 5%;}
.footer .footer-grid{display:grid;grid-template-columns:1.35fr .75fr .9fr;gap:7rem;width:100%;}
.footer .footer-brand{max-width:54rem;}
.footer .footer-brand .logo{display:inline-block;margin-bottom:2.5rem;}
.footer .footer-brand .logo img{height:6.5rem;width:auto;object-fit:contain;}
.footer .footer-brand p{padding:0;margin:0 0 2.8rem;color:#aaa69f;font-size:1.45rem;line-height:1.8;font-weight:400;}
.footer .footer-cta{display:inline-flex;align-items:center;gap:1.2rem;padding:1.35rem 2.2rem;border:1px solid #a87b4c;color:#f3eee6;font-size:1.35rem;font-weight:500;}
.footer .footer-cta:hover{background:#a87b4c;color:#171816;}
.footer .footer-nav{display:flex;flex-direction:column;align-items:flex-start;gap:1.35rem;}
.footer .footer-label{margin-bottom:1rem;color:#c39869;font-size:1.05rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase !important;}
.footer .footer-nav a{color:#d7d1c8;font-size:1.4rem;line-height:1.5;}
.footer .footer-nav a:hover{color:#c39869;transform:translateX(.4rem);}
.footer .footer-bottom{display:flex;justify-content:space-between;gap:2rem;padding:2.2rem 5%;background:#20211f;border-top:1px solid rgba(255,255,255,.08);}
.footer .footer-bottom p{margin:0;color:#8f8a83;font-size:1.2rem;font-weight:400;}

/* ==================== Legal Pages ==================== */
.legal-page{padding:15rem 5% 10rem;background:#f3efe8;}
.legal-shell{max-width:1180px;margin:0 auto;}
.legal-hero{display:grid;grid-template-columns:1.25fr .75fr;gap:6rem;align-items:end;padding-bottom:5rem;border-bottom:1px solid #cec3b6;}
.legal-kicker{display:inline-flex;align-items:center;gap:1rem;margin-bottom:1.6rem;color:#9a7044;font-size:1.1rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase !important;}
.legal-kicker:before{content:"";width:4rem;height:1px;background:#9a7044;}
.legal-hero h1{margin:0;color:#1d1c1a;font-size:clamp(4rem,6vw,7rem);line-height:1.02;font-weight:500;letter-spacing:-.045em;}
.legal-hero p{margin:0;padding-left:3rem;border-left:1px solid #cec3b6;color:#676159;font-size:1.5rem;line-height:1.8;}
.legal-update{display:flex;align-items:center;justify-content:space-between;gap:2rem;margin:3rem 0 6rem;padding:2rem 2.5rem;background:#e8dfd2;border-left:3px solid #a87b4c;}
.legal-update span{color:#766e65;font-size:1.25rem;}
.legal-update strong{color:#29251f;font-size:1.35rem;font-weight:500;}
.legal-layout{display:grid;grid-template-columns:27rem 1fr;gap:6rem;align-items:start;}
.legal-toc{position:sticky;top:11rem;padding:3rem;background:#20211f;}
.legal-toc span{display:block;margin-bottom:2rem;color:#c39869;font-size:1rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase !important;}
.legal-toc a{display:block;padding:1.15rem 0;border-bottom:1px solid rgba(255,255,255,.09);color:#d7d1c8;font-size:1.25rem;line-height:1.5;}
.legal-toc a:hover{color:#c39869;}
.legal-content{min-width:0;}
.legal-section{scroll-margin-top:11rem;padding:0 0 5rem;margin-bottom:5rem;border-bottom:1px solid #d4c9bc;}
.legal-section:last-child{margin-bottom:0;border-bottom:0;}
.legal-section .legal-number{display:block;margin-bottom:1rem;color:#9a7044;font-size:1rem;letter-spacing:.12em;}
.legal-section h2{margin:0 0 2rem;color:#24211e;font-size:3rem;line-height:1.2;font-weight:500;}
.legal-section h3{margin:2.8rem 0 1rem;color:#302b26;font-size:1.85rem;font-weight:500;}
.legal-section p,.legal-section li{color:#625c55;font-size:1.42rem;line-height:1.85;}
.legal-section p{margin:0 0 1.5rem;}
.legal-section ul{margin:1.5rem 0 1.5rem 2rem;padding:0;}
.legal-section li{margin-bottom:.8rem;}
.legal-callout{margin:2.5rem 0;padding:2.5rem 3rem;background:#e8dfd2;border-left:3px solid #a87b4c;}
.legal-callout p{margin:0;color:#4f4942;}
.legal-dark{padding:3rem;background:#20211f;}
.legal-dark h3{margin-top:0;color:#f3eee6;}
.legal-dark p,.legal-dark li{color:#aaa69f;}
.legal-contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:#cbbfb1;border:1px solid #cbbfb1;}
.legal-contact-grid>div{padding:2.5rem;background:#eee6db;}
.legal-contact-grid span{display:block;margin-bottom:.6rem;color:#8a8177;font-size:1rem;letter-spacing:.1em;text-transform:uppercase !important;}
.legal-contact-grid strong{color:#29251f;font-size:1.4rem;font-weight:500;}
.legal-page .btn{border-radius:0;background:#a87b4c;background-image:none;color:#171816;}
.legal-page .btn:hover{background:#c39869;}
@media(max-width:1000px){.footer .footer-grid{grid-template-columns:1fr 1fr}.footer .footer-brand{grid-column:1/-1}.legal-hero{grid-template-columns:1fr;gap:3rem}.legal-hero p{padding:2.5rem 0 0;border-left:0;border-top:1px solid #cec3b6}.legal-layout{grid-template-columns:1fr}.legal-toc{position:relative;top:auto}}
@media(max-width:700px){.footer .footer-container{padding:5rem 5%}.footer .footer-grid{grid-template-columns:1fr;gap:4rem}.footer .footer-brand{grid-column:auto}.footer .footer-bottom{flex-direction:column}.legal-page{padding:12rem 5% 7rem}.legal-hero h1{font-size:4rem}.legal-update{align-items:flex-start;flex-direction:column}.legal-section h2{font-size:2.5rem}.legal-contact-grid{grid-template-columns:1fr}}
