.sidemenu-hamburger {
  align-self: start;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 15px;
  display: flex;
  cursor: pointer;
}

.hamburger {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 20px;
    border-top: 5px solid #11253d;
    border-bottom: 5px solid #11253d;
    box-sizing: initial;
}

.hamburger:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0px;
    width: 100%;
    border-top: 5px solid #11253d;
}

.sidemenu-wrapper {
  text-align: center;
  position: relative;
  height: 100%;
}

.sidemenu-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sidemenu-content ul {
  margin-top: 20px;
  list-style: none;
  padding: 0px;
  display: flex;
}

.sidemenu-content ul li {
  border-style: none;
  border-width: 1px;
  /* border-bottom-style: solid; */
  padding: 10px 0px;
  border-color: rgb(255 255 255 / 50%);
  color: white;
}

.sidemenu-content ul li img {
  padding: 10px;
}

.sidemenu-content ul.tours li:hover, .sidemenu-content ul.tours li.active {
  background-color: rgb(89 89 89 / 60%);
  cursor: pointer;
}

.sidemenu-content ul li:last-child {
  border-bottom-style: none;
}

.sidemenu-logo {
  height: 70px;
}

.a4logo {
  height: 70px;
}

.moby, .moby .moby-close {
  background-color: rgb(89 89 89 / 80%);
}

.moby-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.moby-menu {
    flex-grow: 1;
  align-items: center;
  justify-content: center;
}

body>.sidemenu-wrapper {
    display: none;
}

.moby .sidemenu-logo {
  display: inline;
}

.moby.bottom-full {
  bottom: inherit;
}

.banner {
  background: #199545;
  color: white;
  padding: 10px;
  margin-top: 20px;
}

.banner span {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner span img {
  height: 80px;
  display: inline-block;
}

.banner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.banner ul li {
  margin: 0px;
  padding: 0px;
  display: block;
  margin-bottom: 10px;
}

.banner ul li:nth-child(even) {
  border-left: 1px solid;
}

.contacts {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.contact-cta {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
}

.contact-cta img {
  width: 20px;
  margin-right: 10px;
}

.sidemenu-content .banner h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.underlined {
  text-decoration-color: #199545;
  text-underline-offset: 10px;
}

@media (min-width: 990px) {
  .sidemenu-content {
    width: 100%;
    height: 100%;
    margin: 0px;
    display: inline-block;
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
  }

  .contact-cta {
    font-size: 24px;
    align-items: center;
  }

  .contact-cta img {
    margin-right: 10px;
    height: 30px;
    width: auto;
  }

  .sidemenu-content ul.tours {
    flex: 1;
    justify-content: center;
    max-height: calc(100vh - 570px);
  }

  ul.tours li {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .sidemenu-content .banner h1 {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .sidemenu-content ul li img {
    padding: 10px;
    flex: 1;
    height: 90%;
  }

  .banner {
    display: flex;
  }

  .banner .content {
    width: auto;
    margin: auto;
  }

  .banner span {
    font-size: 24px;
  }

  .contacts {
    font-size: 24px;
    justify-content: space-between;
  }

  .moby .sidemenu-logo {
    margin-right: 30px;
    height: 100px;
  }

  .a4logo {
    height: 100px;
  }

  .banner ul li {
    font-size: 24px;
  }

  .moby-menu {
    height: calc(100vh - 80px);
    overflow: hidden;
  }
}