/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #ffffff;
  color: #898989;
  font-family: "Poppins", helvetica;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: #292929;
  font-weight: 600;
}

h4 {
  color: #292929;
  font-size: 14px;
  font-weight: 600;
}

a {
  color: #292929;
  text-decoration: none !important;
  transition: all 0.5s ease-in-out 0s;
}

a:hover {
  transition: all 0.5s ease-in-out 0s;
}

p {
  margin: 25px 0;
  padding: 0;
  font-size: 15px;
  color: #999999;
  line-height: 28px;
}

::-moz-selection {
  background: #E77D83;
  color: #fff;
}

::selection {
  background: #E77D83;
  color: #fff;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  /*background: url("../img/home-bg.jpg") repeat scroll center center/cover;*/
  background: url("../img/home-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

#hero .hero-content {
  height: 100vh;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 77px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #E77D83;
  width: max-content;
  background-color: #fff;
  padding: 10px;
}

.hero-content p {
  font-size: 21px;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #E77D83;
  font-weight: 500;
  width: max-content;
  background-color: #fff;
  padding: 10px;
}

.hero-content p.small {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #E77D83;
  font-weight: 500;
  width: max-content;
  background-color: #fff;
  padding: 10px;
}

.hero-content .list-social {
  width: max-content;
  background-color: #fff;
  padding: 10px 0px 10px 10px;
}

.hero-content .list-social li {
  float: left;
  margin-right: 20px;
}

.hero-content .list-social li i {
  color: #E77D83;
  font-size: 21px;
}

@media (max-width: 1366px) {
  .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 18px;
	padding: 3px 10px;
  }
  .hero-content p.small {
    font-size: 15px;
	padding: 3px 10px;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 22px;
  }
  .hero-content p {
    font-size: 15px;
	padding: 3px 10px;
  }
  .hero-content p.small {
    font-size: 13px;
	padding: 3px 10px;
  }
  .hero-content .list-social li i {
    font-size: 15px;
  }
}