.mobileNavContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f00;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-radius: 10px;
  height: 50px;
}

.mobileNav {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 100%;
  padding: 0 calc(50% - 20px);
}

.mobileNav div {
  width: 40px;
  height: 5px;
  background-color: #000;
  margin: 5px 0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.active .lineOne {
  transform: rotate(-45deg) translate(-7px, 7px);
}

.active .lineTwo {
  opacity: 0;
}

.active .lineThree {
  transform: rotate(45deg) translate(-7px, -7px);
}

.navLinksContainer {
  min-width: 320px;
  position: absolute;
  z-index: 10;
  left: 0px;
  right: 0px;
  padding: 0 5px;
  max-height: 0px;
  overflow-y: hidden;
  transition: max-height 0.3s ease-in-out;
}

.topMenu {
  border-radius: 10px;
}

nav ul {
  list-style-type: none;
  transition: max-height 0.3s ease-in-out;
  background-color: #333;
}

nav a {
  display: block;
  line-height: 50px;
  text-decoration: none;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: background-color;
}

.topMenu li a {
  background-color: #ff0;
}

.subMenuOne li a {
  background-color: #6d7174;
}

.subMenuTwo li a {
  background-color: #c9c9c9;
}

.subMenuOne,
.subMenuTwo {
  max-height: 0px;
  overflow-y: hidden;
  min-width: 150px;
}

.active {
  max-height: none;
  overflow-y: visible;
}

.red {
  background-color: #f00 !important;
}

/*!--  @media screen and (max-width: 1199px)  ---------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1199px) {
  .navLinksContainer {
    margin: 0 auto;
    max-width: 610px;
  }

  .logo {
    height: 50px;
  }

  .logo img {
    display: block;
    margin: auto;
    height: 100%;
  }

  .topMenu a {
    border-bottom: 1px solid #333;
  }

  .topMenu>li:first-of-type a {
    border-radius: 10px 10px 0 0;
  }

  .topMenu>li:last-of-type a {
    border-radius: 0 0 10px 10px;
  }

  a.topMenuLink.red,
  a.subMenuOneLink.red {
    border: none;
  }

  ul.subMenuTwo.active {
    border: 3px solid #f00;
  }

  .slideshow-container {
    display: none !important;
  }
}

/*!-- @media screen and (min-width: 1200px)  ---------------------------------------------------------------------------------------------------------------------------------------*/

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

  .navLinksContainer {
    max-height: none;
    overflow-y: visible;
    position: relative;
    padding: 0px;
  }

  .topMenu {
    display: flex;
    justify-content: center;
    gap: 4px;
    background-color: #ff0;
    border-top: 1px solid;
    border-bottom: 1px solid;
  }

  .topMenu a {
    min-width: 110px;
    padding: 0px 10px;
    text-wrap: nowrap;
    transition: none;
  }

  nav ul li a.topMenuLink {
    border: none;
    background-color: transparent;
  }

  nav a:hover {
    background-color: #f00 !important;
  }

  a.subMenuOneLink.red {
    border-right: 0px;
  }

  ul.subMenuTwo.active {
    border: 3px solid #f00;
    background-color: #f00;
  }

  nav ul {
    transition: none;
  }

  nav ul li {
    position: relative;
  }

  nav ul ul {
    position: absolute;
  }

  nav ul ul ul {
    top: 0;
    left: 100%;
  }
}