*{
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* background-color: #f9f9f9; */
}
body{
  
  font-family: 'Almarai', sans-serif;
}
a {
text-decoration: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    overflow: hidden;
    position: relative;
    width: 100%;
    top: 20px;
    z-index: 2;
    bottom: 40px;
  }
  
  section .container {
    padding: 30px;
  }

  .section-title h2 {
    direction: rtl;
    font-size: 20px;
    font-weight: 800;
    padding: 0;
    line-height: 1px;
    margin: 0 10px 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color:#414449;
    font-family: 'Almarai', sans-serif;
    text-align: right;
  }
  
  .section-title h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: #B98344;
    margin: 4px 10px;
    color:#414449;
    text-align: left;
  }
  
  .section-title p {
    margin: 0;
    margin: -15px 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #fff;
  }
  
  @media (max-width: 992px){
     section .container {
    
    padding: 20px;
  } 
  }
  @media (max-width: 768px){
     
      .section-title h2{
          font-size: 17px;
      }
      .section-title h2::after{
          width: 90px;
      }
  
  }
  
  @media (max-width: 480px){
     
      .section-title h2{
          font-size: 18px;
      }
      .section-title h2::after{
          width: 20px;
      }
  section .container {
    
    padding: 10px;
  }
} 
/*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    #header {
      direction: rtl;
      transition: all 0.5s;
      z-index: 997;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #header.header-scrolled, #header.header-inner-pages {
     background: linear-gradient(rgba(61,61,61, 0.90), rgba(61,61,61, 0.90));
     
    }
    
    #header .logo {
      font-size: 28px;
      margin: 0;
      padding: 0;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    
    #header .logo a {
      color: #fff;
    }
    
    #header .logo img {
      max-height: 105px;
      margin-left: 30px;
      margin-bottom: 5px;

    }
    @media (max-width: 992px) {
        #header {
          padding: 0 0 5px 0;
        }
          #header .logo img {
        margin-right: 220px;
      }
      
      }
      @media (max-width: 834px) {
          #header .logo img {
             margin-right: 340px; 
          }
      }
      @media (max-width: 768px) {
          #header .logo img {
             margin-right: 300px; 
          }
      }
      @media (max-width: 600px) {
          #header .logo img {
              margin-right: 220px; 
          }
      }
      @media (max-width: 500px) {
          #header .logo img {
              margin-right: 170px; 
          }
      }
      @media (max-width: 480px) {
          #header .logo img {
              margin-right: 140px; 
          }
      }
      @media (max-width: 393px) {
          #header .logo img {
              margin-right: 125px; 
          }
      }
      @media (max-width: 360px) {
          #header .logo img {
              margin-right: 110px; 
          }
      }
    
    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    /* Desktop Navigation */
    .nav-menu ul {

      margin: 0 20px 0 0;
      padding: 0;
      list-style: none;
    }
    
    .nav-menu > ul {
      display: flex;
    }
    
    .nav-menu > ul > li {
      position: relative;
      white-space: nowrap;
      margin: 0 7px;
    }
    
    .nav-menu a {
      display: block;
      position: relative;
      color: rgba(255, 255, 255, 0.7);
      transition: 0.3s;
      font-size: 16px;
      padding: 25px 3px;
      font-weight: bold;
      font-family: 'Almarai', sans-serif;
      text-decoration: none;
      letter-spacing: 1px;
    }

    .nav-menu > ul > li > a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      bottom: -5px;
      right: 0;
      background-color: #906c48 ;
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
    
    .nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
      visibility: visible;
      width: 100%;
    }
    
    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
      color: #fff;
      text-decoration: none;
    }
    
    .nav-menu .drop-down ul {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 99;
      opacity: 0;
      margin-top: 16px;
      visibility: hidden;
      padding: 10px 0;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
      border-top: 3px solid #906c48;
    }
    
    .nav-menu .drop-down:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
    
    .nav-menu .drop-down li {
      min-width: 180px;
      position: relative;
    }
    
    .nav-menu .drop-down ul a {
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 800;
      text-transform: none;
      color: #282828;
    }
    
    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
      color: #2d2d71;
    }
    
    /* .nav-menu .drop-down > a:after {
      content: "\ea99";
      font-family: IcoFont;
      padding-left: 5px;
    } */
    
    .nav-menu .drop-down .drop-down ul {
      top: 0;
      left: calc(100% - 30px);
    }
    
    .nav-menu .drop-down .drop-down:hover > ul {
      opacity: 1;
      top: 0;
      left: 100%;
    }
    
    .nav-menu .drop-down .drop-down > a {
      padding-right: 35px;
    }
    
    .nav-menu .drop-down .drop-down > a:after {
      content: "\eaa0";
      font-family: IcoFont;
      position: absolute;
      right: 15px;
    }
    
    @media (max-width: 1366px) {
      .nav-menu .drop-down .drop-down ul {
        left: -90%;
      }
      .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
      }
      .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
      }
    }
    
    /* Get Startet Button */
    .get-started-btn {
      margin-left: 25px;
      background: #906c48;
      color: #fff;
      border-radius: 50px;
      padding: 8px 25px 9px 25px;
      white-space: nowrap;
      transition: 0.3s;
      font-size: 16px;
      display: inline-block;
      text-decoration: none;
    }
    
    .get-started-btn:hover {
      background: rgba(144,108,72و 0.80);
      color: #fff;
    }
    .pulse {
      animation-name: pulse;
      -webkit-animation-name: pulse;
      animation-duration: 1.5s;
      -webkit-animation-duration: 1.5s;
      animation-iteration-count: infinite;
      -webkit-animation-iteration-count: infinite;
      text-align: center;
  }
   @keyframes pulse {
   0% {
   transform: scale(0.9);
   opacity: 0.9;
  }
   50% {
   transform: scale(1);
   opacity: 1;
  }
   100% {
   transform: scale(0.9);
   opacity: 0.9;
  }
  }
   @-webkit-keyframes pulse {
   0% {
   -webkit-transform: scale(0.95);
   opacity: 0.9;
  }
   50% {
   -webkit-transform: scale(1);
   opacity: 1;
  }
   100% {
   -webkit-transform: scale(0.95);
   opacity: 0.9;
  }
  }
    @media (max-width: 992px) {
      .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
      }
    }
    
    /* Mobile Navigation */
    .mobile-nav-toggle {
      position: fixed;
      right: 15px;
      top: 18px;
      z-index: 9998;
      border: 0;
      background: none;
      font-size: 24px;
      transition: all 0.4s;
      outline: none !important;
      line-height: 1;
      cursor: pointer;
      text-align: right;

    }
    
    .mobile-nav-toggle i {
      color: #fff;
      margin-top: 15px;
    }
    
    .mobile-nav {
      position: fixed;
      top: 55px;
      right: 15px;
      bottom: 15px;
      left: 15px;
      z-index: 9999;
      overflow-y: auto;
      background: #fff;
      transition: ease-in-out 0.2s;
      opacity: 0;
      visibility: hidden;
      border-radius: 10px;
      padding: 10px 0;
      direction: rtl;
    }
    
    .mobile-nav * {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .mobile-nav a {
      display: block;
      position: relative;
      color: #282828;
      padding: 10px 20px;
      font-weight: 500;
      outline: none;
    }
    
    .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
      color: #906c48;
      text-decoration: none;
    }
      
    .mobile-nav .drop-down > a {
      padding-right: 35px;
    }
    
    .mobile-nav .drop-down ul {
      display: none;
      overflow: hidden;
    }
    
    .mobile-nav .drop-down li {
      padding-left: 20px;
    }
    
    .mobile-nav-overly {
      width: 100%;
      height: 100%;
      z-index: 9997;
      top: 0;
      left: 0;
      position: fixed;
      background: rgba(15, 15, 15, 0.6);
      overflow: hidden;
      display: none;
      transition: ease-in-out 0.2s;
    }
    
    .mobile-nav-active {
      overflow: hidden;
    }
    
    .mobile-nav-active .mobile-nav {
      opacity: 1;
      visibility: visible;
    }
    
    .mobile-nav-active .mobile-nav-toggle i {
      color: #fff;
    }
    
    
    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    .hero {
      direction: rtl;
      top: 0;
        left: 0;
        bottom: 0;
        right: 0; 
    }
    .hero::after{
        width: 100vw;
        height: 100vh;
        content: '';
        position: absolute;
        z-index: 7;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
    }
    .hero .caption{
      position: relative;
      margin-right: 10px;
      background: rgba(255, 255, 255, 0.4);
      padding-top: 20px;
      padding-bottom: 0px;
      margin-bottom: 10px;
      border-top: 4px solid #906c48;
      width:480px;
      height: 250px;
      
      z-index: 9;
      margin-top: 540px;
    }
    
    .hero .caption h1 {
      margin: 0 15px 0 0;
      font-size: 22px;
      font-weight: 700;
      line-height: 56px;
      color: #414449;
      float:right;
    }
    .hero .caption .title {
      margin: 0 15px 0 0;
      font-size: 35px;
      font-weight: 700;
      line-height: 56px;
      color: #2d2d71;
      float:right;
    }
    
    .hero h1 span {
      color: #1cbddb;
        float:right;
    }
    
    .hero .caption h2 {
      margin: 0 15px 0 0;
      color: #414449;
      font-size: 22px;
      font-weight: 700;
      float:right;
      line-height: 56px;
    }
    .hero video{
        width: 100vw;
        height: 100vh;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 5;
      object-fit: cover;
    }
    @media (max-width: 884px) {
      .hero .caption {
      margin-top: 750px;
      width:450px;
      
    }
  }
    @media (max-width: 834px) {
      .hero .caption {
      margin-top: 830px;
      width:450px;
      
    }
  }
    @media (max-width: 820px) {
      .hero .caption {
      margin-top: 830px;
      width:450px;
      
    }
  }
    @media (max-width: 768px) {
      .hero .caption {
        margin-top: 700px;
        width:450px;
        height: 220px;
      }
      .hero .caption h1{
        font-size: 20px;
        line-height: 36px;
      }
      .hero .caption .title {
        font-size: 25px;
        line-height: 36px;
      }
  }
  @media (max-width: 500px) {
    .hero .caption {
      margin-top: 540px;
      width:350px;
      
    }
  }
  @media (max-width: 390px) {
    .hero .caption {
      margin-top: 480px;
      width:320px;
      
      
    }
  }
  @media (max-width: 360px) {
    .hero .caption {
      margin-top: 430px;
      width:320px;
      
      
    }
  }
  @media (max-width: 320px) {
    .hero .caption {
      margin-top: 280px;
      width:320px;
      
      
    }
  } 
  /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
    margin-top: 50px; 
    direction: rtl;
  }
  
  .about .content {
    margin-top: 15px;
    font-size: 16px;
    color: #414449;
    line-height: 1.8;
    font-family: 'Almarai', sans-serif;
  }
  
  .about .content strong {
    font-weight: 700;
    font-size: 22px;
    color: #2d2d71;
    
    font-family: 'Almarai', sans-serif;

  }
  .about .content a{
    text-decoration: none;
    color: #906c48;
    font-size: 16px;
  }
  .about .content a:hover{
    text-decoration: none;
    color:#2d2d71;
  }
  .about .content i{
    font-size: 14px;
  }
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  
  .about .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
  }
  
  .about .content ul i {
    font-size: 24px;
    color: #ff4a17;
    position: absolute;
    left: 0;
    top: -2px;
  }
  
  .about .content p:last-child {
    margin-bottom: 0;
  }
  .about img{
    height: 300px;
  }
  .about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#906c48 50%, rgba(144, 108, 72, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
  .about .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .about .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(144, 108, 72, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  .about .play-btn:hover::after {
    border-left: 15px solid #906c48;
    transform: scale(20);
  }
  
  .about .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.clients .item img {
  height: 80%;
  /* opacity: 0.5; */
  transition: 0.3s;
}

.clients .item img:hover {
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(144,108,72, 0.5) !important;
}

.clients .owl-dot.active {
  background-color: #906c48 !important;
}
@media (max-width: 500px) {
   .clients .item img {
  height: 50%;
    }
   
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #414449;
  padding: 0 0 0 0;
  color: #ffff;
  font-size: 14px;
  direction: rtl;
  text-align: right;
  margin-top: 30px;
}
#footer .footer-top {
       
   background-color: #414449; 
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
      margin-top: 30px;
}
#footer .footer-top img{
  max-height: 250px
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 380px) {
  #footer .footer-top .footer-contact h3 {
  font-size: 20px;
    }}
    
