 /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "larken", serif;
      background: #f2f2f2;
      color: #111;
      height: 100vh;
    }
    .theme-font{
      font-family: "larken", sans-serif;
      font-style: normal;
    }
    /* NAVBAR */
    header {
      position: absolute;
      top: 0;
      width: 100%;
      padding: 40px 200px 40px 80px;
      display: flex;
      justify-content: space-between;
      z-index: 10;
    }

    nav ul {
      display: flex;
      gap: 28px;
      list-style: none;
      font-size: 14px;
      letter-spacing: 0.5px;
      position: relative;
      padding:0;
    }

    nav ul li {
      cursor: not-allowed;
      color: #ffffff;
      /* opacity: 0.8; */
    }

   /*  nav ul li:hover {
      opacity: 1;
    } */

    /* HERO SECTION */
    .hero {
      display: flex;
      height: 100vh;
      padding: 0 80px;
      align-items: center;
      justify-content: space-between;
      /* background: radial-gradient(circle at right center, #e6e6e6, #f2f2f2); */
      background: url('../images/main-banner.png') no-repeat;
      background-size: cover;
    }

    /* LEFT CONTENT */
    .hero-content {
      max-width: 480px;
      z-index: 2;
    }

    .hero-content h1,
    .zayed-legacy h1 {
        font-family: "larken", sans-serif;
      font-size: 55px;
      line-height: 60px;
      margin-bottom: 24px;
      font-weight: 100;
      position: relative;
      color: #ffffff;
    }

    .hero-content h1::before,
    .zayed-legacy h1::before {
      content: "• ";
      color: #e64525;
      font-size: 48px;
      vertical-align: top;
      position: absolute;
      left: -30px;
       top: -10px;
    }

    .hero-content p {
        font-size: 40px;
        line-height: 1.6;
        color: #ffffff;
        max-width: 360px;
        line-height: 60px;
    }

    /* RIGHT IMAGE AREA */
    .hero-image-wrapper {
      position: relative;
      width: 45%;
      height: 100%;
      display: flex;
      align-items: end;
      justify-content: center;
    }

    .red-circle {
      position: absolute;
      width: 320px;
      height: 320px;
      background: #e64525;
      border-radius: 50%;
      z-index: 1;
    }

    .hero-image {
      position: relative;
      z-index: 2;
      max-height: 100%;
      max-width: 500px;
      object-fit: contain;
    }
    .hero-image2 {
        position: absolute;
        top: 50%;
        right:-50px;
        margin-top: -60px;
    }
    nav ul::before {
        content: '';
        height: 1px;
        width: 97%;
        position: absolute;
        left: 20px;
        bottom: -17px;
        background: #e64629;
            opacity: 0.5;
    }
     nav ul li{
        position: relative;
     }
    nav ul li::after {
        content: '';
        position: absolute;
        bottom: -24px;
        left: 35%;
        width: 15px;
        height: 15px;
        background: #e64629;
        border-radius: 100%;
        opacity: 0;
    }
    nav ul li:hover::after,
    nav ul li.active::after{
        opacity: 1;
    }
    .navbar-toggler:focus {
      box-shadow: none;
  }
  /****** New Code *****/
.about-sec{
    background: url('../images/bg-1.jpg') no-repeat;
    background-size: cover;
    padding: 30px 0;
}
.heading-with-bg{
    background: url('../images/heading-bg.png') no-repeat;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 200;
    padding: 20px;
    line-height: 30px;
}
.icon-container{
    text-align: center;
}
.icon-container h4{
    color: #ffffff;
}
.zayed-legacy{
    padding: 50px 80px 300px 80px;
    background: url('../images/bg.png') no-repeat;
    background-size: cover;
    position: relative;
}
.zayed-legacy p{
    font-size: 22px;
        font-weight: 300;
}
.zayed-legacy::before{
    content: '';
    background: url('../images/sheikh-zayed.png') no-repeat;
    width: 400px;
    height: 680px;
    position: absolute;
    top: 50px;
    right: 0;
    background-size: 400px;
}
.zayed-legacy::after{
    content: '';
    background: url('../images/vector.png') no-repeat;
        width: 630px;
    height: 670px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: 630px;
}
.zayed-legacy h1 {
    color: #000;
    font-size: 40px;
    line-height: 45px;
        padding-left: 30px;
}
.zayed-legacy h1::before {
    left: 0;
}
.profile-lang-container{
    margin-left: 45px;
}
.profile-lang-container img{
    width: 25px;
}
.cursor-pointer{
    cursor: pointer;
}
.full-width-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
.bg-body-tertiary{
    background: #213b34 !important;
}
img.hand-icon{
    width: 75px;
    padding-bottom: 5px;
}
img.img-responsive.site-logo {
    width: 300px;
}
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero {
        flex-direction: column;
        padding: 120px 40px 40px;
        text-align: center;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-image-wrapper {
        width: 100%;
        height: auto;
        margin-top: 40px;
      }

      .red-circle {
        width: 240px;
        height: 240px;
      }
      body {
        overflow: visible;
        overflow-x: hidden;
    }
    .hero {
        height: auto;
        background-attachment: fixed;

      }
    }
    @media (min-width: 1199px) {
        .hero {
            padding: 0 80px;
        }
        .hero-image2 {
            right: -160px;
        }
        .hero-image-wrapper {
            width: 60%;
        }
        .legacy-content p{
        text-align: justify;
    }
    }
    @media (max-width: 767px) {
      body {
        overflow: visible;
        overflow-x: hidden;
    }
    header,
    body.page-ar header{
      padding: 20px 0;
    }
    nav.navbar.navbar-expand-lg.bg-body-tertiary {
    width: 100%;
}
    .hero-content h1 {
      font-size: 50px;
      line-height: 60px;
        padding-left: 30px;

    }
    .hero-content h1::before {
    left: 0;

}
      nav ul{
        display: none;
      }
      .me-auto.navbar-nav{
        gap: 0;
        margin-top: 20px;
      }
      .hero {
        height: auto;
        background-attachment: fixed;
        padding: 130px 30px;

      }
      .hero-image {
          max-width: 350px;
      }
      nav ul::before,
      nav ul::after {
        display: none;
    }
    .zayed-legacy::before,
    .zayed-legacy::after{
        display: none;
    }
    .zayed-legacy {
        padding: 0;
    }
    .sheikh-zayed-pic-mobile{
        text-align: right;
    }
     .sheikh-zayed-pic-mobile img {
    width: 300px;
}
     .legacy-content{
        padding: 30px;
     }
     .heading-with-bg p > br{
        display: none;
     }
     .heading-with-bg .container{
        padding: 0;
     }
     nav ul li::after{
        display: none;
     }
     .hero-content {
        text-align: left;
    }
    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
}
.nav-link {
    color: #ffffff;
    }
    .page-ar .hero-content h1,
    .page-ar .hero-content p{
        text-align: right;
    }
    .legacy-content p{
        text-align: left;
    }
    body.page-ar .legacy-content p{
        text-align: right;
    }
    header{
        position: relative;
        background: #213b34 !important;
        text-align: center;
        padding: 20px 0;
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1023.98px) { 
    header,
    body.page-ar header {
        position: relative;
        padding: 30px;
        display: block;
        background: #1c342e;
    }
    .site-logo-container{
        text-align: center;
            margin-bottom: 35px;
    }
    .main-nav-container{
        justify-content: space-between;
    }
 }
@media (min-width: 768px) and (max-width: 1259.98px) { 
    header,
    body.page-ar header {
        padding: 30px;
    }
 }