header {
  background: #f7eaea;
  height: 50px;
  transition: all 0.5s ease;
  border-bottom: 2px solid #570E37;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo-link {
  display: flex;
  text-decoration: none;
}

header .logo {
  height: 50px;
  width: auto;
  margin-left: 0px;
  margin-top: 5px;
}

header .logo img {
  height: 80%;
}

header h1 {
  display: none;
}

@media screen and (min-width: 480px) {
  header {
    height: 60px;
    justify-content: start;
  }
  header .logo {
    height: 60px;
    margin-left: 10px;
  }
  header h1 {
    display: block;
    margin-left: 20px;
  }
}

@media screen and (min-width: 771px) {
  header {
    height: 70px;
  }
  header .logo {
    height: 70px;
  }
  header h1 {
    display: block;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1100px) {
  header {
    height: 80px;
  }
}

@media screen and (min-width: 1600px) {
  header {
    height: 100px;
  }
}

nav {
  background: #570E37;
  color: #F2EAD7;
  border-top: 1px solid #F2EAD7;
  transition: all 0.5 ease;
}

nav ul {
  width: 100%;
  margin: auto;
  text-align: center;
}

nav ul li {
  display: inline;
}

nav a {
  color: #F2EAD7;
  padding: 3px 20px;
}

nav a:hover {
  color: #f7eaea;
}

@media screen and (min-width: 480px) {
  nav ul {
    text-align: right;
  }
  nav a {
    font-size: 1.3rem;
    padding: 5px 20px;
  }
}

#hero {
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  transition: all 1s ease;
}

#hero article {
  background: rgba(250, 250, 250, 0.7);
  padding: 20px;
  border-radius: 10px;
}

@media screen and (min-width: 480px) {
  #hero {
    height: 30vh;
  }
}

@media screen and (min-width: 771px) {
  #hero {
    height: 40vh;
  }
  #hero article {
    margin-top: 20px;
    margin-right: 20px;
  }
  #hero article p {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1100px) {
  #hero {
    height: 60vh;
  }
}

@media screen and (min-width: 1600px) {
  #hero {
    height: 80vh;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans Condensed", sans-serif;
  background: #f7eaea;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Caveat", cursive;
  color: #570E37;
}

.section_heading {
  color: #570E37;
  font-size: 3rem;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.scroller-container {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (max-width: 780px) {
  .scroller-container {
    height: 600px;
  }
}

.scroller-container .slide {
  display: none;
}

@media (max-width: 780px) {
  .scroller-container .slide {
    margin-top: 200px;
  }
}

.scroller-container article {
  position: absolute;
  z-index: 99;
  top: 3rem;
  right: 3rem;
  width: 100%;
  max-width: 800px;
  background: rgba(250, 250, 250, 0.7);
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 1160px) {
  .scroller-container article {
    max-width: 400px;
  }
}

@media (max-width: 780px) {
  .scroller-container article {
    max-width: 100%;
    top: 0;
    right: 0;
    left: 0;
  }
}

#reviews {
  background: #F2EAD7;
  padding-top: 100px;
  padding-bottom: 100px;
}

#reviews .row {
  width: 80%;
  margin: auto;
}

#reviews article {
  padding: 20px;
}

#reviews article .fal {
  color: #570E37;
}

#hot_sellers {
  padding-top: 100px;
  padding-bottom: 100px;
}

#hot_sellers .row {
  width: 80%;
  margin: auto;
}

#hot_sellers .hot_seller_item {
  width: 90%;
}

#hot_sellers .hot_seller_item a {
  text-decoration: none;
}

#hot_sellers .hot_seller_item img {
  width: 90%;
  background: #570E37;
  padding: 5px;
  border-radius: 5px;
}

#hot_sellers .hot_seller_item h4 {
  padding-top: 20px;
}

#contact {
  background: #F2EAD7;
  border-top: 1px solid #570E37;
}

#contact p {
  text-align: center;
  width: 40%;
  margin: auto;
  font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
  #contact p {
    width: 90%;
  }
}

#contact form {
  width: 60%;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  #contact form {
    width: 80%;
  }
}

#contact form input,
#contact form textarea {
  display: block;
  margin: 10px auto;
  width: 90%;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #570E37;
  font-size: 1.2rem;
  line-height: 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  #contact form input,
  #contact form textarea {
    width: 100%;
  }
}

#contact form button {
  background: #570E37;
  color: #F2EAD7;
  border-radius: 3px;
  width: 40%;
  left: 30%;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 2rem;
}

@media only screen and (max-width: 600px) {
  #contact form button {
    font-size: 1.2rem;
    width: 60%;
    left: 20%;
  }
}

#contact form small {
  color: red;
  margin-left: 58px;
  font-weight: bold;
  position: relative;
  top: -13px;
}

.scent_category {
  padding-top: 100px;
  padding-bottom: 100px;
  background-position: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
}

.scent_category article {
  background-color: #F2EAD7;
  padding: 1rem;
  margin: 2rem;
  width: 30%;
  border-radius: 10px;
  box-shadow: 2px 2px 8px #570E37;
}

@media only screen and (max-width: 900px) {
  .scent_category article {
    width: 60%;
  }
}

.scent_category article h2 {
  font-size: 3rem;
}

.scent_category article ul {
  list-style-type: none;
  font-size: 1.4rem;
}

#floral {
  background-image: url("../media/images/jpg/floral_bg.jpg");
}

#fruity {
  background-image: url("../media/images/jpg/fruity_bg.jpg");
  justify-content: flex-end;
}

#earthy {
  background-image: url("../media/images/jpg/earthy_bg.jpg");
}

#spicesAndHerbs {
  background-image: url("../media/images/jpg/spices_bg.jpg");
  justify-content: flex-end;
}

#gents {
  background-image: url("../media/images/jpg/manly_bg.jpg");
}

#treats {
  background-image: url("../media/images/jpg/desserts_bg.jpg");
}

.disclaimer {
  text-align: center;
}

.customOrders_intro {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.customOrders_intro p {
  font-size: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.whatsInsideHeader {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.whatsInsideHeader div {
  height: 40vh;
  flex: 1;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .whatsInsideHeader {
    flex-direction: column;
  }
}

.whatsInsideHeader h3 {
  margin-top: 15vh;
  font-size: 3rem;
  padding: 1rem;
}

.whatsInside {
  width: 90%;
  margin: auto;
}

.whatsInside article {
  margin-bottom: 2rem;
}

.whatsInside h3 {
  color: #570E37;
}

.whatsInside P {
  margin-left: 1rem;
  font-size: 1.3rem;
}

footer {
  background: #570E37;
  color: #F2EAD7;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.pjScHeader {
  visibility: hidden;
  height: 50px;
  overflow: hidden;
}

#pjWrapperShoppingCart_theme7 {
  width: 80%;
  margin: auto;
}

@media only screen and (max-width: 600px) {
  .pjScProduct {
    margin-top: 3rem;
  }
}

#scContainer_2314
> div:nth-child(3)
> div
> div.col-sm-9
> div:nth-child(3)
> div.panel-footer
> div
> div.col-sm-7
> a:nth-child(4) {
  display: none;
}

.fade-in {
  animation: fadeIn 2s;
  display: block !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=styles.css.map */