:root{
    --tajawal: "Tajawal", sans-serif;
    --cairo: "Cairo", sans-serif;
    --white: #fff;
    --black: #000;
    --blue: #005D99;
    --lightblue: #0D5B94;
    --skyblue: #6ADBFF;
    --offwhite: #F5F5F5;
}
*{
    padding: 0;
    margin: 0;
    direction: rtl;
}
a{
    text-decoration: none;
}
@keyframes pulse{
    0%{
        scale: 1;
    }
    50%{
        scale: 1.1;
    }
    100%{
        scale: 1;
    }
}
body{
    font-family: var(--tajawal);    
}

header{
    background-color: #e9f0f5 !important;
}
.headermenu li a{
    color: var(--black) !important;
}
.headerbutton{
    border: 1px solid var(--blue);
    color: var(--blue);
}
.headerbutton path{
    fill: var(--blue);
}
@media only screen and (max-width: 650px){
    .headertoggle svg path{
        fill: var(--blue);
    }
    .headerwhatscall svg path{
        fill: var(--blue);
    }
    .headerwhatscall svg circle{
        stroke: var(--blue);
    }    
}
.services{
    padding: 0 0;
}
.servicetitle{
    color: var(--white);
    background-color: var(--blue);
    font-size: 53px;
    font-weight: 700;
    padding: 9vw 0 4vw;
    text-align: center;
}
.servicedesc{
    font-family: var(--cairo);
    font-weight: 600;
    font-size: 24px;
    width: 60%;
    margin: 5vw auto;
    text-align: center;
    color: var(--blue);
}
.servicemain{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10vw;
}
.servicemain:nth-child(even){
    flex-direction: row-reverse;
    background-color: #fafafa;
}
.serviceimage{
    width: 670px;
    height: auto;
}
.servicecontent{
    margin: auto;
    font-family: var(--cairo);
}
.servicecontentsubtitle{
    font-weight: 500;
    font-size: 18px;
    color: #A3A3A3;
}
.servicecontenttitle{
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
}
.servicecontenttext{
    font-weight: 500;
    font-size: 18px;
    color: #454545;
}
.servicecontentcta{
    display: block;
    width: fit-content;
    margin: 10px 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 6px;
    padding: 10px 4vw;
}
@media only screen and (max-width:650px){
    .servicetitle{
        margin: 8vh auto auto;
        padding: 8vw 0 4vw;
    }
    .servicedesc{
        font-size: 18px;
        width: 90%;
        margin: 5vh auto;
    }
    .servicemain{
        flex-direction: column;
        padding: 0 2vh;
    }
    .servicemain:nth-child(even){
        flex-direction: column;
    }
    .serviceimage{
        width: 350px;
        height: auto;
    }    
    .servicecontent{
        margin: auto;
        text-align: center;
    }
    .servicecontentsubtitle{
        font-size: 16px;
        color: #A3A3A3;
    }
    .servicecontenttitle{
        font-size: 28px;
        color: var(--black);
    }
    .servicecontenttext{
        font-size: 16px;
        color: #454545;
    }
    .servicecontentcta{
        margin: 20px auto 30px;
        font-size: 18px;
        padding: 10px 4vw;
    }    
}
/* ********************************************************************* */
.form{
    width: 100%;
    padding: 4vw 0;
    position: relative;
    text-align: center;
}
.form form{
    background-color: var(--white);
    padding: 4vw;
    border-radius: 10px;
    border: 1px solid #a3a3a3;
    text-align: right;
    width: 1000px;
    margin: auto auto 3vw;
    position: relative;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);    
}
.form form::before{
    width: 145px;
    height: 145px; 
    content: "";
    background-image: url("../images/stamp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -8%;
    top: -12%;
}
.inputcontainer{
    display: flex;
    width: 100%;
    margin: auto;
}
.inputcontainer div{
    width: 50%;
    margin: auto 20px;
}
.inputcontainer label{
    color: #3D3D3D;
    font-family: var(--cairo);
    font-weight: 700;
    font-size: 20px;
}
.inputcontainer div input,
.inputcontainer div select{
    width: 100%;
    height: 50px;
    display: block;
    padding: 0 5px;
    border: 1px solid #3D3D3D;
    border-radius: 5px;
    margin: 10px auto 20px;
    font-family: var(--cairo);
    font-weight: 500;
    font-size: 20px;
}
.inputcontainer div input{
    width: 97%;
}
.inputcontainer div .formnote{
    font-family: var(--cairo);
    font-weight: 400;
    font-size: 16px;
    padding-top: 25px;
    color: #848484
}
.inputcontainer div #formsubmit{
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--cairo);
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    margin-top: 25px;
    width: 92%;
    height: 60px;
    float: right;
}
@media only screen and (max-width:650px){
    .form{
        text-align: center;
        margin: 7vh auto;
    }
    .form form{
        padding: 4vh 2vw;
        width: 90%;
        margin: 3vw auto;
    }
    .form form::before{
        width: 110px;
        height: 110px;  
        right: unset;
        left: 0%;
        top: -5%;
    }
    .inputcontainer{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: auto;
    }
    .inputcontainer div{
        width: 90%;
        margin: auto 20px;
    }
}