.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  height: 38px;
  width: 60px;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #ec3838;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #ec3838;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #ec3838;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkcount {
  height: 18px;
  min-width: 18px;
  color: #ec3838;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  margin-left: 8px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.w-commerce-commercecartcontainerwrapper {
  z-index: 1001;
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: auto;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: 0;
}

.w-commerce-commercecartcontainer {
  width: 100%;
  max-width: 480px;
  min-width: 320px;
  background-color: #fff;
  flex-direction: column;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .25);
}

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.w-commerce-commercecartform {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecartlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 12px 24px;
  overflow: auto;
}

.w-commerce-commercecartitem {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.w-commerce-commercecartiteminfo {
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  height: 38px;
  width: 60px;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  border-top: 1px solid #e6e6e6;
  flex-direction: column;
  flex: none;
  padding: 16px 24px 24px;
  display: flex;
}

.w-commerce-commercecartlineitem {
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  display: flex;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  height: 38px;
  min-height: 30px;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  height: 38px;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercequickcheckoutgoogleicon, .w-commerce-commercequickcheckoutmicrosofticon {
  margin-right: 8px;
  display: block;
}

.w-commerce-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #ec3838;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecartemptystate {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.w-commerce-commercecarterrorstate {
  background-color: #ffdede;
  flex: none;
  margin: 0 24px 24px;
  padding: 10px;
}

.w-commerce-commercecheckoutformcontainer {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutshippingcity {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  flex-direction: row;
  display: flex;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  margin-left: 8px;
  font-weight: 400;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  height: 38px;
  width: 100%;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #ec3838;
  outline-style: none;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #ec3838;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commerceorderconfirmationcontainer {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutshippingsummarywrapper, .w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

@media screen and (max-width: 767px) {
  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown, .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }
}

body {
  color: #102429;
  flex-direction: column;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  line-height: 1.563;
  display: flex;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 3.474em;
  font-weight: 400;
  line-height: 1;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 2.778em;
  font-weight: 400;
  line-height: 1.067;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 14px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 2.222em;
  font-weight: 400;
  line-height: 1.138;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 13px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 1.778em;
  font-weight: 400;
  line-height: 1.214;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 1.422em;
  font-weight: 400;
  line-height: 1.295;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 11px;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 1.138em;
  font-weight: 400;
  line-height: 1.388;
}

p {
  color: #522e2e;
  margin-bottom: 1em;
}

a {
  color: #eb1313;
  text-decoration: underline;
}

ul, ol {
  color: #522e2e;
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 2em;
}

blockquote {
  border-left: 4px solid #b4cfd6;
  border-right: 4px solid #b4cfd6;
  margin-bottom: .8em;
  padding: .8em 1.2em;
  font-size: 1.25em;
}

.nav-menu-wrapper {
  background-color: rgba(0, 0, 0, 0);
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 32;
  width: 100%;
  max-width: 90em;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
}

.nav-link {
  color: #102429;
  letter-spacing: .25ch;
  text-indent: .25ch;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: .8em;
  font-weight: 700;
  line-height: 2.5;
  transition: color .2s;
  display: flex;
}

.nav-link:hover {
  opacity: 1;
  color: rgba(16, 36, 41, .5);
}

.nav-link.w--current {
  color: #1d373d;
}

.button-icon {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
}

.nav-menu-button {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.nav-menu-button.w--open {
  background-color: #eb1313;
}

.nav-menu {
  grid-column-gap: 1.5em;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
}

.navbar-section {
  width: 100%;
  color: #fff;
  background-color: #d8e7eb;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
}

.nav-brand-text {
  text-align: justify;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: auto;
  align-items: center;
  padding-top: .03125ch;
  font-family: Anton, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: static;
}

.nav-brand {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  display: flex;
}

.nav-brand:hover {
  text-decoration: none;
}

.button-color-b {
  z-index: 50;
  height: 5em;
  min-width: 10em;
  color: #fff;
  text-align: center;
  letter-spacing: .25ch;
  text-indent: .25ch;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #eb1313;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.875em;
  padding-right: 1.875em;
  font-size: .8em;
  font-weight: 700;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.button-color-b:hover {
  opacity: 1;
  color: #fff;
  background-color: #ff6929;
}

.button-color-b.section {
  width: 100%;
  min-width: 50%;
}

.button-color-b.section:hover {
  background-color: #ff6929;
}

.button-color-b.newsletter {
  width: 100%;
}

.utility-section {
  width: 100%;
  background-color: #102429;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.utility-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 82em;
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 4em;
  display: flex;
  position: relative;
}

.utility-wrapper.no-padding-mobile {
  flex: 1;
}

.overline-text {
  z-index: 16;
  color: #eb1313;
  letter-spacing: .25ch;
  text-transform: uppercase;
  margin-bottom: .625em;
  font-size: .8em;
  font-weight: 700;
  position: relative;
}

.left-bracket {
  width: 1.5em;
  height: 4em;
  border-top: 1px solid #102429;
  border-bottom: 1px solid #102429;
  border-left: 1px solid #102429;
}

.right-bracket {
  width: 1.5em;
  height: 4em;
  border-top: 1px solid #102429;
  border-bottom: 1px solid #102429;
  border-right: 1px solid #102429;
}

.hero-image {
  z-index: 64;
  width: 66.6666%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0%;
}

.hero-title-bg-text {
  z-index: 0;
  color: #d6b4b4;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: .01875ch;
  font-family: Anton, sans-serif;
  font-size: 42dvw;
  line-height: 1;
  display: flex;
}

.hero-contact-info-text {
  z-index: 32;
  color: #102429;
  text-align: center;
  border-top: 1px solid #b4cfd6;
  border-bottom: 1px solid #b4cfd6;
  justify-content: center;
  align-items: center;
  padding-left: 1.5em;
  padding-right: 1.5em;
  line-height: 4em;
}

.hero-wrapper {
  width: 100%;
  max-width: 82em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-bg-stripes {
  z-index: 16;
  width: 33.3333%;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  -webkit-text-fill-color: inherit;
  background-color: #eb1313;
  background-clip: border-box;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-top: 4em;
  padding-bottom: 4em;
  font-size: 1em;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
}

.hero-title-bg {
  z-index: 0;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -4em;
  right: -4em;
}

.hero-section {
  z-index: 0;
  width: 100%;
  background-color: #d8e7eb;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.hero-title {
  z-index: 64;
  width: 100%;
  text-align: center;
  background-color: #d8e7eb;
  border-top: 1px solid #b4cfd6;
  border-bottom: 1px solid #b4cfd6;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 4em;
  padding: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-contact-info {
  z-index: 128;
  width: 100%;
  min-height: 4em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: -1px;
  margin-bottom: -1px;
  font-size: 1em;
  display: flex;
  position: relative;
}

.hero-bg-stripe-color-dark-c {
  height: 100%;
  background-color: #102429;
  flex: 1;
}

.hero-bg-stripe-color-dark-c.right-margin {
  background-color: #291010;
  margin-right: -4em;
}

.hero-bg-stripe-color-dark-c.left-margin {
  color: #102429;
  background-color: #291010;
  margin-left: -4em;
}

.hero-buttons {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #b4cfd6;
  border-top: 1px solid #b4cfd6;
  border-bottom: 1px solid #b4cfd6;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-button {
  width: 5em;
  height: 5em;
  background-color: #d8e7eb;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: .8em;
  display: flex;
}

.hero-title-text {
  z-index: 1;
  color: #291010;
  margin-bottom: 0;
  padding-top: .03125ch;
  font-size: 15vw;
  position: relative;
}

.features-section {
  z-index: 16;
  width: 100%;
  background-color: #d8e7eb;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.features-wrapper {
  width: 100%;
  max-width: 90em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.features {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #b4cfd6;
  border-top: 1px solid #b4cfd6;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: -1px;
  margin-right: -1px;
  display: grid;
}

.feature {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: center;
  background-color: #d8e7eb;
  flex-flow: wrap;
  flex: 1;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
}

.video-section {
  z-index: 1;
  width: 100%;
  color: #102429;
  background-color: #291010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.video-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 90em;
  background-image: url('../images/img-video.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
  position: relative;
}

.large-button-color-b {
  z-index: 32;
  width: 8em;
  height: 8em;
  color: #eb1313;
  background-color: #eb1313;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.large-button-color-b:hover {
  background-color: #ff6929;
}

.bg-h-line-color-light-a {
  z-index: 8;
  width: 100%;
  height: 1px;
  opacity: .16;
  background-color: #fff;
  position: absolute;
  top: 50%;
  bottom: 50%;
}

.top-bg-stripe-color-light-b {
  z-index: 0;
  height: 8em;
  background-color: #d8e7eb;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.facts-section {
  z-index: 0;
  width: 100%;
  background-color: #291010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.facts-wrapper {
  width: 100%;
  max-width: 90em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.facts {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #3d1d1d;
  border-bottom: 1px solid #3d1d1d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: -1px;
  margin-right: -1px;
}

.fact {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: #fff;
  text-align: center;
  background-color: #291010;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
}

.fact-number-text {
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 1;
}

.navbar-cart {
  flex: none;
}

.navbar-cart-button {
  width: 5em;
  height: 5em;
  background-color: #102429;
  justify-content: center;
  padding: 0;
  font-size: .8em;
  transition: background-color .2s;
  position: relative;
}

.navbar-cart-button:hover {
  background-color: #1d373d;
}

.navbar-cart-button-quantity {
  width: 2.5em;
  height: 2.5em;
  min-width: 2.5em;
  color: #fff;
  background-color: #ff292c;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  display: flex;
  position: absolute;
  top: -1em;
  bottom: auto;
  left: auto;
  right: -1em;
}

.cart-wrapper {
  color: #102429;
}

.cart-footer {
  border-top-color: #d8e7eb;
  padding: 2em 2em 0;
}

.cart-line-item {
  line-height: 1;
}

.apple-pay {
  height: 4em;
}

.checkout-actions {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.cart-header {
  height: 4em;
  border-bottom-color: #d8e7eb;
  padding: 1em 2em;
}

.cart-title-text {
  margin-bottom: 0;
}

.close-button {
  width: 1em;
  height: 1em;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  display: flex;
}

.cart-list {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #d8e7eb;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.cart-item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #fff;
  align-items: center;
  padding: 2em;
}

.cart-item-details {
  margin-left: 0;
  margin-right: 0;
}

.cart-quantity {
  width: 6em;
  height: 4em;
  min-width: 4em;
  background-color: #d8e7eb;
  border-style: none;
  border-color: #d8e7eb;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0 .5em 0 1.5em;
  transition: border-color .2s;
}

.cart-quantity:focus {
  border-color: #eb1313;
}

.cart-error-state {
  height: 4em;
  color: #fff;
  text-align: center;
  background-color: #eb1316;
  justify-content: center;
  align-items: center;
  margin: 1em 2em 0;
  padding: 0 2em;
  display: flex;
}

.cart-form-wrapper {
  padding-bottom: 2em;
}

.cart-empty-state {
  padding-top: 2em;
  padding-bottom: 0;
}

.about-section {
  z-index: 32;
  width: 100%;
  -webkit-text-fill-color: inherit;
  background-color: #291010;
  background-clip: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.about-wrappper {
  width: 100%;
  max-width: 90em;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  color: #291010;
  background-color: #3d1d1d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  padding-top: 1px;
  padding-bottom: 1px;
}

.about-wrapper {
  color: #fff;
  text-align: center;
  background-color: #291010;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.about-text {
  color: #d6b4b4;
  flex: 1;
  padding-top: 2em;
  padding-bottom: 2em;
}

.navbar-border-bottom {
  z-index: 16;
  width: 100%;
  height: 1px;
  background-color: #b4cfd6;
  justify-content: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-title-text {
  margin-bottom: 0;
}

.about {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.about-title {
  height: 4em;
  border-bottom: 1px solid #3d1d1d;
  justify-content: center;
  align-items: center;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
}

.button-outline {
  height: 5em;
  letter-spacing: .25ch;
  text-indent: .25ch;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid #3d1d1d;
  justify-content: center;
  align-items: center;
  padding: 0 1.875em;
  font-size: .8em;
  font-weight: 700;
  transition: color .2s;
  display: flex;
}

.button-outline:hover {
  color: rgba(255, 255, 255, .5);
}

.section-h-line-color-b {
  z-index: 16;
  width: 4em;
  height: 1px;
  background-color: #eb1313;
  margin-top: 4em;
  margin-bottom: 4em;
  position: relative;
}

.section-h-line-color-b.margin-top-none {
  margin-top: 0;
}

.testimonials-section {
  z-index: 32;
  width: 100%;
  background-color: #d8e7eb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.testimonials-wrapper {
  width: 100%;
  max-width: 90em;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #b4cfd6;
  grid-template-rows: auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.testimonial-wrapper {
  max-width: 90em;
  text-align: center;
  background-color: #d8e7eb;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.testimonial {
  z-index: 16;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.testimonial-title {
  z-index: 16;
  height: 4em;
  justify-content: center;
  align-items: center;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  position: relative;
}

.testimonial-title-text {
  margin-bottom: 0;
}

.testimonial-text {
  z-index: 16;
  color: #522e2e;
  border-top: 1px solid #b4cfd6;
  border-bottom: 1px solid #b4cfd6;
  flex: 1;
  padding-top: 1.579em;
  padding-bottom: 1.579em;
  font-size: 1.266em;
  font-style: italic;
  position: relative;
}

.testimonial-rating {
  z-index: 16;
  height: 4em;
  grid-column-gap: .5em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.testimonial-image {
  width: 4em;
  height: 4em;
  object-fit: cover;
  margin-right: 1em;
}

.rating-bulet {
  width: 1em;
  height: 1em;
  background-color: #eb1313;
  border: 1px solid #eb1313;
  border-radius: 100%;
}

.rating-bulet.half-fill {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to right, #eb1313, #eb1313 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0));
}

.rating-bulet.empty-fill {
  background-color: rgba(0, 0, 0, 0);
}

.quote-icon {
  z-index: 0;
  color: #b4cfd6;
  justify-content: center;
  align-items: center;
  padding-top: .45em;
  font-size: 16em;
  font-weight: 900;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-section {
  z-index: 32;
  width: 100%;
  background-color: #291010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.footer-content {
  width: 100%;
  max-width: 90em;
  grid-column-gap: 1em;
  border-top: 1px solid #1d373d;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.footer-link {
  grid-column-gap: 0em;
  grid-row-gap: 1em;
  color: #fff;
  text-align: center;
  letter-spacing: .25ch;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
  line-height: 2.5;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: .5;
}

.footer-copyright-text {
  color: rgba(255, 255, 255, .5);
  text-align: right;
  line-height: 1;
}

.bg-v-line-color-light-a {
  z-index: 8;
  width: 1px;
  height: 100%;
  opacity: .16;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
}

.feature-title-text {
  margin-bottom: 0;
}

.feature-title {
  min-width: 10ch;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.feature-number-text {
  min-width: 2ch;
  color: #102429;
  text-align: center;
  font-family: Anton, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 1;
}

.fact-title {
  min-width: 10ch;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.fact-title-text {
  margin-bottom: 0;
}

.partners-section {
  width: 100%;
  background-color: #d8e7eb;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.partners-wrapper {
  width: 100%;
  max-width: 90em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.partners {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #b4cfd6;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 1px;
}

.partner {
  background-color: #d8e7eb;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
}

.partner-image {
  height: 4em;
  object-fit: contain;
  flex: 1;
}

.footer-links {
  grid-column-gap: 1.5em;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.contact-buttons {
  z-index: 32;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #3d1d1d;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: min-content min-content min-content;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-button {
  width: 5em;
  height: 5em;
  background-color: #291010;
  justify-content: center;
  align-items: center;
  font-size: .8em;
  display: flex;
}

.contact-content {
  z-index: 0;
  width: 100%;
  max-width: 90em;
  flex-direction: row;
  align-items: center;
  display: flex;
  position: relative;
}

.button-icon-wrapper {
  width: 5em;
  height: 5em;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-icon-wrapper.hover-opacity-1-2 {
  color: #eb1313;
  transition: opacity .2s;
}

.button-icon-wrapper.hover-opacity-1-2:hover {
  opacity: .5;
}

.contact-details {
  width: 100%;
  grid-column-gap: 1.5em;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 1.5em;
  display: flex;
}

.contact-detail {
  color: rgba(255, 255, 255, .5);
  text-align: left;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 2;
  display: flex;
}

.contact-detail-text {
  text-align: left;
  flex: 0 auto;
  margin-bottom: 0;
  font-size: .8em;
  line-height: 2.5;
}

.contact-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  margin-right: .375em;
}

.contact-detail-link {
  color: rgba(255, 255, 255, .5);
  text-align: left;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 2;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.contact-detail-link:hover {
  color: #fff;
}

.contact-section {
  z-index: 1;
  width: 100%;
  color: #291010;
  background-color: #291010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.services-section {
  z-index: 32;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.services {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #d8e7eb;
  border-top: 1px solid #d8e7eb;
  border-bottom: 1px solid #d8e7eb;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: -1px;
  margin-right: -1px;
}

.service {
  background-color: #fff;
  flex-wrap: wrap;
  padding: 2em 2em 1em;
}

.section-title-text {
  z-index: 8;
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.section-button {
  width: 66.6666%;
  max-width: 54.6666em;
  min-height: 6em;
  border-left: 1px solid #d8e7eb;
  border-right: 1px solid #d8e7eb;
  justify-content: center;
  align-items: flex-end;
  padding-top: 2em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.section-title-wrapper {
  width: 66.6666%;
  max-width: 54.6666em;
  min-height: 6em;
  border-left: 1px solid #d8e7eb;
  border-right: 1px solid #d8e7eb;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2em;
  display: flex;
}

.pricing-section {
  z-index: 32;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.pricing-list-wrapper {
  z-index: 16;
  width: 100%;
  border-top: 1px solid #d8e7eb;
  border-bottom: 1px solid #d8e7eb;
  position: relative;
}

.pricing-list {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #d8e7eb;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.pricing-item {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.pricing-title-wrapper {
  width: 100%;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 1em;
}

.outline-button-color-light-b {
  width: 100%;
  height: 5em;
  color: #291010;
  letter-spacing: .25ch;
  text-transform: uppercase;
  background-color: #fff;
  border: 0 solid #000;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: .8em;
  font-weight: 700;
  transition: color .2s;
  display: flex;
}

.outline-button-color-light-b:hover {
  color: rgba(16, 36, 41, .5);
}

.default-state {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #d8e7eb;
  flex-direction: column;
  margin-bottom: 0;
  display: flex;
}

.add-to-cart {
  width: 100%;
}

.pricing-description-text {
  color: #522e2e;
  text-align: center;
  font-size: .8em;
}

.pricing-description {
  width: 100%;
  border-top: 1px solid #d8e7eb;
  padding-top: 2em;
  padding-bottom: 2em;
}

.pricing-tabs {
  width: 100%;
  max-width: 82em;
}

.pricing-tabs-menu {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #d8e7eb;
  border-top: 1px solid #d8e7eb;
  justify-content: flex-start;
  display: flex;
}

.pricing-tab-link {
  height: 5em;
  text-align: center;
  letter-spacing: .25ch;
  text-transform: uppercase;
  background-color: #fff;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 1.875em;
  padding-right: 1.875em;
  font-size: .8em;
  font-weight: 700;
  transition: color .2s;
  display: flex;
}

.pricing-tab-link:hover {
  color: rgba(16, 36, 41, .5);
}

.pricing-tab-link.w--current {
  background-color: #d8e7eb;
  justify-content: center;
  align-items: center;
}

.out-of-stock-state {
  min-height: 4em;
  color: #eb1316;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid #d8e7eb;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
}

.error-state {
  min-height: 4em;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  display: flex;
}

.empty-state {
  min-height: 4em;
  text-align: center;
  background-color: #d8e7eb;
  justify-content: center;
  align-items: center;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  display: flex;
}

.services-wrapper {
  width: 100%;
  max-width: 82em;
  overflow: hidden;
}

.newsletter-form-wrapper {
  z-index: 16;
  width: 100%;
  max-width: 90em;
  background-image: url('../images/img-newsletter.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 8em 2em;
  display: flex;
  position: relative;
}

.newsletter-form {
  z-index: 32;
  width: 100%;
  height: auto;
  max-width: 28em;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.newsletter-text-field {
  width: 100%;
  height: 4em;
  border: 1px solid #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  transition: border-color .2s;
}

.newsletter-text-field:focus {
  border-color: #eb1313;
}

.newsletter-text-field::-ms-input-placeholder {
  color: #522e2e;
}

.newsletter-text-field::placeholder {
  color: #522e2e;
}

.pricing-option-text {
  width: 100%;
  min-height: 4em;
  color: #522e2e;
  text-align: center;
  border-top: 1px solid #d8e7eb;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery-section {
  z-index: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 4em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
}

.gallery-slider {
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: 90em;
  background-color: #fff;
}

.gallery-slide-nav {
  height: 8em;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  margin-bottom: -8em;
  padding-top: 0;
  font-size: .5em;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gallery-slide {
  max-width: 20%;
  position: relative;
}

.gallery-slider-right-arrow {
  z-index: 16;
  width: 4em;
  height: 4em;
  background-color: #eb1313;
  justify-content: center;
  align-items: center;
  margin-top: 10em;
  margin-bottom: 10em;
  margin-right: -2em;
  font-size: 1em;
  transition: background-color .2s;
  display: flex;
}

.gallery-slider-right-arrow:hover {
  background-color: #ff6929;
}

.gallery-slider-left-arrow {
  z-index: 16;
  width: 4em;
  height: 4em;
  background-color: #eb1313;
  justify-content: center;
  align-items: center;
  margin-top: 10em;
  margin-bottom: 10em;
  margin-left: -2em;
  font-size: 1em;
  transition: background-color .2s;
  display: flex;
}

.gallery-slider-left-arrow:hover {
  background-color: #ff6929;
}

.gallery-lightbox-link {
  z-index: 0;
  width: 100%;
  height: 24em;
  transition: opacity .2s;
  position: relative;
}

.gallery-lightbox-link:hover {
  opacity: .5;
}

.gallery-lightbox-thumb-01 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: .25em solid #eb1313;
}

.service-icon-wrapper {
  z-index: 0;
  width: 8em;
  height: 8em;
  float: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  margin-right: 1.5em;
  position: relative;
}

.service-icon {
  z-index: 1;
  width: 8em;
  height: 8em;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, .5);
  background-image: radial-gradient(circle, rgba(255, 255, 255, .5) 25%, rgba(19, 134, 235, .25));
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
}

.services-item-icon-image {
  width: 4em;
  height: 4em;
  object-fit: contain;
}

.gallery-lightbox-thumb-02 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: .25em solid #eb1313;
  border-right: .75em solid #eb1313;
}

.gallery-lightbox-thumb-03 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: .5em solid #eb1313;
  border-right: .5em solid #eb1313;
}

.gallery-lightbox-thumb-04 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #eb1313;
  border-left: .75em solid #eb1313;
  border-right: .25em solid #eb1313;
}

.gallery-lightbox-thumb-06 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: .25em solid #eb1313;
}

.success-message {
  min-height: 4em;
  color: #fff;
  background-color: #ff6929;
  padding: 1.2185em 1.5em;
  font-size: 1em;
}

.error-message {
  width: 100%;
  max-width: 28em;
  min-height: 4em;
  color: #fff;
  text-align: center;
  background-color: #ff292c;
  margin-top: 0;
  padding: 1.2185em 1.5em 1.2815em;
  font-size: 1em;
}

.pay-with-browser {
  height: 4em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.large-button-icon {
  width: 2em;
  height: 2em;
  object-fit: contain;
}

.section-title {
  min-height: 4em;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

.section-title-image {
  width: 100%;
  color: #291010;
  object-fit: cover;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: rotate(180deg);
}

.cart-container {
  max-width: 30em;
  min-width: 20em;
  box-shadow: 0 0 2em -1em #000;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding: 8em 4em;
  display: flex;
}

.utility-page-content {
  width: 30em;
  text-align: center;
  background-color: #d8e7eb;
  flex-direction: column;
  margin-bottom: 0;
  padding: 4em;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.field-label {
  margin-bottom: 1em;
}

.password-text-field {
  width: 100%;
  height: 4em;
  border: 1px solid #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  transition: border-color .2s;
}

.password-text-field:focus {
  border-width: 1px;
  border-color: #eb1313;
}

.password-text-field::-ms-input-placeholder {
  color: #522e2e;
}

.password-text-field::placeholder {
  color: #522e2e;
}

.utility-hero-section {
  width: 100%;
  background-color: #d8e7eb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 8em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.utility-hero-title-text {
  text-align: center;
  margin-bottom: 0;
}

.product-pricing {
  width: 100%;
  border-top: 1px solid #d8e7eb;
  border-bottom: 1px solid #d8e7eb;
  padding-left: 2em;
  padding-right: 2em;
}

.option-list {
  grid-column-gap: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.licensing-wrapper {
  width: 100%;
  border-top: 1px solid #d8e7eb;
  border-bottom: 1px solid #d8e7eb;
  padding-left: 2em;
  padding-right: 2em;
}

.licensing {
  justify-content: space-between;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.licensing-h-line-color-light-b {
  width: 100%;
  height: 1px;
  background-color: #d8e7eb;
}

.licensing-buttons {
  display: flex;
}

.button-color-dark-c {
  z-index: 50;
  height: 5em;
  min-width: 10em;
  color: #fff;
  text-align: center;
  letter-spacing: .25ch;
  text-indent: .25ch;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #102429;
  flex: none;
  justify-content: center;
  align-items: center;
  padding-left: 1.875em;
  padding-right: 1.875em;
  font-size: .8em;
  font-weight: 700;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.button-color-dark-c:hover {
  opacity: 1;
  color: #fff;
  background-color: #1d373d;
}

.checkout-form-wrapper {
  background-color: #102429;
  flex-direction: column;
  align-items: center;
  padding: 0 4em;
  display: flex;
  position: relative;
}

.checkout-form {
  z-index: 16;
  width: 100%;
  max-width: 82em;
  background-color: #fff;
  margin-right: 0;
  padding: 4em;
  position: relative;
}

.web-payments {
  margin-bottom: 1em;
}

.block-header-title-text {
  margin-bottom: 0;
}

.block-header {
  height: 4em;
  border-width: 1px 0;
  border-top-color: #d8e7eb;
  border-bottom-color: #d8e7eb;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.block-content {
  border: 0 solid #000;
  flex-direction: column;
  align-items: flex-start;
  padding: 2em 0;
  display: flex;
}

.checkout-text-field {
  width: 100%;
  height: 4em;
  background-color: #d8e7eb;
  border: 1px solid #d8e7eb;
  border-radius: 0;
  margin-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  transition: border-color .2s, background-color .2s;
}

.checkout-text-field:focus, .checkout-text-field.-wfp-focus {
  background-color: #fff;
  border-color: #eb1313;
}

.checkout-text-field::-ms-input-placeholder {
  color: #522e2e;
}

.checkout-text-field::placeholder {
  color: #522e2e;
}

.checkout-text-field.margin-bottom-none {
  margin-bottom: 0;
}

.column {
  padding-left: 0;
  padding-right: 0;
}

.row {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

.row.margin-bottom-none {
  margin-bottom: 0;
}

.order-item-list {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  margin-bottom: 0;
  display: flex;
}

.order-item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #fff;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.order-item-details {
  margin-left: 0;
  margin-right: 0;
}

.line-item {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.line-item.margin-bottom-none {
  margin-bottom: 0;
}

.customer-info, .shipping-address, .shipping-method, .payment-info {
  margin-bottom: 0;
}

.order-summary {
  border-bottom: 1px solid #d8e7eb;
  margin-bottom: 1em;
}

.order-summary.margin-bottom-none {
  margin-bottom: 0;
}

.order-items {
  margin-bottom: 0;
}

.billing-address {
  margin-top: 0;
  margin-bottom: 0;
}

.text-block {
  font-size: 14px;
  position: absolute;
  top: 69%;
  bottom: auto;
  left: 8%;
  right: auto;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 17px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: 3.706em;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 2.964em;
  }

  h3 {
    margin-bottom: 15px;
    font-size: 2.37em;
  }

  h4 {
    margin-bottom: 14px;
    font-size: 1.897em;
  }

  h5 {
    margin-bottom: 13px;
    font-size: 1.517em;
  }

  h6 {
    margin-bottom: 12px;
    font-size: 1.214em;
  }

  blockquote {
    margin-bottom: 17px;
  }

  .navbar {
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-section {
    padding-left: 4em;
    padding-right: 4em;
  }

  .utility-section {
    padding-left: 8em;
    padding-right: 8em;
  }

  .utility-wrapper {
    flex: 1;
  }

  .overline-text {
    letter-spacing: .25ch;
  }

  .hero-title-bg-text {
    padding-top: .01875ch;
    font-size: 40dvw;
  }

  .hero-title-bg {
    justify-content: center;
    left: -8em;
    right: -8em;
  }

  .hero-section {
    padding-left: 8em;
    padding-right: 8em;
  }

  .hero-title-text {
    margin-bottom: 0;
    font-size: 14vw;
  }

  .checkout-actions {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
  }

  .services-section, .pricing-section {
    padding-left: 8em;
    padding-right: 8em;
  }

  .newsletter-form {
    background-color: rgba(0, 0, 0, 0);
  }

  .checkout-form-wrapper {
    padding-left: 8em;
    padding-right: 8em;
  }

  .text-block-2 {
    color: #291010;
    font-family: Anton, sans-serif;
    font-size: 2em;
  }

  .text-block-4 {
    color: #291010;
    font-family: Anton, sans-serif;
    font-size: 2em;
    position: absolute;
    top: 8px;
    left: 124px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 15px;
  }

  h1 {
    margin-bottom: 15px;
    font-size: 3.256em;
  }

  h2 {
    margin-bottom: 14px;
    font-size: 2.604em;
  }

  h3 {
    margin-bottom: 13px;
    font-size: 2.083em;
  }

  h4 {
    margin-bottom: 12px;
    font-size: 1.667em;
  }

  h5 {
    margin-bottom: 11px;
    font-size: 1.333em;
  }

  h6 {
    margin-bottom: 10px;
    font-size: 1.067em;
  }

  blockquote {
    margin-bottom: 15px;
  }

  .nav-menu-wrapper {
    overflow: auto;
  }

  .navbar {
    grid-template-columns: 1fr 1fr;
    padding: 1em;
  }

  .nav-link {
    height: 5em;
    border-top: 1px solid #b4cfd6;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-menu-button {
    width: 5em;
    height: 5em;
    background-color: #eb1313;
    flex: none;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: .8em;
    transition: background-color .2s;
  }

  .nav-menu-button:hover {
    background-color: #ff6929;
  }

  .nav-menu-button.w--open {
    background-color: #eb1313;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .84);
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .navbar-section {
    justify-content: space-between;
    margin-bottom: 0;
  }

  .nav-brand {
    z-index: 8;
    background-color: rgba(0, 0, 0, 0);
    flex: none;
  }

  .button-color-b.section {
    width: 100%;
  }

  .utility-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .utility-wrapper {
    padding: 2em;
  }

  .utility-wrapper.no-padding-mobile {
    padding: 0;
  }

  .hero-image {
    bottom: 0;
  }

  .hero-title-bg-text {
    font-size: 44dvw;
  }

  .hero-wrapper {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .hero-bg-stripes {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .hero-title-bg {
    left: -2em;
    right: -2em;
  }

  .hero-section {
    padding-top: 6em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .hero-title {
    margin-top: 0;
    margin-bottom: 0;
    padding: 2em;
  }

  .hero-contact-info.hide-tablet-mobile {
    display: none;
  }

  .hero-bg-stripe-color-dark-c.right-margin {
    margin-right: -2em;
  }

  .hero-bg-stripe-color-dark-c.left-margin {
    margin-left: -2em;
  }

  .hero-title-text {
    font-size: 16vw;
  }

  .features-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .features-wrapper {
    overflow: hidden;
  }

  .feature {
    text-align: center;
    flex-direction: column;
  }

  .video-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .video-wrapper {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .top-bg-stripe-color-light-b {
    height: 4em;
  }

  .facts-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .facts-wrapper {
    overflow: hidden;
  }

  .fact {
    text-align: center;
    flex-direction: column;
  }

  .checkout-actions {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }

  .about-section, .about-wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }

  .section-h-line-color-b {
    width: 2em;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .testimonials-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .testimonial-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-text {
    padding-left: 1.579em;
    padding-right: 1.579em;
  }

  .footer-section {
    padding-top: 0;
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .partners-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .partners-wrapper {
    overflow: hidden;
  }

  .partners {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-links {
    grid-column-gap: 1em;
  }

  .contact-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-details {
    border-bottom: 1px solid #3d1d1d;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-detail, .contact-detail-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-section, .services-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .service {
    flex-direction: column;
    padding: 2em 2em 1em;
  }

  .section-button {
    width: 50%;
    padding-left: 2em;
    padding-right: 2em;
  }

  .section-title-wrapper {
    width: 50%;
  }

  .pricing-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .pricing-list {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-item {
    flex: 1;
  }

  .newsletter-form-wrapper {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .gallery-section {
    padding-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .gallery-slide-nav {
    height: 4em;
    margin-bottom: -4em;
  }

  .gallery-slide {
    max-width: 20%;
  }

  .gallery-slider-right-arrow, .gallery-slider-left-arrow {
    margin-top: 6em;
  }

  .gallery-lightbox-link {
    height: 16em;
  }

  .utility-page-wrap {
    padding-left: 2em;
    padding-right: 2em;
  }

  .utility-page-content {
    padding: 2em;
  }

  .utility-hero-section {
    padding-top: 6em;
  }

  .licensing {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .checkout-form-wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }

  .checkout-form {
    padding: 2em;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 3.052em;
  }

  h2 {
    margin-bottom: 13px;
    font-size: 2.441em;
  }

  h3 {
    margin-bottom: 12px;
    font-size: 1.953em;
  }

  h4 {
    margin-bottom: 11px;
    font-size: 1.563em;
  }

  h5 {
    margin-bottom: 10px;
    font-size: 1.25em;
  }

  h6 {
    margin-bottom: 9px;
    font-size: 1em;
  }

  blockquote {
    margin-bottom: 14px;
  }

  .button-color-b {
    height: 5em;
    font-size: .8em;
  }

  .hero-title-bg-text {
    font-size: 46dvw;
  }

  .hero-contact-info-text {
    width: 100%;
  }

  .hero-bg-stripes {
    grid-template-columns: 1fr;
  }

  .hero-title {
    text-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .hero-contact-info {
    justify-content: center;
  }

  .hero-buttons {
    border-top-style: none;
    border-bottom-style: none;
  }

  .hero-title-text {
    font-size: 17vw;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    flex-direction: row;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    flex-direction: row;
  }

  .checkout-actions {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .about-section, .testimonials-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-wrapper, .testimonial-text {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer-content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .feature-number-text {
    text-align: left;
  }

  .partners {
    grid-template-columns: 1fr 1fr;
  }

  .contact-buttons {
    justify-content: center;
    align-items: center;
    justify-items: center;
  }

  .contact-details, .contact-detail, .contact-detail-link {
    justify-content: center;
  }

  .services-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .services {
    grid-template-columns: 1fr 1fr;
  }

  .service {
    display: block;
  }

  .section-button, .section-title-wrapper {
    width: 100%;
  }

  .pricing-section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .pricing-list {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-slide {
    max-width: 33.333%;
  }

  .gallery-lightbox-thumb-01, .gallery-lightbox-thumb-02, .gallery-lightbox-thumb-03, .gallery-lightbox-thumb-04, .gallery-lightbox-thumb-06 {
    border: 0 solid #000;
  }

  .button-color-dark-c {
    height: 5em;
    font-size: .8em;
  }
}

@media screen and (max-width: 479px) {
  .nav-brand {
    width: auto;
  }

  .button-color-b {
    min-width: 8em;
  }

  .hero-image {
    width: 83.3332%;
  }

  .hero-bg-stripes {
    width: 50%;
  }

  .hero-title-text {
    width: 100%;
  }

  .features, .facts {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    display: flex;
  }

  .fact {
    flex: 1;
  }

  .about-wrappper, .partners, .services {
    grid-template-columns: 1fr;
  }

  .service {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .pricing-tabs-menu {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: flex-start;
    display: grid;
  }

  .gallery-slide {
    max-width: 50%;
  }

  .gallery-lightbox-thumb-01, .gallery-lightbox-thumb-02, .gallery-lightbox-thumb-03, .gallery-lightbox-thumb-04, .gallery-lightbox-thumb-06 {
    border: 0 solid #000;
  }

  .licensing {
    flex-direction: column;
    align-items: center;
  }

  .licensing-buttons {
    width: 100%;
    flex-direction: column;
  }

  .button-color-dark-c {
    min-width: 8em;
  }

  .text-block-3 {
    color: #291010;
    font-family: Anton, sans-serif;
    font-size: 1em;
    position: absolute;
    top: 3px;
    left: 21px;
  }

  .text-block-4 {
    color: #291010;
    font-family: Anton, sans-serif;
    position: absolute;
    top: 6px;
    left: 20px;
  }
}

#w-node-c54f0980-ce54-93d6-e1bf-d0718b5744c7-485dad4c, #w-node-_9e1b5423-60b9-050b-a3aa-196438333e3a-485dad4c, #w-node-d09b6fa5-76d0-6c57-b129-c3aa35c17250-485dad4c, #w-node-_788bde1c-cf97-ae34-1b64-996b9069b60a-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe69-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe71-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe79-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe81-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe89-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe91-485dad4c, #w-node-_5edf8e59-71f9-603b-7ae4-81d85af81622-485dad4c, #w-node-ff8ba304-ffe4-8a41-2044-0104bcd932be-bcd932a6, #w-node-_89319473-5009-5580-52dd-11adae9c6951-3c9c4d67, #w-node-_1b6a1d3b-4adf-c639-17b1-5f653c9c4d6a-3c9c4d67, #w-node-_1b6a1d3b-4adf-c639-17b1-5f653c9c4d6c-3c9c4d67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe69-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe71-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe79-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe81-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe89-485dad4c, #w-node-_14ef4554-e0d5-3dfa-7947-3045f3f4fe91-485dad4c, #w-node-ff8ba304-ffe4-8a41-2044-0104bcd932bc-bcd932a6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-ff8ba304-ffe4-8a41-2044-0104bcd932a8-bcd932a6 {
    justify-self: end;
  }

  #w-node-ff8ba304-ffe4-8a41-2044-0104bcd932ab-bcd932a6 {
    justify-self: start;
  }
}


