/* Reset /--------------------------------------------/
-----------------------------------------------------*/
button {
  border: none;
}

input {
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
}

/* Reset /--------------------------------------------/
-----------------------------------------------------*/
/* Base /---------------------------------------------/
-----------------------------------------------------*/
@font-face {
  font-family: "Gotham-Book";
  src: url("Gotham-Book.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Medium";
  src: url("Gotham-Medium.otf") format("opentype");
}
@font-face {
  font-family: "SurveyorText-Light";
  src: url("SurveyorText-Light-Pro.otf") format("opentype");
}
@font-face {
  font-family: "SurveyorText-Book";
  src: url("SurveyorText-Book-Pro.otf") format("opentype");
}
body {
  font-family: "Gotham-Book", sans-serif;
  font-size: 14px;
}
@media only screen and (min-width: 750px) {
  body {
    font-size: 16px;
  }
}
body:not(.km-collection-bundle) {
  padding-top: 114px;
}
@media only screen and (min-width: 750px) {
  body:not(.km-collection-bundle) {
    padding-top: 178px;
  }
}

.template-index h1,
.template-index h2 {
  font-family: "Gotham-Book", sans-serif;
  letter-spacing: 0;
}
.template-index .v3-section-title {
  font-family: "Gotham-Medium", sans-serif;
  font-size: 25px;
}
@media only screen and (min-width: 750px) {
  .template-index .v3-section-title {
    font-size: 35px;
  }
}

section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

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

p {
  color: #27323a;
}

.v3-cta {
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  color: #ffffff;
  display: block;
  display: flex;
  height: 50px;
  justify-content: center;
  position: relative;
  text-transform: uppercase;
  transition: color 0.45s cubic-bezier(0.8, 0.14, 0.15, 0.8);
  width: 250px;
  z-index: 1;
}
.v3-cta::before {
  background-color: #f87c8a;
  border-radius: 4px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(1, 1);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.8, 0.14, 0.15, 0.8);
  z-index: -1;
}
.v3-cta:focus {
  color: #ffffff;
}
@media only screen and (min-width: 750px) {
  .v3-cta {
    border: 1px solid #f87c8a;
  }
  .v3-cta:hover {
    color: #f87c8a;
  }
  .v3-cta:hover::before {
    background-color: #f87c8a;
    transform: scale(0, 1);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.8, 0.14, 0.15, 0.8);
  }
}

/* Z-Index /------------------------------------------/
-----------------------------------------------------*/
.v3-site-header {
  z-index: 7;
}

.v3-scrim {
  z-index: 27;
}

.v3-drawer-mobile {
  z-index: 37;
}

.v3-drawer-search {
  z-index: 47;
}

