* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  height: 100%;
  /* width: 100vw; */
  /* overflow-x: hidden !important; */
  /* position: relative; */
}

button {
  font-family: Outfit, sans-serif;
  cursor: pointer;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
}

#revivo-main-logo {
  width: 118px;
  height: 30.18px;
}

.header {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 80px;

  #revivo-title-desktop {
    display: flex;
    align-items: center;
    color: #222222;
    font-weight: 700;
    font-size: 24px;

    border-radius: 8px;
    padding: 3px;
    gap: 3px;
    height: 45px;
    cursor: pointer;

    .hotelx {
      color: #222222;
      font-weight: 600;
      font-size: 19.45px;
      line-height: 29.18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      background-color: #fff;
      width: 50%;
      white-space: nowrap;
      height: 39px;

      img {
        width: 13.11px;
        height: 13.13px;
      }
    }

    img {
      width: 118px;
      height: 32px;
    }

    @media screen and (max-width: 700px) {
      display: none;
    }
  }

  #revivo-title-mobile,
  .revivo-title {
    display: none;
    color: #222222;
    font-weight: 700;
    font-size: 24px;

    @media screen and (max-width: 700px) {
      display: block;
    }
  }

  .subHeading {
    color: #222222;
    font-weight: 600;
    font-size: 22px;
    line-height: 27.72px;
  }

  .navbar {
    ul {
      list-style: none;
      display: none;

      li a {
        font-size: 16px;
        font-weight: 400;
        line-height: 20.16px;
        text-align: left;
        color: #667085;
      }

      @media screen and (min-width: 1150px) {
        display: flex;
        gap: 24px;
      }
    }
  }

  .login-button {
    display: none;

    @media screen and (min-width: 700px) {
      display: flex;
      gap: 24px;
      flex-wrap: nowrap;
      align-items: center;

      height: 48px;
      background-color: #fff;

      font-weight: 600;
      font-size: 14px;
      line-height: 20px;
      cursor: pointer;

      img {
        width: 30px;
        height: 30px;
      }

      button {
        background-color: #007fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 48px;
        padding: 14px 12px;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        border: none;
      }
    }
  }

  .menu-icon {
    width: 100%;
    height: 100%;

    @media screen and (min-width: 700px) {
      display: none;
    }
  }

  @media screen and (max-width: 700px) {
    padding: 16px;
  }
}

#mobileMenuContainer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 1000;
  padding: 0 48px;
  border-bottom: 1px solid black;
}

#mobileMenuContainer.active {
  max-height: 500px; /* Set a max-height larger than the expected content height */
  opacity: 1;
  transform: translateY(0);
  padding: 48px;
}

@media screen and (max-width: 700px) {
  #mobileMenuContainer {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  #mobileMenuContainer .closeContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid black;
  }

  #mobileMenuContainer .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 64px;
    list-style-type: none;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  #mobileMenuContainer .navbar ul button {
    width: 126px;
    height: 44px;
    border-radius: 50px;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }

  #mobileMenuContainer .navbar ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    cursor: pointer;
  }
}

.productSectionMobile {
  .accordion {
    border: none;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .accordion-item button {
    border-top: 1px solid #ccc;
    background-color: #222b45;
    border-radius: 12px;
    padding: 8px 12px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    height: 56px;
  }

  .accordion-header {
    background-color: #f5f5f5;
    padding: 16px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
  }

  .accordion-header:hover {
    background-color: #e0e0e0;
  }

  .accordion-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    display: none; /* Initially hidden */
    height: auto;

    h2 {
      font-size: 22px;
      font-weight: 600;
      line-height: 30.8px;
      text-align: left;
      color: #007fff;
    }

    p {
      font-size: 22px;
      font-weight: 600;
      line-height: 30.8px;
      text-align: left;
      color: #222b45;
      padding-bottom: 16px;
    }

    .dimText,
    .leftShifted {
      font-size: 14px;
      font-weight: 400;
      line-height: 19.6px;
      text-align: left;
      color: #8f9bb3;
    }

    ul {
      padding-top: 16px;
    }

    ul li {
      font-size: 14px;
      font-weight: 400;
      line-height: 26px;
      text-align: left;
      color: #667085;
    }

    img {
      padding-top: 16px;
      width: 100%; /* Ensure the image fits the container's width */
      height: auto; /* Maintain the original aspect ratio */
      /* max-height: 180px; Optional: Limit the maximum height */
      object-fit: cover; /* Adjust how the image fills the container */
    }
  }

  .accordion-content.active {
    display: block; /* Shown when active */
  }

  @media screen and (min-width: 800px) {
    display: none;
  }
}

