: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);
    direction: rtl;
}
header{
    background-color: var(--white) !important;
}
.headermenu li a{
    color: var(--blue) !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);
  }    
}


.about{
    margin: 0 auto;
}
.page-title{
    color: var(--white);
    background-color: var(--blue);
    font-size: 53px;
    font-weight: 700;
    padding: 8.5vw 0 4vw;
    text-align: center;
}
.page-main-content{
    width: 80%;
    margin: 6vw auto;
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-info{
    font-family: var(--cairo);
    font-weight: 400;
    font-size: 20px;
    padding-right: 20px;
}
.page-note{
    margin: 5vw auto;
    text-align: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 35px;
}
.page-note span{
    color: #FFC107;
}
@media only screen and (max-width: 650px){
    .page-title{
        font-size: 40px;
        padding: 12vh 0 4vh;
    }    
     .page-main-content{
        width: 95%;
        margin: 6vh auto;
        flex-direction: column;
    } 
    .about-img{
        width: 90%;
        height: auto;
        margin-bottom: 5vh;
    } 
    .about-info{
        font-family: var(--cairo);
        font-weight: 400;
        text-align: center;
        font-size: 18px;
        padding: 0 3vh;
    }   
    .page-note{
        margin: 5vh auto 10vh;
        font-size: 25px; 
        padding: 0 4vh;
    }    
}