
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@500;700&display=swap');
/* @font-face {
    font-family: 'Cairo';
    src: url(Cairo.woff2) format('woff2');
   } */
:root{
    --primary_color: #0098dc;
    --secondary_color: #2cc4fa; /* #00b0ef | #2cc4fa  | 00b1ef*/;
    --white: #fff;
    --black: #949699;
    --grey: #949699;
    --primary_font: "Cairo";
    /* --primary_font: "Acumin Pro"; */
    --secondary_font: "Cairo";
    /* --secondary_font: "Acumin Pro Bold"; */
    --logo_font: "Cairo-Bold";
}
body {
    color:var(--grey) !important;
}
.dropdown-item {
    color:var(--grey) !important;
}
h2,h4{
    color: #949699;
}
.tile_heading{
    font-family: var(--secondary_font) !important;
    color:#949699;

}
.title_font_size{
    font-size: 32px !important;
}
.info_font_size{
    font-size: 16px !important;
}
.heading_text{
    font-family: var(--secondary_font) !important;
}
.body_text{
    font-family: var(--primary_font) !important;
}
.nav_text{
    font-family: var(--primary_font) !important;
    font-weight: normal !important;
    color: #fff !important;
}
.nav_text::before{
    display: none !important;
}
.info_text{
    font-family: var(--primary_font) !important;
    font-size: 16px !important;
}
.heading_font{
    font-size: 35px !important;
    font-family: var(--secondary_font) !important;
}
.body_font{
    font-size: 25px !important;
}
.font_18{
    font-size: 18px !important;
}
.font_19{
    font-size: 19px !important;
}
.font_20{
    font-size: 20px !important;
}
.font_22{
    font-size: 22px !important;
}
.font_16{
    font-size: 16px !important;
}
.font_15{
    font-size: 15px !important;
}
.font_14{
    font-size: 14px !important;
}
.font_12{
    font-size: 12px !important;
}
.font_25{
    font-size: 25px !important;
}
.font_30{
    font-size: 30px !important;
}
.font_32{
    font-size: 32px !important;
}
.font_35{
    font-size: 35px !important;
}
.font_40{
    font-size: 40px !important;
}
.font_45{
    font-size: 45px !important;
}

.p_color{
    color: var(--primary_color) !important;
}
.s_color{
    color: var(--secondary_color) !important;
}
.p_bg_color{
    background-color: var(--primary_color) !important;
}
.s_bg_color{
    background-color: var(--secondary_color) !important;
}

.bg-grad{
    background: linear-gradient(to left, var(--primary_color), var(--secondary_color)) !important;

}

.text-black{
    color: #949699 !important;
}

.text-grey{
    color: var(--grey) !important;
}
.hov_s_color:hover{
    color: var(--black) !important;
}
.bg-info{
    background-color: var(--primary_color) !important;
}
.bg-warning{
    background-color: #ffa900 !important;
}
.bg-danger{
    background-color: #f2473f !important;
}
.bg-success{
    background-color: #3ca156 !important;
}

.font-bold{
    font-weight: bold;
}
.font-regular{
    font-weight: normal;
}

.border-primary{
    border-color: var(--primary_color) !important;
}


.mt_5_em{
    margin-top: 5em !important;
}
.mb_5_em{
    margin-bottom: 5em !important;
}
.pb_5_em{
    padding-bottom: 5em !important;
}

.hr-line{
    height: 2px !important;
    background-color: var(--secondary_color);
    opacity: 1;
}

.hr-line-thick{
    height: 2px !important;
    opacity: 1;
}

.disabled-text{
    cursor: not-allowed !important;
    color: grey !important;
}

.img-logo{
    width: 200px;
}

.ion-icon {
    font-size: 64px;
    --ionicon-stroke-width: 16px;
  }

.cs a:hover {
    color: #1E355E !important;
}

a i.fab.fa-facebook-f:hover {
    color: #4267B2;
    border-color: #4267B2;
}
a i.fab.fa-instagram:hover {
    color: #C13584;
    border-color: #F77737;
}
a i.fab.fa-youtube:hover {
    color: #FF0000;
    border-color: #282828;
}
a i.fab.fa-tiktok:hover {
    color: #00f2ea;
    border-color: #ff0050;
}
.bc-blue{
    background: linear-gradient(to left, var(--primary_color) 0%, var(--secondary_color) 100%) !important;

}

/* [1] The container */
.img-hover-zoom {
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}
/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
    transition: transform .5s ease;
}
/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
    transform: scale(1.1);
}

#color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #949699;
    opacity: 0.1;
 }
 /* .d-none{
     display: none !important;
 } */
 .d-flex{
     display: flex;
 }
 .align-self-center{
    align-self: center;
 }
