
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #AB4A44;
    --secondary: #3D4663;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: var(--black);
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

section {
    position: relative;
    padding: 7rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Poppins", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* btn css */

.themeBtn {
    width: fit-content;
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.065rem 2.42rem;
    border-radius: 0;
    line-height: normal;
    overflow: hidden;
    position: relative;
    border: 0;
    z-index: 1;
}


.themeBtn:hover {
    background: transparent;
    color: var(--primary) !important;
}


.themeBtn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 0 15px #D79E06 inset, 0 0 0 30px var(--secondary) inset, 0 0 0 45px var(--primary) inset;
    background-color: var(--white);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover::before {
    top: -50px;
    transform: translateX(-50%) scale(2);
}

.themeBtn2 {
    background-color: var(--primary)!important;
    border-radius: 0;
    font-size: 1.125rem;
}

.themeBtn2:hover {
    background-color: var(--black);
    color: var(--white) !important;
}

/* btn css */


/* navigation css */

header {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    transition: 0.3s ease-in-out;
    background: var(--black);
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item .nav-link.btn {
    padding: 1rem 1.5rem;
}

.navbar-brand {
    width: 350px;
    margin: 0;
    padding: 0;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* navigation css */


/* slider css */

.heroSection {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    border: 5px solid var(--primary);
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.heroSection .themeBtn {
    visibility: hidden;
    transition: background-color 0.5s ease;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.slider-overlay{
    z-index: 1;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.heroText h2 {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.heroText p {
    color: var(--white);
    font-size: 1.1875rem;
    line-height: 2;
    margin-bottom: 1.25rem;
}

.scrollDown {
    display: inline-block;
    width: 42px;
    height: 62px;
    border: 1px solid var(--white);
    border-radius: 32px;
    padding: 10px;
    text-align: center;
    margin-top: 9.125rem;
}

.scrollDown span {
    width: 3px;
    height: 11px;
    background-color: var(--white);
    display: inline-block;
    margin: auto;
    border-radius: 10px;
    animation: mouseSColl 2s ease infinite;
}

@keyframes mouseSColl {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(10px);
    }
}

.homeSlider :is(.swiper-button-next, .swiper-button-prev){
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-50%);
}
.homeSlider :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 2.5rem;
    font-weight: 700;
}

.homeSlider .swiper-pagination {
    margin-bottom: 2rem;
}
.homeSlider .swiper-horizontal > .swiper-pagination-bullets, .homeSlider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}
.homeSlider .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: var(--primary);
    transition: all 300ms ease-in-out;
    transform: scale(1);
    margin: 0 0.5rem !important;
}

.homeSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.325);
}



/* slider css */


/* Typography CSs */

.mainHeading {
    text-align: center;
}

.mainHeading h2 {
    font-size: 4.25rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.mainHeading span {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
}


/* !@Typography CSs */


/* Services Section */


.servicesSlider {
    margin: 0 -5rem;
    margin-top: 2.5rem;
}

.servicesCard {
    transition: 0.5s;
    user-select: none;
    cursor: pointer;
}

.servicesCard figure img {
    min-height: 360px;
}

.servicesCard .card-body {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.servicesCard h4 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.servicesCard h5 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.classesSection .swiper-button-prev,
.classesSection .swiper-button-next {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--white);
    top: 50%;
    color: var(--white);
}

.classesSection .swiper-button-prev {
    left: 6rem;
}

.classesSection .swiper-button-next {
    right: 6rem;
}

.classesSection .swiper-button-prev::after,
.classesSection .swiper-button-next::after {
    font-size: 1.375rem;
}

.classesSection .swiper-button-prev:hover,
.classesSection .swiper-button-next:hover {
    background-color: var(--white);
    color: var(--primary);
}


/* !@Services Section */

/* Event Section */

.eventSection {
    background: #141414;
    padding: 5rem 0;
}

.eventSection .row+.row {
    padding-top: 4rem;
}

.eventWrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.eventContent {
    width: 100%;
    flex: 1;
    color: var(--white);
}
.homepage .eventWrap figure {
    max-width: 290px;
}
.eventContent h3 {
    font-size: 1.375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.6;
}

.eventContent h3 span {
    font-size: 0.8125rem;
    display: block;
    font-weight: 600;
}

.eventContent p {
    color: var(--white);
    line-height: 1.8;
    padding-bottom: 1rem;
}

.eventPrice {
    color: var(--white);
    font-size: 0.8125rem;
    font-family: 'Nunito';
    font-weight: 600;
}

.eventContent .btn-group {
    align-items: center;
    gap: 1rem;
}

.searchEvents {
    display: flex;
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 1.875rem;
    gap: 1rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    white-space: nowrap;
}

.searchEvents>div {
    display: flex;
    align-items: center;
    gap: 5px;
}
select#selectWeek {
    min-width: 175px;
    padding: 0.375rem !important;
}