/* Announce Bar /-------------------------------------/
-----------------------------------------------------*/
.v3-announce {
  background-color: #f87c8a;
  color: white;
  height: 40px;
  overflow: hidden;
}
.v3-announce .v3-message-outer {
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-name: slide;
  animation-timing-function: cubic-bezier(0.2, 1.5, 0.83, 0.89);
}
.v3-announce .v3-message-outer .v3-message {
  align-items: center;
  display: flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  10% {
    transform: translate3d(0, -40px, 0);
  }
  50% {
    transform: translate3d(0, -40px, 0);
  }
  60% {
    transform: translate3d(0, -80px, 0);
  }
  100% {
    transform: translate3d(0, -80px, 0);
  }
}
/* Header Contents /----------------------------------/
-----------------------------------------------------*/
.v3-site-header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
}
.v3-site-header .v3-content {
  padding: 15px 10px;
}
@media only screen and (min-width: 750px) {
  .v3-site-header .v3-content {
    padding: 25px 20px;
  }
}
.v3-site-header .v3-content .v3-flex {
  display: flex;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item {
  flex: 1;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item img {
  cursor: pointer;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:first-child {
  align-items: center;
  display: flex;
}
@media only screen and (min-width: 750px) {
  .v3-site-header .v3-content .v3-flex .v3-flex-item:first-child img:first-child {
    display: none;
  }
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:nth-child(2) {
  align-items: center;
  display: flex;
  justify-content: center;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:nth-child(2) img {
  display: block;
}
@media only screen and (max-width: 749px) {
  .v3-site-header .v3-content .v3-flex .v3-flex-item:nth-child(2) img {
    width: 150px;
  }
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child {
  display: flex;
  justify-content: flex-end;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child img {
  display: block;
  height: 44px;
}
@media only screen and (max-width: 749px) {
  .v3-site-header .v3-content .v3-flex .v3-flex-item:last-child .v3-icon-accout-outer {
    display: none;
  }
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child .v3-icon-bag-outer {
  position: relative;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child .v3-icon-bag-outer a {
  display: block;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child .v3-icon-bag-outer .v3-cart-count {
  align-items: center;
  background-color: #f87c8a;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-size: 10px;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 18px;
}
.v3-site-header .v3-content .v3-flex .v3-flex-item:last-child .v3-icon-bag-outer .v3-cart-count.hide {
  display: none;
}

@media only screen and (min-width: 750px) {
  body:not(.template-cart) .v3-icon-bag-outer:hover .km-cart-drawer {
    display: block;
  }
}

/* Navigation /---------------------------------------/
-----------------------------------------------------*/
.v3-nav-outer {
  padding-bottom: 20px;
}
@media only screen and (max-width: 749px) {
  .v3-nav-outer {
    display: none;
  }
}
.v3-nav-outer .v3-nav {
  display: flex;
  justify-content: center;
}
.v3-nav-outer .v3-nav li a {
  font-size: 14px;
  padding: 0 22px;
  text-transform: uppercase;
}
.v3-nav-outer .v3-nav li a span {
  color: #f87c8a;
}

/* Footer /-------------------------------------------/
-----------------------------------------------------*/
.v3-site-footer {
  padding: 50px 40px 20px;
}
@media only screen and (min-width: 750px) {
  .v3-site-footer {
    padding: 50px 80px 20px;
  }
}
.v3-site-footer .v3-flex {
  margin-bottom: 50px;
}
@media only screen and (min-width: 750px) {
  .v3-site-footer .v3-flex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 749px) {
  .v3-site-footer .v3-flex .v3-flex-item {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 750px) and (max-width: 1399px) {
  .v3-site-footer .v3-flex .v3-flex-item {
    flex: 0 0 33.33%;
  }
}
@media only screen and (min-width: 1400px) {
  .v3-site-footer .v3-flex .v3-flex-item {
    flex: 1;
  }
}
@media only screen and (min-width: 750px) and (max-width: 1399px) {
  .v3-site-footer .v3-flex .v3-flex-item:last-child {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .v3-site-footer .v3-flex .v3-flex-item:last-child {
    flex: 0 0 45%;
  }
}
.v3-site-footer .v3-flex .v3-flex-item .v3-heading {
  font-family: "Gotham-Medium", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.v3-site-footer .v3-flex .v3-flex-item ul li a {
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) and (max-width: 1399px) {
  .v3-site-footer .v3-flex .v3-flex-item:last-child {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .v3-site-footer .v3-flex .v3-flex-item:last-child {
    padding-left: 70px;
  }
}
.v3-site-footer .v3-flex .v3-flex-item:last-child p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 50px;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form {
  margin-bottom: 15px;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-sign-up {
  border-bottom: 1px solid #27323a;
  padding-bottom: 5px;
  position: relative;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-sign-up input {
  border: none;
  display: block;
  font-family: "Gotham-Book", sans-serif;
  font-size: 14px;
  margin-bottom: 0;
  min-height: 40px;
  padding: 10px 0;
  width: calc(100% - 62px);
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-sign-up input::placeholder {
  color: #27323a !important;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-sign-up input:focus {
  outline: none;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-sign-up button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 14px;
  height: 40px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-form-success {
  color: #f87c8a;
  font-size: 14px;
  margin-bottom: 10px;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child form .v3-form-error {
  color: #f87c8a;
  font-size: 14px;
  margin-top: 10px;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child .v3-social {
  margin-left: -10px;
  opacity: 0.7;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child .v3-social li {
  display: inline-block;
}
.v3-site-footer .v3-flex .v3-flex-item:last-child .v3-social li svg path {
  fill: #f87c8a;
}
.v3-site-footer .v3-content-bottom {
  font-size: 10px;
  text-align: center;
}
.v3-site-footer .v3-content-bottom .km-image-outer img {
  width: 200px;
  margin-bottom: 10px;
  opacity: 0.7;
}
.v3-site-footer .v3-content-bottom .v3-support,
.v3-site-footer .v3-content-bottom .v3-legal {
  font-size: 10px;
  opacity: 0.5;
}
.v3-site-footer .v3-content-bottom .v3-support {
  margin-bottom: 10px;
}

/* Search Drawer /------------------------------------/
-----------------------------------------------------*/
.v3-drawer-search {
  background-color: #ffffff;
  left: 0;
  padding: 20px 10px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translate3d(0, -110%, 0);
  transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 750px) {
  .v3-drawer-search {
    padding: 30px;
  }
}
.v3-drawer-search.open {
  transform: translate3d(0, 0, 0);
}
.v3-drawer-search form {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.v3-drawer-search form .v3-flex {
  display: flex;
}
.v3-drawer-search form .v3-flex .v3-flex-item img {
  display: block;
}
.v3-drawer-search form .v3-flex .v3-flex-item:first-child {
  flex: 0 0 44px;
}
.v3-drawer-search form .v3-flex .v3-flex-item:nth-child(2) {
  align-items: center;
  display: flex;
  flex: 1;
}
.v3-drawer-search form .v3-flex .v3-flex-item:nth-child(2) input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #27323a;
  font-size: 15px;
  padding: 10px;
  width: 95%;
}
@media only screen and (min-width: 750px) {
  .v3-drawer-search form .v3-flex .v3-flex-item:nth-child(2) input {
    font-size: 20px;
  }
}
.v3-drawer-search form .v3-flex .v3-flex-item:nth-child(2) input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.v3-drawer-search form .v3-flex .v3-flex-item:nth-child(2) input:focus {
  outline: none;
}
.v3-drawer-search form .v3-flex .v3-flex-item:last-child {
  flex: 0 0 44px;
}
.v3-drawer-search form .v3-flex .v3-flex-item:last-child img {
  cursor: pointer;
}

/* Scrim /--------------------------------------------/
-----------------------------------------------------*/
.v3-scrim {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease-in-out;
}
.v3-scrim.set {
  display: block;
}
.v3-scrim.show {
  opacity: 1;
}

/* Mobile Drawer /------------------------------------/
-----------------------------------------------------*/
.v3-drawer-mobile {
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  padding: 20px 10px;
  position: fixed;
  top: 0;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease-in-out;
  width: 300px;
}
.v3-drawer-mobile.open {
  transform: translate3d(0, 0, 0);
}
.v3-drawer-mobile .v3-nav-mobile {
  padding: 10px;
}
.v3-drawer-mobile .v3-nav-mobile li {
  padding-bottom: 15px;
}
.v3-drawer-mobile .v3-nav-mobile li:nth-child(4) {
  margin-bottom: 25px;
}
.v3-drawer-mobile .v3-nav-mobile li a {
  font-size: 14px;
  text-transform: uppercase;
}
.v3-drawer-mobile .v3-nav-mobile li a span {
  color: #f87c8a;
}
.v3-drawer-mobile .v3-social {
  opacity: 0.5;
}
.v3-drawer-mobile .v3-social li {
  display: inline-block;
}

/* Cart Drawer /--------------------------------------/
-----------------------------------------------------*/
.km-cart-drawer {
  background-color: #f9f8fa;
  display: none;
  max-height: calc(100vh - 100px);
  overflow: auto;
  padding: 30px;
  position: fixed;
  right: 20px;
  text-align: left;
  text-transform: capitalize;
  top: 110px;
  width: 360px;
}
.km-cart-drawer .km-close {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: 15px;
  width: 44px;
}
.km-cart-drawer .km-close i {
  font-size: 20px;
}
.km-cart-drawer .km-message-gwp {
  text-transform: none;
}
.km-cart-drawer .km-grid-gwp {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: none;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.km-cart-drawer .km-grid-gwp .km-image {
  flex: 0 0 60px;
}
.km-cart-drawer .km-grid-gwp .km-image img {
  width: 100%;
}
.km-cart-drawer .km-grid-gwp .km-text {
  margin-left: 20px;
}
.km-cart-drawer .km-grid-gwp .km-text span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.km-cart-drawer .km-font-section-header {
  font-size: 16px;
  text-align: left;
}
.km-cart-drawer .km-cart-drawer-grid .km-default-message {
  margin-bottom: 20px;
}
.km-cart-drawer .km-cart-drawer-grid .grid-item {
  display: flex;
  margin-bottom: 10px;
}
.km-cart-drawer .km-cart-drawer-grid .grid-item .image {
  flex: 0 0 60px;
}
.km-cart-drawer .km-cart-drawer-grid .grid-item .text {
  flex: 1;
  margin-left: 20px;
}
.km-cart-drawer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.km-cart-drawer .subtotal.km-font-section-header {
  color: #27323a;
}
.km-cart-drawer .subtotal .km-price {
  text-align: right;
}
.km-cart-drawer .btn {
  margin-bottom: 15px;
  width: 100%;
}
.km-cart-drawer .km-cart-drawer-promo-text {
  text-align: center;
  text-transform: uppercase;
}

/* Klaviyo Pop-up /-----------------------------------/
-----------------------------------------------------*/
.klaviyo_modal .klaviyo_inner.v3-pop-up {
  transform: translateX(-50%);
  margin-left: 0;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up {
    left: 50%;
    width: 90%;
  }
}
@media only screen and (max-width: 989px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up {
    max-width: 400px;
  }
}
@media only screen and (min-width: 990px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up {
    width: 800px;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex {
  background-color: #ffffff;
}
@media only screen and (min-width: 990px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex {
    display: flex;
  }
}
@media only screen and (max-width: 989px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:first-child {
    display: none;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:first-child img {
  display: block;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media only screen and (min-width: 990px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:first-child {
    flex: 0 0 400px;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child {
  padding: 60px 30px 30px;
}
@media only screen and (min-width: 990px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child {
    flex: 1;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .klaviyo_fieldset,
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .klaviyo_form_actions {
  border-top: none;
  padding: 0;
  margin: 0;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_header,
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_subheader {
  padding: 0;
  margin: 0;
  color: #27323a;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_header {
  font-size: 28px;
  margin-bottom: 25px;
  font-family: "Gotham-Medium", sans-serif;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media only screen and (min-width: 990px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_header {
    font-size: 35px;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_subheader {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-family: "SurveyorText-Light", serif;
  margin-bottom: 25px;
}
@media only screen and (min-width: 850px) {
  .klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_subheader {
    font-size: 20px;
  }
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form input {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
  height: 49px;
  padding: 10px;
  font-family: "Gotham-Book", sans-serif;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_submit_button {
  background-color: #f87c8a;
  background-image: linear-gradient(to bottom, #f87c8a, #f87c8a);
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child form .klaviyo_submit_button span {
  background-color: #f87c8a;
  background-image: linear-gradient(to bottom, #f87c8a, #f87c8a);
  font-family: "Gotham-Medium", sans-serif;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .error_message,
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .success_message {
  padding: 0;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .error_message {
  color: #f87c8a;
}
.klaviyo_modal .klaviyo_inner.v3-pop-up .km-flex .km-flex-item:last-child .success_message {
  font-family: "Gotham-Medium", sans-serif;
  line-height: 1.5;
}

/* Hero /---------------------------------------------/
-----------------------------------------------------*/
.v3-hero {
  align-items: center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 66vw;
}
@media only screen and (max-width: 749px) {
  .v3-hero {
    margin-bottom: 86vw;
    position: relative;
  }
}
@media only screen and (min-width: 750px) {
  .v3-hero {
    background-position: center center;
    height: 600px;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 749px) {
  .v3-hero .v3-content {
    align-items: center;
    background-color: #fafafa;
    background-color: #fff6f0;
    display: flex;
    height: 86vw;
    justify-content: center;
    left: 0;
    padding-left: 5.3vw;
    padding-right: 5.3vw;
    position: absolute;
    right: 0;
    top: 66vw;
  }
}
@media only screen and (max-width: 749px) {
  .v3-hero .v3-content .v3-text {
    text-align: center;
  }
}
@media only screen and (min-width: 750px) {
  .v3-hero .v3-content .v3-text {
    max-width: 560px;
    margin-right: 80px;
  }
}
.v3-hero .v3-content .v3-text h1 {
  font-size: 50px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 750px) {
  .v3-hero .v3-content .v3-text h1 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1439px) {
  .v3-hero .v3-content .v3-text h1 {
    font-size: calc(25px + (55 - 25) * ((100vw - 375px) / (1440 - 375)));
  }
}
@media only screen and (min-width: 750px) {
  .v3-hero .v3-content .v3-text p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 749px) {
  .v3-hero .v3-content .v3-text .v3-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Press /--------------------------------------------/
-----------------------------------------------------*/
.v3-press {
  opacity: 0.3;
  padding: 15px 10px;
}
@media only screen and (min-width: 750px) {
  .v3-press {
    padding: 25px 20px;
  }
}
.v3-press .v3-flex {
  display: flex;
}
.v3-press .v3-flex .v3-flex-item {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}
@media only screen and (max-width: 749px) {
  .v3-press .v3-flex .v3-flex-item:first-child {
    display: none;
  }
}
@media only screen and (max-width: 499px) {
  .v3-press .v3-flex .v3-flex-item:nth-child(n+5) {
    display: none;
  }
}
@media only screen and (min-width: 500px) and (max-width: 989px) {
  .v3-press .v3-flex .v3-flex-item:nth-child(n+6) {
    display: none;
  }
}
.v3-press .v3-flex .v3-flex-item span {
  font-family: "Gotham-Medium", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (max-width: 749px) {
  .v3-press .v3-flex .v3-flex-item img {
    width: 110px;
  }
}

/* Bundle /-------------------------------------------/
-----------------------------------------------------*/
.v3-bundle {
  padding: 50px 40px;
}
@media only screen and (min-width: 750px) {
  .v3-bundle {
    padding: 100px 80px;
  }
}
.v3-bundle h2,
.v3-bundle p {
  text-align: center;
}
.v3-bundle h2 {
  margin-bottom: 15px;
}
.v3-bundle h2 span {
  color: #f87c8a;
}
.v3-bundle p {
  line-height: 1.5;
  margin-bottom: 50px;
}
@media only screen and (min-width: 750px) {
  .v3-bundle p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 750px) {
  .v3-bundle .v3-grid {
    column-gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 990px) {
  .v3-bundle .v3-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 989px) {
  .v3-bundle .v3-grid .v3-grid-item {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 750px) {
  .v3-bundle .v3-grid .v3-grid-item {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 750px) and (max-width: 989px) {
  .v3-bundle .v3-grid .v3-grid-item:last-child {
    display: none;
  }
}
.v3-bundle .v3-grid .v3-grid-item .v3-image {
  display: block;
}
.v3-bundle .v3-grid .v3-grid-item .v3-image img {
  border-radius: 4px;
  display: block;
  width: 100%;
}
.v3-bundle .v3-grid .v3-grid-item .v3-image img:last-child {
  display: none;
}
.v3-bundle .v3-grid .v3-grid-item .v3-image:hover img:first-child {
  display: none;
}
.v3-bundle .v3-grid .v3-grid-item .v3-image:hover img:last-child {
  display: block;
}
.v3-bundle .v3-grid .v3-grid-item .v3-text {
  padding: 20px 0 15px;
  text-align: center;
}
.v3-bundle .v3-grid .v3-grid-item .v3-text h4 {
  font-family: "Gotham-Medium", sans-serif;
  margin-bottom: 15px;
}
.v3-bundle .v3-grid .v3-grid-item .v3-text .v3-excerpt {
  line-height: 1.5;
  margin-bottom: 15px;
}
.v3-bundle .v3-grid .v3-grid-item .v3-text .v3-price .v3-before {
  color: #999;
  text-decoration: line-through;
}
.v3-bundle .v3-grid .v3-grid-item .v3-text .v3-price .v3-saving {
  color: #f87c8a;
}
.v3-bundle .v3-grid .v3-grid-item .v3-cta {
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .v3-bundle .v3-grid .v3-grid-item .v3-cta {
    margin-top: auto;
  }
}

/* Featured Product /---------------------------------/
-----------------------------------------------------*/
.v3-featured-product {
  background-color: #fff6f0;
}
@media only screen and (min-width: 750px) {
  .v3-featured-product {
    padding: 40px 0 40px 80px;
  }
}
.v3-featured-product .v3-flex {
  display: flex;
  flex-wrap: wrap;
}
.v3-featured-product .v3-flex .v3-flex-item {
  flex: 0 0 100%;
}
@media only screen and (min-width: 750px) {
  .v3-featured-product .v3-flex .v3-flex-item {
    flex: 1;
  }
}
.v3-featured-product .v3-flex .v3-flex-item:first-child {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 749px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child {
    order: 2;
    padding: 50px 40px;
  }
}
@media only screen and (min-width: 750px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 749px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text h2,
.v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text p {
    text-align: center;
  }
}
.v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1439px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text h2 {
    font-size: calc(20px + (40 - 20) * ((100vw - 375px) / (1440 - 375)));
  }
}
.v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text p {
  font-family: "SurveyorText-Light", serif;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1439px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text p {
    font-size: calc(18px + (25 - 18) * ((100vw - 375px) / (1440 - 375)));
  }
}
@media only screen and (max-width: 749px) {
  .v3-featured-product .v3-flex .v3-flex-item:first-child .v3-text .v3-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 749px) {
  .v3-featured-product .v3-flex .v3-flex-item:last-child {
    order: 1;
  }
}
.v3-featured-product .v3-flex .v3-flex-item:last-child .v3-image img {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  width: 100%;
}

/* Best Seller /--------------------------------------/
-----------------------------------------------------*/
.v3-best-seller {
  padding: 50px 40px;
}
@media only screen and (min-width: 750px) {
  .v3-best-seller {
    padding: 100px 80px;
  }
}
.v3-best-seller h2 {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .v3-best-seller .v3-grid {
    column-gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 990px) {
  .v3-best-seller .v3-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 989px) {
  .v3-best-seller .v3-grid .v3-grid-item {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 750px) {
  .v3-best-seller .v3-grid .v3-grid-item {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 750px) and (max-width: 989px) {
  .v3-best-seller .v3-grid .v3-grid-item:last-child {
    display: none;
  }
}
.v3-best-seller .v3-grid .v3-grid-item .v3-image {
  display: block;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-image img {
  border-radius: 4px;
  display: block;
  width: 100%;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-image img:last-child {
  display: none;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-image:hover img:first-child {
  display: none;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-image:hover img:last-child {
  display: block;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-text {
  padding: 20px 0 15px;
  text-align: center;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-text h4 {
  font-family: "Gotham-Medium", sans-serif;
  margin-bottom: 15px;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-text .v3-excerpt {
  line-height: 1.5;
  margin-bottom: 15px;
}
.v3-best-seller .v3-grid .v3-grid-item .v3-cta {
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .v3-best-seller .v3-grid .v3-grid-item .v3-cta {
    margin-top: auto;
  }
}

/* Starter Kit /--------------------------------------/
-----------------------------------------------------*/
@media only screen and (min-width: 750px) {
  .v3-starter-kit {
    padding: 40px 0;
  }
}
.v3-starter-kit .v3-flex {
  display: flex;
  flex-wrap: wrap;
}
.v3-starter-kit .v3-flex .v3-flex-item {
  flex: 0 0 100%;
}
@media only screen and (min-width: 750px) {
  .v3-starter-kit .v3-flex .v3-flex-item {
    flex: 1;
  }
}
.v3-starter-kit .v3-flex .v3-flex-item:first-child .v3-image img {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  width: 100%;
}
.v3-starter-kit .v3-flex .v3-flex-item:last-child {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 749px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child {
    padding: 50px 40px;
  }
}
@media only screen and (min-width: 750px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text {
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media only screen and (max-width: 749px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text h2,
.v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text p {
    text-align: center;
  }
}
.v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text h2 {
  font-family: "Gotham-Medium", sans-serif;
  font-size: 35px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1439px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text h2 {
    font-size: calc(20px + (40 - 20) * ((100vw - 375px) / (1440 - 375)));
  }
}
.v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text p {
  font-family: "SurveyorText-Light", serif;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1439px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text p {
    font-size: calc(18px + (25 - 18) * ((100vw - 375px) / (1440 - 375)));
  }
}
@media only screen and (max-width: 749px) {
  .v3-starter-kit .v3-flex .v3-flex-item:last-child .v3-text .v3-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Instagram /----------------------------------------/
-----------------------------------------------------*/
.v3-instagram {
  padding: 50px 0;
}
@media only screen and (min-width: 750px) {
  .v3-instagram {
    padding: 100px 0 50px;
  }
}
.v3-instagram .v3-section-title {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .v3-instagram .v3-section-title {
    font-size: 25px;
  }
}
.v3-instagram .v3-section-title img {
  height: 40px;
  margin-bottom: 4px;
  vertical-align: middle;
  width: 40px;
}
.v3-instagram .v3-section-title a {
  color: #f87c8a;
}
.v3-instagram .v3-instagram-feed {
  background-color: #ddd;
  height: 300px;
}

/* Testimonial /--------------------------------------/
-----------------------------------------------------*/
.v3-testimonial {
  background-color: #faa3ad;
  padding: 65px 40px;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .v3-testimonial {
    padding: 130px 80px;
  }
}
.v3-testimonial .v3-carousel .v3-carousel-item {
  color: #ffffff;
  text-align: center;
}
.v3-testimonial .v3-carousel .v3-carousel-item .v3-review-star {
  margin-bottom: 20px;
}
.v3-testimonial .v3-carousel .v3-carousel-item .v3-review-star img {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 749px) {
  .v3-testimonial .v3-carousel .v3-carousel-item .v3-review-star img {
    width: 150px;
  }
}
.v3-testimonial .v3-carousel .v3-carousel-item p {
  color: #ffffff;
  font-family: "SurveyorText-Light", serif;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 auto 20px;
}
@media only screen and (min-width: 750px) {
  .v3-testimonial .v3-carousel .v3-carousel-item p {
    font-size: 35px;
    max-width: 565px;
  }
}
.v3-testimonial .v3-carousel .v3-carousel-item .v3-name {
  font-size: 16px;
}
@media only screen and (min-width: 750px) {
  .v3-testimonial .v3-carousel .v3-carousel-item .v3-name {
    font-size: 20px;
  }
}
.v3-testimonial .v3-carousel .v3-carousel-item .v3-name span {
  font-size: 14px;
}
@media only screen and (min-width: 750px) {
  .v3-testimonial .v3-carousel .v3-carousel-item .v3-name span {
    font-size: 15px;
  }
}
.v3-testimonial .v3-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 749px) {
  .v3-testimonial .v3-arrow {
    display: none !important;
  }
}
.v3-testimonial .v3-arrow.v3-prev {
  left: 0;
}
.v3-testimonial .v3-arrow.v3-next {
  right: 0;
}