

  :root {
    --duration-menu-open: 300ms;
    --duration-burger-changes: 300ms;
    --duration-header-fixed-shown: 200ms;
  }
  
  .scroll-disabled {
    overflow: hidden;
  }
  
  .hero {
    height: 0vh;
  }
  
  .section {
    height: 0vh;
  }
  
  .positioned-absolute {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    z-index: 1000;
  }
  
  .header {
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
  }
  
  .header.header-static {
    position: absolute;
  }
  
  .header.header-fixed {
    position: fixed;
    background: transparent;
    /* transform: translate3d(0, -60px, 0); */
    transition: transform var(--duration-header-fixed-shown) ease-out;
    z-index: 1000;
  }
  
  .header.header-fixed.shown {
    transform: translate3d(0, 0px, 0);
  }
  
  .header.header-fixed.open {
    background: transparent;
  }
  
  .logo {
    left: 20px;
    color: black;
  }
  
  .logo-white {
    color: white;
  }
  
  .logo-black {
    color: black;
  }
  
  .header-fixed > .logo-white {
    opacity: 0;
  }
  
  .header-fixed > .logo-black {
    opacity: 1;
  }
  
  .header-fixed.open .logo-white {
    opacity: 1;
  }
  
  .header-fixed.open .logo-black {
    opacity: 0;
  }
  
  .header-static > .logo-white {
    opacity: 1;
  }
  
  .header-static > .logo-black {
    opacity: 0;
  }
  
  .header-static .burger-line {
    background: white;
  }
  .logo-text{
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
  }
  .burger {
    cursor: pointer;
    right: 20px;
    width: 38px;
    height: 38px;
    opacity: 1;
    display: flex;
    justify-content: center;
    flex-flow: column;
  }
  
  .burger.burger-open .burger-line {
    background: white;
  }
  
  .burger.burger-open .top {
    transform: rotate(-45deg) translate3d(0, 1px, 0);
  }
  
  .burger.burger-open .bottom {
    transform: rotate(45deg) translate3d(0, -1px, 0);
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/Lemzon-1024x576-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    transform: translate3d(0, -100vh, 0);
    transition: transform var(--duration-menu-open) ease-out;
  }
  
  .menu.open {
    transform: translate3d(0, 0, 0);
    
  }
  
  .menu nav ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 200px;
    padding-left: 200px;
  }
  
  .menu nav ul li {
    margin-bottom: 30px;
    position: relative; /* Needed for dropdown positioning */
  }
  
  .menu nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    text-transform: capitalize;
    letter-spacing: 2px;
    transition: color 0.3s;
    font-weight: 700;
  }

  .menu nav ul li a span {
    font-size: 12px;
    font-weight: 600;
    color: #8f8686;
  }
  
  .menu nav ul li a:hover {
    color: rgb(96, 95, 92); /* Highlight color */
  }
  
  /* Dropdown Menu - Position it to the right of the parent item */
  .dropdown {
    position: relative; /* Necessary for positioning the dropdown */
  }
  
  .dropdown .dropdown-content {
    display: none;
    position: absolute;
    left: 100%;  /* Position the dropdown to the right of the parent */
    top: 0;
    background-color: #0b0b0b;
    min-width: max-content;
    z-index: 1000;
    margin-left: 40px; /* Space between parent and dropdown */
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content li {
    padding: 10px 0;

  }
  
  .dropdown-content li a {
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .burger-line {
    transform-origin: center;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: all var(--duration-burger-changes) ease-out;
  }
  


  /* gallary */
  .img-gallery-magnific{
    height: auto;
    padding-top: 80px;
  }
  .magnific-img img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
  }

  .magnific-img {
    display: inline-block;
    width: 32.3%;
    padding: 10px;
    border: 1px solid #012a4a87;
    /* padding: 10px; */
    margin-bottom: 8px;
    margin-right: 5px;
  }
  a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
  }
  .mfp-with-zoom .mfp-container,
  .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
  }
  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
  }
  
  .mfp-with-zoom.mfp-removing .mfp-container,
  .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }
  .mfp-arrow-left:before {
    border-right: none !important;
  }
  .mfp-arrow-right:before {
    border-left: none !important;
  }
  button.mfp-arrow,
  .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
  }
  .mfp-container:hover button.mfp-arrow,
  .mfp-container:hover .mfp-counter {
    opacity: 1 !important;
  }
  
  /* Magnific Popup CSS */
  .mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
  }
  
  .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
  }
  
  .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }
  
  .mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  
  .mfp-align-top .mfp-container:before {
    display: none;
  }
  
  .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
  }
  
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
  }
  
  .mfp-ajax-cur {
    cursor: progress;
  }
  
  .mfp-zoom-out-cur,
  .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
  }
  
  .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
  }
  
  .mfp-auto-cursor .mfp-content {
    cursor: auto;
  }
  
  .mfp-close,
  .mfp-arrow,
  .mfp-preloader,
  .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  .mfp-loading.mfp-figure {
    display: none;
  }
  
  .mfp-hide {
    display: none !important;
  }
  
  .mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
  }
  .mfp-preloader a {
    color: #ccc;
  }
  .mfp-preloader a:hover {
    color: #fff;
  }
  
  .mfp-s-ready .mfp-preloader {
    display: none;
  }
  
  .mfp-s-error .mfp-content {
    display: none;
  }
  
  button.mfp-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  .mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
  }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
  }
  .mfp-close:active {
    top: 1px;
  }
  
  .mfp-close-btn-in .mfp-close {
    color: #333;
  }
  
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
  }
  
  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }
  
  .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
  }
  .mfp-arrow:active {
    margin-top: -54px;
  }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
  }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
  }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
  }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
  }
  
  .mfp-arrow-left {
    left: 0;
  }
  .mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
  }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
  }
  
  .mfp-arrow-right {
    right: 0;
  }
  .mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
  }
  .mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
  }
  
  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }
  .mfp-iframe-holder .mfp-close {
    top: -40px;
  }
  
  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }
  
  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
  }
  
  /* The shadow behind the image */
  .mfp-figure {
    line-height: 0;
  }
  .mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
  }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }
  .mfp-figure figure {
    margin: 0;
  }
  
  .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
  }
  
  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
  }
  
  .mfp-image-holder .mfp-content {
    max-width: 100%;
  }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
  }
  
  @media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
      padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px;
    }
    .mfp-img-mobile .mfp-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0;
    }
  }
  
  @media all and (max-width: 900px) {
    .mfp-arrow {
      -webkit-transform: scale(0.75);
      transform: scale(0.75);
    }
    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0;
    }
    .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      transform-origin: 100%;
    }
    .mfp-container {
      padding-left: 6px;
      padding-right: 6px;
    }
  }
  

  



  /*  */

  .title {
    font-size: 15rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .sub-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-light-2);
  }
  
  .paragraph {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .link {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-bg);
    background-color: var(--color-text);
    padding: 2rem 4rem;
    transition: all 0.3s ease-in-out;
  }
  
  .link:hover {
    background-color: var(--color-text-light);
    color: var(--color-text);
  }
  
  /*  */
  
  .banner .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
  }
  
  .banner p {
    width: 70%;
  }
  
  .animation-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10rem;
  }
  
  .animation-section .animation-box {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
  }
  
  /* reload btn */
  .reload-btn {
    position: fixed;
    top: 5rem;
    right: 5rem;
    z-index: 2;
  }
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: relative;
    top: 100%;
    left: 20%;
    background: transparent;
    list-style: none;
    padding:20px 0;
    margin: 0;
    min-width: 180px;
    border: none;
    transition: .5s ease-in-out;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    transition: .5s ease-in-out;
  }
  
  .dropdown-menu li {
    padding: 0px;
    text-align: left;
  }
  
  .dropdown-menu a {
    color: #ebebeb;
    font-weight:300 !important;
    text-decoration: none;
    font-size: 20px !important;
    display: block;
    transition: 0.25s;
  }
  
  .dropdown-menu a:hover {
    filter: brightness(140%);
  }
  
  
  .top-bar__nav {
    width: 100%;
    background: #000;
    transition: 0.25s;
    height: 95vh;
  
    overflow: hidden;
  }
  
  .top-bar__nav.collapsed {
    max-height: 0;
    min-height: 0;
  }
  
  .top-bar__nav-list {
    list-style: none;
    padding: 0;
  }
  
  .top-bar__nav-list li {
    padding: 0rem;
    text-align: left;
    width: fit-content;
  }
  
  .top-bar__nav-list a {
    color: #ebebeb;
    text-decoration: none;
    font-size: 30px;
    display: inline-block;
    padding: 12px 0.4rem;
    transition: 0.25s;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .top-bar__nav-list a:hover {
    filter: brightness(140%);
  }
  
  .hamburger {
    position: relative;
    height: 50px;
  }
  
  .hamburger span {
    width: 50px;
    height: 7px;
    position: absolute;
    background: #ebebeb;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 3px;
  }
  
  .hamburger span:nth-child(1) {
    top: 20%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger span:nth-child(2) {
    top: 50%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger span:nth-child(3) {
    top: 80%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger.closed span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }
  
  .hamburger.closed span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }
  
  .hamburger.closed span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }
  
  .top-bar {
    display: flex;
    background: transparent;
    color: #ebebeb;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    position: sticky;
    top: 0; 
    z-index: 999; 
    width: 100%;
  }
  
  .top-bar__nav-toggle {
    margin:15px 50px;
      display: inline-block;
      color: #ebebeb;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 50px;
      /* min-width: 55px; */
      text-align: center;
      transition: 0.25s;
  }
  
  .top-bar__nav-toggle:focus {
    outline: none;
    transform: scale(1.1);
  }
  
  .top-bar__brand img{
    width: 150px;
    margin: 15px 30px;
  }
  
  .top-bar__contact {
    margin-left: auto;
  }
  
  .top-bar__contact a {
    color: #ebebeb;
    text-decoration: none;
    font-size: 20px;
    margin-right: 30px;
  }
  
  .top-bar__social {
    display: flex;
    height: 90px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-right: 110px;
    transition: 0.25s;
  }
  
  .top-bar__social a {
    color: #ebebeb;
    font-size: 35px;
  }
  
  @media (max-width: 1000px) {
    .top-bar__nav-toggle {
      margin-right: 30px;
    }
    .top-bar__brand {
      flex: 1;
    }
    .top-bar__contact {
      display: none;
    }
    .top-bar__social {
      margin-left: auto;
    }
  }
  
  @media (max-width: 700px) {
    .top-bar__nav-toggle {
      margin-left: 20px;
    }
    .top-bar__social {
      margin-right: 30px;
    }
  }
  
  .top-bar__nav {
    width: 100%;
    background:linear-gradient(0deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)), url(../images/gallary_.webp);
    background-size: cover;
    transition: 0.25s;
    height: 101vh;
    overflow: hidden;
    top: -79px;
    position: relative;
    z-index: -10;
  }
  
  .top-bar__nav.collapsed {
    max-height: 0;
    min-height: 0;
  }
  
  .top-bar__nav-list {
    list-style: none;
    padding: 0;
    height: 95vh;
    top: 25%;
    left: 20%;
    position: relative;
  
  }
  
  .top-bar__nav-list li {
    padding: 0rem;
    text-align: left;
  }
  
  .top-bar__nav-list a {
    color: #ebebeb;
    text-decoration: none;
    font-size: 30px;
    display: inline-block;
    padding: 12px 0.4rem;
    transition: 0.25s;
    font-weight: 700;
    text-transform: capitalize;
  }
  .top-bar__nav-list i{
      font-size: 16px;
  }
  
  .top-bar__nav-list a:hover {
    filter: brightness(140%);
  }
  
  .hamburger {
    position: relative;
    height: 35px;
  }
  
  .hamburger span {
    width: 27px;
    height: 4px;
    position: absolute;
    background: #ebebeb;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 0px;
  }
  
  .hamburger span:nth-child(1) {
    top: 20%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger span:nth-child(2) {
    top: 50%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger span:nth-child(3) {
    top: 80%;
    transition: top 0.125s 0.25s, transform 0.125s;
  }
  
  .hamburger.closed span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }
  
  .hamburger.closed span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }
  
  .hamburger.closed span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
  }










  