.searchEvents input {
    background-color: transparent !important;
    border: 0;
    color-scheme: light dark;
    box-shadow: none !important;
    color: var(--white) !important;
    width: 150px;
}

.searchEvents input::placeholder {
    color: var(--white);
}

/* Event Section */


/* Cta Section */

.ctaSection {
    /*background: url(../images/ctaBg.jpg) center/cover no-repeat;*/
    height: 1000px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.ctaContent h2 {
    font-size: 8.75rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.ctaContent .themeBtn {
    font-size: 1.9375rem;
}

/* Customer Section */

.customerSection {
    background: #141414;
    padding: 5rem;
    box-shadow: 0 3px 20px rgb(0 0 0 / 12%);
}

.customerBox {
    background: #1D212D;
    border-radius: 10px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    box-shadow: -0.31px 2.98px 51px rgb(0 0 0 / 8%);
}

.customerWrap ul {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.customerWrap ul li i {
    color: #FFC107;
}

.customerWrap p {
    color: var(--white);
    line-height: 1.8;
    text-align: center;
}

.customerUser h3 {
    color: var(--white);
    font-size: 1.4375rem;
    text-transform: uppercase;
}

.customerUser {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.7rem 0 0 2.2rem;
}

.customerUser > img {
    width: 87px;
    height: 87px;
    object-fit: cover;
    border-radius: 100%;
}

.customerBox span {
    color: #AB4A44;
    font-size: 10rem;
    line-height: 0.3;
    display: block;
    height: 0;
    font-style: italic;
}

.customerPath {
    position: absolute;
    bottom: -1.4375rem;
}


/* Customer Section */

/* Gallery SEction */
.imgSliderCont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 0;
}

.imgSliderCont .imgCont {
    position: relative;
}

.imgCont img,
.imgCont img {
    width: 100% !important;
    height: 400px;
    object-fit: cover;
}

.imgSliderCont .imgCont:nth-child(1),
.imgSliderCont .imgCont:nth-child(3),
.imgSliderCont .imgCont:nth-child(4),
.imgSliderCont .imgCont:nth-child(6),
.imgSliderCont .imgCont:nth-child(7),
.imgSliderCont .imgCont:nth-child(9) {
    flex: 0 0 30%;
}

.imgSliderCont .imgCont.mainImg {
    flex: 0 1 45%;
    overflow: hidden;
}

.imgSliderCont .imgCont:nth-child(4) {
    margin-left: -5rem;
}

.imgSliderCont .imgCont:nth-child(6) {
    margin-right: -5rem;
}

.imgSliderCont .imgCont:nth-child(2),
.imgSliderCont .imgCont:nth-child(8) {
    flex: 0 1 40%;
}

.imgSliderCont .imgCont:nth-child(1),
.imgSliderCont .imgCont:nth-child(3),
.imgSliderCont .imgCont:nth-child(7),
.imgSliderCont .imgCont:nth-child(9) {
    flex: 0 1 28%;
}

/* !@Gallery SEction */

/* Video Section */

.videoSection {
    /*background: url(../images/videoBg.jpg) center/cover no-repeat;*/
    height: 883px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.videoWrap {
    margin: auto;
}

.videoBtn {
    background: var(--white);
    width: 119px;
    height: 119px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.375rem;
    color: var(--primary);
    position: relative;
    opacity: 0.7 !important;
    transition: 0.5s ease;
}

.videoBtn:before {
    content: "";
    position: absolute;
    border: 1px solid rgb(255 255 255 / 50%);
    width: 166px;
    height: 166px;
    border-radius: 100%;
    transition: 0.5s ease;
}

.videoBtn:hover {
    opacity: 1 !important;
    color: var(--white);
    background: var(--primary);
}

.videoBtn:hover::before {
    animation: videoBtn 2s infinite alternate linear;
}

@keyframes videoBtn {
    from {
        transform: scale(0.85);
    }

    to {
        transform: scale(1.15);
    }

}

/* Video Section */

/* Insta Section */

.instaSection {
    padding: 5rem 0;
}

.instaWrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.instaSection .row+.row {
    padding-top: 2rem;
}

.instaWrap {
    position: relative;
    margin: 1rem 0;
}


.instaOverlay {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: rgb(171 74 68 / 72%);
    inset: 10% 6%;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s ease;
}

.instaOverlay .mainHeading span {
    font-size: 1.8125rem;
}

.instaOverlay i {
    color: var(--white);
    font-size: 3rem;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

.instaWrap:hover .instaOverlay {
    opacity: 1;
    transform: scale(1);
}

/* Insta Section */


/* Footer CSS */

footer {
    background: #1D212D;
    padding-top: 4rem;
}

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

.footLogo p {
    color: var(--white);
    padding-top: 1rem;
    width: 99%;
    line-height: 1.7;
}

footer h3 {
    font-size: 1.9375rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    padding-bottom: 14px;
}

.links li a {
    color: var(--white);
    font-size: 1.125rem;
    text-transform: uppercase;
}

.links li+li {
    padding-top: 0.875rem;
}

footer p {
    color: var(--white);
    font-size: 1.125rem;
}

.footPara {
    line-height: 1.7;
    padding-bottom: 12px;
}

.footForm input {
    border: 2px solid #D2D2D2;
    background: transparent;
    width: 92%;
    height: 61px;
    border-radius: unset;
    padding-left: 1.5rem;
    color: var(--white);
}

.footForm input::placeholder {
    color: rgb(177 175 199 / 76%);
}

.footForm button {
    background: unset;
    border: unset;
    color: var(--primary);
    margin-left: -3rem;
    font-size: 1.25rem;
}

.socialLinks {
    display: flex;
    gap: 1.8rem;
    margin-top: 2rem;
}

.socialLinks li a {
    font-size: 1.75rem;
    color: var(--white);
}

.footBottom {
    background: #1C1C1C;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footBottom p {
    margin: 0;
}

.footBottom a {
    font-size: 1.125rem;
    color: var(--white);
    text-align: end;
    display: block;
}

footer .map{
    filter: grayscale(1);
}

/* Footer CSS */

/* Lenis Smooth Scroll */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* InnerPages */


.innerBan {
    position: relative;
    user-select: none;
    border: 5px solid var(--primary);
    margin: 0 4rem 4rem;
}

.innerBan::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.innerBan img{
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.innerBan h2 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4.25rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}


.innerclasses .eventWrap {
    flex-direction: column;
    margin-bottom: 1rem;
}

.innerclasses .eventPrice {
    font-size: 1.125rem;
    text-decoration: underline !important;
    text-transform: uppercase;
}

.innerclasses .btn-group {
    gap: 5.375rem;
}

.innerEvent .eventWrap {
    margin-top: 3.5rem;
}

.innerEvent .eventWrap .eventContent h3 {
    font-size: 1.5rem;
    line-height: 1.375;
}

.innerEvent .eventWrap figure img {
    width: 400px;
}

.innermainHeading h2 {
    font-size: 3.125rem;
}

.innerReview .customerWrap {
    margin-bottom: 4.375rem;
}

.innerEvent .listitem {
    border: 1px solid #F8F8F8;
}

.innerEvent .listitem li{
    padding-left: 1rem;
}
.innerEvent .listitem li+li {
    border-top: 1px solid #F8F8F8;
}

.innerEvent .listitem li span {
    padding: 1rem;
    display: block;
    color: var(--white);
    font-weight: 300;
}



/* FAQ Page */
.faqSection .card {
    border: 0;
}

.faqSection .card+.card {
    margin-top: 2.25rem;
}

.faqSection .card .card-header {
    padding: 0;
    border-radius: 0;
}

.faqSection .card .btn {
    font-size: 1.875rem;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
    background: var(--secondary);
    padding: 18px;
    border-radius: 0;
    border-bottom: 1px solid #AB4A44;
    position: relative;
}

.faqSection .card .btn::before {
    content: '\f077';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
}

.faqSection .card .btn.collapsed {
    background: #F5F5F5;
    color: var(--black);
    border-color: transparent;
}

.faqSection .card .btn.collapsed::before {
    content: '\f078';
}

.faqSection .card .btn span {
    font-size: 1.125rem;
    padding-right: 1rem;
    border-right: 1px solid var(--white);
}

.faqSection .card .btn.collapsed span {
    border-right-color: var(--black);
}

.faqSection .card .card-body {
    color: var(--white);
    font-size: 1.125rem;
    padding: 2rem 4.5rem;
    line-height: 2;
    background: var(--secondary);
}

.innerRentals .eventWrap {
    margin-bottom: 5.5rem;
    gap: 1rem;
}

.innerRentals .eventWrap h3 {
    font-size: 1.875rem;
    margin-bottom: 0;
}

.innerRentals .eventWrap .newoption {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.875rem;
    color: var(--white);
}


.contactSec .mainHeading {
    text-align: left;
    margin-bottom: 2rem;
}

.contactSec .mainHeading p {
    color: var(--white);
    font-size: 1.25rem;
}

.contactForm .form-group .form-control {
    height: 75px;
    border-radius: unset;
    border: unset;
    padding-left: 1.5rem;
}

.contactForm .form-group .form-control:focus {
    box-shadow: 0 0 0 1px var(--primary) !important;
}


.contactForm .form-group .form-control::placeholder {
    font-weight: 500;
    color: #8B93A8;
}

.contactForm .form-group textarea {
    height: 200px !important;
    padding-top: 1.5rem;
}

.contactForm .form-group {
    margin-bottom: 1.5rem;
}

.contactBox figure {
    background: var(--primary);
    border: 1px dashed var(--white);
    color: var(--white);
    width: 121px;
    height: 121px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 2rem;
}

.contactBox {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 500px!important;

}

.contactBox a {
    flex: 1;
    color: var(--white);
    font-size: 1.25rem;
}

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

.contactBox a h6 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
}

.contactBox {
    padding-bottom: 2.5rem;
}

.contactBox+.contactBox {
    padding: 2.5rem 0;
    border-top: 1px dashed var(--white);
    /* margin-top: 2rem; */
    width: 90%;
}
p#full-description p span {
    background: transparent !important;
    color: var(--black) !important;
}
.category-form label{
    color: var(--white);
}
ul.pagination {
    justify-content: center;
}

a.page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

span.select2-selection.select2-selection--multiple {
    max-height: 70px;
    overflow-y: auto;
}
.category-form label{
    color: var(--white);
    font-size: 1.25rem;
}
ul.pagination {
    justify-content: center;
}

a.page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}
span.select2-selection.select2-selection--multiple {
    max-height: 70px;
    overflow-y: auto;
}
.innerclasses .btn-group.gap1 {
    gap: 1rem;
}
input[type='radio'], label{
    cursor: pointer !important;
}


form.category-form {
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
}
.recurring {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center !important;*/
    /*gap: 1rem;*/
}

.recurring label{
    margin: 0 !important;
}
/*/ Booking Form Popup /*/
.bookingFormPopup .modal-content {
    background: var(--black);
    box-shadow: 0 0 20px 1px #ffffff20;
    border-radius: 1rem;
}

.modal-dialog {
    max-width: 1000px;
}

.bookingFormPopup .modal-header {
    padding: 1rem 2rem;
}

.bookingFormPopup .modal-header h2 {
    font-size: 3.5rem;
    margin: 0;
}

.bookingFormPopup .close {
    outline: none;
    opacity: 1;
    text-shadow: none;
}

.bookingFormPopup .close span{
    font-size: 2rem;
    font-weight: 500;
}

.bookingFormPopup .close span:hover{
    color: var(--primary) ;
}

.inputField {
    margin: 0.5rem 1rem;
}

.inputField label {
    color: #fff;
    text-transform: capitalize;
    font-size: 1.25rem;
    font-weight: 500;
}

.inputField input:not(input[type="checkbox"], input[type="radio"]) {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: 2px solid transparent;
    color: #000;
    outline: none;
    border-radius: 0.5rem;
}

.inputField input + input {
    margin-top: 1rem;
}

.inputField input:not(input[type="checkbox"], input[type="radio"]):focus {
    border-color: var(--primary);
}

.inputField__checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.inputField__checkbox label {
    font-size: 1rem;
    margin: 0;
    user-select: none;
    cursor: pointer;
}

.inputField input:is([type="checkbox"], [type="radio"]) {
    width: 15px;
    aspect-ratio: 1/1;
    accent-color: var(--primary);
    cursor: pointer;
}

#inputFieldOther {
    display: none;
}

