/* guides */

/*
fonts:
- font-family: 'Century Gothic';
- font-family: 'Bignode';
colors:
- black: #0a0203
- yellow: #ffdd00 (#ffdf2b ?)
transition:
-webkit-transition: all .15s ease-out;
-moz-transition: all .15s ease-out;
-o-transition: all .15s ease-out;
transition: all .15s ease-out;
*/

/* important */

.display-none {
  display: none !important;
}

@media (max-width: 767px) {
  .display-none-for-xs {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .display-none-for-desktop {
    display: none !important;
  }
}

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

.page-section {
  padding: 4rem 0;
}

.arrow-prev,
.arrow-next {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
  z-index: 9999;
}

.arrow-prev {
  left: 30px;
}

.arrow-next {
  right: 30px;
}

.arrow-prev i,
.arrow-next i {
  color: #0a0203;
  font-size: 40px;
  line-height: 40px;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.arrow-prev:hover i,
.arrow-next:hover i {
  color: #555;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  color: #0a0203;
  cursor: pointer;
  font-family: "Century Gothic";
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #fd743b;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .arrow-prev,
  .arrow-next {
    top: calc(50% - 15px);
    width: 40px;
    height: 30px;
  }

  .arrow-prev {
    left: 0;
  }

  .arrow-next {
    right: 0;
  }

  .arrow-prev i,
  .arrow-next i {
    font-size: 30px;
    line-height: 30px;
  }
}

/* cover */

header {
  padding-top: 0;
  padding-bottom: 0;
}

.individual-slide-div {
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 767px) {
  .individual-slide-div {
    height: 220px;
  }
}

/* intro, description section */

.intro-description-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #eee;
}

.intro-description-section > div {
  padding-left: 0;
  padding-right: 0;
}

.intro-note-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  background-color: #ffdd00;
}

.intro-note-row div {
  color: #0a0203;
  font-family: "Century Gothic";
  font-size: 1.25rem;
}

.intro-video-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.intro-video-row div {
  padding-left: 0;
  padding-right: 0;
}

.vimeo-div {
  padding: 56.25% 0 0 0;
  position: relative;
}

.vimeo-div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-description-row {
  margin-left: 0;
  margin-right: 0;
  margin-top: -6px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
}

.intro-description-row > div {
  padding-left: 3rem;
  padding-right: 3rem;
  color: #0a0203;
}

.intro-description-row i {
  display: block;
}

.intro-description-row p {
  margin-top: 1rem;
  margin-bottom: 0;
  font-family: "Century Gothic";
  font-size: 1.1rem;
}

.intro-main-message-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  background-color: #ffdd00;
}

.intro-main-message-row div {
  color: #0a0203;
  font-family: "Bignode";
  font-size: 2rem;
}

@media (max-width: 767px) {
  .intro-note-row div {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
  }

  .intro-description-row {
    padding: 2rem;
  }

  .intro-description-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-description-row p {
    font-size: 1rem;
  }

  .intro-main-message-row div {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* stories */

.stories-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #eee;
}

.stories-section > div {
  padding-left: 0;
  padding-right: 0;
}

.stories-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
}

.stories-row > div {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #0a0203;
}

.stories-row h2 {
  margin-bottom: 2rem;
  font-family: "Century Gothic";
  font-size: 1.75rem;
  text-transform: uppercase;
}

.stories-row p {
  margin-bottom: 2rem;
  text-align: left;
  font-family: "Century Gothic";
  font-size: 1.1rem;
}

.stories-row p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .stories-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .stories-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .stories-row h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }

  .stories-row p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .stories-section {
    background-image: url('../images/tree_background.png');
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
  }
}

/* products section */

.products-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #d8d9d4;
}

.products-section > div {
  padding-left: 0;
  padding-right: 0;
}

.products-title-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  background-color: #d8d9d4;
}

.products-title-row div {
  color: #0a0203;
  font-family: "Bignode";
  font-size: 2rem;
}

.products-products-row {
  margin-left: 0;
  margin-right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 0;
  padding-bottom: 3rem;
  background-color: #d8d9d4;
}

.products-products-row div {
  padding-left: 2rem;
  padding-right: 2rem;
}

.products-products-row a {
  display: block;
  padding: 1.5rem 2rem;
  color: #0a0203 !important;
  font-family: "Century Gothic";
  font-size: 1.4rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  background-color: #ffdd00;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.products-products-row a:hover {
  background-color: #eece00;
}

