.icons {
  position: absolute;
  right: 5%;
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.imaa {
  width: 80%;
  vertical-align: middle;
}

/* Style the toggle button */
.toggle-btn {
  /* font-size: 30px; */
  color: #fff;
  /* Change toggle button text color to black */
  background-color: transparent;
  /* Remove background from toggle button */
  /* border: 2px solid white; */
  border: none;
  /* Add border */
  padding: 10px;
  width: 50px;
  /* Set the width */
  height: 50px;
  /* Set the height */
  border-radius: 50%;
  /* Make the button circular */
  position: absolute;
  top: 15px;
  right: 3%;
  /* Position the button 10% from the right edge */
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  /* Vertically center the text */
  justify-content: center;
  display: none;
  /* Horizontally center the text */
}

/* Horizontal Navigation Bar styles */
.nav-bar {
  font-family: "Avenir";
  position: absolute;
  top: 0;
  right: -100%;
  /* Initially hide the nav off-screen to the right */
  width: 70%;
  /* 70% width of the screen */
  background-color: transparent;
  /* Remove background */
  color: white;
  /* Change text color to black */
  transition: right 1s ease;
  /* Slow down the transition time */
  z-index: 99;
}

/* When the navbar is open, slide it in from the button's position */
.nav-bar.open {
  right: 10%;
  /* Align the navbar to the left of the toggle button */
}

/* Layout of the nav items */
.nav-bar ul {
  list-style-type: none;
  /* padding: 53px 0px 0px 0px; */
  margin: 0;
  display: flex;
  /* Display items horizontally */
  justify-content: flex-end;
  /* Center items horizontally */
  height: 100px;
  /* Set the height of the navbar */
  align-items: center;
  /* margin-right: 6%; */
}

.nav-bar li {
  padding: 15px;
  text-align: center;
  font-size: 20px;
  padding-top: 0;
  height: 51px !important;
}

.nav-bar li a {
  color: white;
  /* Change link text color to black */
  text-decoration: none;
  display: block;
}

.nav-bar li a:hover {
  color: gray;
  /* Optional: change text color on hover */
}

a {
  font-weight: 700;
  color: #373b44;
  position: relative;
}

a:hover {
  opacity: 0.8;
}

a:active {
  top: 1px;
}

.logo-position-margin {
  margin-left: -3%;
}

header {
  position: absolute;
  width: 95%;
  top: 0;
  left: 0;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

 /* Floating menu styles */
  .floating-menu {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      /* left: 10px; */
      right: 10px;
      display: none;
      flex-direction: column;
      background-color: #222;
      border-radius: 8px;
      overflow: hidden;
      z-index: 999;
  }

  .floating-menu a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: white;
      text-decoration: none;
      background-color: #333;
      border-bottom: 1px solid #444;
      position: relative;
  }

  .floating-menu a:hover {
      background-color: #444;
  }

  .floating-menu a::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 60px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #333;
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
  }

  .floating-menu a:hover::after {
      opacity: 1;
      visibility: visible;
  }

.intro {
  height: 100vh;
}

.intro {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro h1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 3.5rem;
  color: #e0ffff;
  mix-blend-mode: hard-light;
  font-family: Avenir;
  color: white !important;
  font-weight: bold;
}

