:root{
    --bg-color: #f2f1f0;
    --main-color: #025155;
    --white-color: #fff;
    --black-color: #000;
    /* The Donna form rules reference --second-color for label and input text.
       It was never declared there, so those colours silently inherited. */
    --second-color: #025155;

    /* --font-family-primary: 'Assistant'; */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-mediun: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 600;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    direction: rtl;
}
body{
    background: #fff;
    font-family: "Heebo", sans-serif;
}
h1,h2,h3,h4,h4,h5{
    font-family: "Heebo", sans-serif;
    font-weight: bold;
}
a{
    text-decoration: none;
}
p{
    font-family: "Heebo", sans-serif;
}
.global-btn {
    background-color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    font-family: "Heebo", sans-serif;
}
.global-btn:hover {
    background: none;
    color: var(--main-color);
}
.w-fit-content{
    width: fit-content;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a{
    font-size: 140% !important;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a svg{
    padding-left: 6px;
    padding-right: 0px;
}

/**** Contact Form css start ****/
/* Ported from the Donna landing theme. These rules assume the form sits on a
   dark panel: the checkbox labels, validation tips, success title and
   .simple-text are all #fff and will vanish against --bg-color. */
.wpcf7-spinner{
    display: none;
}
.field-col label {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: end;
}
.wpcf7-form-control-wrap {
    position: relative !important;
}
.field-col label .wpcf7-form-control-wrap, .field-col input, .wpcf7-select{
    width: 100%;
    padding: 1vh 0.8vw;
    font-size: 1vw;
    line-height: 1;
    border-radius: 0.3vw;
    border: none;
    margin-bottom: 0;
    font-family: "Heebo", sans-serif;
    text-align: right;
    height: 2.3vw;
    border: 0.5px solid #BDC1C5;
}
.field-col label > span:first-child{
    min-width: fit-content;
    font-size: 25px;
    line-height: 30px;
    font-weight: 400;
    color: #082550;
}
.field-col label input{
    background: none;
    border: none;
    border-bottom: 2px solid #082550;
    color: #082550;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
}
.field-col label input:focus{
    outline: none;
    box-shadow: none;
}
.field-col, .submit-btn{
    margin-bottom: 0.6vw;
    padding-right: 0 !important;
    padding-left: 0.5vw !important;
}
.field-col > p {
    margin-bottom: 0;
    height: 100%;
}
.contact-form .form-heading{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    color: #082550;
    min-width: fit-content;
}
.form-logo {
    min-width: 6vw;
    margin-left: 0;
    margin-top: -1vh;
}
.custom-select-box .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 52%;
    left: 0.2vw;
    border-left: 0.5vw solid transparent;
    border-right: 0.5vw solid transparent;
    border-top: 1vh solid #082550;
    transform: translateY(-50%);
}

/**** Checkboxes ****/
.checkbox-group > p{
    display: flex;
    gap: 1.1vw;
    margin-top: 0.5vw;
    margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item-label{
    font-family: "Heebo", sans-serif;
    color: #082550;
    font-size: 0.6vw;
    line-height: 1.4;
    text-align: start;
    font-weight: 400;
}
.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: 1.3vw;
    border: 0.5px solid #BDC1C5;
    display: inline-block;
    position: absolute;
    top: 0.4vw;
    right: 0;
    cursor: pointer;
    border-radius: 0.2vw;
    background: #fff;
}
.wpcf7-checkbox input[type="checkbox"]:checked {
    background: #fff;
    border: 0.5px solid #BDC1C5;
}
.wpcf7-checkbox input[type="checkbox"]:checked::before {
    content: "✓";
    color: #082550;
    font-weight: 900;
    font-size: 1vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
    display: flex;
    height: auto;
}

/**** Validation messages ****/
.wpcf7-not-valid-tip{
    position: relative;
    font-size: 0.7vw;
    line-height: 1.5vh;
    margin-top: 0.5vh;
    margin-bottom: 0;
    text-align: start;
    /* color: #fff; */
}
.checkbox-group .wpcf7-not-valid-tip{
    margin-top: 0.5vh !important;
    margin-bottom: 0 !important;
    padding-right: 1.8vw !important;
}
.wpcf7 form.invalid .wpcf7-response-output{
    display: none !important;
}
.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 form.spam .wpcf7-response-output{
    color: #082550 !important;
}
.wpcf7-response-output {
    font-size: 0.9vw;
    padding: 1vh 0.5vw !important;
    line-height: 1.8vh;
    margin: 0.8vh auto !important;
    text-align: center;
}

/**** Submit button ****/
/* height:auto, not 100%. The arrow inside is position:absolute; top:50%, so it
   centres on THIS <p>. At 100% the <p> stretched to match the tallest column in
   the row, and a sibling field showing a validation tip dragged the arrow below
   the button. */
.submit-btn > p {
    position: relative;
    height: auto;
    margin-bottom: 0;
}
.submit-btn img {
    position: absolute;
    top: 50%;
    left: 0.5vw;
    width: 1vw;
    height: 2.5vh;
    z-index: 2;
    transform: translateY(-50%);
}
.submit-btn input{
    width: 100%;
    height: 2.3vw;
    font-size: 1.6vw;
    line-height: 1;
    border: none;
    border-radius: 0.3vw;
    color: #F0ECE7 !important;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    background: #082550;
}

/**** Form wrapper ****/
#contactform{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-order{
    width: 80%;
}
.main-form-title{
    font-size: 1vw;
    margin-top: 1vw;
    margin-bottom: 2vh;
    font-weight: 400;
    color: var(--white-color);
    font-family: "Heebo", sans-serif;
    line-height: 1.5;
}
.simple-text p{
    font-size: 0.6vw;
    margin: 0;
    font-family: "Heebo", sans-serif;
    color: #082550;
    line-height: 1.1;
}

