
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 400;
}
* {
  box-sizing: border-box;
}

.logo{
	left: 10px;   
	position: absolute;
	margin: auto;
	top: 10px;
	z-index: 10;
	width: 193;
}

.littlebea {
  position: fixed;
  top: 9px;
  right: 30px;
  width: 60px;
  height: 170px;
  line-height: 50px;
  z-index: 100;
}

a{
	text-decoration: none;
}

.about {
  display: inline-block;
  vertical-align:top;
  margin-top: 100px;
  background: #fff;
  //background: url("../img/bea2.jpg") no-repeat;
  height:100%;
  width: 100%;
//	position: fixed;
  //display : flex;
  //justify-content : center;
  //align-items: center;
  //background: linear-gradient(to right, url("../img/bea.jpg") 50%, #ffffff 50%);
  //color : #FFF;
  //height:100%;
  //width: 100%;
}

.services {
  display: inline-block;
  vertical-align:top;
  margin-top: 100px;
  background: url("../img/jeans.jpg");
  opacity: 0.6;
  height: 100vh;
  width: 100vw;
}

.ask {
  display: inline-block;
  vertical-align:top;
  margin-top: 100px;
  background: url("../img/diamond.jpg");
  height: 100vh;
  width: 100vw;
}

h1 {
  font-size: 42px;
  font-family: 'Pacifico', sans-serif;
  margin: 0 0 50px;
  text-align: center;
}

nav {
  padding: 40px;
  margin-bottom: 10px;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100px;
  background-color: #FFF;
  z-index: 1000;
  	-webkit-box-shadow: 0 6px 6px -6px black;
	   -moz-box-shadow: 0 6px 6px -6px black;
	        box-shadow: 0 6px 6px -6px black;
}


nav a {
  display: inline-block;
    font-weight: 200;
  outline: none;
  color: #7B29A7;
  font-family: 'Poppins', sans-serif;
  font-size: 0.5vw;
  //text-transform:uppercase;
  font-color: #6d1216;
  //font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.02em;
  //  text-align: center;
}

nav a:hover {
  color: #681488;
  text-decoration: none;
  -webkit-transform: scale(1.02);
  transition: all 0.2s ease;
}

nav ul {
  //float: left;
    display: inline-block;
}
nav ul li {
  display: inline-block;
  float: left;
  color: #681488;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6vw;
  font-color: #6d1216;
  text-decoration: none;
}
nav ul li:not(:first-child) {
  margin-left: 45px;
 // text-align: center;
}
nav ul li a {
  display: inline-block;
    font-weight: 200;
  outline: none;
  color: #681488;
  //font-family:'Economica', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6vw;
  //text-transform:uppercase;
  font-color: #6d1216;
  //font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.04em;
  //  text-align: center;
}
nav ul li a:hover {
  color: #7B29A7;
  text-decoration: none;
  -webkit-transform: scale(1.1);
  transition: all 0.2s ease;
}
@media screen and (max-width: 560px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #1f2227;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .nav-container ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-container ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .nav-container ul li:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .nav-container ul li:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .nav-container ul li:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .nav-container ul li:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .nav-container ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-container ul li a {
    padding: 10px 25px;
    opacity: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }
  .nav-open {
    position: fixed;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-open i {
    display: block;
    width: 20px;
    height: 2px;
    background: #1f2227;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-open i:nth-child(1) {
    margin-top: 16px;
  }
  .nav-open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-open i:nth-child(3) {
    margin-top: 4px;
  }
}
#nav:checked + .nav-open {
  transform: rotate(45deg);
}
#nav:checked + .nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
  opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-container {
  z-index: 9990;
  opacity: 1;
}
#nav:checked ~ .nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  display: none;
}

.text-box{
  position: fixed;
  //top: 20px;
  margin-top: 10px;
  margin-right: auto;
  left: 80%;
  right: 0;
  z-index: 1000000;
}

.text{
  display: block;
  text-align: center;
  color: white;
  text-shadow: 0px 3px 15px #000;
  font-family: 'Bangers';
  font-size: 1.5vmax;
}