#footer .footer-top .footer-contact h3 span {
  color: #906c48;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #ffff;
}
#footer .footer-top .footer-contact a {
 line-height: 1;
  color: #fff;
  transition: 0.3s;
  margin-top: 10px;
  margin-right: 0px;
    float: right;
    font-size: 16px;
    text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #906c48;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-top: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-left: 4px;
  color: #ffff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color:#ffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #906c48;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 2px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #906c48;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
    
}
#footer #copyright{
   background-color: #414449; 
   max-width: 100%;
   border-top: 0.5px solid #fff;
}
#footer .contact-info {
    display: inline-block;
}
#footer .contact-info a {
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}
#footer .contact-info a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #footer .copyright{
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  left: 15px;
  bottom: 15px;
  background: #906c48;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: rgba(144,108,72, 0.7);
  transition: background 0.2s ease-in-out;
}
@media (max-width: 380px) {
  .back-to-top i {
  font-size: 18px;
    }
.back-to-top {
  width: 30px;
  height: 30px;
    }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  direction: rtl;
  padding: 0;
  background: #f9f9f9;
  min-height: 30px;
  margin-top: 82px;
  border-bottom: 1px solid #2d2d71;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 93px;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  /* margin-right: -80px; */
}

.breadcrumbs ol a{
  text-decoration: none;
  color: #906c48;
  font-weight: 700;
}