.products-products-row a i {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.products-products-row a span {
  display: block;
  margin-top: 1.25rem;
  font-family: "Bignode";
  font-size: 1.75rem;
}

@media (max-width: 767px) {
  .products-title-row {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .products-title-row div {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .products-products-row {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }

  .products-products-row div {
    padding-left: 0;
    padding-right: 0;
  }

  .products-products-row a {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .products-products-row a span {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
}

/* testimonials */

.testimonials-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #eee;
}

.testimonials-section > div {
  padding-left: 0;
  padding-right: 0;
}

.testimonials-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
}

.testimonials-row > div {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #0a0203;
}

.testimonials-row h2 {
  margin-bottom: 2rem;
  font-family: "Century Gothic";
  font-size: 1.75rem;
  text-transform: uppercase;
}

.vimeo-testimonial-div {
  padding: 56.25% 0 0 0;
  position: relative;
}

.vimeo-testimonial-div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonials-row p {
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
  font-family: "Century Gothic";
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .testimonials-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .testimonials-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-row h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }

  .testimonials-row p {
    margin-top: .5rem;
    font-size: 1rem;
  }
}

/* cta section */

.cta-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #d8d9d4;
}

.cta-section > div {
  padding-left: 0;
  padding-right: 0;
}

.cta-subtitle-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 0;
  text-align: center;
  font-family: "Century Gothic";
  font-size: 1.75rem;
  text-transform: uppercase;
  background-color: #d8d9d4;
}

.cta-title-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  background-color: #d8d9d4;
}

.cta-title-row div {
  color: #0a0203;
  font-family: "Bignode";
  font-size: 2rem;
}

.cta-products-row img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cta-products-row a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (max-width: 767px) {
  .cta-subtitle-row {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .cta-title-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .cta-title-row div {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* publisher */

.publisher-section {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #eee;
}

.publisher-section > div {
  padding-left: 0;
  padding-right: 0;
}

.publisher-content-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
  align-items: center;
}

.publisher-content-row > div {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #0a0203;
}

.publisher-content-row h2 {
  margin-bottom: 2rem;
  font-family: "Century Gothic";
  font-size: 1.75rem;
  text-transform: uppercase;
}

.publisher-content-row p {
  margin-bottom: 2rem;
  text-align: left;
  font-family: "Century Gothic";
  font-size: 1.1rem;
}

.publisher-content-row p:last-child {
  margin-bottom: 0;
}

.publisher-content-row img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .publisher-content-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .publisher-content-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .publisher-content-row h2 {
    font-size: 1.5rem;
  }

  .publisher-content-row p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

/* footer */

footer {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #d8d9d4;
}

footer > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
}

.footer-row > div {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #0a0203;
}

.footer-row img {
  width: 80%;
  height: auto;
}

.footer-row p {
  margin-bottom: 0;
  text-align: left;
  font-family: "Century Gothic";
  font-size: 1rem;
}

.footer-row a {
  color: #0a0203;
  text-decoration: none;
}

.footer-row a:hover {
  color: #0a0203;
  text-decoration: underline;
}

.copyright-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.copyright-row > div {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #0a0203;
}

.copyright-row p {
  margin-bottom: 0;
  font-family: "Century Gothic";
  font-size: .9rem;
}

.payment-methods-div {
  text-align: right;
}

.payment-methods-div img {
  height: 18px;
  width: auto;
  margin-bottom: 0;
  margin-right: 1.2rem;
}

.payment-methods-div img:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .footer-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-row p {
    text-align: center;
  }

  .footer-row img {
    width: auto;
  }

  .copyright-row {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
  }

  .copyright-row > div {
    padding-left: 0;
    padding-right: 0;
  }

  .payment-methods-div {
    padding-top: 2rem;
    text-align: center;
  }

  .payment-methods-div img {
    margin-left: .6rem;
    margin-right: .6rem;
  }

  .payment-methods-div img:last-child {
    margin-right: .6rem;
  }
}

/* order modal */

.order-modal-div {
  display:none;
  width: 450px;
  background-color: #eee;
  border-radius: 10px;
}

.order-modal-div h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: #0a0203;
  font-family: "Century Gothic";
  font-size: 1.5rem;
}

.order-modal-div p {
  margin-bottom: 1rem;
  text-align: center;
  color: #0a0203;
  font-family: "Century Gothic";
  font-size: 1rem;
}

.order-modal-div > div {
  margin-bottom: 1rem;
}

.order-modal-div input {
  width: 100%;
  padding: .5rem 1rem;
  font-family: "Century Gothic";
  font-size: 1rem;
  border: 0;
  outline: 0;
  border-radius: 10px;
}

.order-modal-div a {
  display: block;
  padding: 1rem 1rem;
  text-align: center;
  color: #fff !important;
  font-family: "Century Gothic";
  font-size: 1.1rem;
  line-height: 1.1rem;
  text-transform: uppercase;
  background-color: #fd743b;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.order-modal-div a:hover {
  background-color: #e76a36;
}

.order-modal-div a i {
  margin-left: .75rem;
  font-size: .85rem;
  vertical-align: middle;
}

.coupon-div {
  display: flex;
}

.coupon-div > div:first-child {
  flex: 2;
}

.coupon-div > div:last-child {
  flex: 1;
}

.coupon-div input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.coupon-div a {
  padding: .5rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: #999;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.coupon-div a:hover {
  background-color: #777;
}






/* */