/**** Success state rendered by custom.js on wpcf7mailsent ****/
.cf7-success-message {
    text-align: center;
    margin: 1.5vw auto;
}
.success-checkmark {
    max-width: 60px;
    margin: 0 auto 10px;
}
.success-title {
    font-weight: 700;
    font-size: 23px;
    color: #082550;
}
/**** Contact Form css end ****/


.video-widget{
    height: 100%;
}
.price-text {
    position: absolute !important;
    top: 47% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 0 !important;
    font-size: 0.7vw !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
    background: #F0ECE7 !important;
    direction: rtl !important;
}
.nis-icon {
    font-size: 1vw !important;
}
.dir-ltr {
    direction: ltr !important;
}
.last-zeros {
    position: relative !important;
    display: inline-block !important;
}
@media (max-width: 600px) {
    .price-text {
        font-size: 4vw !important;
        top: 45% !important;
    }
    .nis-icon {
        font-size: 6vw !important;
    }
}

/****************
Privacy Modal CSS
*****************/
/* Styles the markup emitted by privacy_modal_shortcode() and
   accessibility_modal_shortcode() in functions.php. Opened and closed by the
   jQuery block at the bottom of custom.js. The panel is dark, so the white
   copy below is intentional. */
.privacy-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    height: 100%;
    max-height: 85vh;
    padding: 8vh 5vw 8vh 4vw;
    background-color: rgb(32, 31, 31);
    z-index: 9999999;
    overflow: hidden;
    font-family: "Heebo", sans-serif;
}
.privacy-wrapper .privacy-content{
    overflow-y: auto;
    height: 85vh;
    padding-bottom: 15vh;
    scrollbar-width: none;
    color: #fff;
}
.privacy-wrapper .privacy-content a{
    color: #90C8FF;
    text-decoration: underline;
}
.privacy-wrapper .privacy-content h2 {
    margin-top: 3vh;
    margin-bottom: 2vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
}
.privacy-wrapper .privacy-content h3{
    margin-top: 2vh;
    margin-bottom: 1vh;
    font-size: 1.1vw;
    line-height: 2.4vh;
}
.privacy-wrapper .privacy-content :where(p, li, a, div){
    margin-bottom: 1.3vh;
    font-size: 0.8vw;
    line-height: 2.4vh;
    color: var(--white-color);
}
.privacy-close-btn{
    position: absolute;
    top: 2vh;
    right: 1.8vw;
}
.privacy-close-btn > img{
    object-fit: contain;
    object-position: center center;
    width: 2vw;
    height: auto;
}

/**** Inline links that open the modals ****/
.pv-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}
.pv-links > span{
    font-size: 0.8vw;
    line-height: 1;
}
.pv-link{
    color: #fff;
    font-size: 0.8vw;
    line-height: 1;
    text-decoration: underline;
}
.pv-link:hover{
    color: #d3e18c;
}



body #cc-floater {
    bottom: unset !important;
    top: 12.5vw !important;
    left: 0.2vw !important;
    right: unset !important;
    width: 2.5vw !important;
    height: 2.5vw !important;
    line-height: 2.5vw;
    text-align: center !important;
    z-index: 999 !important;
}
body #cc-floater svg{
    width: 1.5vw !important;
    height: 1.5vw !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body #pojo-a11y-toolbar{
    z-index: 9999 !important;
    top: 9vw !important;
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    font-size: 1.5vw !important;
    padding: 0.6vw !important;
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle svg{
    width: 1.5vw !important;
}

@media(max-width: 767px){
    body #cc-floater{
        bottom: unset !important;
        top: 60vw !important;
        left: 2px !important;
        width: 7.5vw !important;
        height: 7.5vw !important;
        line-height: 7.5vw;
        padding: 4.5vw !important;
    }
    body #cc-floater svg {
        width: 5vw !important;
        height: 5vw !important;
    }
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
        font-size: 5.5vw !important;
        padding: 2vw !important;
    }
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle svg {
        width: 5.8vw !important;
    }
    body #pojo-a11y-toolbar {
        top: 48vw !important;
    }
    
    .cc-banner {
            padding: 16px !important;
    }
    .cc-pos-right {
        left: 50% !important;
        right: unset !important;
        bottom: 10px !important;
        width: 95%;
        transform: translateX(-50%);
    }
    .cc-btn{
        padding: 7px 9px !important;
    }
}


