body {
    font-family: "Epilogue", sans-serif;
    width: 100%;
    height: 100vh;
    margin: 0;
    font-size: 1.3vw;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: var(--v-white);
  }
  li {
    list-style-type: none;
  }
  a {
    text-decoration: none;
    color: var(--v-gray);
  }
  a:hover {
    cursor: pointer;
    color: var(--v-black);
    font-weight: 500;
  }
  header {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .logoSection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.3rem;
    height: 5rem;
    margin: 0.5rem 0 0 0;
  }
  .logo {
    width: 5.3rem;
    height: 2rem;
    object-fit: contain;
    margin: auto;
    padding-bottom: 0.5rem;
    padding-left: 1.2rem;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    height: 5rem;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
  }
  .firstPartNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 23.5rem;
    margin-top: 0;
    padding-left: 2.9rem;
  }
  .secondPartNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 11.5rem;
    height: 100%;
    margin-right: 2.5rem;
    margin-top: 0;
  }
  .featuresNavDropdown,
  .companyNavDropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    font-size: 0.9rem;
    gap: 1rem;
    top: 4.2rem;
    padding: 1.5rem;
    border-radius: 6px;
    background-color: var(--v-white);
    box-shadow: 1px 1.7px 8.6px rgba(0, 0, 0, 0.028),
      2.5px 4.1px 20.5px rgba(0, 0, 0, 0.04),
      4.6px 7.6px 38.7px rgba(0, 0, 0, 0.05),
      8.3px 13.6px 69px rgba(0, 0, 0, 0.06),
      15.5px 25.5px 129.1px rgba(0, 0, 0, 0.072),
      37px 61px 309px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s forwards;
    z-index: 2;
  }
  #featuresDropdown {
    left: 7.2rem;
  }
  #featuresDropdown > div {
    display: flex;
    align-items: center;
  }
  .dropdownIcons {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    padding: 0 0.9rem 0 0;
  }
  .burgerImg {
    display: none;
  }
  .navArrow {
    margin-left: 0.2rem;
  }
  .arrowUp {
    content: url("../images/icon-arrow-up.svg");
  }
  .registerButton {
    border: 2px solid var(--v-gray-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 13.5px;
  }
  .registerButton:hover {
    cursor: pointer;
    border: 2px solid var(--v-black-secondary);
    background-color: var(--v-white);
    color: var(--v-black);
  }
  .registerButton:hover a {
    color: var(--v-black);
    font-weight: 500;
  }
  .closeImgContainer {
    display: none;
  }
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 91%;
    margin-top: 2.1rem;
  }
  .card {
    width: 46%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 4vw 0 0 6.8vw;
    margin-bottom: 0vw;
  }
  h1 {
    font-size: 5.4vw;
    color: var(--v-black);
    display: flex;
    flex-direction: column;
    line-height: 5.6vw;
    margin-bottom: 3vw;
  }
  span {
    margin: 0;
  }
  button {
    height: 4vw;
    border: none;
    padding: 1.3vw 2.2vw;
    border-radius: 1vw;
    background-color: var(--v-black);
    color: var(--v-white);
    font-size: 1.3vw;
    font-weight: bold;
    text-align: center;
  }
  button:hover {
    cursor: pointer;
    background-color: var(--v-white);
    border: 1px solid var(--v-black);
    color: var(--v-black);
  }
  .commercialText {
    color: var(--v-gray);
    margin: 0;
    margin-bottom: 3.2vw;
    width: 77%;
    line-height: 2vw;
    font-size: 1.13rem;
  }
  .clientLogos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 34.2vw;
    height: 13vw;
    margin: 2vw 0 0 0;
  }
  .clientLogoSize {
    object-fit: scale-down;
  }
  .databizLogo {
    width: 8.5vw;
    height: 3vw;
  }
  .audiophileLogo {
    width: 7vw;
    height: 2.5vw;
  }
  .makerLogo,
  .meetLogo {
    width: 7vw;
    height: 2.5vw;
  }
  .pageImg {
    width: 40rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5vw;
  }
  .imgHero {
    width: 33.2vw;
  }
  footer {
    width: 100%;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--v-black);
  }
  .attribution {
    font-size: 1rem;
    text-align: center;
  }
  .attribution a {
    color: hsl(228, 45%, 44%);
  }
  .hiddenDropdown {
    display: none;
  }
  
  @media (min-width: 1600px)  {
    .card {
      padding: 4vw 0 0 5vw;
    }
  }