.hamburger {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.hamburger em {
  display: block;
  border: 2px solid black;
  border-radius: 3px;
  margin-bottom: 5px;
  width: 100%;
}

.custom-menu-mobile {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  background-color: #fff;
  width: 100vw;
  right: 0;
  z-index: 1000000000;
  top: 50px;
  max-height: calc(100vh - 300px);
  overflow: auto;
  text-align: right;
}

.custom-menu-mobile li {
  padding: 0;
}

.cta {
  background-color: #000;
  padding: 30px 0;
}

.cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta a {
  display: block;
  padding: 10px 20px;
  border: 3px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 22px;
  transition: .5s;
}

.cta a:hover {
  border: 3px solid #c89d66;
}

.cta p {
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  margin: 0;
  text-align: center;
}

img {
  margin: 15px 0;
}

.aditional-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.regio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
}

.regio a:after {
  content: "|";
  margin-left: 10px;
}

.regio a:last-child:after {
  display: none;
}

/* not mobile */

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

.cta .container {
  justify-content: space-between;
}

.cta p {
    text-align: left;
}

}