@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;700;900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
/*--------------------------------------------------------------
# Genral
--------------------------------------------------------------*/

* {
    font-family: Cairo;
}


:root {
    --color-main-yellow: #103e94;
    --color-main-blue: #2b4e62;
    --color-main-gray: #455A64;
    --color-title: #e4e4e4;
    --color-secondary:#000;
    --color-link: #103e94;
    --color-link2: #C14953;
    --color-contant: #4db366;
  }


  html {
    scroll-padding-top: 100px;
  }

  p{
    font-size: 18px;
    text-align: right;
  }

  section {
    padding-bottom: 60px;
    text-align: center;
    margin: 0 100px;
  }

  a{
    text-decoration: none;
  }



  @media (max-width: 991px) {
    section{
        margin: 0 10px;
    }
  }
  @keyframes bounce {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-10px);
    }
  }

  @keyframes shakeing{
    0% { transform: skewY(-5deg); }
    5% { transform: skewY(5deg); }
    10% { transform: skewY(-5deg); }
    15% { transform: skewY(5deg); }
    20% { transform: skewY(0deg); }
    100% { transform: skewY(0deg); }
   }

   @keyframes movex {
    from {
        transform: translateX(0px);
    }
    to{
        transform: translateX(15px);
    }
   }
/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

nav {
    margin: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(182, 198, 252, 0.6);
    transition: all 0.5s;
}

nav .navbar-brand img {
    width: auto;
    height: 35px;
}

nav ul {
    margin-left: 0;
    margin-right: auto;
}

.navbar a {
    position: relative;
    padding: 0 14px !important;
}
.navbar-scrolled{
    background-color: rgba(182, 198, 252, 0.9);
}

/* Navbar toggler */

.navbar-toggler{
    width: 28px;
    height: 18px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus{
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-main-blue);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .30s ease-in-out;
}
.middle-bar{
    margin-top: 0px;
}
.navbar-toggler .top-bar{
    margin-top: 0;
    transform: rotate(135deg);

}

.navbar-toggler .middle-bar{
    opacity: 0;
    filter: alpha(opacity=0);

}

.navbar-toggler .bottom-bar{
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar{
    margin-top: -17px;
    transform: rotate(0deg);

}

.navbar-toggler.collapsed .middle-bar{
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar{
    margin-top: 17px;
    transform: rotate(0deg);

}

/* Navbar Hover Effect  */

.navbar a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-main-yellow);
    width: 0px;
    transition: all 0.5s ease-in-out 0s;
  }
  
  .navbar a:hover:after{
    visibility: visible;
    width: 100%;
  }
  
  .navbar a:hover {
    color: var(--color-main-blue) !important;
  }

  .navbar .button {
    background-color: #F2AF29;
    padding: 3px;
    border-radius: 20px;
  }

  .navbar .button a:hover:after{
    visibility: hidden !important;
    width: 0%;
  }

  @media (max-width: 991px) {
    .navbar a{
        padding: 8px !important;
    }

    .navbar a:after {
        display: none;
    }
    .navbar a:hover {
        color: var(--color-main-yellow) !important;
      }
    }
/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.slide .slider{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff;
    animation: color 9s infinite linear;
    margin-top: 40px;
    margin-bottom: 20px;

}


.slide .slider img {
    width: auto;
    height: 450px;
    animation: bounce 1s infinite alternate;
}

.slide .slider h3{
    color: #363636;
    font-size: 60px;
    font-weight: 900;
    font-family: cairo;
    margin-top: -120px;
    text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.753);
}

.slide .slider h4{
    color: #4d4d4d;
    font-size: 40px;
    font-weight: 900;
    font-family: cairo;
    margin-top: 100px;
    margin-right: -150px;
}


@media (max-width: 991px) {
    .slide .slider{
        margin-top: 40px;
        flex-direction: column;
    }
    .slide .slider h3{
        padding-top: 60px;
        font-size: 40px;
    }
    .slide .slider h4{
        margin: 0 ;
        font-size: 30px;
    }
    }

   
/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about .row{
    display: flex;
    justify-content: center;
}
.about img{
    height: 100%;
    width: auto;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services{
    margin-bottom: 20px;
  }
  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #f2f6fa;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
  }
  
  .services .icon-box:hover {
    transform: translateY(-5px);
    background-color: #e5ebfa;
  }
  
  .services .icon {
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
  }
  
  .services .icon i {
    font-size: 70px;
    line-height: 1;
    transition: 0.5s;
  }
  
  .services .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 15px;
    color: #010a53;
    text-align: right;

  }
  
  .services .title a {
    color: var(--color-main-blue);
    transition: ease-in-out 0.3s;
  }
  
  .services .title a:hover {
    color: var(--color-main-yellow);
  }
  
  .services .description {
    font-size: 13px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
  }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    margin-top:30px ;
    background-color: #ebebeb;
    color: rgb(17, 17, 17);
    overflow: hidden;
    font-size: 14px;
    
}

footer p {
    width: 80%;
    font-size: 16px;
    padding: 0 50px 0 50px;

}

footer h5 {
  padding-top: 50px;
}

footer img {
    width: 280px;
    opacity: .9;
    padding: 50px;

}

footer a {
    color: rgb(30, 116, 192) !important;

}

/* unvisited link */
footer a:link {
    color: var(--color-main-yellow) !important;
    
}

footer a:hover {
    color: var(--color-main-yellow) !important;
}

/* selected link */
footer a:active {
    color: rgb(248, 101, 16) !important;
}

footer .footer-bottom{
  background-color: #111111;
  color: #e4e4e4;
}