.content {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .rest-of-the-resolution-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15%;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .imaa22 {
    width: 15vw;
  }

  /* ss */

  /* Horizontal Navigation Bar styles for mobile */
  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: -200%;
    /* Initially hide the nav off-screen to the top */
    left: 5%;
    /* Position it to the left edge */
    width: 100%;
    /* Full width of the screen */
    height: 100%;
    /* Full height of the screen */
    background-color: transparent;
    color: white;
    transition: top 1s ease;
    /* Slow down the transition time */
    z-index: 99;
  }

  /* When the navbar is open, slide it in from the top */
  .nav-bar.open {
    /* top: 100%; */
    height: 100vh;
    background-color: #000;
    position: absolute;
    transition: all 1s ease;
    top: 0;
    left: 0;
    /* Align the navbar to the top */
  }

  /* Layout of the nav items (vertical for mobile) */
  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Display items vertically */
    justify-content: center;
    height: 100%;
    align-items: center;
  }

  .nav-bar li {
    padding: 3vw;
    font-size: 2em;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a {
    font-weight: 700;
    color: #373b44;
    position: relative;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 0.9em;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  .imaa {
    width: 25vw;
  }
}

@media screen and (min-width: 768px) {
  .header-design {
    /* background: linear-gradient(to bottom, #0d1212 0%, #2b2425 100%); */
    background-color: #000;
    border-radius: 50px;
    margin-top: 1.5%;
    height: 8%;
    margin-left: 2.5%;
  }
  .toggle-btn{
    display: none;
  }
}

@media screen and (min-width: 375px) and (max-width: 440px) {
  .rest-of-the-resolution-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15%;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .imaa22 {
    width: 13vw;
  }

  /* ss */

  /* Horizontal Navigation Bar styles for mobile */
  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: -350%;
    /* Initially hide the nav off-screen to the top */
    left: 5%;
    /* Position it to the left edge */
    width: 100%;
    /* Full width of the screen */
    height: 100%;
    /* Full height of the screen */
    background-color: transparent;
    color: white;
    transition: top 1s ease;
    /* Slow down the transition time */
    z-index: 99;
  }

  /* When the navbar is open, slide it in from the top */
  .nav-bar.open {
    /* top: 100%; */
    height: 100vh;
    background-color: #000;
    position: absolute;
    transition: all 1s ease;
    top: 0;
    left: 0;
    width: 57vh;
}

  /* Layout of the nav items (vertical for mobile) */
  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Display items vertically */
    justify-content: center;
    height: 100%;
    align-items: center;
  }

  .nav-bar li {
    padding: 3vw;
    font-size: 2.5em;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a {
    font-size: 0.7em;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 1em;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  .imaa {
    width: 25vw;
  }
}

@media screen and (min-width: 425px) and (max-width: 767px) {
  .rest-of-the-resolution-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15%;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .imaa22 {
    width: 12vw;
  }

  a {
    font-size: 0.7em;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }
  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 1.2em;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  /* ss */

  /* Horizontal Navigation Bar styles for mobile */
  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: -350%;
    /* Initially hide the nav off-screen to the top */
    left: 5%;
    /* Position it to the left edge */
    width: 100%;
    /* Full width of the screen */
    height: 100%;
    /* Full height of the screen */
    background-color: transparent;
    color: white;
    transition: top 1s ease;
    /* Slow down the transition time */
    z-index: 99;
  }

  /* When the navbar is open, slide it in from the top */
  .nav-bar.open {
      /* top: 100%; */
      height: 100vh;
      background-color: #000;
      position: absolute;
      transition: all 1s ease;
      top: 0;
      left: 0;
      width: 48vh;
  }

  /* Layout of the nav items (vertical for mobile) */
  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Display items vertically */
    justify-content: center;
    height: 100%;
    align-items: center;
  }

  .imaa {
    width: 25vw;
  }

  .nav-bar li {
    padding: 5vw;
    font-size: 2.5em;
    padding-left: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .imaa {
      width: 60% !important;
      vertical-align: middle;
    }
  .rest-of-the-resolution-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    display: none;
    /* font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center; */
  }

  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: 0;
    right: -100%;
    width: 70%;
    background-color: transparent;
    color: white;
    transition: right 1s ease;
    z-index: 99;
  }

  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    height: 110px;
    align-items: center;
  }

  .nav-bar li {
    margin-bottom: 1rem;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    padding-top: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a {
    font-size: 0.7em;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }
  header {
    width: 95%;
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 2.1em;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .imaa {
    width: 63% !important;
    vertical-align: middle;
  }
  .rest-of-the-resolution-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    display: none;
    /* font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center; */
  }

  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: 0;
    right: -100%;
    width: 70%;
    background-color: transparent;
    color: white;
    transition: right 1s ease;
    z-index: 99;
  }

  .nav-bar ul {
    list-style-type: none;
    margin: 0.5rem;
    display: flex;
    justify-content: space-evenly;
    align-content: stretch;
    flex-wrap: wrap;
    height: 76px;
    align-items: center;
  }

  .nav-bar li {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    padding-top: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a {
    font-weight: 700;
    color: #373b44;
    position: relative;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  header {
    position: absolute;
    width: 95%;
    /* position: absolute; */
    top: 0;
    left: 0;
    /* width: 100%; */
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    width: 100%;
    width: 100%;
    height: 100%;
    object-position: center;
    /* Center the video */
  }

  .intro h1 {
    font-size: 2.5em;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .imaa {
      width: 64% !important;
      vertical-align: middle;
    }
  .rest-of-the-resolution-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
  .icons {
    position: absolute;
    right: 5%;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
  }

  .toggle-btn {
    display: none;
    /* font-size: 30px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 3%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center; */
  }

  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: 0;
    right: -100%;
    width: 70%;
    background-color: transparent;
    color: white;
    transition: right 1s ease;
    z-index: 99;
  }

  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-content: stretch;
    flex-wrap: wrap;
  }

  .nav-bar li {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    padding-top: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a {
    font-weight: 700;
    color: #373b44;
    position: relative;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  header {
    position: absolute;
    width: 95%;
    /* position: absolute; */
    top: 0;
    left: 0;
    /* width: 100%; */
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    width: 100%;
    height: 100%;
    object-position: center;
    /* Center the video */
  }

  .intro h1 {
    font-size: 3.5rem;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  .header-design {
    height: 10%;
  }
}

@media screen and (min-width: 1911px) {
  .rest-of-the-resolution-nav {
    display: block;
  }
  .mobile-nav {
    display: none;
  }

  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: 0;
    right: -100%;
    width: 70%;
    background-color: transparent;
    color: white;
    transition: right 1s ease;
    z-index: 99;
  }

  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    /* height: 100px !important; */
    align-items: center;
  }

  .nav-bar li {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    padding-top: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 5rem;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  .imaa {
    width: 80% !important;
  }
}

@media screen and (min-width: 2560px) {

  .rest-of-the-resolution-nav {
    display: block;
  }

  .mobile-nav {
    display: none;
  }

  .nav-bar {
    font-family: "Avenir";
    position: absolute;
    top: 0;
    right: -100%;
    width: 70%;
    background-color: transparent;
    color: white;
    transition: right 1s ease;
    z-index: 99;
  }

  .nav-bar ul {
    list-style-type: none;
    margin: 0;
    margin-top: 0.5rem;
    justify-content: space-evenly;
    align-content: stretch;
    flex-wrap: wrap;


  }

  .nav-bar li {
    padding: 15px;
    text-align: center;
    font-size: 25px;
    padding-top: 0;
  }

  .nav-bar li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .nav-bar li a:hover {
    color: gray;
  }

  a:hover {
    opacity: 0.8;
  }

  a:active {
    top: 1px;
  }

  .intro {
    height: 100vh;
  }

  .intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 5rem;
  }

  .content {
    display: table-cell;
    vertical-align: middle;
  }

  .imaa {
    width: 80% !important;
  }

   .header-design {
    background-color: #000;
    border-radius: 50px;
    margin-top: 1.5%;
    height: 15%;
    margin-left: 2.5%;
  }

  header {
    position: absolute;
    width: 96%;
  }

}

@media screen and (min-width: 400px) and (max-width: 440px) {
  .nav-bar.open {
    /* top: 100%; */
    height: 100vh;
    background-color: #000;
    position: absolute;
    transition: all 1s ease;
    top: 0;
    left: 0;
    width: 48vh;
}
}