#inputFieldOther.active {
    display: block;
}

.inputField .themeBtn {
    border-radius: 0.5rem;
    outline: none;
}

.inputField .themeBtn:hover {
    background: var(--secondary);
}

.inputField #preferred_space{
    height: 52px;
}
.customerWrap p span{
    all: unset !important;
}



.category-form .form-control,
.category-form select,
.category-form span.select2-selection.select2-selection--multiple{
    height: 50px !important;
    display: flex;
    align-items: center;
}

.category-form input {

    padding: 0.75rem 1.25rem;
    border: 2px solid transparent;
    color: #000;
    outline: none;
    border-radius: 0.5rem;
}
.click_recursive_radio{
    font-size: 36px!important;
}
#click_selected_date_checkbox{
    font-size: 36px;
}
#click_recursive_radio{
    width: 25px;
    height: 25px;
}
.click_selected_date_radio{
    width: 25px;
    height: 25px;
}
.click_daily_checkbox{
    width: 18px;
    height: 18px;
    margin-left: -5px;
}
.he{
    font-size: 2.25rem;
}
/* Gallery */
.gallery__img {
    height: 600px;
    display: inline-block;
    padding: 1rem;
}

.gallery__img img {
    object-fit: cover;
    object-position: top;
}

.shadow {
    position: relative;
}