/* input{
    border-radius: 8px;
} */
 .upper-radius{
    border-radius: 25px 25px 0 0;
 }

 .full-radius{
     border-radius: 8px !important;
 }

 .semi-radius{
    border-radius: 8px;
}
 .semi-radius-top{
    border-radius: 8px 8px 0 0;
}
 .semi-radius-right{
    border-radius: 0px 8px 8px 0 !important;
}
 .semi-radius-bottom{
    border-radius: 0 0 8px 8px;
}
 .semi-radius-left{
    border-radius: 8px 0 0 8px;
}

 .hover-radius:hover {
    border-radius: 8px;
 }

 .img-profile{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50% !important;
 }

 .justify-content-right{
    justify-content:right   
 }

.overflow-hidden{
    overflow: hidden;
}

.badge_circle {
    border-radius: 50%;
    width: 50px !important;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 30px;
  }

  /* .border-gradient  {
    border: 4px solid !important;
    border-image-slice: 1 !important;
    border-width: 2px !important;
    border-image-source: linear-gradient(to left, var(--primary_color), var(--secondary_color)) !important;
  } */

  .border-gradient  {
    border-color:  var(--primary_color) !important;
    /*border: 4px solid !important;
     border-image-slice: 1 !important;
    border-width: 2px !important;
    border-image-source: linear-gradient(to left, var(--primary_color), var(--secondary_color)) !important; */
  }

  .get_a_quote_section{
      background-repeat: no-repeat;
      background-size: contain;
      min-height: 200px;
  }
  .download_app_section{
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 200px;
  }
  .download_app_section-arabic{
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 200px;
  }

/* 
  .bg-success{
      background-color: var(--primary_color) !important;
  }

  .bg-warning{
      background-color: var(--secondary_color2) !important;
  }
  .bg-danger{
      background-color: #dc5753 !important;
  } */

/* .form-control:disabled, .form-control[readonly]{
    background-color: var(--cream);
} */

/* Change the white to any color */
/* input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
 -webkit-box-shadow: 0 0 0 30px var(--light_yellow) inset !important;
} */
/* .form-control:focus{
    background-color:  var(--light_yellow) !important;
}
.form-control:disabled, .form-control[readonly]{
    background-color:  #fff !important;

} */


.line-h-1-5{
    line-height: 1.5;
}
.text-line-9{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 9; /* number of lines to show */
-webkit-box-orient: vertical;
}
.text-line-4{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4; /* number of lines to show */
-webkit-box-orient: vertical;
}
.text-line-2{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;
}
.white-space-nowrap{
    white-space: nowrap;
}
.mh-md-40{
    min-height: 40px;
}
.min-h-500{
    min-height: 500px;
}

/* div.toast.toast-success{
    background-color: var(--secondary_color1);
}
div.toast.toast-warning{
    background-color: var(--secondary_color1);
}
div.toast.toast-warning{
    background-color: #FD3A4A; 
} */
  /* less 1300px scree size */
/* @media(max-width:1300px) {
    .container,.padding-cont{
        padding-right: 50px !important;
        padding-left: 50px !important;
    }
    .hero-title{
        color: var(--secondary_color1) !important;
    }

    .intro_section .slide_description_wrapper{
        background-color: var(--cream);
    }
   
   
 } */
/* Less than 800px scree size */
 @media(max-width:800px) {
   .heading_font{
       font-size: 22px !important;
   }
   .service-tiles{
    justify-content: center!important;
   }
   .body_font{
        font-size: 18px !important;
    }
    .col_mob_2{
        width: 50% !important;
    }
    .title_font_size{
        font-size: 22px !important;
    }
    .info_font_size{
        font-size: 14px !important;
    }
    .img-logo {
        width: 130px;
    }
    .slider-hero{
        margin-top: 6rem !important;
        right:14px;
    }
    
} 




@media(min-width:1024px) {
    .col_20{
        width: 20% !important;
    }
    .w-md-auto{
        width: auto !important;
    }
    .position-lg-absolute{
        position: absolute !important;
    }
}

/* More than 800px scree size */
/* @media(min-width:800px) {
    .d-md-block{
        display: block !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .position-md-absolute{
        position: absolute;
    }
    .p-r-130{
        padding-right: 130px !important;
    }

    .ml-md-60{
        margin-left: -60px !important;
    }
   
 } */

 /* scroll bar */
 /* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--white); 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--secondary_color); 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary_color); 
  }
  .form-control{
      appearance: auto !important;
  }
  .firebaseui-card-actions {

    padding: 8px 63px 24px 4px !important;

  }
