:root {
  --main-bg-color: #3d7e9a;
  --main-txt-color: #555;
  --main-btn-color: #b14141;
  --link-color: #d0b7e2;
  --link-hover-color: #8866a0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease;
}

html {
  /*font: normal 1.25em sans-serif;*/
  color: var(--main-txt-color);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

h1 {
  font-size: 4.1em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.3em;
  font-weight: 600;
}

h5 {
  font-size: 1.05em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h6 {
  font-size: 1.05em;
}

p { margin-bottom: 14px; }

nav,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  /*opacity: 0.75;*/
  color: var(--link-color);
}
a:hover {
  opacity: 1;
  color: var(--link-hover-color);
}

.sitenav a { color: #ececec; }
.sitenav a:hover { color: #fff; }

footer a:hover { color: #e6f99d; }

.center {text-align: center;}
.img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.center-img {
  display: flex;
  justify-content: center;
  /* vertical centering */
  align-items: center;
}

.mar-b-20 { margin-bottom: 20px; }

a.btn {
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  background-color: var(--main-btn-color);
  color: #ededed;
  opacity: 1;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 125px 0;
}

section:not(.hero):nth-child(even) {
  background-color: #f5f5f5;
}

.logo {
  background: rgba(0,0,0,.33);
  padding: 8px 22px;
  border-radius: 4px;
}
.logo:hover {
  /*transform: rotate(45deg) translateY(-5px) translateX(10px) scale(0);*/
  transform: translateX(11px);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.col-3 {
  display: grid;
  grid-gap: 60px;
  /*grid-template-columns: repeat(3, 1fr);*/
  grid-template-columns: 1fr 1fr 1fr;
}

hr {
  width: 111px;
  height: 3px;
  background-color: var(--main-bg-color);
  border: 0;
  margin-bottom: 80px;
  margin-top: 40px;
}

section h3.title {
  text-transform: capitalize;
  font: bold 32px "Poppins", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

section p {
  line-height: 1.5;
  /*margin-bottom: 30px;*/
  font-size: 1.11em;
}

@media (max-width: 800px) {
  section {
    padding: 50px 20px;
  }

  section p {
    font-size: 16px;
  }

  section h3.title {
    font-size: 25px;
  }

  hr {
    margin-bottom: 10px;
  }
}

/* Header Styles */

header {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  width: 80%;
  animation: 1s fadein 0.5s forwards;
  opacity: 0;
  color: #fff;
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

header h2 {
  font-size: 2rem;
}

header nav {
  display: flex;
}

header nav li {
  font-size: 0.88rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin: 0 15px;
  letter-spacing: 0.11em;
}

nav li:nth-child(2) {
  /*margin: 0 15px;*/
}

@media (max-width: 800px) {
  header {
    padding: 20px 50px;
    flex-direction: column;
  }
  header h2 {
    margin-bottom: 15px;
  }
}

/* Hero Styles */

.hero {
  position: relative;
  justify-content: center;
  text-align: center;
  height: 100vh;
  color: #fff;
}

.hero .background-image {
  position: absolute;
  background-image: url("../imgs/dj-eddie11-hero1.jpg");
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #80a3db;
}

.hero h1 {
  font: bold 83px "Poppins", sans-serif;
  margin-bottom: 11px;
  text-shadow: 1px 2px 3px rgb(74, 74, 74); 
}

.hero h3 {
  font: normal 28px "Poppins", sans-serif;
  margin-bottom: 40px;
  text-shadow: 1px 2px 3px rgb(74, 74, 74); 
}

.hero a.btn {
  padding: 20px 46px;
}

.hero-content-area {
  opacity: 0;
  margin-top: 100px;
  animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
  100% {
    opacity: 1;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero h3 {
    font-size: 24px;
  }
  .hero a.btn {
    padding: 15px 40px;
  }
}

@media (max-width: 600px) {
  .hero {height: 70vh;}
  .hero h1 {
    font-size: 30px;
  }
  .hero h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .hero a.btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .hero h2 {
    font-size: 18px;
  }
  .hero nav li {
    font-size: 15px;
  }


  .hero .background-image {
    background-position: center;
  }
  .hero h2.logo {
    /*background: #5a0101;*/
    background: rgba(90, 1, 1, 0.60);
    padding: 0px 11px;
  }
  h2.logo a {
    font-size: 33px;
    /*text-shadow: 0px 2px 2px #333;*/
    /*letter-spacing: -0.04em;*/
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  /*.hero h2 { text-shadow: 0 1px 3px #333;}*/

}

/* about */

.about .title, 
.about p, 
.about .grid {
  /*max-width: 80%;*/
}

.about p {
  /*width: 1800px;*/
}

.about .grid img {
  /*padding: 20px;*/
  /*background-clip: content-box;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  transition: 0.33s all ease;
  /*filter: grayscale(50%)*/
}

.about .grid img:hover {
  transform: scale(1.02);
  transition: 0.5s all ease;
  filter: none;
}

.about .grid img.small {
  width: 27%;
  height: 30vh;
  flex-basis: 30%;
}

.about .grid img.large {
  width: 67%;
  height: 30vh;
  flex-basis: 70%;
}








.img-sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  margin-top: 60px; 
}
.img-sections img {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  flex: 0 0 auto;
}

.img-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.img-column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.img-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .img-column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .img-column {
    flex: 100%;
    max-width: 100%;
  }
}















@media (max-width: 1800px) {
  .about .grid img.small,
  .about .grid img.large {
    flex-basis: 50%;
    width: 45%;
    height: 30vh;
  }
}

@media (max-width: 900px) {
  .about .grid img.small,
  .about .grid img.large {
    flex-basis: 100%;
    width: 300px;
    height: 250px;
  }
}


.wrapper {
  max-width: 833px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.column {
  margin: 10px;
  padding: 20px;
  /*display: flex;*/
  /*flex: 1 1 0px; *//* flex: 1 */
}

/* Styling */
.column {
  max-width: 700px;
  /*height: 200px;*/
  /*background-color: #333;*/
  /*box-shadow: 5px 5px 1px rgba(0, 0, 0, .2);*/
  /*color: #fff;*/
  /*font-size:  30px;*/
  /*font-family: sans-serif;*/
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.list-items { list-style-type: square; margin-left: 30px; margin-top: 10px; margin-bottom: 16px; line-height: 1.5; font-size: 18px; }





/* Packages Section */

.packages .title,
.packages li
.packages .grid {
  max-width: 80%;
}
.packages .grid { margin-top: 60px; }

.packages .grid li {
  /*padding: 40px;*/
  padding: 0 11px;
  /*flex-basis: 25%;*/
  flex-basis: 20%;
  text-align: center;
}

.package-list { /*list-style-type: square;*/ }

.package-list li { margin: 0; padding: 0 !important; line-height: 1.83; }

ul.package-list {
  margin-top: 20px;
    /*width: 450px;*/
    /*position: relative;*/
}
.packages ul.grid h4 { margin: 30px 0; }
ul.package-list:before, ul.package-list:after {
   /* text-align: center;
    display: block;
    border: 1px solid black;
    border-bottom: 0;
    width: 100%;*/
}
/*ul.package-list:before {
    content: 'col1';
    border-right: 0;    
}
ul.package-list:after {
    content: 'col2';
    position: absolute;
    top: 0;
    left: 48%;
    margin-left: 1px;    
}*/
    
ul.package-list li {
    /*float: left;*/
    /*margin-bottom: -1px;*/
    /*padding-right: 1%;*/
    text-align: left !important;
    /*border-bottom: 1px solid #ededed;*/
    padding: 6px 12px !important;
}
ul.package-list li:nth-child(even) {
    /*margin-left: -1px;*/
}
/*
ul.package-list li:nth-child(3n){
  background-color:#888;
}
*/
ul.package-list li:nth-child(2n+1){
  background-color:#ededed;
}
/*
ul.package-list li:nth-child(-n+3){
  border-top:1px solid #000;
}*/




.packages .grid li i {
  color: #8c9eff;
}

.packages .grid li h4 {
  font-size: 30px;
  margin: 25px 0;
}

@media (max-width: 1800px) {
  .packages .grid li {
    flex-basis: 50%;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .packages .grid li {
    flex-basis: 100%;
    padding: 20px;
    max-width: 100%;
  }
  .packages .grid li h4 {
    font-size: 22px;
  }
}

/* Testimonials Section */

.testimonials {
  font-weight: 300;
  line-height: 1.5;
}

.testimonials article {
  /*display: flex;*/
  /*justify-content: center;*/
  max-width: 80%;
}
.testimonials article div {
  width: 100%;
}

.testimonials .title,
.testimonials .author,
.testimonials .quote {
  /*max-width: 80%;*/
  /*width: 1200px;*/
}

@media (max-width: 800px) {
  .testimonials .quote {
    font-size: 18px;
    margin: 15px 0;
  }
  .testimonials .author {
    font-size: 14px;
  }
}

/* Contact Section */

.contact p {
  width: 80%;
  max-width: 1200px;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 800px;
  max-width: 80%;
}

.contact form .btn {
  padding: 18px 42px;
  width: 30%;
}

.contact form input {
  padding: 15px;
  margin: 15px 0 20px 0;
  width: 50%;
  font-size: 18px;
  color: var(--main-txt-color);
}

@media (max-width: 1100px) {
  .contact form .btn {
    padding: 9px;
    width: 150px;
    font-size: 12px
  }

  .contact form input {
    padding: 9px;
    width: 250px;
  }
}


.wrapper-wide {
  max-width: 1411px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
}
.col-4 {
  display: grid;
  /*border:1px solid #000;*/
  grid-gap: 50px;
  /*grid-template-columns: repeat(auto-fit, minmax(200px,1fr));*/
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.col-4 h4 { margin: 20px 0; }

.col-4 p { font-size: 15px; }


.packages ul.grid li:nth-of-type(1) {
  order: 4;
}

.packages ul.grid li:nth-of-type(2) {
  order: 3;
}

.packages ul.grid li:nth-of-type(3) {
  order: 2;
}

.packages ul.grid li:nth-of-type(4) {
  order: 1;
}




.top {
  bottom: 0;
  display: none;
  font-weight: bold;
  margin: 20px;
  position: fixed;
  right: 0;
  text-decoration: none;
  z-index: 1;
  background: rgba(237, 237, 237, 0.83);
  color: #333;
  padding: 9px;
  border-radius: 5px;
}

.top:hover { color: #aaa; }

/* Footer Section */

footer {
  background-color: #607d8b;
  color: #fff;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 80%;
  padding: 20px 0;
}

footer ul {
  display: flex;
  justify-content: flex-end;
  flex-basis: 540px;
}

footer ul li {
  margin-right: 16px;
}

footer p {
  flex-basis: 540px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.6;
}

footer p:nth-child(1) {
  text-align: left;
}

@media (max-width: 1100px) {
  .footer-container {
    flex-direction: column;
  }
  footer p {
    text-align: center;
    flex-basis: 0;
    margin-bottom: 20px;
    font-size: 12px;
  }
  footer ul {
    flex-basis: auto;
    margin: 0 8px;
  }
}


@media (max-width: 768px) {


  .packages .title,
  .packages li,
  .services .grid {
    max-width: 100%;
  }

  .about .title, 
  .about p, 
  .about .grid {
    max-width: 100%;
  }
}






/* Page Loader */
.js .loading::before {
  content: '';
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #7f40f1;
}

.js .loading::after {
  content: '';
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  pointer-events: none;
  background: #fff;
  animation: loaderAnim 0.8s ease-out infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    transform: translate3d(0,-100px,0);
  }
}







nav.sitenav li {  
  background: rgba(41, 41, 41, 0.33);
  padding: 6px 11px;
  border-radius: 5px;
  margin: 0 4px;
}




.mobile-menu {
  width:25px;
  height:30px;
  cursor: pointer;
  float:right;
}

.patty {
  width:25px;
  background:#fff; 
  height:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  float:right;
  margin-right:15px;
  margin-top:15px;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty:before {
  content:"";
  width:25px;
  background:#fff; 
  height:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  float:right;
  margin-top:7px;
  display:block;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty:after {
  content:"";
  width:25px;
  background:#fff; 
  height:3px;
  float:right;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  margin-top:4px;
  display:block;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty.active {
   transform:rotate(45deg);
  -ms-transform:rotate(45deg); /* IE 9 */
  -webkit-transform:rotate(45deg); /* Opera, Chrome, and Safari */
  margin-top:20px;
}

.patty.active:before {
  transform:rotate(-90deg);
  -ms-transform:rotate(-90deg); /* IE 9 */
  -webkit-transform:rotate(-90deg); /* Opera, Chrome, and Safari */
  margin-top:0px;
}

.patty.active:after {
    transform:rotate(-90deg);
  -ms-transform:rotate(-90deg); /* IE 9 */
  -webkit-transform:rotate(-90deg); /* Opera, Chrome, and Safari */
  margin-top:-4px;
}













.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}


.dual {
  width: 90vw;
  /*margin: 8em auto 25vh;*/
  margin: 0 auto;
  position: relative;
}

.dual__inner {
  position: absolute;
  width: 100%;
  height: 100%; 
}

.dual__half {
  position: absolute;
  height: 100%;
  width: 51%;
  right: 0;
  background: url(../imgs/dj-eddie11-wedding-event.jpg) no-repeat 50% 0%;
  background-size: cover;
}

.dual__content {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 2.5em 4.5em;
  font-size: 1.75em;
  line-height: 1.4;
  color: #8a7c78;
}

.js .dual__content {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(60px,0,0);
  transition: opacity 0.55s 0.4s, transform 0.55s 0.4s;
}

.dual__content.dual__content--show {
  opacity: 1;
  pointer-events: visible;
  transform: translate3d(0,0,0);
}


/* Content */
.content {
  position: relative;
  min-height: 300px;
  overflow-x: hidden;
}

.content--full {
  height: 100vh;
  min-height: 600px;
}

.flexy {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flexy--center {
    justify-content: center;
}

.flexy--row {
  flex-direction: row;
}

.content__heading {
  flex: none;
  width: 100%;
  padding: 0 5vw;
}

.content__heading--center {
  text-align: center;
}

.content__title {
  font-size: 8vw;
  line-height: 1.2;
  padding: 0 5vw;
}

.content__title--half {
  width: 50vw;
  z-index: 2;
}

.content__title--enclosed {
  padding: 0;
  margin: 0;
}

.content__title--center {
  margin: auto;
}

.content__title--right {
  text-align: right;
  padding: 0 0 0 2em;
}

.content__title--left {
  margin-left: -18vw;
}

.content__title--medium  {
  font-size: 6vw;
}

.content__title--small  {
  font-size: 2vw;
}

.content__title__inner {
  flex: none;
  display: inline-block;
  white-space: nowrap;
  position: relative;
}

.content__title__inner--offset-1 {
  top: -0.25em;
  left: 13.6vw;
}

.content__title__inner--offset-2 {
  top: -0.25em;
  left: 1.75vw;
}

.content__title__inner--offset-3 {
  left: -10vw;
  top: -0.25em;
}

.content__image-wrap {
  flex: none;
  width: 25vw;
}

.content__image-wrap--half {
  width: 50vw;
}

.content__image {
  width: 100%;
  display: block;
}

.triggers {
  border: 2px solid;
  padding: 3em;
  margin: 0 5vw;
  width: 40vw;
}





.book-cta {
  background: #000;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.book-cta .btn {
  padding: 10px 20px;
  margin-left: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.book-cta h6 {
  color: #ddd;
  font-weight: 300;
}


@media (max-width: 600px) {
  section.booking, section.content { padding: 0; }
  section.content { min-height: 200px; }
  section.content .dual { width: 100vw; }
  section.booking .wrapper { padding-left: 0; padding-right: 0; }
  section.booking .book-cta { text-align: center; border-radius: 0px; flex-direction: column; }
  section.booking .book-cta .btn { margin-left: 0; margin-top: 20px; width: 80%; }
}


.header-fixed {
  -webkit-transition: all .33s ease-in-out;
     -moz-transition: all .33s ease-in-out;
      -ms-transition: all .33s ease-in-out;
       -o-transition: all .33s ease-in-out;
          transition: all .33s ease-in-out;
  background: rgba(0, 0, 0, 0.83);;
  position: fixed;
  width: 100%;
  padding: 3px 33px;
}
.header-fixed .logo, .header-fixed nav li, .header-fixed .hero h2.logo { background: none !important; }





@media (max-width: 600px) {
.header-fixed { padding: 0; height: 50px; }
.header-fixed .hero h2.logo { background: none !important; }

  .column { max-width: 100%; margin: 0; padding: 0; }
  hr { margin-bottom: 30px; margin-top: 20px; }


  .list-items, .package-list li, .testimonials .quote { font-size: 15px; }

  .col-3 {
    grid-gap: 0px;
    grid-template-columns: 1fr;
  }
  .testimonials article { min-width: 90%; }
  .col-4 {grid-template-columns: repeat(1, 1fr);}




  .dual__content {
    min-height: 200px;
    font-size: 0.85em;
    padding: 1em;
  }

.dual__content h5 { font-weight: 500; font-size: 1.1em; letter-spacing: -0.01em; }

  

  .content--full {
    min-height: 0;
  }
  .content__title {
    font-size: 2em;
  }
  .content__title--medium  {
    font-size: 1.75em;
  }
  .content__title--small {
    font-size: 1.15em;
  }
  .content__title--half {
    width: 100%;
  }
  .content__title--right {
    padding: 0 5vw;
  }
  .content__title--left {
    margin-left: 0;
  }
  .flexy--row {
      flex-direction: column;
  }
  .form__title,
  .form__section {
    font-size: 0.85em;
  }
  .triggers {
    width: 100%;
    border: 0;
    padding: 0;
    font-size: 0.85em;
  }
  .modal {
    font-size: 0.85em;
  }
  .menu .menu__link {
    font-size: 2em;
  }
  .box {
    padding: 5vw;
    font-size: 0.85em;
  }
  .box--border {
    border: none;
  }
  .dual__content {
    min-height: 200px;
    font-size: 0.85em;
    padding: 1em;
  }
  .dual {
    margin-top: 0;
  }


}



















@media (max-width: 600px) {

nav.sitenav li { background: none; }

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: block;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

  .overlay {overflow-y: auto;}
  .overlay a {font-size: 30px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }



/*
  header nav {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: block !important;
  }
  .mobile-menu-center {
    text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 170px;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header nav ul li {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  header nav ul li a {
    display: block;
    font-size: 2em;
    text-decoration: none;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  header nav ul li a:hover {
    color: #E84A5F;
  }
  .btn-mobile-menu {
  }*/
  .toggle-btn {
    display: block;
    z-index: 10;
    cursor: pointer;

    position: fixed;
    left: 50%;
    /*bottom: 0px;*/
    bottom: -11px;
    transform: translate(-50%, -50%);
    margin: 0 auto;

    border-radius: 11%;
    background: rgba(0, 0, 0, 0.5);
    padding: 11px;

    width: 55px;
    height: 55px;
  }
  .toggle-btn .bar {
    width: 30px;
    height: 2px;
    margin: 7px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  }
  .toggle-btn .bar:nth-child(2) {
    width: 20px;
  }

  #toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
  }
  #toggle:checked ~ nav ul {
    top: 70px;
  }
  #toggle:checked ~ nav ul li {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  #toggle:checked ~ nav ul li:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
  }
  #toggle:checked ~ nav ul li:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
  }
  #toggle:checked ~ nav ul li:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
  }
  #toggle:checked ~ nav ul li:nth-child(4) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
  }
  #toggle:checked + label.toggle-btn {
    background-color: #000;
  }
  #toggle + label.toggle-btn {
    background-color: rgba(0,0,0,0.33);
  }
  #toggle:checked + label.toggle-btn .bar {
    background-color: #fff;
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(2) {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}