.cc-slider, body.pojo-a11y-high-contrast .cc-slider, body.pojo-a11y-grayscale .cc-slider,
body.pojo-a11y-negative-contrast :not(#pojo-a11y-toolbar) .cc-slider,
body.pojo-a11y-light-background :not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link) .cc-slider{
    background: #ababff !important;
}
body.pojo-a11y-light-background *:not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link) .cc-btn{
        border: 1px solid #000 !important;
}
/* Remove the problematic body filter only during grayscale mode */
body.pojo-a11y-grayscale {
    -webkit-filter: none !important;
    filter: none !important;
    overflow-x: hidden !important;
}

/* Reapply grayscale to the document root */
html:has(body.pojo-a11y-grayscale) {
    -webkit-filter: grayscale(100%) !important;
    filter: grayscale(100%) !important;
}

/* Change toolbar positioning only during grayscale mode */
body.pojo-a11y-grayscale #pojo-a11y-toolbar {
    position: fixed !important;
    z-index: 99999 !important;
}



/* body.pojo-a11y-negative-contrast :not(#pojo-a11y-toolbar) .sticker {
    background-image: url("/wp-content/uploads/sites/81/2026/09/circle.svg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
body.pojo-a11y-high-contrast .sticker {
    background-image: url("/wp-content/uploads/sites/81/2026/09/circle.svg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
} */

body.pojo-a11y-light-background :not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link) .sticker,
body.pojo-a11y-negative-contrast :not(#pojo-a11y-toolbar) .sticker,
body.pojo-a11y-high-contrast .sticker{
    background-image: url("/wp-content/uploads/sites/81/2026/09/circle.svg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-color: transparent !important;
}
body.pojo-a11y-light-background :not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link).remove-content-bg::before,
body.pojo-a11y-negative-contrast :not(#pojo-a11y-toolbar).remove-content-bg::before,
body.pojo-a11y-high-contrast .remove-content-bg::before {
    content: none !important;
}

body.pojo-a11y-light-background :not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link) .white-bg img{
    background: #fff !important;
}
body.pojo-a11y-high-contrast .white-bg img{
    background: #fff !important;
}
body.pojo-a11y-negative-contrast :not(#pojo-a11y-toolbar) .white-bg img{
    background: #fff !important;
}
body.pojo-a11y-light-background :not(#pojo-a11y-toolbar):not(.pojo-a11y-toolbar-link) .submit-btn input{
    border: 1px solid !important;
}


.hero-video {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 0; /* keeps the button layered inside the hero only */
}

.hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Mute / Unmute button ---------- */
.hero-video__sound {
    position: absolute;
    top: 2vw;
    right: 2vw; /* physical right — stays top-right in RTL too */
    z-index: 20;

    /* circle size in vw (desktop) */
    width: 2.6vw;
    height: 2.6vw;
    min-width: 40px;
    min-height: 40px;
    max-width: 58px;
    max-height: 58px;

    padding: 0;
    margin: 0;

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

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    /* frosted / blurred circle */
    background-color: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);

    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-video__sound:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.06);
}

.hero-video__sound:active {
    transform: scale(0.95);
}

/* visible on ANY video frame: dark ring + white halo */
.hero-video__sound:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.95);
}

.hero-video .hero-video__sound-icon {
    /* icon size in vw (desktop) */
    width: 1.7vw;
    height: 1.7vw;
    min-width: 18px;
    min-height: 18px;
    max-width: 26px;
    max-height: 26px;

    object-fit: contain;
    display: block;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* No backdrop-filter support -> stay opaque so the black icon still reads */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .hero-video__sound {
        background-color: rgba(255, 255, 255, 0.94);
    }
}

/* High-contrast preference */
@media (prefers-contrast: more) {
    .hero-video__sound {
        background-color: #fff;
        border: 2px solid #000;
        box-shadow: none;
    }
}

/* Windows High Contrast / forced colors: PNGs are not recolored,
   so force a light chip or the black icon disappears */
@media (forced-colors: active) {
    .hero-video__sound {
        forced-color-adjust: none;
        background-color: #fff;
        border: 2px solid #000;
        box-shadow: none;
    }
    .hero-video__sound:focus-visible {
        outline: 3px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video__sound,
    .hero-video__sound:hover,
    .hero-video__sound:active {
        transition: none;
        transform: none;
    }
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {

    .hero-video {
        width: 100%;
        height: auto;
        position: relative;
    }

    .hero-video__media {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-video__sound {
        top: 2vw;
        right: 2vw;
        width: 4.6vw;
        height: 4.6vw;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-video .hero-video__sound-icon {
        width: 2.3vw;
        height: 2.3vw;
        min-width: 18px;
        min-height: 18px;
    }
}

/* ---------- Mobile (fixed px) ---------- */
@media (max-width: 767px) {

    .hero-video {
        width: 100%;
        height: auto;
        position: relative;
    }

    .hero-video__media {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .hero-video__sound {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        min-width: 0;
        min-height: 0;
    }

    .hero-video .hero-video__sound-icon {
        width: 20px;
        height: 20px;
        min-width: 0;
        min-height: 0;
    }
}