/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url(https://fonts.googleapis.com/css?family=Lato);
.mobile {
  border: 0 solid #333;
  width: 100%;
  position: relative;
}
.mobile-accent-img {max-width:350px; margin-top:50px;}
a.nav-link {
    font-size: 20px;
    font-weight: 600;
    font-family: 'museo-sans-display', sans-serif;
    color: #333 !important;
	text-transform: uppercase;
	letter-spacing:1px !important;
}
a.nav-link:hover {color:#fe4e4e !important;}
.logo {
  padding: 0 0 0 20px;
  text-transform: capitalize;
}
a.logo {
    display: inline-block;
}
a.logo img {
    max-height: 75px;
	padding:5px 0px;
}
/* menu button */
.menuBtn {
  height: 75px;
  width: 50px;
  position: absolute;
  right: 30px;
  top: 0px;
  z-index: 4001;
}
.menuBtn > span {
  background-color: #000;
  border-radius: 1px;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  -webkit-transition: height 100ms;
  -o-transition: height 100ms;
  transition: height 100ms;
}
.menuBtn > span:after,
.menuBtn > span:before {
  content: '';
  background-color: #000;
  border-radius: 1px;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 30%;
  margin-left: -15px;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
.menuBtn > span:after {
  top: -12px;
}
.menuBtn > span:before {
  bottom: -12px;
}
.menuBtn.act > span {
  height: 0;
}
.menuBtn.act > span:after,
.menuBtn.act > span:before {
    background-color: #fe4e4e;
    position: fixed !important;
    width: 40px;
    left: auto;
    right: 25px;
    top: 40px !important;
}
.menuBtn.act > span:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menuBtn.act > span:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* main menu block */
.mainMenu {
  background-color: #000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2001;
  height: 100%;
  width: 100%;
  display: table;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.mainMenu.act {
  z-index: 2001;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mainMenu.act ul li {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.mainMenu ul {
  display: table-cell;
  vertical-align: middle;
  list-style: none !important;
  padding-left:0px !important;
}
.mainMenu li {
  padding: 8px 0;
  -webkit-transition: all 400ms 510ms;
  -o-transition: all 400ms 510ms;
  transition: all 400ms 510ms;
  opacity: 0;
}
.mainMenu li:nth-child(odd) {
  -webkit-transform: translateX(30%);
      -ms-transform: translateX(30%);
          transform: translateX(30%);
}
.mainMenu li:nth-child(even) {
  -webkit-transform: translateX(-30%);
      -ms-transform: translateX(-30%);
          transform: translateX(-30%);
}
.mainMenu li:last-child {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.mainMenu a {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;`
}
nav.mainMenu.act a:hover {color:#fe4e4e;}
.mainMenu a.suBtn {
  color: #fff;
}
/* sign up button */
.suBtn {
  background-color: #19b698;
  border-radius: 5px;
  padding: 10px 20px;
}