:root{
    --bg-color: #f2f1f0;
    --main-color: #025155;
    --white-color: #fff;

    /* --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: var(--white-color);
    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;
}
.hero-gradient{
    background: linear-gradient(180deg, #F5EFE9 71.04%, rgba(245, 239, 233, 0) 100%);
}

.cf7-success-message {
    text-align: center;
    margin: 1.5vw auto;
}
.success-checkmark {
    max-width: 70px;
    margin: 0 auto 20px;
}
.success-title {
    font-weight: 700;
    font-size: 23px;
    text-align: center;
    color: #fff;
}
.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

/**** Contact form css start ****/
.main-contact-form {
    direction: rtl;
}
.private-contact-form ::placeholder {
    color: #fff;
}
.private-contact-form input,
.private-contact-form textarea {
    font-size: 1.171vw;
    line-height: 1;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid #fff !important;
    color: #fff;
    width: 100%;
    padding: 1vh 0;
    font-family: "Heebo", Sans-serif;
    border: none;
    direction: rtl !important;
    font-size: 1vw;
}
.private-contact-form input:focus-visible,
.private-contact-form textarea:focus-visible {
    outline: none;
}
.private-contact-form .submit-col .global-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #FFFFFF;
    padding: 0.6vw 6vw;
    color: #FFFFFF;
    font-size: 1.2vw;
    line-height: 1.2;
    font-family: "Heebo", Sans-serif;
    font-weight: 500;
    margin: 0 auto;
    display: block;
    max-width: fit-content;
    border-radius: 0;
}
.private-contact-form .submit-col .global-btn:hover,
.private-contact-form .submit-col .global-btn:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
}
.private-contact-form .form-field>p {
    margin-bottom: 0;
}
.private-contact-form .form-field {
    margin-bottom: 1vw;
}
.private-contact-form .privacy-checkbox{
    margin-bottom: 1.5vw !important;
}
.private-contact-form .privacy-checkbox.first>p {
    display: flex;
    align-items: start;
}
.private-contact-form .privacy-checkbox .wpcf7-list-item {
    display: flex;
    margin-left: 0;
}
.private-contact-form .privacy-checkbox input {
    position: relative;
    width: 1.2vw;
    margin-left: 0.6vw;
    height: 1.2vw;
    border: 1px solid #FFFFFF !important;
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 0;
    border-radius: 0.2vw;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.private-contact-form .privacy-checkbox input[type="checkbox"]:checked::before {
    content: "✓";
    color: #FFFFFF;
    font-size: 0.8vw;
    font-weight: bold;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
}
.private-contact-form .privacy-checkbox.first .wpcf7-form-control-wrap .wpcf7-list-item-label {
    display: none;
}
.private-contact-form .privacy-checkbox .wpcf7-list-item-label {
    color: #FBFBF9;
    font-size: 0.66vw;
    line-height: 1.3;
    font-family: "Heebo", Sans-serif;
    font-weight: 400;
}
.private-contact-form .simple-text {
    margin-top: 0.5vw;
}
.private-contact-form .privacy-checkbox .wpcf7-list-item-label a {
    color: #FBFBF9;
    text-decoration: underline;
}
.private-contact-form .privacy-checkbox .wpcf7-list-item-label a:hover {
    color: #FBFBF9;
}
.private-contact-form .privacy-checkbox.first .wpcf7-not-valid-tip {
    position: absolute;
    top: 3vw;
    width: 100%;
    min-width: fit-content;
    text-wrap: nowrap;
}
.private-contact-form .wpcf7-not-valid-tip {
    font-size: 0.8vw;
}
.private-contact-form .wpcf7 form .wpcf7-response-output {
    border-width: 1px !important;
    direction: rtl;
    margin: 1vh 0;
    text-align: center;
    color: #FBFBF9;
    font-size: 0.8vw;
    line-height: 1.5;
}
.private-contact-form .success-checkmark {
    width: 4vw;
}
.private-contact-form .success-title {
    font-size: 2vw;
    color: #FBFBF9;
    margin-top: 1vw;
}
.private-contact-form .success-subtitle {
    font-size: 2vw;
    color: #FBFBF9;
}
.private-contact-form .cf7-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wpcf7 form .wpcf7-response-output{
    margin: 1vw 0;
    text-align: center;
}
.wpcf7 form .wpcf7-response-output{
    color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    color: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output{
    color: #46b450;
}
/**** Form CSS end ****/

/****************
Privacy Modal CSS
*****************/
body.privacy-modal-open .privacy-modal-wrapper,
body.accessibility-modal-open .privacy-modal-wrapper{
    height: 100vh;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.privacy-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    background-color: rgb(32, 31, 31);
    height: 100%;
    max-height: 85vh;
    padding: 8vh 5vw 8vh 4vw;
    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-bottom: 2vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
    margin-top: 3vh;
}
.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;
}
.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;
}

