@font-face {
    font-family: 'NeoSansBold';
    src: url('../fonts/NeoSansBold/NeoSansBold.eot');
    src: url('../fonts/NeoSansBold/NeoSansBold.eot') format('embedded-opentype'),
    url('../fonts/NeoSansBold/NeoSansBold.woff2') format('woff2'),
    url('../fonts/NeoSansBold/NeoSansBold.woff') format('woff'),
    url('../fonts/NeoSansBold/NeoSansBold.ttf') format('truetype'),
    url('../fonts/NeoSansBold/NeoSansBold.svg#NeoSansBold') format('svg');
}


@font-face {
    font-family: 'NeoSansRegular';
    src: url('../fonts/NeoSansRegular/NeoSansRegular.eot');
    src: url('../fonts/NeoSansRegular/NeoSansRegular.eot') format('embedded-opentype'),
    url('../fonts/NeoSansRegular/NeoSansRegular.woff2') format('woff2'),
    url('../fonts/NeoSansRegular/NeoSansRegular.woff') format('woff'),
    url('../fonts/NeoSansRegular/NeoSansRegular.ttf') format('truetype'),
    url('../fonts/NeoSansRegular/NeoSansRegular.svg#NeoSansRegular') format('svg');
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.warp {
    overflow: hidden;
}

body {
    font-family: 'NeoSansRegular';
    font-size: 16px;
    color: #000;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'NeoSansBold';
}

li,
input[type=submit],
a,
button {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

img, iframe, video {
    max-width: 100%;
}

.no-padding {
    padding: 0;
}

.form-control {
    border-radius: 0;
}

.col-auto {
    max-width: 100%;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #4c4c4c;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(17, 175, 150, .25);
}

.main-btn {
    color: #fff;
    background-color: #05add5;
    padding: 10px 30px;
    border-radius: 30px;
}

.main-btn:hover {
    color: #fff;
    background-color: #000;
}

.sec-btn {
    color: #fff;
    background-color: #000;
    padding: 10px 30px;
    border-radius: 30px;
}

.sec-btn:hover {
    color: #fff;
    background-color: #05add5;
}

.sec-tit {
    margin-bottom: 50px;
}
.sec-padding{
    padding: 70px 0 0px 0;
}
/******************************/
header{
    border-bottom: 1px solid #ddd;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    left: 0;
    background: #fff;
}
.menu-logo img{
    max-height: 60px
}
/******************************/
.fixed-icons{
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 2;
}
.fixed-icons a{
    display: block;
    color: #fff;
    background-color: #05add5;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    margin-bottom: 5px;
    transition: linear .4s;
}

/******************************/
.efadh-offers-des{
    color: #3395fa;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb,
    0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgb(0 0 0 / 10%),
    0 0 5px rgb(0 0 0 / 10%), 0 1px 3px rgb(0 0 0 / 30%),
    0 3px 5px rgb(0 0 0 / 20%), 0 5px 10px rgb(0 0 0 / 25%),
    0 10px 10px rgb(0 0 0 / 20%), 0 20px 20px rgb(0 0 0 / 15%);
}
/******************************/
.efadh-contact{
    background-color: #fff;
    font-weight: bold;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.efadh-contact a{
    padding: 45px;
    color: #000;
    display: block;
}
/******************************/
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        margin-bottom: 0;
        list-style: none;
        position: relative;
    }

    .nav-list > .link {
        display: flex;
        align-items: center;
    }

    .has_sub_menu {
        /*width: calc(100% - 25px);*/
    }

    .has_sub_menu ~ i {
        width: 15px;
        display: inline-block;
        text-align: center;
        color: #05add5;
    }

    .nav-list > .link > a {
        display: block;
        color: #05add5;
        position: relative;
        padding: 38px 0
    }

    .nav-list > .link a:after {
        content: '';
        width: 0;
        height: 5px;
        background-color: transparent;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s linear;
    }


    .nav-list > .link a:after {
        bottom: 0;
    }

    .nav-list > .link a:hover:after {
        width: 100%;
        background-color: #05add5;
        opacity: 1;
        visibility: visible;
    }

    .nav-list > .link a:hover,
    .nav-list > .link.active a {
        color: #000;
    }

    .sub-list {
        background-color: #fff;
        padding: 20px;
        list-style: none;
        position: absolute;
        top: 100%;
        min-width: 230px;
        z-index: 4;
        transform-style: preserve-3d;
        transform: rotateX(-60deg);
        transform-origin: center top;
        opacity: 0;
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.5s ease-in-out;
    }

    .sub-list li {
        position: relative;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .sub-list li a {
        display: block;
        width: 100%;
        position: relative;
        color: #000;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cacaca;
    }

    .sub-list li a.has_sub_menu {
        width: calc(100% - 30px);
        display: inline-block;
    }

    .sub-list li:hover {
    }

    .sub-list li a:hover {
        color: #05add5;
        border-bottom: 1px solid #05add5;
    }

    .sub-list li:last-child > a {
        margin-bottom: 0;
    }

    .sub-list .sub-link {
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        transition: all .5s linear;
    }

    .sub-list .sub-link:hover {
        background-color: #05add5;
    }

    .sub-list .sub-link:last-child {
        border-bottom: 0;
    }

    .nav-list .link:hover > .sub-list {
        /*visibility: visible;*/
        transform: rotateY(0deg);
        opacity: 1;
        /*display: block;*/
    }

    .sub-list .sub-list {
        top: 0;
    }

    .nav-list .link .sub-list .sub-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list .link .sub-list .sub-link:hover > .sub-list {
        display: block;
    }

    .nav-btn,
    .mobile-nav-list {
        display: none;
    }

    /**/
    .nav-list > .link {
        text-transform: capitalize;
        margin-right: 30px;
    }

    .has_sub_menu {
        margin-right: 5px;
    }

    .sub-list {
        left: 0;
    }

    .sub-list li a.has_sub_menu {
        margin-left: 5px;
    }

    .sub-list .sub-list {
        left: 100%;
    }

}

@media (max-width: 992px) {
    header {
        padding: 15px 0;
    }

    .nav-list {
        display: none;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .nav-btn {
        display: inline-block;
        color: #fff;
        background-color: #05add5;
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 25px;
        text-align: center;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 5;
        height: 100%;
        width: 300px;
        background-color: #f2f2f2;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        padding: 15px;
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .link {
        font-size: 16px;
        padding: 10px 15px;
        position: relative;
    }

    .mobile-nav-list .link a {
        color: #000;
        display: block;
        width: 100%;
    }

    .mobile-nav-list .link a.has_sub_menu {
        display: inline-block;
        width: calc(100% - 40px);
    }

    .mobile-nav-list .link a:hover,
    .mobile-nav-list .link.active a {
        color: #05add5;
    }

    .mobile-nav-list .link i {
        color: #fff;
        background-color: #05add5;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .link i.open {
        transform: rotate(180deg);
    }

    .sub-list {
        box-shadow: none;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
    }

    .sub-list.open {
    }

    .sub-list a {
        display: block;
        position: relative;
    }

    .sub-list .sub-link {
        border: 0;
        padding: 5px 20px;
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        white-space: nowrap;
    }

    .sub-list .sub-list a {
        display: block;
        position: relative;
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 4;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }

    /**/
    .mobile-nav-list {
        right: 0;
    }

    .mobile-nav-list .link a.has_sub_menu {
        margin-left: 5px;
    }

    .sub-list .sub-list a {
        padding-right: 15px;
    }

    .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }
}
/******************************/
.intro{
    height: 100vh;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}
/******************************/
.services{
    background-color: #3395fa;
    color: #fff;
}
.ser-item{
    margin-bottom: 30px;
    background-color: #fff;
    color: #000;
    padding: 30px;
    height: 100%;
    box-shadow: 0 0 11px rgba(0 ,0 ,0 ,.3);
}
.ser-item-icon{
    flex: 0 0 45px;
    max-width: 45px;
    height: 45px;
    background-color: rgba(51,149,250,.3);
    padding: 5px;
    margin-left: 10px;
    border-radius: 100%;
}
/******************************/
.contact-us{

}
.contact-info h3{
    color:#000;
}
.contact-info{
    margin-bottom: 30px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 11px rgba(0 ,0 ,0 ,.3);
}
.contact-item-data:not(:last-of-type){
    margin-bottom: 25px;
}
.contact-item-data-icon{
    margin-left: 15px;
}
.contact-item-data-info{
    margin-bottom: 0;
}
.contact-item-data-info a{
    color: #05add5;
}
.inside-header{
    position: relative;
    margin-bottom: 50px;
}
.single-pages input{
width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    background: #ffffff;
    text-align: right;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}
.single-pages input::placeholder{
    color: #000;
    font-size: 14px;
}
.single-pages textarea{ 
    height: 150px; 
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    background: #ffffff;
    text-align: right;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}
.single-pages textarea::placeholder{
    color: #000;
    font-size: 14px;
}
.single-pages .main-header{
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}
.single-pages input[type=submit]{
    width: auto;
    padding: 20px 50px;
    margin:0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    background: #2caed5;
    transition: linear .4s;
}
.single-pages input[type=submit]:hover{
    transform: scale(.9);
    transition: linear .4s;
}
.who{
        background: #393f43;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.who h4{
        margin: 0;
    font-size: 16px;
    color: #fff;
}
/* Start Scroll */
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #b1c3de; }

body::-webkit-scrollbar-thumb {
    background-color: #2caed5; }

body::-webkit-scrollbar {
    width: .5em; }

/* End Scroll */


.single-pages .top-side{
    text-align: center;
}
.single-pages .top-side img{
        width: 50%;
}

.loade {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center; }
  .loade img{
      width:10%;
  }
  
  
  .start-window .contact-info{
      opacity:1 !important;
  }
  
  
  
  
  
  
  .start-window{
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: linear .4s;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 15%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 80%;
    height: 80%;
    background: #000000a3;
    border-radius: 0px;
}
.start-window.finsihed-open{

  z-index: 9;
  transform:translateX(-50%) scale(1);

  opacity: 1;
  visibility: visible;
  transition: linear .4s;
}
.start-window i{
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    cursor: pointer;
    transition: linear .4s;
        font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
  
  .start-window i:before{
      content: "\f00d";
  }
  
  
  footer{
          background: #202430;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
  }
  
  
    footer img{
          width: 150px;
  }
  
  
  
    footer p{
          margin-top: 10px;
    color: #fff;
        text-align: justify;
    padding: 0 20px;
  }
  
  
  
  
/******************************/
/******************************/
/******************************/
/******************************/
/******************************/
/******************************/
/******************************/
/******************************/
/******************************/
@media all and (max-width: 991px) {
    .start-window{
        top: 30%; 
    height: 33%;
    background: transparent;
    }
    .loade img{
            width: 30%;
    }
    .single-pages .top-side img {
    width: auto;
}
.single-pages .main-header{
        font-size: 25px;
}
    .mobile-nav-list a img{
        width: 50%;
    }
    .mobile-nav-list .link{
        margin-bottom: 10px;
        border-right: 5px solid #2caed5;
    }
    .mobile-contact-info .head-contact-info-item i{
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: #2caed5;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }
    .head-contact-info-item ,.head-contact-info-item a{
        margin-bottom: 10px;
        color: #213135;
    }
    .mobile-data{
        padding: 5px;
    }
    .mobile-data a i{
        color: #ffffff;
        background: #000000;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }
    .intro{
        height: 70vh;
    }
    .intro h1{
        font-size: 16px;
    }
    .slid-tit{
          font-size: 20px;
    }
    .efadh-offers-des{
        font-size: 20px;
        line-height: 35px;
    }
    .efadh-offers .efadh-offers-thumb img{
        width: 70%;
    }

    .sec-tit {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 30px;
    }
    .sec-padding{
        padding: 40px 0;
    }
}

@media all and  (min-width: 991px) {

}

@media all and  (max-width: 768px) {

}

@media all and  (min-width: 768px) {

}
