:root{
    --gfs: 1440;
    --dark-color:#2D2926;
    --orange-color:#FFA400;
}
@font-face {
    font-family: 'IBM Plex';
    src: url('/fonts/fa-regular-400.woff');
}
*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    direction: rtl;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: normal;
    color: var(--dark-color);
    overflow: hidden;
}
.loader{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-color);
    z-index: 100;
}
.ring{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:300px;
    height:300px;
    background:transparent;
    border:3px solid #3c3c3c;
    border-radius:50%;
    text-align:center;
    line-height:300px;
    font-size:20px;
    color:var(--orange-color);
    text-transform:uppercase;
    text-shadow:0 0 10px var(--orange-color);
    box-shadow:0 0 20px rgba(0,0,0,.5);
}
.ring:before
{
  content:'';
  position:absolute;
  top:-3px;
  left:-3px;
  width:100%;
  height:100%;
  border:3px solid transparent;
  border-top:3px solid var(--orange-color);
  border-right:3px solid var(--orange-color);
  border-radius:50%;
  animation:animateC 2s linear infinite;
}
.ring span
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}
.ring span:before
{
  content:'';
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--orange-color);
  top:-6px;
  right:-8px;
  box-shadow:0 0 20px var(--orange-color);
}
@keyframes animateC
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}
.desktop{
    display: none;
}
h2{
    font-size: calc((125 / var(--gfs))*100*1vw);
}
h3{
    font-size: calc((100 / var(--gfs))*100*1vw);
}
p{
    font-size: calc((55/ var(--gfs))*100*1vw);
    line-height: 1.4;
}
a{
    text-decoration: none;
    font-size: calc((40 / var(--gfs))*100*1vw);
    color: var(--dark-color);
}
a.btn{
    font-size: calc((55 / var(--gfs))*100*1vw);
    background-color: var(--orange-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 2em;
    
}
a.outline{
    background: transparent;
    border: solid 1px var(--orange-color);
    color: var(--orange-color);
    margin-right: 0.7rem;
    position: relative;
    transition: .2s ease;
    overflow: hidden;
}
a.outline::after{
    width: 0;
    height: 100%;
    content: '';
    background: var(--orange-color);
    position: absolute;
    top: 0;
    right: 50%;
    border-radius: 2em;
    transition: .2s ease;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
}
a.outline:hover{
    color: #fff;
}
a.outline:hover::after{
    width: 100%;
    right: 0;
    opacity: 1;
}
.colored{
    color: var(--orange-color);
}
.message{
    font-size: calc((40 / var(--gfs))*100*1vw);
    color: var(--orange-color);
    display: none;
}
.nav{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    padding: 1em 4em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-item img{
    width: 125px;
    margin-top: 2rem;
}

.nav-item a{
    font-weight: bold;
}

.bg{
    display: none;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
    left: -20vw;
    top: 0;
    opacity: 0.2;
}

.bg img{
    height: 100%;
    object-fit: cover;
}

.mobile-bg{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0.185;
}

.mobile-bg img{
    width: 100%;
    object-fit: cover;
}

.container{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
    overflow: hidden;
}
.container .row{
    height: 100vh;
    width: 100%;
    padding: 6.25rem 2em 0 2em;
}
.container .mobile .col-1{
    margin-bottom: 3.25rem;
}
.container .mobile .col-1 p{
    margin: 1rem 0 2rem 0;
    text-align: justify;
}
.mobile .col-2 h3{
    margin: 2rem 0 1rem;
}
.mobile .col-2 .box{
    width: calc(100vw - 4em);
    position: relative;
    min-height: 200px;
    border-radius: 20px;
    transform-style: preserve-3d;
}
.mobile .col-2 .box .card{
    position: relative;
    background: rgba(255,255,255,0.3);
    width: calc(100vw - 4em);
    min-height: 200px;
    backdrop-filter: blur(10px);
    border: solid 1px rgba(255,255,255,0.5);
    border-top: solid 1px rgba(255,255,255,0.75);
    border-left: solid 1px rgba(255,255,255,0.75);
    border-radius: 20px;
    transform-style: preserve-3d;
}
.mobile .box .element{
    position: absolute;
    top: 50px;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border: solid 1px rgba(255,255,255,0.5);
    border-top: solid 1px rgba(255,255,255,0.75);
    border-left: solid 1px rgba(255,255,255,0.75);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.05);
    z-index: 1;
}
.mobile .element.img{
    padding: 10px;
    text-align: center;
}

.mobile .element.img img{
    width: 100%;
    display: inline-block;
}
.mobile .element.title{
    top: 5px;
    right: 100px;
    width: 100%;
    padding: 10px;
    text-align: right;
    background: transparent;
    backdrop-filter: blur(0px);
    border: unset;
    box-shadow: none;
    transition: 0.5s;
    transition-delay: 0.3s;
}
.mobile .title h3{
    color: #4B384C;
    font-size: calc((65/ var(--gfs))*100*1vw);
    font-weight: 500;
}
.mobile .element.desc{
    top: 40px;
    right: 100px;
    width: 75%;
    min-height: 150px;
    background: transparent;
    backdrop-filter: blur(0px);
    border: unset;
    box-shadow: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.mobile .element.desc p{
    color: #4B384C;
    font-weight: 300;
    text-align: right;
} 
.mobile .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background-color: rgba(215, 198, 230, 1);
    transition: all 0.7s ease-in-out;
}
.mobile .swiper-pagination-bullet-active{
    width: 24px;
    background-color: rgba(255,164,0 ,0.8);
    border-radius: 14px;
}

.mobile .col-3 h3{
    margin: 1rem 0;
}

.mobile .clients-list{
    width: 100%;
    overflow: hidden;
}

.mobile .clients-list .clients{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: unset;
}
.clients-list .swiper-wrapper{
    transition-timing-function: linear;
}
.mobile .clients-list .clients img{
    width: 75px;
    display: inline-block;
    margin-left: 2rem;
    filter: grayscale(1);
    object-fit: contain;
}

  .col-4{
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    padding: 0.5rem;
    text-align: center;
  }

  .contact-form{
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: rgba(45,41,38,0.2);
    z-index: 10;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
  }
.contact-form .form{
    width: 95vw;
    background: #fff;
    border-radius:2em;
    padding: 1em;
}
.contact-form .form .header span{
    font-weight: bold;
    margin-right: 1em;
    cursor: pointer;
}
.contact-form .form .body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 1rem;
}
.contact-form .form .body h3{
    font-weight: 500;
    width: 75%;
    text-align: center;
    margin: 1rem 0;
}
.contact-form .form .body p{
    text-align: justify;
}
.contact-form .form .body .form-fields{
    width: 100%;
    margin-top: 1rem;
}
.form-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}
.form-container label{
    margin-bottom: 0.45rem;
}
.form-container input,
.form-container select,
.form-container textarea{
    border: solid 1px rgba(45,41,38,0.2);
    border-radius: 10px;
    padding: 0.6rem;
    color: var(--dark-color);
}
.form-container textarea{
    height: 100px;
    resize: none;
}