@media (min-width: 768px) and (max-width: 1079px) {
    .private-contact-form .privacy-checkbox .wpcf7-list-item-label {
        font-size: 0.8vw;
    }
    .private-contact-form input,
    .private-contact-form textarea {
        font-size: 1.5vw;
        padding: 0.8vw 0;
    }
    .private-contact-form .submit-col .global-btn {
        padding: 0.6vw 6vw;
        font-size: 1.6vw;
    }
    .private-contact-form .privacy-checkbox input {
        height: 15px;
        width: 15px;
        margin-left: 12px;
    }
}
@media (min-width: 500px) and (max-width: 767px) {
    .private-contact-form .privacy-checkbox .wpcf7-list-item-label {
        font-size: 12px;
    }
    .private-contact-form input,
    .private-contact-form textarea {
        font-size: 16px;
    }
    .private-contact-form .submit-col .global-btn {
        font-size: 18px;
        padding: 6px;
    }
}
@media (max-width: 768px) {
    .private-contact-form .wpcf7-not-valid-tip {
        font-size: 12px;
    }
    .private-contact-form .privacy-checkbox.first .wpcf7-not-valid-tip {
        top: 4vh;
    }
    .private-contact-form .wpcf7 form .wpcf7-response-output {
        font-size: 12px;
    }
    .private-contact-form .privacy-checkbox{
        margin-bottom: 16px !important;
        margin-top: 10px;
    }
    .private-contact-form .privacy-checkbox .wpcf7-list-item-label {
        font-size: 2.4vw;
    }
    .private-contact-form .privacy-checkbox input{
        height: 18px;
        width: 18px;
        margin-left: 12px;
        border-radius: 4px;
    }
    .private-contact-form .submit-col .global-btn {
        font-size: 18px;
        padding: 6px 60px;
    }
    .private-contact-form .privacy-checkbox input[type="checkbox"]:checked::before{
        font-size: 3.2vw;
    }
    /* Privacy Modal CSS */
    .privacy-wrapper{
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        padding: 50px 20px;
        top: 0;
        left: 0;
        transform: unset;
        position: fixed;
    }
    .privacy-wrapper .privacy-content h2 {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 22px;
    }
    .privacy-wrapper .privacy-content h3 {
        margin-top: 16px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .privacy-wrapper .privacy-content :where(p, li, a) {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 20px;
        text-align: right;
    }
    .privacy-close-btn {
        top: 10px;
        right: 20px;
    }
    .privacy-close-btn > img{
        width: 30px;
    }
    .pv-link, .pv-links > span{
        font-size: 14px;
    }
    .privacy-wrapper .privacy-content{
        padding-bottom: 0px !important;
    }
}
@media (max-width: 480px) {
    .private-contact-form input,
    .private-contact-form textarea {
        font-size: 16px;
    }
}




/****************************
Button hover - mirror shine sweep
A skewed white highlight sweeps once across the face of the button on hover.

Two implementations are needed, because the site has two kinds of button:
- <a> and <button> get a ::before that slides across.
- <input type="submit"> is a REPLACED element and cannot have ::before or
::after at all, so the same highlight is painted as a background-image and
its background-position is animated instead.
*****************************/

@keyframes mirrorShine {
    0%   { left: -90%; }
    100% { left: 130%; }
}

/* overflow clips the sweep to the button, so it follows any border-radius */
.elementor-button,
.global-btn,
.search-btn,
.call-btn {
    position: relative;
    overflow: hidden;
}

.elementor-button::before,
.global-btn::before,
.search-btn::before,
.call-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

/* .elementor-widget-button is included because Elementor sometimes carries the
link on the widget wrapper rather than on .elementor-button itself, and the
hover would otherwise never reach the button. */
.elementor-button:hover::before,
.global-btn:hover::before,
.search-btn:hover::before,
.call-btn:hover::before,
.elementor-widget-button:hover .elementor-button::before {
    animation: mirrorShine 0.75s ease forwards;
}

@keyframes mirrorShineBg {
    0%   { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* !important is needed here and only here: the page-level <style> Elementor
prints sets `.submit-btn input { background: <colour> }` using the SHORTHAND,
which resets background-image to none, and it is emitted after this file.
Only image/size/repeat/position are forced - the button keeps its own
background colour. */
.wpcf7-submit,
.submit-btn input[type="submit"] {
    background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%) !important;
    background-repeat: no-repeat !important;
    background-size: 45% 100% !important;
    background-position: -100% 0 !important;
}

.wpcf7-submit:hover,
.submit-btn input[type="submit"]:hover {
    animation: mirrorShineBg 0.75s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .elementor-button:hover::before,
    .global-btn:hover::before,
    .search-btn:hover::before,
    .call-btn:hover::before,
    .elementor-widget-button:hover .elementor-button::before,
    .wpcf7-submit:hover,
    .submit-btn input[type="submit"]:hover {
        animation: none;
    }
}