/*  Base Styles --------------------  */

html {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Lora', sans-serif;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: #3a3a3a;
  background-color: #eff0f1;
  font-family: 'Lora', sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

/*  Pseudo-classes ------------------  */

a:link {
  color: white;
}

a:hover {
  color: white;
}

.nav-item:last-child {
  border-right: none;
}

/*  Main Styles ---------------------  */

.main-header {
  background: #084c6e;
}

.navbar-desktop {
  background: #39CCCC;
}

.main-footer {
  background: #084c6e;
}

/*  Layout Styles ------------------  */

.header-collection {
  padding-left: 10%;
}

.mobile-header {
  display: none;
}

.nav-line {
  padding-left: 12%;
  padding-right: 12%;
}

.title-bottom {
  padding-bottom: -5%;
}

.logo-main-header {
  height: 8rem;
  /* 128 px */
}

.logo-main-footer {
  height: 4.6875rem;
}

.footer-info li {
  padding-top: 5%;
}

.facebook-logo {
  height: 1.875rem;
  padding-left: 5%;
}

.footer-image img {
  width: 170px;
  height: auto;
}

.footer-nav li {
  padding-top: 10%;
}

/*  Navbar layout ------------------  */

.navbar-mobile {
  width: 100%;
  position: fixed;
  z-home: 1;
  top: 0;
  left: 0;
  background-color: #084c6e;
  box-shadow: 0 4px 4px -3px #232323;
  -moz-box-shadow: 0 4px 4px -3px #232323;
  -webkit-box-shadow: 0 4px 4px -3px #232323;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  padding-top: 0px;
}

.navbar-mobile a {
  text-decoration: none;
}

.navbar-mobile ul {
  margin-top: 0px;
  text-align: center;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

.menulist {
  width: 200px;
}

.logo {
  text-align: center;
  margin: 0 auto;
}

.line1, .line2, .line3 {
  float: right;
  margin-top: 5px;
  background-color: #fff;
  width: 25px;
  height: 3px;
  display: block;
  position: relative;
  opacity: 1.0;
  border-radius: 15%;
  transition: all .3s;
}

.line1.active {
  transform: rotate(270deg);
  opacity: 0.0;
  background-color: #fff;
  top: 5px;
}

.line2.active {
  transform: rotate(45deg);
  background-color: #fff;
}

.line3.active {
  transform: rotate(-45deg);
  background-color: #fff;
  top: -8px;
}

.menuitems {
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  list-style: none;
  font-family: 'Lora', sans-serif;
  font-weight: 300;
  font-size: 16px;
  display: block;
  position: relative;
  text-align: center;
  color: #fff;
  opacity: 1.0;
  transition: all .5s ease-in-out;
}

.menuitems:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .2s;
}

#closebtn {
  height: 25px;
  width: 25px;
  text-decoration: none;
  top: 10px;
  left: 25px;
  font-size: 36px !important;
  padding: 25px 20px 25px 20px;
  z-home: 100;
  color: #fff;
  cursor: pointer;
  transition: background-position .3s;
  float: right;
}

#main {
  transition: margin-top .4s;
  text-align: center;
  margin: auto;
  font-size: 30px;
}


/*  Mobile layout ------------------  */

@media screen and (max-width: 1024px) {

  .main-header {
    display: none;
  }

  .header-collection-mobile {
    padding-left: 3%;
  }

  .mobile-header {
    display: block;
    position: relative;
    z-index: 1;
  }

  .logo-main-header-mobile {
    height: 75px;
  }

  .name-header-mobile {

  }
}