.submit-btn.active span{
    display: none;
    font-size: 20px;
}

.submit-btn.active{
    background: transparent;
    border: solid 2px var(--orange-color);
    height: 60px;
    animation: animate-line 0.3s ease-in, spinner 0.5s infinite;
    animation-delay: 0.1s, 0.5s;
   -webkit-animation-fill-mode: forwards;
}

@keyframes animate-line {
    0% {
        width: 106px;
        
    }

    100% {
        width: 60px;
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  

.contact-form.active,
.thankyou-container.active{
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.contact-form.active .form,
.thankyou-container.active .dialog{
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.contact-form.active.out,
.thankyou-container.active.out{
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.contact-form.active.out .form,
.thankyou-container.active.out .dialog{
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}
@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.thankyou-container{
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: rgba(45,41,38,0.2);
    z-index: 11;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
}
.thankyou-container .dialog{
    width: 95vw;
    min-height: 30vh;
    background: #fff;
    border-radius:2em;
    padding: 2em;
    text-align: center;
}
.thankyou-container .dialog h2{
    text-align: center;
    margin: 2rem 0;
}
.thankyou-container .dialog p{
    margin-bottom: 2rem;
    text-align: right;
}
@media (min-width: 1200px) {
    h2{
        font-size: calc((55 / var(--gfs))*100*1vw);
    }
    h3{
        font-size: calc((35 / var(--gfs))*100*1vw);
    }
    p{
        font-size: calc((16/ var(--gfs))*100*1vw);
    }
    a{
        text-decoration: none;
        font-size: calc((16 / var(--gfs))*100*1vw);
    }
    a.btn{
        font-size: calc((16 / var(--gfs))*100*1vw);
    }
    .message{
        font-size: calc((16 / var(--gfs))*100*1vw);
    }
    .mobile,
    .mobile-bg{
        display: none;
    }
    .bg{
        display: block;
    }
    .nav-item img{
        width: 200px;
    }
    .desktop{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0 !important;
    }
    .desktop .col-1{
        width: calc(40% - 2rem);
    }

    .desktop .col-1 p{
        margin: 1rem 0 2rem 0;
    }

    .desktop .col-2{
        width: calc(60% - 2rem);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        height: 60%;
    }

    .block-2{
        margin-top: 5rem;
    }

    .block-2 h3{
        font-size: calc((20 / var(--gfs))* 100* 1vw);
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .block-2 .clients-list{
        width: 100%;
        overflow: hidden;
    }
    
    .block-2 .clients-list .clients{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: unset;
    }
    
    .block-2 .clients-list .clients img{
        width: calc((45 / var(--gfs))* 100* 1vw);
        /*width: 55px;*/
        display: inline-block;
        margin-left: 2rem;
        filter: grayscale(1);
        object-fit: contain;
    }
    .block-2 .clients-list .clients:hover{
        animation-play-state: paused;
    }
    .desktop .box{
        position: relative;
        width: 300px;
        min-height: 150px;
        border-radius: 20px;
        transform-style: preserve-3d;
        display: inline-block;
        margin: 0 2rem;
        transition: 0.5s;
        cursor: pointer;
    }
    
    .desktop .box:hover{
        min-height: 350px;
        z-index: 1;
    }
    .desktop .box .card{
        position: relative;
        background: rgba(255,255,255,0.1);
        width: 300px;
        min-height: 150px;
        backdrop-filter: blur(10px);
        border: solid 1px rgba(255,255,255,0.5);
        border-top: solid 1px rgba(255,255,255,0.75);
        border-left: solid 1px rgba(255,255,255,0.75);
        border-radius: 20px;
        box-shadow: 0 25px 45px rgba(0,0,0,0.05);
        transform-style: preserve-3d;
        transition: 0.5s;
    }
    .desktop .box:hover .card{
        min-height: 350px;
    }
    .desktop .box .element{
        position: absolute;
        top: 50px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: solid 1px rgba(255,255,255,0.5);
        border-top: solid 1px rgba(255,255,255,0.75);
        border-left: solid 1px rgba(255,255,255,0.75);
        border-radius: 10px;
        box-shadow: 0 25px 45px rgba(0,0,0,0.05);
        transform: translateZ(80px);
    }
    
    .desktop .element.img{
        padding: 10px;
        text-align: center;
    }
    
    .desktop .element.img img{
        width: 100%;
        display: inline-block;
    }
    
    .desktop .element.title{
        top: 10px;
        right: initial;
        left: 0;
        width: 100%;
        padding: 10px;
        text-align: center;
        background: transparent;
        backdrop-filter: blur(0px);
        border: unset;
        box-shadow: none;
        transform: translateZ(180px);
        transition: 0.5s;
        transition-delay: 0.3s;
    }
    .desktop .box:hover .element.title{
        top: 155px;
        text-align: left;
    }
    .desktop .title h3{
        color: #4B384C;
        font-size: calc((15 / var(--gfs))*100*1vw);
        font-weight: 500;
    }

    .desktop .element.hint{
        top: 90px;
        right: initial;
        left: 40px;
        width: 100%;
        padding: 10px;
        text-align: left;
        background: transparent;
        backdrop-filter: blur(0px);
        border: unset;
        box-shadow: none;
        transform: translateZ(180px);
        transition: 0.1s;
    }

    .desktop .element.hint p{
        font-size: calc((12 / var(--gfs))*100*1vw);
    }

    .desktop .box:hover .element.hint{
        opacity: 0;
    }
    
    .desktop .element.desc{
        top: initial;
        left: -20px;
        right: initial;
        bottom: -20px;
        width: 85%;
        min-height: 150px;
        padding: 10px;
        transform: translateZ(180px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        opacity: 0;
    }
    .desktop .box:hover .element.desc{
        opacity: 1;
    }
    
    .desktop .element.desc p{
        color: #4B384C;
        font-weight: 300;
        text-align: right;
    }

    .contact-form .form{
        width: 80%;
        max-width: 600px;
    }

    .contact-form .form .body h3{
        width: 80%;
        text-align: right;
    }
    .contact-form .form .body p{
        width: 50%;
    }

    .thankyou-container .dialog{
        width: 25vw;
    }

    .desktop > P{
        position: fixed;
        width: 100%;
        bottom: 0;
        right: 0;
        padding: 0.5rem;
        padding-right: 3rem;
        text-align: center;
        font-size: calc((12/ var(--gfs))*100*1vw);
        font-weight: 500;
        text-align: right;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px){
    h2{
        font-size: calc((130 / var(--gfs))*100*1vw);
    }
    h3{
        font-size: calc((55 / var(--gfs))*100*1vw);
    }
    p{
        font-size: calc((35/ var(--gfs))*100*1vw);
    }
    a{
        font-size: calc((35 / var(--gfs))*100*1vw);
    }
    a.btn{
        font-size: calc((35 / var(--gfs))*100*1vw);
    }
    .message{
        font-size: calc((35 / var(--gfs))*100*1vw);
    }
    .nav-item img{
        width: 200px;
    }

    .container .mobile .col-1 p{
        width: 85%;
        margin: 1rem 0 3rem 0;
    }

    .mobile .col-2 .box{
        min-height: 350px;
    }

    .mobile .col-2 .box .card{
        min-height: 350px;
    }

    .mobile .box .element.img{
        width: 200px;
        height: 200px;
    }

    .mobile .element.title{
        right: 200px;
    }
    .mobile .element.desc{
        top: 80px;
        right: 210px;
    }

    .mobile .col-3 h3{
        margin: 3rem 0;
    }

    .mobile .clients-list .clients img{
        width: unset;
        height: 45px;
    }

    .contact-form .form{
        width: 75vw;
    }

    .contact-form .form .body h3{
        width: 50%;
    }
    .contact-form .form .body p{
        width: 70%;
    }

}
@media (min-width: 767.98px) and (max-width: 991.98px){
    h2{
        font-size: calc((100 / var(--gfs))*100*1vw);
    }
    h3{
        font-size: calc((65 / var(--gfs))*100*1vw);
    }
    p{
        font-size: calc((45/ var(--gfs))*100*1vw);
    }
    a{
        font-size: calc((35 / var(--gfs))*100*1vw);
    }
    a.btn{
        font-size: calc((45 / var(--gfs))*100*1vw);
    }
    .message{
        font-size: calc((45 / var(--gfs))*100*1vw);
    }
    .nav-item img{
        width: 150px;
    }

    .mobile .box .element.img{
        width: 150px;
        height: 150px;
    }
    .mobile .element.title{
        right: 150px;
    }
    .mobile .element.desc{
        top: 60px;
        right: 160px;
    }

    .mobile .col-3 h3{
        margin: 2rem 0;
    }

    .mobile .clients-list .clients img{
        width: unset;
        height: 35px;
    }

    .mobile .col-4 p{
        font-size: calc((35/ var(--gfs))*100*1vw);
    }

    .contact-form .form{
        width: 80vw;
    }

    .contact-form .form .body h3{
        width: 50%;
    }
    .contact-form .form .body p{
        width: 70%;
    }
}