.shadow::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}


section#shadow-host-companion {
    padding: 0;
}
.innerclasses figure {
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.innerclasses .eventWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eventWrap.gridView {flex-direction: column;gap: 1.25rem;margin-top: 1.5rem;}

.eventWrap.gridView figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.eventWrap.gridView figure img {
    aspect-ratio: 1;
    object-fit: cover;
}

.innerclasses .eventWrap.ListView {
    flex-direction: row;
    margin-top: 2rem;
}

.innerclasses .eventWrap.ListView figure img {
    width: 500px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
}


.innerBan {
    height: 80vh;
}
/*.hero-main__logo {*/
/*    width: 450px;*/
/*}*/

/*.hero-main p {*/
/*    font-size: 1.6rem;*/
/*    text-transform: lowercase !important;*/
/*    font-weight: 500*/
/*}*/
/*.hero-main p:first-letter {*/
/*    text-transform: capitalize !important;*/
/*}*/
.heading-spacing{
    word-spacing: 50px;
}


.innerRentals .eventWrap h3.rental-title {
    margin-bottom: 1rem;
}

.innerRentals .eventWrap p {
    margin-bottom: 0;
}

.hero-main p {
    font-size: 1.5rem;
    font-weight: 500;
}

header .navbar-nav .dropdown-menu {
    position: absolute;
    /*left: 50%;*/
    transform: translateX(-50%);
}


.eventContent .full-comment,
#descriptionModal #full-description,
#myModal #modal-comment{
    overflow-wrap: break-word;
}

.eventInner .listitem {
    margin-bottom: 1rem;
}

.show span{
    margin-right: 1rem;
    cursor: pointer !important;
}