.breadcrumbs ol li + li {
  padding-right: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-left: 10px;
  color: #424242;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{
  margin-top: 60px;
  direction: rtl;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #906c48;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(144, 108, 72, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}
.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #906c48;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 35px;
  height: 35px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
  margin-top: 10px;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #906c48;
  color: #fff;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-wrap:hover::before {
  left: 0;
}
.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Vision
--------------------------------------------------------------*/
.vision{
  direction: rtl;
}
.vision .icon-box {
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 6px;
  background: #f5f5f5;
}

.vision .icon-box i {
  float: right;
  color: #2d2d71;
  font-size: 40px;
}

.vision .icon-box h4 {
  margin-right: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.vision .icon-box h4 a {
  color: #2d2d71;
  transition: 0.3s;
}

.vision .icon-box .icon-box:hover h4 a {
  color: #906c48;
}

.vision .icon-box p {
  margin-right: 70px;
  line-height: 24px;
  font-size: 16px;
}
.vision .value p {
  margin-right: 15px;
  line-height: 24px;
  font-size: 16px;
  
}
.vision .icon-box:hover h4 a {
  color: #906c48;
}

/*--------------------------------------------------------------
# Admission Policy 
--------------------------------------------------------------*/
.admission_policy {
  padding: 60px 0 0 0;
  direction: rtl;
}
.admission_policy .more{
  font-size: 16px;
  text-align: center;
  padding-top: 20px;
  color: #424242;
}
.admission_policy .more a{
  text-decoration: none;
  color: #2d2d71;
  font-weight: 700;
}
.admission_policy .more a:hover{
  color: #906c48;
}
.admission_policy .content {
  padding: 30px 120px 0 120px;
}
.admission_policy .content p {
  font-size: 16px;
  color: #424242;
  text-align: right;
  margin-bottom: 5px;
}
.admission_policy .accordion-list {
  padding: 30px 100px 0 100px;
  direction: rtl;
}
.admission_policy .accordion-list ul {
  padding: 0;
  list-style: none;
  direction: rtl;
}
.admission_policy .accordion-list li + li {
  margin-top: 15px;
}
.admission_policy .accordion-list li {
  padding: 20px;
  background: #f5f5f5;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
  direction: rtl;
}
.admission_policy .accordion-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  padding-left: 30px;
  outline: none;
  text-align: right;
  color: #2d2d71;
  direction: rtl;
  cursor: pointer;
  text-decoration: none;
}
.admission_policy .accordion-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.admission_policy .accordion-list .info{
  margin-bottom: 0;
  padding: 20px 0 0 0;
  text-align: right;
}
.admission_policy .info span{
  padding-right: 28px;
  position: relative;
  display: inline-block;
  margin-top: 12px;
}
.admission_policy .info span i {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 20px;
  color: #906c48;
  line-height: 1;
}
.admission_policy .accordion-list .icon-show {
  display: none;
}

