@import "reset.css";
@import "scrollbar.css";
@import "fonts.css";
.rtl{direction: rtl;}
:root {
    font-size: 16px;
    --orange-color: #EF7522;
    --font-size-18px: 1.125rem;
    --font-size-20px: 1.25rem;
    --font-size-35px: 2.188rem;
    --font-size-20vw:1.07vw;
    --font-size-30vw:1.56vw;
    --font-size-55vw: 2.84vw;
    --font-size-20vw-mob: 5.4vw;
    --font-size-18vw-mob:5vw;
   
    
}

.only_desktop {
    display: block;
}

.mobile .only_desktop {
    display: none;
}

.only_mobile {
    display: none;
}

.mobile .only_mobile {
    display: block;
}
button{border: none;cursor: pointer;}
.closeTnx {
    cursor: pointer;
}
body{
    background-color: var(--orange-color);
    font-family: "takeaway-normal", sans-serif; text-align: start;
    overflow: auto; text-rendering: optimizeLegibility;
}
.shadow {
    width: 50%;
    height: 100%;
    position: fixed;
    background: #0003;
    transform: translate(-50%, -50%);
    left: 0%;
    top: 50%;
    z-index: 4;
    display: none;

}
.shadow.active {
    display: block;
}
.loader {

    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--orange-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 70%;
    top: 44%;
    z-index: 5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.error, .success {
    color: #DD2025;
    position: absolute;
    z-index: 1;
    left: 1.3vw;
    top: 2vw;
    display: none;
    font-size: 0.7vw;
}
.mobile .error, .mobile .success {
    left: 6.3vw;
    top: 10vw;
    font-size: 3.5vw;
}
.mobile .success {
    top: 5vw;
    font-size: 5vw;
}

.success {
    left: 2vw;
    top: 1.2vw;
    font-size: 1vw;
    color: green;
}

.error.active {
    display: block;
}

.success.active {
    display: block;
}

.bold{
    font-family: "takeaway-bold", sans-serif; font-weight: 700;
}
.close-x{
    position: absolute; inset-inline-start: 5vw; top: 2vw; width: 30px; height: 30px;
    &:before, &:after{
        content: ''; position: absolute; left: 25px; height: 22px; width: 2px; background-color: #000;
    }
    &:before {transform: rotate(45deg);}
    &:after {transform: rotate(-45deg);}
}
.custom-checkbox{
    display: block; position: relative; cursor: pointer; font-size: 0.875rem;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
    .text{margin-inline-start: 8vw;}
    input {
        position: absolute; opacity: 0; cursor: pointer; height: 0;width: 0;
    }
    .checkmark {
        position: absolute; top: 0; inset-inline-start: 0; border: 1px solid #000; border-radius: 2px;
        height: 22px; width: 22px; background-color: transparent;
        &:after {
            content: ""; position: absolute; display: none;
            left: 8px; top: 3px; width: 6px; height: 11px;
            border: solid #000; border-width: 0 1px 1px 0;
            -ms-transform: rotate(45deg); transform: rotate(45deg);
        }
    }
    input:checked ~ .checkmark:after {
        display: block;
    }
}
.header{
    width: 100%; background-repeat: no-repeat; background-size: cover;
    background-position: top center;
}
.logo-wrapper{
    background-color: #fff; display: flex; justify-content: center; align-items: center;
    padding-block: 9.662vw;
}
.main-title{
    font-family: "takeaway-bold", sans-serif; font-weight: 700; color: var(--orange-color);
}
.form{
    position: relative;
    transition: 0.7s ease-in-out; overflow: auto; height: 100vh;
    .title{
        font-size: 1.8vw;
    }
    .text{
        font-size: var(--font-size-20vw);
       
    }
    .text-inputs{
        font-size: 0.875rem;
    }
    .input-container{
        display: flex; flex-direction: column; gap: 20px;
    }
    .input{
        background-color: #fff; border: 1px solid #000; border-radius: 50px;
        width: 100%; font-size: var(--font-size-20px); padding: 15px 20px; cursor: pointer;
        &::placeholder {color: #000;}
    }
    .input[type="tel"] {text-align: start; direction:rtl;}
    .with-cv{
        display: flex; flex-direction: column;
    }
    input[type="file"] { visibility: hidden;}
    .custom-file-upload {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #fff;
        border: 1px solid #000;
        border-radius: 10px;
        padding: 15px 20px;
        cursor: pointer;
        font-size: 16px;
        max-height: 80px;
            #file-name {
                white-space: nowrap;
                font-size: var(--font-size-20px);
            }
    }
    .custom-file-upload img {
        width: 40px;
        height: 40px;
    }
    .button-form{
        display: flex; justify-content: center; align-items: center; gap: 8px;
        background-color: #0C6D42; border-radius: 45px;
        width: 100%;
        .txt{
            color: #fff; font-size: var(--font-size-20px);
            font-family: "takeaway-bold", sans-serif;  letter-spacing: 0.0620em;
            font-weight: bold;
        }
    }

}
.form-sign{background-color: #C8E3B0;}
.form-apply{
    background-color: #FDDF7D; font-size: var(--font-size-18px);
    .title{line-height: 1.2; font-size: var(--font-size-35px); font-family: "takeaway-bold", sans-serif;}
    .list{
        display: flex; flex-direction: column; gap: 0.625em; align-items: flex-start; margin-top: 1vw;
    }
    .list-item{
        display: flex; gap: 0.5em; align-items: center;
        .icon{vertical-align: middle;}
        .text-item{font-size: var(--font-size-20px);}
    }
    .with-text-area{
        display: flex; flex-direction: column; gap: 0.625em; align-items: flex-start;
        .error {
            top: 6vw;
        }
        .success {
           
            top: 4vw;

        }
    }
    .text-area{width: 100%; border-radius: 10px; min-height: 6.53vw; }
}
.main{
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    .text-sunset{font-size: var(--font-size-35px);}
    .inner1-text{font-size: var(--font-size-30vw);}
    .video-container{
        .video-iframe{width: 100%; height: 100%;}
    }
}
.inner2 {
    .inner2-text{
        font-size: var(--font-size-30vw); padding-bottom: 2vw;
        width: 60%; margin-inline: auto; text-align: center;
    }
}

.form .custom-checkbox {
    .error {
        opacity: 0;
    }
    .success {
        opacity: 0;
    }
}

@media only screen and (max-width: 768px) {
    
    body{padding-bottom: 25vw;}

    .shadow {
        width: 100vw;
        height: 100%;
        position: fixed;
        background: #0003;
        transform: translate(0%, -50%);
        left: 0%;
        top: 50%;
        z-index: 4;
        .loader {
            left: 36%;
            top: 44%;
        }
    }
    
    .tnx-sign {
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 5;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        background-color: #C8E3B0;
        padding: 5vw;
        text-align: center;
        display: none;
        &.active {
            display: block;
        }
        .tnx-pic {
            width: 100%;
            height: 89vw;
        }
        .tnx-text {
            display: flex;
            flex-direction: column;
            font-size: 5vw;
            line-height: 8.5vw;
            margin-top: 6vw;
            gap: 2vw;

            .closeTnx {
                position: absolute;
                top: 6vw;
                width: 4vw;
                height: 4vw;
            }

            h3 {
                line-height: 8.3vw;
                font-size: 5.3vw;
            }
        }
        .social-media {
            display: flex;
            justify-content: center;
            padding: 5vw;
            gap: 3vw;
            img {
                width: 11vw;
                height: 12vw;
            }
        }

    }

    .tnx-apply {
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 5;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        background-color: #FDDF7D;
        padding: 5vw;
        text-align: center;
        display: none;
        &.active {
            display: block;
        }
        .tnx-pic {
            width: 100%;
            height: 89vw;
        }
        .closeTnx{
            position: absolute;
            width: 1vw;
            top: 1vw;
        }
        .tnx-text {
            display: flex;
            flex-direction: column;
            font-size: 5vw;
            line-height: 8.5vw;
            margin-top: 6vw;
            gap: 2vw;
            .closeTnx {
                position: absolute;
                top: 6vw;
                width: 4vw;
                height: 4vw;
            }
          

            h3 {
                line-height: 8.3vw;
                font-size: 5.3vw;
            }
        }
        .social-media {
            display: flex;
            justify-content: center;
            padding: 5vw;
            gap: 3vw;
            img {
                width: 11vw;
                height: 12vw;
            }
        }

    }
    .with-text-area {
        .error {
            top: 32vw;

        }
        .success {
            top: 20vw;

        }
    }
    .form-apply {
        & .with-text-area {
            .error {
                top: 30vw;
            }
            .success {
                top: 25vw;
            }
        }
    }
   .form .custom-checkbox {
        .error {
        
            top: 5vw;
            opacity: 0;
        } 
        .success {
            top: 1vw;
            opacity: 0;

        }
        .text {
            font-size: 4vw;
        }
    }
    .subtitle {
        font-size: 5vw;
    }
    .text-label {
        font-size: 4vw;
        white-space: nowrap;

    }
    .header{
        background-image: url("../images/header_bg_mob.webp");
        background-position: 0vw -12vw;
        width: 100vw;
    }
    .top{
        .lottie-wrapper{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 22.739vw;
            margin-top: 28vw;
            padding-bottom: 20vw;
            .text{
                font-family: "takeaway-bold", sans-serif;
                text-align: center; font-weight: 700; font-size: 0.875rem;
                letter-spacing: 0.0620em; line-height: 1;
            }
        }
        .lottie{width: 19.324vw;}
    }
    .main-title{
        font-size: 3.75rem; text-align: center;
        position: relative;
        top: -2vw;

    }
    .main{
        text-align: center; padding-top: 4.831vw;
        .sunset-image{margin-inline: auto;}
        .inner1{
            display: flex; flex-direction: column; gap: 0; align-items: center;
        }
        .inner1-text,.inner2-text {
            font-size: 5.4vw
        }
        .inner2-text  {
            width: 100%;
        }
       
        .inner2{
            background-image: url("../images/Union.svg"); background-repeat: no-repeat;
            background-size: cover; background-position: top; width: 100%;
            padding-block: 16vw 26vw; margin-top: 7vw;

            .video-container{
                 border-radius: 2.415vw;
                width: 87%;
                height: 45.995vw;
                background-color: #000; margin-inline: auto; margin-block: 3vw 5vw;
                .video-iframe{
                    border-radius: 2.415vw;
                }
            }
        }
        
        
    }
    .footer{
        margin-top: 5vw;
        .title{
            text-align: center; font-size: var(--font-size-20px);
            font-size: 5.4vw;
        }
        .buttons{
            display: flex; justify-content: center; align-items: center;
            gap: 4.831vw; margin-top: 2.667vw;
        }
        .button{
            border-radius: 2.415vw; width: 42.667vw; height: 34.667vw;
            box-shadow: 6px 6px 0 0 #000;
            .text{
                display: block; padding-top: 1vw;
                font-size: var(--font-size-18px); line-height: 1.3;color: #000;
            }
            &.sign {
                background-color: #C8E3B0;
                .lottie-icon{
                    margin-inline-start: 12vw;
                }
            }
            &.apply{background-color: #FDDF7D;}
        }
        .lottie-icon{
            display: block;
            width: 12vw;
            height: 12vw;
            margin: auto;
        }
       
    }
    .form{
        position: fixed; top: 0; padding-inline: 5.333vw; padding-top: 10vw; padding-bottom: 11.667vw;width: 100%;
        &.hide{
            transform: translateY(100vh);
        }
        &.show{
            transform: translateY(0)
        }
        .title{margin-bottom: 2.667vw; font-size: 8.1vw;}
        .text{ margin-bottom: 2.667vw; font-size: 4.8vw; a {
            color: #000;
        }}
        .text-inputs{margin-top: 10.667vw;}
        .input-container{margin-top: 3vw;}
        .button-form{margin-top: 5.333vw; height: 18.667vw;}
    }
    .form-apply{
        .list{margin-top: 5.333vw;}
        .text-area{height: 32vw;}
      
            & .list-item {
                .text-item {
                    font-size: 4.8vw;
                }
            }
    
    }
    .logo-wrapper {
        padding-bottom: 1.4vw;
        padding-top: 1.4vw;
        /* position: fixed;
        width: 100%; */
    }
   
}
@media only screen and (min-device-width: 769px) {
    body{
       display: grid; grid-template-columns: 75% 25%;
    }
    .main-title{
        font-size: 4.7vw;
        display: block;
        margin: auto;
        text-align: center;
        position: relative;
        left: 12vw;
        top: 1.5vw;
    }
    .lottie-wrapper{display: none;}
    .footer .title{display: none;}
    .header{
        background-image: url("../images/header_bg_desk.webp");
        height: 40.141vw; background-position: 0 4.5vw;
        background-size: contain;
        .logo-wrapper{padding-block: 1vw;}
    }
    .main{
        display: flex; justify-content: center; align-items: center;
        .inner1{
            display: grid; grid-template-areas: 'item1 item3'
                                                'item1 item4'
                                                'item2 item5';
                                                position: relative;
                                                top: -3vw;
            grid-column-gap: 3vw;
            text-align: center;
            .sunset-image{grid-area: item1; width: 9.09vw;}
            .text-sunset{grid-area: item2; margin-top: -2vw;font-size: var(--font-size-55vw);}
            .item3{grid-area: item3; margin-top: 1vw;}
            .item4{grid-area: item4;}
            .item5{grid-area: item5;}

        }
        .inner2{
            background-image: url("../images/Subtract.svg"); background-repeat: no-repeat;
            background-size: cover; background-position: top; width: 100%;
            padding-block: 9vw 7vw; margin-top: -1vw;
            .inner2-text{
                text-align: center; margin-inline: auto;
            }
            .video-container{
                width: 49vw;
                margin-inline: auto;
                height: 26vw;
            }
        }
    }
    .footer{
        .buttons{
            position: fixed; top: 0; inset-inline-end: 0; z-index: 1; height: 5.05vw;;
            width: 25%; display: flex;
            .button{
                width: 50%;
                cursor: pointer;
                &.sign{
                    background-color: #C8E3B0;
                }
                &.apply{
                    background-color: #FDDF7D;
                }
                .text{
                    font-size: 1.60vw;
                    br{display: none;}
                }
                .lottie-icon{
                    display: block; margin-inline: auto;
                    width: 2.8vw; height: 2.8vw;
                }
                &.active{
                    border-inline-end: 4px solid #000;
                    border-bottom: 4px solid #000;
                   
                    .text {
                        font-weight: bold;
                    }
                }
                &.apply.active {
                    border-inline-start: 4px solid #000;
                    border-inline-end: unset;
                   
                }
            }
        }
    }
    .forms{
        margin-top: 4.3vw; position: fixed;
    }
    .tnx-sign {
        position: fixed;
        background: #C8E3B0;
        z-index: 1;
        left: 0;
        height: 100vh;
        width: 25vw;
        padding: 1.1vw;
        text-align: center;
        display: none;
        &.active {
            display: block;
        }
        .closeTnx{
            position: absolute;
            width: 1vw;
            top: 1vw;
        }
        .tnx-pic {
            width: 17.5vw;
            height: 17.3vw;
            margin: 0.5vw auto;
        }
        .tnx-text {
            margin-top: 2vw;
            display: flex;
            flex-direction: column;
            gap: 0.5vw;
         }

        h2 {
            font-size: 1.8vw;
            line-height: 2vw;
            font-weight: bold;
        }
        h3 {
            font-size: 1.1vw;
            line-height: 1.56vw;
            margin-bottom: 0.5vw;
        }
        p {
            font-size: 1vw;
        }
    }

    .tnx-apply {
        position: fixed;
        background: #FDDF7D;
        z-index: 1;
        left: 0;
        height: 100vh;
        width: 25vw;
        padding: 1.1vw;
        text-align: center;
        display: none;
        &.active {
            display: block;
        }
        .tnx-pic {
            width: 17.5vw;
            height: 17.3vw;
            margin: 0.5vw auto;
           
        }
       
        .tnx-text {
            margin-top: 2vw;
            display: flex;
            flex-direction: column;
            gap: 0.5vw;
            img.closeTnx{
                position: absolute;
                width: 1vw;
                top: 1vw;
            }
         }

        h2 {
            font-size: 1.8vw;
            line-height: 2vw;
            font-weight: bold;
        }
        h3 {
            font-size: 1.1vw;
            line-height: 1.56vw;
            margin-bottom: 0.5vw;
        }
        p {
            font-size: 1vw;
        }
    }
    
    .social-media {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1vw;
        padding: 1vw;

        img {
            width: 2.5vw;
            height: 2.5vw;
        }
    }
    .form{
        padding-inline: 1.5vw;
        padding-top: 2vw; padding-bottom: 7vw;
        .close-x{display: none;}
        .title{margin-bottom: 0.667vw;}
        .text{ margin-bottom: 0.667vw;}
        .text-inputs{margin-top: 1.667vw;}
        .input-container{margin-top: 1vw;
         
        }
        .custom-checkbox{
           .text{
               display: block; margin-inline-start: 27px;font-size: 0.87vw;
               a {
                color: #000;
               }
           }
        }
        .button-form{margin-top: 1.333vw; height: 2.8vw;}
        .form-apply{
            cursor: pointer;
            .list{margin-top: 0.5vw;}
            .text-area{height: 12vw;}
            
        }
    }
}
@media only screen and (min-device-width: 1024px) {
    .footer .buttons{
        .button .text{font-size: 1.1vw;}
    }
}