:root{
    --main-color: #619bae;
    --secondary-color: #619bae;
    --black-color: #000;
    --white-color: #ffffff;

    --font-family-Heebo-Light: 'Heebo-Light';
    --font-family-Heebo-Regular: 'Heebo-Regular';
    --font-family-Heebo-Medium: 'Heebo-Medium';
    --font-family-Heebo-SemiBold: 'Heebo-SemiBold';
    --font-family-Heebo-Bold: 'Heebo-Bold';

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    scroll-padding-top: 105px;
    scroll-behavior: smooth;
    overflow: auto;
}
body{
    direction: rtl;
    font-family: var(--font-family-Heebo-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color) !important;
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-Heebo-Bold);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.global-btn, .submit-btn input {
    background-color: var(--main-color);
    font-size: 25px;
    line-height: 30px;
    border-radius: 15px;
    font-weight: var(--font-weight-regular);
    padding: 14px 30px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    text-align: center;
}
.global-btn:hover, .submit-btn input:hover{
    background: none;
    color: var(--main-color);
}
.global-btn.secondary.transparent{
    background: none;
    color: var(--second-color);
}
.global-btn.secondary.transparent:hover{
    background-color: var(--second-color);
    color: var(--white-color);
}
.global-btn.transparent{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent:hover{
    background-color: var(--main-color);
    color: var(--white-color);
}
.global-btn > i{
    margin-left: 10px;
}
.global-btn.secondary{
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: var(--white-color);
}
.global-btn.secondary:hover, .submit-btn input:hover{
    background: none;
    color: var(--second-color);
}
.submit-btn input{
    background-color: var(--white-color);
    border: 0.1rem solid var(--white-color);
    width: 100%;
    padding: 0.8vh 0.2vw;
    font-size: 1vw;
    line-height: 2vh;
    border-radius: 0;
    color: var(--black-color) !important;
    font-family: var(--font-family-Heebo-Medium);
    font-weight: var(--font-weight-medium);
}
.submit-btn input:hover{
    background-color: var(--white-color);
    color: var(--black-color) !important;
}
.w-fit-content{
    width: fit-content;
}
.max-w-fit-content{
    max-width: fit-content;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
    direction: unset;
}
.wpcf7 form .wpcf7-response-output{
    margin: 0 0 20px;
    text-align: center;
}
.text-justify{
    text-align: justify;
}
.text-justify-center{
    text-align: justify;
    text-align-last: center;
}
.my-30{
    margin-top: 30px;
    margin-bottom: 30px;
}
.mt-10{
    margin-top: 10px;
}
.mt-40{
    margin-top: 40px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-100{
    margin-bottom: 100px;
}
.mx-w-fit-content{
    max-width: fit-content;
}
.container{
    padding-right: 16px;
    padding-left: 16px;
}

/**** Lightbox css start ****/
.lb-outerContainer{
    border-radius: 20px !important;
    overflow: hidden;
}
.lb-nav a{
    width: 38px !important;
    height: 38px;
    background-position: center center !important;
    background-size: 14px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    opacity: 1 !important;
}
.lb-nav a.lb-next{
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lb-nav a.lb-prev{
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lightboxOverlay{
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    backdrop-filter: blur(10px);
}
.lightbox{
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.lb-details{
    display: none;
}
.lb-data{
    top: 10px;
    position: absolute;
    display: block;
    z-index: 99;
    width: 45px !important;
    height: 45px;
    opacity: 1;
    margin-right: 7px;
}
.lb-data .lb-close{
    width: 38px !important;
    height: 38px !important;
    background-position: center center !important;
    background-size: 16px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    opacity: 1 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lightbox .lb-image{
    border: 0 !important;
}

/*************
Main css start
**************/
/* body.modal-open {
    overflow: hidden !important;
    height: 100vh;
} */
.main-wrapper {
    min-height: 100vh;
    height: auto;
}
.map-btn{
    position: absolute;
    right: 30.2vw;
    top: 63vh;
    height: 4vh;
    width: 6vw;
    z-index: 1;
}
.map-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-wrapper .map-img{
    margin: auto;
    display: block;
    width: 58.5vw !important;
}
.map-close-btn {
    width: 2.3vw;
    height: 4.4vh;
    position: absolute;
    right: 0;
    left: 0;
}
.custom-modal.activate::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.map-img-wrap{
    position: relative;
    z-index: 1;
}
.form-wrapper {
    position: absolute;
    top: 70%;
    right: 4.8vw;
    max-width: 22.5vw;
    width: 100%;
}
.form-wrapper .form-order{
    max-width: 21.5vw;
}
.gallery-wrapper{
    max-width: 66.4vw;
    top: 4vh;
    left: 0;
    position: absolute;
    height: 97.5vh;
}
.left-logo-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99;
    max-width: 20.7vw;
}

/*************
Form CSS Start
**************/
.main-form-title {
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family-Heebo-Medium);
    color: var(--main-color);
    margin-bottom: 1.6vh;
    font-size: 0.93vw;
    line-height: 1.5vh;
}
.form-field-col > p{
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    margin-bottom: 0;
}
.form-field-col{
    padding: 0 !important;
}
.form-field-col.col-md-6{
    max-width: 48.5%;
}
#contactUs {
    gap: 3%;
    margin: 0;
}
.wpcf7-form-control-wrap{
    line-height: 2vh;
}
input::placeholder{
    color: var(--white-color);
    opacity: 1;
}
input:not(input[type="checkbox"], input[type="submit"]){
    width: 100%;
    position: relative;
    background: none;
    border: none;
    border-bottom: none;
    padding: 0;
    font-size: 1vw;
    line-height: 2vh;
    color: var(--white-color);
    height: 5.2vh;
}
input:focus-visible{
    outline: none;
    box-shadow: none;
}
.wpcf7-not-valid-tip{
    font-size: 0.5vw;
    line-height: 1.5vh;
    position: absolute;
}
.check-col .wpcf7-not-valid-tip{
    position: relative;
    right: unset;
}
.checkbox-group {
    margin-top: 1.5vh;
    margin-bottom: 1.5vh;
    padding: 0;
    gap: 1.8vw;
}
.wpcf7-spinner{
    display: none !important;
}
.content-wrapper .wpcf7-checkbox > .wpcf7-list-item{
    margin: 0;
    display: block;
}
.content-wrapper .wpcf7-checkbox > .wpcf7-list-item > label{
    display: flex;
    flex-wrap: nowrap;
    gap: 2vh 0.7vw;
    padding-right: 0;
}
.content-wrapper .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]{
    position: relative;
    right: unset;
    top: unset;
    margin-top: -2vh;
    padding-right: 0;
}
.wpcf7-checkbox .wpcf7-list-item-label{
    font-weight: var(--font-weight-regular);
    color: var(--white-color);
    font-size: 0.6vw;
    line-height: 1.7vh;
    text-align: start;
}
.wpcf7-checkbox > span{
    margin-left: 0;
}
.wpcf7-checkbox label{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    position: relative;
    padding-right: 1.8vw;
}
.wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 1.3vw;
    width: 1.3vw;
    height: 2.5vh;
    border: 0.15vw solid var(--white-color);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background: transparent;
    border-radius: 0.2vw;
}
.wpcf7-checkbox input[type="checkbox"]:checked {
    background: transparent;
    border: 0.15vw solid var(--white-color);
}
.wpcf7-checkbox input[type="checkbox"]:checked::before {
    content: "";
    width: 0.8vw;
    height: 1.2vh;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 49.35%;
    transform: translate(-50%, -50%);
}
.submit-col{
    margin-right: 0.4vw;
}
.wpcf7 form.invalid .wpcf7-response-output{
    color: #ffb900;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}
.wpcf7-response-output {
    font-size: 0.9vw;
    padding: 0.5vh 0.5vw !important;
    line-height: 2vh;
    margin: 0.8vh auto !important;
}
.note, .copy-text {
    font-family: var(--font-family-Heebo-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 0.6vw;
    line-height: 1.7vh;
}
.note {
    margin-bottom: 3vh;
    text-align: start !important;
}
.img-notice {
    position: absolute;
    z-index: 1;
    color: var(--white-color);
    left: 50vw;
    font-size: 0.82vw;
    top: calc(100vh - 4vh);
}
.slick-gallery .slick-track{
    display: flex !important;
}
.slick-gallery .slick-track > .slick-slide{
    height: inherit !important;
}
.slick-gallery .slick-track > .slick-slide > img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top right;
}
.slick-gallery .slick-next {
    right: 7vw;
    z-index: 2;
}
.slick-gallery .slick-prev{
    left: 5.5vw;
    z-index: 2;
}
.slick-gallery .slick-next::before, .slick-gallery .slick-prev::before{
    content: none;
}
.mobile-gallery-slider{
    margin-top: -2px;
}
.slick-gallery :where(.slick-next > img, .slick-prev > img) {
    max-width: 4vw;
    margin-top: -4vh;
}

/* Mobile Sticky buttons */
.mobile-menu{
    display: none;
}


/* Cookie CSS */
.cky-notice > .cky-title{
    display: none !important;
}
.cky-notice .cky-notice-group{
    justify-content: center !important;
    gap: 0 2vw !important;
}
.cky-notice .cky-notice-group :where(.cky-notice-des > p, .cky-notice-des a){
    color: var(--black-color) !important;
    font-size: 0.9vw;
    line-height: 3vh;
}
.cky-consent-container .cky-consent-bar{
    padding: 1vh 1vw !important;
    background: rgba(255,255,255,0.8) !important;
    border: none !important;
}
.cky-btn{
    font-size: 1vw !important;
    line-height: 2.5vh !important;
    padding: 0.8vh 0.8vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    color: var(--white-color) !important;
    background-color: #2d2b47 !important;
    border-color: #2d2b47 !important;
}

/****************
Privacy Modal CSS
*****************/
.privacy-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    background-color: #201f1f;
    height: 100%;
    max-height: 85vh;
    padding: 10vh 6vw 10px 4vw;
    z-index: 9999999999;
    overflow: auto;
    scrollbar-width: none;
}
.privacy-wrapper .privacy-content{
    overflow-y: auto;
    height: auto;
}
.privacy-wrapper .privacy-content a{
    color: var(--white-color);
    text-decoration: underline;
}
.privacy-wrapper .privacy-content h2 {
    margin-bottom: 3vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
}
.privacy-wrapper .privacy-content :where(p, li, a){
    margin-bottom: 1.3vh;
    font-size: 0.8vw;
    line-height: 2.4vh;
}
.privacy-close-btn{
    position: absolute;
    top: 2vh;
    right: 1.8vw;
}
.privacy-close-btn > img{
    object-fit: contain;
    object-position: center center;
    width: 2.5vw;
    height: auto;
}