.admission_policy .accordion-list a.collapsed {
  color: #2d2d71;
}

.admission_policy .accordion-list a.collapsed:hover {
  color: #906c48;
  text-decoration: none;
}

.admission_policy .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.admission_policy .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .admission_policy .content, .admission_policy .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  
  .admission_policy .content {
    padding-top: 30px;
  }
  .admission_policy .accordion-list {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# admission
--------------------------------------------------------------*/
.admission img{
  margin-top: 30px;
}
/*--------------------------------------------------------------
# handbooks
--------------------------------------------------------------*/
.handbooks .list-group{
 text-align: right;
 padding-top: 30px;
}
.handbooks .list-group a{
  text-decoration: none;
  color: #2d2d71;
  font-size: 16px;
  font-weight: 500;
}
.handbooks .list-group a:hover{
  text-decoration: none;
  color: #906c48;
}
/*--------------------------------------------------------------
# Fees
--------------------------------------------------------------*/
.fees .table{
 margin-top: 30px;
 text-align: right;
 direction: rtl;
}
.fees .table .cost{
  text-align: center;
}
.fees .table .level{
  text-align: center;
  color: #2d2d71;
  font-size: 16px;
  font-weight: 800;
}
/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.News{
   transition: 0.3s;
   direction: rtl;
 }
 .News .new-item {
   border-radius: 5px;
   border: 1px solid #eef0ef;
   margin: 20px  0 20px 0;
   box-shadow: 0 0 10px rgb(0 0 0 / 30%);
   background: rgba(255, 255, 255, 0.7);
 }
 .News .new-content {
   padding: 15px;
 }
 .News .new-content .date {
  margin: 0;
  color: #414449;
  font-size: 16px;
  text-align: left;
}
 .News .new-content h2 {
   font-weight: 700;
   font-size: 18px;
   color: #414449;
   text-align: right;
 }
 .News .new-content h3 {
   font-weight: 700;
   font-size: 18px;
   color: #2d2d71;
   text-align: right;

   
 }
 .News .new-content h3:hover {
     color: #906c48;
 }
 .News .new-content p {
   font-size: 16px;
   color: #414449;
   text-align: right;
 }
 .News .new-content .time {
   margin: 0;
   font-weight: 700;
   font-size: 16px;
   color: #777777;
 }
 
 .News .new-detail {
   padding-top: 15px;
   border-top: 1px solid #d4d6d5;
 }
 
 .News .new-detail .workshop-date span {
   padding-left: 10px;
   font-weight: 600;
   font-size: 15px;
   color: #414449;
 }
 .new-link{
     font-size: 14px;
     padding: 5px 7px;
     color: #fff;
     margin: 0;
     letter-spacing: 1px;
     border-radius:5px;
     color: #fff;
     background: #B98344;
     border: 0;
    
     }
 .News .new-content span{
     
     font-size: 16px;
     
 }
 .News .new-content .more{
     color:#906c48;
    margin-right: 135px;
     font-size: 14px;
     
 }
 .News .new-content .more:hover{
     color:#906c48;
    text-decoration: none;
     background-color: transparent;
     transform: scale(0.9);
     
 }
     @media(max-width:480px){
     .new-link{
     font-size:14px;
     font-weight: 400;
     }
     .News .new-content h3 {
        font-size:16px; 
         }    
     .News .new-content .time {
          font-size:14px;
         }
         .News .new-content span {
          font-size:12px;
         }
         .News .new-detail .new-date span {
         font-size:12px;
         }
     .News .new-content .more{
     
    margin-right: 105px;
     font-size: 12px;
     
 } 
         .News .new-content .new-link{
             font-size: 12px;
         }
     }
     @media(max-width:380px){
     .new-link{
     font-size:14px;
     font-weight: 400;
     }
     .News .new-content h3 {
        font-size:16px; 
         }    
     .News .new-content .time {
          font-size:14px;
         } 
     .News .new-detail .new-date span {
         font-size:14px;
         }
     }
 .News i{
     color:#906c48;
     padding-left: 5px;
 }  
 .News i:hover{
     color:#906c48;
 } 
  
    .News .link:hover {
     border: 0;
     border-radius:5px;
     transform: scale(0.9);
     }

     /* section {
      padding: 60px 0;
      min-height: 100vh;
  } */
  .contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  }
  .footer-links .contact-info {
    text-align: right;
    margin-right: 10px;
    
  }
  .contact-info-icon {
  margin-bottom: 15px;
  }
  .contact-info-item {
  background: #f5f5f5;
  padding: 30px 0px;
  }
  .contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  }
  .contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
  }  
  .contact-page-form.contact-form input {
  margin-bottom: 5px;
  }  
  .contact-page-form.contact-form textarea {
  height: 110px;
  }
  .contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
  }
  .contact-info-icon i {
  font-size: 30px;
  color: #2d2d71;
  }

  .contact-info-icon i:hover{
    color: #906c48;
    }
  .contact-info-text p{margin-bottom:0px;}
  .contact-info-text h2 {
    color: #906c48;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .contact-info-text span {
    color: #414449;
    font-size: 16px;
    display: inline-block;
    width: 100%;
  }
  
  .contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
  }
  
  .contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
  }
  .single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
  }
  .single-input-fieldsbtn input[type="submit"] {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
  }
  .single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
  .single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
  }
  .contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  }
  
  .contact-page-map {
  margin-top: 36px;
  }
  .contact-page-form form {
  padding: 20px 15px 0;
  }
  
  .whatsapp {
      position:fixed;
      width:60px;
      height:60px;
      bottom:20px;
      right:20px;
      background-color:#906c48;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:30px;
      z-index:100;
    }
    
    .whatsapp-icon {
      margin-top:13px;
    }

    .list-toggle {
      display: block !important;
    }
    .list {
      display: none;
    }
    
    .list-toggle .toggle-btn {
      /* background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px; */
      cursor: pointer;
    }
    
    .list-toggle .toggle-btn:hover {
      /* background-color: #3e8e41; */
    }
    
    .list-toggle .list {
      /* margin: 0;
      padding: 0;
      list-style-type: none; */
    }
    
    .list-toggle .list li {
      /* padding: 10px;
      border-bottom: 1px solid #ddd; */
    }
    
    .list-toggle .list li:last-child {
      border-bottom: none;
    }
    
    .list-toggle.active .list {
      display: block;
    }
    .contact-info-text span a {
      color: #414449;
      font-size: 16px;
      display: inline-block;
      width: 100%;
  }
  .contact-info-text span a:hover {
    color: #414449;
    font-size: 16px;
    text-decoration: underline;
    display: inline-block;
    width: 100%;
}

.handbooks,.News,.contact-page-sec {
  margin-top: 60px;
}


/*** Btn Play ***/
.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #906c48;
    z-index: 100;
}



.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #906c48;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #906c48;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}