.productSectionDesktop {
  display: flex;
  justify-content: space-between;
  align-items: start;

  overflow-x: hidden;
  padding: 100px 60px;

  width: 100%;
  margin: auto;

  position: relative;
  top: 0;

  #accordionGroupDesktop {
    width: 25%;

    /* border: 2px solid red; */

    position: sticky;
    top: 0;
  }

  .accordion {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;

    width: 40%;

    z-index: 50000;

    /* position: sticky; */

    top: 0px;

    h3 {
      font-size: 30px;
      font-weight: 500;
      line-height: 20px;
      text-align: left;
      color: #222b45;
    }
  }

  .accordion-item {
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    img {
      padding: 12px;
    }

    .hide {
      display: none;
    }
  }

  .accordion-item button {
    border-top: 1px solid #ccc;
    background-color: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 400;
    font-size: 20px;
    border: none;
    height: 56px;
    cursor: pointer;
    text-align: start;
    /* white-space: nowrap; */

    width: 85%;
  }

  .accordion-item .active {
    color: #007fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 41px;
    text-align: left;
  }

  .accordian-sub-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 41px;
    text-align: left;
    color: #8f9bb3;

    span {
      cursor: pointer;
    }

    .active {
      color: #007fff;
    }
  }
  .accordian-sub-item.hide {
    display: none;
    border: 1px solid black;
  }

  #accordianDesktopContent {
    padding-left: 43px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    /* height: auto; */
    position: relative;
    z-index: 1000;
    border-left: 1px solid #f2f4fc;

    display: flex;
    flex-direction: column;
    gap: 24px;

    width: 75%;

    h2 {
      font-size: 40px;
      font-weight: 500;
      line-height: 20px;
      text-align: left;
      color: #222b45;
      letter-spacing: 1px;
      padding-bottom: 42px;
    }

    h3 {
      font-size: 30px;
      font-weight: 500;
      line-height: 30px;
      text-align: left;
      color: #222b45;
    }

    .dimText,
    .leftShifted {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
      text-align: left;
      color: #8f9bb3;
    }

    ul {
      padding-top: 16px;
      padding-left: 34px;
    }

    ul li {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
      text-align: left;
      color: #8f9bb3;
    }

    /* border: 3px solid black; */

    .textContent {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hide {
      display: none;
    }
  }

  @media screen and (max-width: 800px) {
    display: none;
  }
}

.desktoptncHeading {
  display: none;

  @media screen and (min-width: 800px) {
    display: block;
    position: relative;
    color: #222222;
    font-weight: 600;
    font-size: 80px;
    line-height: 20px;
    text-align: left;
    padding: 30px 80px;
    width: 100%;
    height: 233px;
    display: flex;
    align-items: center;

    background: linear-gradient(133.85deg, #ffffff 29.52%, #c7d5e0 118.05%);
  }
}

.desktoptncHeading::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 190px;
  background: radial-gradient(circle, rgba(0, 0, 255, 0.1) 10%, transparent 10%)
    repeat;
  background-size: 40px 40px;
  z-index: 0;
}

.imageSection {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;

  div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
}

.social-link-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
}

.linkSection {
  display: flex;
  justify-content: space-between;
  /* border: 1px solid black; */
  width: 100%;
  gap: 9px;
  flex-wrap: wrap;

  div {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
  }
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f9ff;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 24px;
  align-items: start;
  padding: 16px;
  padding: 60px 80px 16px 80px;

  #mobile-social-link-container {
    @media screen and (min-width: 600px) {
      display: none;
    }
  }

  #desktop-social-link-container {
    display: flex;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 600px) {
      display: none;
    }

    .social-links,
    .vertical-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-links > span:first-of-type {
      color: #222b45; /* Change text color to red */
      font-size: 20px;
      font-weight: 700;
      line-height: 20.16px;
      text-align: left;
      padding-bottom: 12px;
    }

    .vertical-links {
      font-size: 16px;
      font-weight: 400;
      line-height: 20.16px;
      text-align: left;
      color: #667085;

      @media screen and (max-width: 700px) {
        font-size: 14px;
        line-height: 20.16px;
      }
    }
  }

  @media screen and (max-width: 700px) {
    padding: 24px 16px;
  }
}
