/* Colours */
body {
 
}

.section__body {
  height: 100vh;
  background: #fff;
  width: 100%;
}

.section__header {
  /*padding: 60px 30px;*/
  position:absolute;
 /* background: #1C8799;*/
  color: #fff;
}
.section__header .brand {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;margin: 20px auto 0;
  line-height: 1em;
  letter-spacing: 0.1em;
}

.nav__container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #00000091;
  max-height: 0;
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  transition: max-height 0.6s ease;
  width: 25%;
}
.nav__container.open {
  max-height: auto;
}

.nav a {
  display: inline-block;
  width: 100%;
  padding: 20px 30px;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1em;
  position: relative;
  transition: background 0.4s ease;
}
.nav a:hover {
  background: #fff6e9;
}
.nav .dropdown-toggle {
  position: relative;
}
.nav .dropdown-toggle.open:before {
  transform: rotate(225deg) translateY(-50%);
}
.nav .dropdown-toggle:before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg) translateY(-50%);
  right: 105px;
  transition: transform 0.4s ease;
}
.nav .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: #D4C227;
  transition: max-height 0.6s ease;
}
.nav .dropdown-menu.open {
  max-height: auto;
}
.nav .dropdown-menu a {
  font-size: 14px;
  padding: 15px 30px;
}
.nav .dropdown-menu li:first-child {
  padding-top: 10px;
}
.nav .dropdown-menu li:last-child {
  padding-bottom: 10px;
}

.btn__toggle {
  font-size: 9px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  outline: none;
  background: #cc116800;
  color: #fff;
  height: 50px;
  width: 50px;
  text-align: center;
  padding-top: 27px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 30px;
  z-index: 1;
  transition: background 0.6s ease, color 0.6s ease;
}
.btn__toggle.open span:nth-child(1), .btn__toggle.open span:nth-child(4) {
  opacity: 0;
}
.btn__toggle.open span:nth-child(2) {
  transform: rotate(45deg);
}
.btn__toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.btn__toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.6s ease;
}
.btn__toggle span:nth-child(1) {
  top: 12px;
}
.btn__toggle span:nth-child(2), .btn__toggle span:nth-child(3) {
  top: 18px;
}
.btn__toggle span:nth-child(4) {
  top: 25px;
}