/* Start Loading Screen */
html, body {
    background: #ffffff;
    width: 100%;
}


.loading-screen{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
}

.loading-screen .img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.loading-screen .img img{
    -webkit-animation: fade-in-out 1.4s 2 ease-in-out both;
    animation: fade-in-out 1.4s 2 ease-in-out both;
}



@-webkit-keyframes fade-in-out {
    0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
    }
    60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
    }
    100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    }
}



@keyframes fade-in-out {
    0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0;
    }
    60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
    }
    100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    }
}

@media (min-width: 320px) and (max-width: 480px){
    .loading-screen .img img{
        max-width: 150px;
    }
}
/* End Loading Screen */

/* Start Global */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Start Font Face */


@font-face {
    font-family: Alhurra;
    src: url('../Fonts/NeoSansArabic.ttf') format('truetype');
}

/* End Font Face */
body {
    font-family: Alhurra , 'FlatIcon';
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

.header{
    color: #cb1410;
    position: relative;
}

.header h1{
    font-size: 4.5rem;
}
.header h1::after{
    content: "";
    width: 100px;
    height: 5px;
    position: absolute;
    top: 100%;
    left: 47%;
    right: 0;
    background-color: #1b2c33;
}

/* Start Magic Scroll */

.fade{
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.fade.fade-in{
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

/* End Magic Scroll */
/* End Global */

/* Start Upper Navbar */
.upper-navbar {
    background-color: #cb1410;
    height: auto;
    color: #fff;
    padding: 8px 0;
}

.upper-navbar .right-header {
    text-align: right;
}

.upper-navbar .call-us{
    text-align: right;
}
.upper-navbar .right-header i {
    display: inline;
    padding-left: 8px;
}

.upper-navbar .right-header p {
    display: inline-block;
    margin-bottom: 0;
}

.upper-navbar .right-header p {
    margin-left: 2px;
}

.upper-navbar .left-header [class^="flaticon-"]:before{
    margin-left: 5px;
    font-size: 27px;
}

/* End Upper Navbar */

/* Start Navbar */
.navbar-light .navbar-nav .nav-link {
    color: #000000;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #cb1410;
}

.navbar-nav li {
    padding: 0 35px;
}

.navbar-brand{
    margin-right: 0;
}

.brand-logo{
    max-width: 150px;
}
.navbar-light .navbar-toggler {
    color: rgba(203, 20, 16) !important;
    border: none;
    font-size: 30px;
    position: absolute;
    left: 0%;
    top: 20%;
}

.navbar-toggler:focus, .navbar-toggler:active {
    outline: none;
    box-shadow: none;
  }

.navbar-expand-lg .navbar-nav{
    font-size: 18px;
}

.navbar-nav{
    margin-right: 40px;
}

.navbar-collapse .navbar-nav li{
    text-align: center;
}

.navbar-light .navbar-nav .nav-link.active{
    color: #cb1410;
}
/* Start Search Input */
.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group::before {
    position: absolute;
    top: 4px;
    right: 23px;
}

.form-group .form-control {
    background-color: #e2e2e2 !important;
}

.btn-search {
    background-color: #cb1410;
    color: #fff;
    border-color: #cb1410;
    width: 100px;
}

.btn-search:focus {
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.form-group .flaticon-loupe:before {
    margin-left: 6px;
    font-size: 19px !important;
}

.form-control:focus{
    border-color: #cb1410;
    box-shadow: 0 0 0 0.2rem rgba(203, 20, 16, .25) ;
}

/* End Search Input */

@media only screen and  (min-width: 320px) and (max-width: 992px){
   .form-group .form-control,
   .form-group:before,
    .btn-search{
        display: none;
    }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {

    .upper-navbar .right-header p {
        margin-bottom: 0;
        font-size: small;
        text-align: right;
    }

     .upper-navbar .call-us{
        font-size: small;
        text-align: left;
    }

    .upper-navbar .right-header .phone,
    .upper-navbar .right-header .email{
        text-align: left;
    }

    .upper-navbar .right-header i {
        padding-left: 5px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 576px)  {

    .upper-navbar .right-header p {
        margin-bottom: 0;
        font-size: small;
    }

    .upper-navbar .right-header i {
        padding-left: 5px;
    }

     .upper-navbar .call-us{
        text-align: left;
    }

    .navbar-brand img.brand-logo {
        display: block;
        max-width: 100px;

    }

}

@media only screen and (min-width: 577px) and (max-width: 767px)  {

    .upper-navbar .right-header p {
        margin-bottom: 0;
        font-size: small;
    }

    .upper-navbar .right-header i {
        padding-left: 5px;
    }

     .upper-navbar .call-us{
        text-align: left;
    }

    .navbar-brand img.brand-logo {
        display: block;
        max-width: 100px;

    }
}

@media only screen and (min-width: 992px)  {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0px !important;
        padding-left:  0px  !important;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1400px){
    .navbar-nav li{
        font-size: 15px;
    }
    .navbar-nav li {
    padding: 0 16px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navbar-expand-lg .navbar-nav{
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar-nav li {
        padding: 0 6px;
    }
}

/* End Navbar */

/* Start Slider */

.carousel-indicators li {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background-color: #cb1410;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #7d0003;
}

.slider-header .btn-ask-price{
    font-size: 20px;
    background-color: #cb1410;
    color: #fff;
    border-color: #cb1410;
    width: 235px;
    padding: 10px 18px;
    border-radius: 15px;
}

.slider-header .carousel-caption {
   position: absolute;
    left: -36%;
    top: 71%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}


@media only screen and (min-width: 320px) and (max-width: 480px){

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        margin-bottom: -20px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 767px){
    .carousel-indicators li {
        width: 10px;
        height: 10px;
        margin-bottom: -20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px){
    .slider-header .carousel-caption {
        position: absolute;
        top: 71%;
        bottom: 0;
        left: -41%;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1024px){
    .slider-header .carousel-caption {
        position: absolute;
        top: 71%;
        bottom: 0;
        left: -41%;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
    }
}

/* End Slider */

/* Start Features */
.features{
    background-color: #f1f1f1;
    text-align: center;
}

.features .feature{
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 15px;
    border-top: 25px solid #cb1410;
    -webkit-box-shadow: 0px 4px 9px #9b9999;
            box-shadow: 0px 4px 9px #9b9999;
}

.features .feature img{
    padding-top: 5px;
}

.features .feature h3{
    color: #000000;
    padding-top: 10px;
}

.features .feature ul{
    margin-bottom: 0;
}

.features .feature ul li{
    line-height: 1.9;
    text-align: left;
    list-style-position: inside;
    text-indent: 10px;
    font-size: 12px;
    color: #afafaf;
    text-transform: uppercase;
}
/* End Features */

/* Start Counter */
.counter{
    background-image: url('../Img/counter.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
    text-align: center;
    color: #ffffff;
}

.counter .container-fluid{
    padding-top: 160px;
}
/* End Counter */

/* Start About Us */
.about-us p{
    color: #797979;
    margin-bottom: 0;
    line-height: 1.9;
    font-size: 23px;
    display: contents;
}

@media only screen and (min-width: 320px) and (max-width: 480px){

    .header h1{
        font-size: 2.5rem;
    }
    .header h1::after {
        content: "";
        width: 100px;
        height: 5px;
        position: absolute;
        top: 100%;
        left: 32%;
        background-color: #1b2c33;
    }
    .about-us p{
        font-size: 15px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px){
    .header h1::after {
        content: "";
        width: 100px;
        height: 5px;
        position: absolute;
        top: 100%;
        left: 42%;
        background-color: #1b2c33;
    }
}
/* End About Us */

/* Start Our Services */

.our-services .service h4{
    padding-top: 5px;
    padding-bottom: 10px;
}

.our-services .service p{
    font-size: 15px;
}
.our-services .col:first-child,
.our-services .col:nth-child(3),
.our-services .col:last-child{
    background-color: #dfdfdf;
    border-radius: 15px;
    height: auto;
}

.our-services .service img{
    padding-top: 25px;
    max-width: 50%;
}

@media only screen and (min-width: 320px) and (max-width: 480px){
    .our-services .service p{
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .our-services .col-md{
        max-width: 50%;
    }
}
/* End Our Services */

/* Start Testimonials */
.testimonials  h1,
.testimonials .testimonial span {
    color: #cb1410;
}

.testimonials .testimonial p {
    color: #545454;
}

.testimonials .testimonial h5 {
    display: inline;
    color: #545454;
}

.testimonials .carousel-indicators {
    top: 95%;
}

.testimonials .carousel-indicators li {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background-color: #cb1410;
    opacity: 1;
}

.testimonials .carousel-indicators .active {
    background-color: #7d0003;
}

/* End Testimonials */

/* Start Footer */
.footer {
    background-color: #970003;
    color: #fff;
    position: relative;
}

.footer .upper-footer{
    background-color: #7d0003;
    height: 65px;
    -webkit-box-shadow: 0px 9px 9px #700002;
            box-shadow: 0px 9px 9px #700002;
}

.footer ul li{
    list-style: none;
}
.footer h4::after {
    content: "";
    width: 50px;
    height: 5px;
    background-color: #7d0003;
    position: absolute;
    top: 40px;
    left: 15px;
    margin: 0 auto;
}


.footer .company-info{
    position: relative;
    margin-bottom: 25px;
}

.footer .company-info p{
    font-size: 13px;
}
.footer .company-info::after{
    content: "";
    width: 4px;
    height: 265px;
    background-color: #7d0003;
    position: absolute;
    top: 4%;
    right: 98%;
}
.footer [class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    margin-left: 6px;
    font-size: 19px;
}

.footer [class^='fab'],
.footer [class^='fas'] {
    padding-left: 5px;
}

.footer .follow-us {
    background-color: #7d0003;
    height: auto;
}

.footer .follow-us [class^="flaticon-"]:before{
    margin-left: 6px;
    font-size: 27px;
}


.footer .follow-us span{
    font-size: 25px;
}


.footer .copyright{
    background-color: #1f1f1f;
}
.footer .copyright p {
    color: #7c7c7c;
}

@media only screen and (min-width: 320px) and (max-width: 480px){
    .company-info img{
        max-width: 150px;
    }
    .footer .google-play img,
    .footer .app-store img{
        max-width: 145px;
    }

    .footer ul,
    .footer p,
    .footer h4,
    .footer .follow-us span {
        font-size: 15px;
    }
    
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .company-info img{
        max-width: 150px;
    }
    .footer .follow-us span {
        font-size: 18px;
    }
    .footer .google-play img,
    .footer .app-store img{
        max-width: 90px;
        padding-top: 10px;
    }
    
}

@media only screen and (min-width: 992px) and (max-width: 1280px){
    .company-info img{
        max-width: 150px;
    }

    .footer .google-play img,
    .footer .app-store img{
        max-width: 120px;
        padding-top: 10px;
    }
}
@media only screen and (min-width: 1280px){
    .company-info img{
        max-width: 250px;
    }

    .footer .google-play img,
    .footer .app-store img{
        max-width: 150px;
        padding-top: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px){
    .footer .follow-us span{
        font-size: 18px;
    }
    
    .footer .follow-us [class^="flaticon-"]:before{
        font-size: 17px;
    }
}

/* End Footer */

/* start Scroll to top */
#scroll-top {
    position: fixed;
    bottom: 10px;
    right: 30px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: none;
    z-index: 9999;
    color: #cb1410;
}

#scroll-top:hover {
    color: #7d0003;
}

/* End Scroll to top */

/* start Tag */
#tag {
    position: fixed;
    bottom: 60px;
    right: 30px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: none;
    z-index: 9999;
    color: #cb1410;
    cursor: pointer;
}

#tag:hover {
    color: #7d0003;
}
@media only screen and (min-width: 320px) and (max-width: 767px){
    #tag{
        display: block;
    }
}

/* End Tag */

/* Start Chat Messenger */
/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    color: #cb1410;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left: 32px;
    display: none;
}

.open-button:hover{
    color: #7d0003;
}

@media only screen and (min-width: 320px){
    .open-button{
        display: block;
    }
}
.chat-popup form{
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow:0px 1px 16px #555;
    border-radius: 10px;
}
.chat-popup h5{
    text-align: left;
    color: #cb1410;
}
  /* The popup chat - hidden by default */
.chat-popup{
    display: none;
    position: fixed;
    bottom: 60px;
    left: 15px;
    z-index: 9999;
    text-align: left;
}

  /* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

  /* Full-width textarea */
.form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 200px;
    text-align: left;
}

  /* When the textarea gets focus, do something */
.form-container textarea:focus {
    background-color: #ddd;
    outline: none;
}

  /* Set a style for the submit/login button */
.form-container .btn {
    background-color: #cb1410;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}

  /* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}

/* End Chat Messenger */