@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800&family=Work+Sans:wght@200;300;400;500;600;700;800&display=swap');

body {
    font-family: Cairo !important;
}

*:not(i):not(span) {
    font-family: Cairo !important;
}
html {
  font-size: 14px;
}

* {
    font-family: Cairo;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px !important;
}

.select-language {
    background-color: #f7f7f700 !important;
    max-width: 125px;
    max-height: 25px;
}
option {
    color: var(--theme-color)
}

#hero {
    height: 100%;
    max-height: 700px;
}

@media (min-width: 1200px) {
    .text-xl-start {
        text-align: right !important;
    }
}

#about-sec, .title-service, .title-ar {
    direction: rtl
}
.sub-title-ar{
    text-align:right !important;
}
.mfp-close{
    right: unset !important;
    left : 0 !important;
}

















@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.brand-wheel {
    flex-direction: row;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    height: 100px;
    --animationspeed: 45s;
    --animationdelay: calc(var(--animationspeed) / 2);
}

    .brand-wheel::before {
        position: absolute;
        background-image: linear-gradient( to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100% );
        content: "";
        height: 100%;
        width: 5%;
        z-index: 2;
        pointer-events: none;
    }

    .brand-wheel::after {
        position: absolute;
        background-image: linear-gradient( to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100% );
        content: "";
        height: 100%;
        width: 5%;
        z-index: 2;
        pointer-events: none;
        right: 0;
    }

.brand-slide {
    flex-shrink: 0;
    position: absolute;
    animation-name: slidelogo;
    animation-duration: var(--animationspeed);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
}

    .brand-slide.delay {
        transform: translateX(100%);
        animation-name: slidelogo2;
    }

.brand-wheel:hover .brand-slide {
    animation-play-state: paused;
}

.logo-div {
    display: inline-flex;
    align-self: center;
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    padding: 0 20px 0 20px;
}

@keyframes slidelogo {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slidelogo2 {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}


.TalkToUs {
    z-index: 2;
    position: fixed;
    display: block;
    left: 30px;
    bottom: 115px;
}
.chat{
    display: grid;
    gap:8px
}
.btn-chat {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: white;
    border: 1px solid red
}
.btn-chat i{
    font-size:50px;
}
.fa-whatsapp {
    color: #075e54;
}
.fa-facebook-messenger{
    color: #0099ff;
}