@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-dark: #101828;
  --midnight-gray: #475467;
  --staffless-green: #5ad776;
  --primary: #70ee91;
  --primary-light: #fafbfd;
  --light-gray-2: #fafafa;
  --white: white;
  --gray: #d0d5dd;
  --black: black;
  --dark-gray: #737c8a;
  --light-gray: #f9f9fa;
  --light-green: #9bf3b2;
  --dark-green: #509963;
  --staffless-blue: #324e72;
  --staffless-light-blue: #c3e0e5;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkicon {
  margin-right: 8px;
}

.w-commerce-commercecartopenlinkcount {
  color: #3898ec;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  min-width: 18px;
  height: 18px;
  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: #000c;
  position: fixed;
  inset: 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: #0000;
  position: absolute;
  inset: 100% auto auto 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% 0 auto auto;
}

.w-commerce-commercecartcontainer {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px #00000040;
}

.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-commercecartheading {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.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-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.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 {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #3898ec;
  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;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  height: 38px;
  min-height: 30px;
  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;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 38px;
  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;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  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-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 {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  appearance: none;
  background-color: #3898ec;
  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-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  appearance: none;
  background-color: #3898ec;
  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-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-commerce-commercecheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercelayoutcontainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.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 {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #3898ec;
  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 {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #3898ec;
  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 {
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #3898ec;
  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 {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #3898ec;
  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-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-commercelayoutsidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 20px;
}

.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;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  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-commercepaypalcheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  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-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commerceorderconfirmationcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }

  .w-commerce-commercelayoutcontainer {
    flex-direction: column;
    align-items: stretch;
  }

  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .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;
    inset: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commerceaddtocartquantityinput, .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: var(--primary-dark);
  font-family: Jost, sans-serif;
  font-size: 1.125rem;
  line-height: 1.1;
}

h1 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  color: var(--midnight-gray);
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

a {
  color: var(--staffless-green);
  cursor: pointer;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: #70ee9199;
}

ul {
  grid-row-gap: .9375rem;
  background-color: var(--midnight-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  display: flex;
}

li {
  align-items: center;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  border-left: 5px solid var(--primary);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.25rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: relative;
}

.section.light-background {
  background-color: var(--primary-light);
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.dark-blue-background {
  background-color: var(--primary-dark);
  display: none;
}

.section.shop-product-section {
  padding-top: 155px;
  padding-bottom: 65px;
}

.section.light-gray-bg-top-space-small {
  background-color: var(--light-gray-2);
  padding-top: 50px;
  display: block;
}

.section.dark-blue-bg-fixed {
  background-color: var(--primary-dark);
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  display: block;
}

.section.full-height-image-bg {
  background-image: url('../images/banner-lines.svg'), linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/banner-image-full-height_1banner-image-full-height.webp');
  background-position: 50%, 0 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  min-height: 75vh;
}

.section.banner-section-large {
  background-image: url('../images/section-bottom-blur.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 190px;
  padding-bottom: 250px;
}

.section.without-top-space-light-gray-bg {
  background-color: var(--light-gray-2);
  padding-top: 0;
}

.section.dark-blue-bg-no-bottom-space {
  background-color: var(--primary-dark);
  padding-bottom: 0;
}

.section.light-bg-no-top-space {
  background-color: var(--primary-light);
  padding-top: 0;
}

.section.banner-team {
  background-image: linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/workplace-image_1workplace-image.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  min-height: 400px;
  padding-top: 150px;
}

.section.banner-pricing {
  background-image: url('../images/banner-lines.svg'), linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/growth-graph-image_1growth-graph-image.webp');
  background-position: 50%, 0 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  min-height: 450px;
  padding-top: 150px;
}

.section.banner-resources {
  background-image: url('../images/section-bottom-blur.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 150px;
  padding-bottom: 80px;
}

.section.banner-shop {
  background-image: url('../images/banner-lines.svg'), linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/team-image-large_1team-image-large.webp');
  background-position: 50%, 0 0, 0 0, 50%;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  min-height: 450px;
  padding-top: 150px;
}

.section.banner-category-shop {
  background-image: linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/chart-image_1chart-image.webp');
  background-position: 0 0, 0 0, 50% 0;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  min-height: 400px;
  padding-top: 150px;
}

.section.no-top-space {
  padding-top: 0;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container.align-left {
  align-items: flex-start;
  width: 100%;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid #0000001a;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  background-color: var(--primary);
  width: 19%;
  color: var(--white);
  border-left: 1px #0000;
  border-right: 1px solid #0000001a;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #0000001a;
  border-right-color: #0000001a;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.grid-description {
  border-bottom: 1px solid #0000001a;
  border-right: 1px solid #0000001a;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #0000001a;
  border-left: 1px solid #0000001a;
  border-right: 1px solid #0000001a;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  filter: grayscale(200%);
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 40px;
}

.bottom-style-spacing-desktop {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spasing-system-image-mobile {
  filter: grayscale(200%);
  max-width: 70%;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
}

.primary-dark-style-guide {
  background-color: var(--primary-dark);
  width: 75px;
  height: 75px;
}

.black-style-guide {
  background-color: var(--black);
  width: 75px;
  height: 75px;
}

.colors-container {
  grid-column-gap: 60px;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.color-container {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 -1px 15px #0000001a;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headers-wrapper {
  width: 100%;
  margin-bottom: 15px;
}

.h1-tablet {
  font-size: 60px;
}

.h2-tablet {
  font-size: 50px;
}

.h1-mobile {
  font-size: 52px;
}

.h2-mobile {
  font-size: 40px;
}

.h3-mobile {
  font-size: 30px;
}

.style-guide-body-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.primary-button {
  border: 1px solid var(--staffless-green);
  background-color: var(--staffless-green);
  color: var(--primary-dark);
  text-align: center;
  text-transform: capitalize;
  border-radius: .5rem;
  padding: .75rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 -1px 2px #1018280d;
}

.primary-button:hover {
  color: var(--primary);
  background-color: #0000;
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.pagination {
  margin-top: 50px;
}

.primary-button.tablet-hidden {
  background-color: var(--staffless-green);
}

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  width: 100%;
  margin-top: 40px;
}

.link-wrapper {
  width: 50%;
  margin-top: 20px;
}

.nav_component {
  z-index: 9999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary-light);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  z-index: auto;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--midnight-gray);
  font-size: 18px;
  font-weight: 500;
  transition-duration: .4s;
  display: none;
}

.nav-link:hover {
  opacity: 1;
  color: #47546799;
}

.nav-link.w--current {
  color: var(--primary-dark);
}

.nav-link.text-color-white {
  display: none;
}

.nav-link.text-color-white:hover {
  opacity: .6;
  color: var(--white);
}

.nav-link.text-color-white.w--current {
  color: var(--primary);
}

.nav-dropdown-toggle {
  color: var(--midnight-gray);
  margin-left: 0;
  margin-right: 0;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  position: relative;
}

.nav-dropdown-icon {
  font-size: 16px;
  inset: 0% -5px 0% auto;
}

.nav-dropdown-icon.text-color-white {
  color: var(--midnight-gray);
}

.nav-dropdown-list {
  object-fit: fill;
  background-color: #fff;
  border: 1px solid #0000002e;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  border-color: #70ee9180;
  border-radius: 8px;
  width: 210px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 545px;
  display: flex;
  right: -190px;
}

.nav-dropdown-link-wrapper {
  text-align: left;
  object-fit: contain;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.nav-dropdown-link {
  width: 100%;
  color: var(--midnight-gray);
  text-align: left;
  text-transform: capitalize;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 18px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--staffless-green);
}

.nav-dropdown-link.nav-dropdown-link-line {
  background-color: var(--staffless-green);
}

.nav-item-title {
  color: var(--midnight-gray);
  font-size: 18px;
  line-height: 1.5em;
}

.nav-item-title.text-color-white {
  color: var(--midnight-gray);
}

.pages-banner {
  background-color: var(--primary-dark);
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 110px;
  padding-bottom: 80px;
  display: flex;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 40px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  margin-right: 50px;
  font-weight: 500;
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-icons-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  margin-bottom: 0;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--gray);
  min-width: 280px;
  height: auto;
  color: var(--primary-dark);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.1em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--midnight-gray);
  font-size: 18px;
  line-height: 1.1em;
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--gray);
  min-width: 300px;
  height: auto;
  color: var(--primary-dark);
  border-radius: 8px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
}

.coming-soon-input::placeholder {
  color: var(--dark-gray);
  font-size: 18px;
  line-height: 1.1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  text-align: center;
  margin-top: 60px;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.blog-grid-collection-list {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.blog-grid-image-link {
  border-radius: 8px;
  width: 40%;
  overflow: hidden;
}

.blog-grid-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  transition: transform .4s;
}

.blog-grid-image:hover {
  transform: scale(1.05);
}

.blog-grid-content-wrapper {
  grid-row-gap: 30px;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.blog-grid-item {
  width: 100%;
  display: inline-block;
}

.nav_menu-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.blog-grid-post-wrapper {
  grid-column-gap: 40px;
  border-bottom: 1px solid #10182833;
  padding-bottom: 50px;
  display: flex;
}

.footer {
  background-color: var(--primary-dark);
  align-items: flex-start;
}

.footer-bottom-wrapper {
  border-top: 1px solid #ffffff1a;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
  display: flex;
}

.footer-rights {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  line-height: 1.5em;
  display: none;
}

.footer-copyright {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  line-height: 1.5em;
  display: inline;
}

.footer-copyright:hover {
  color: var(--white);
}

.footer-copyright-link {
  color: #fff;
  margin-right: 5px;
  font-size: 20px;
  text-decoration: none;
  transition: all .2s;
  display: none;
}

.footer-copyright-link:hover {
  color: var(--primary);
}

.section-title-wrapper {
  text-align: center;
  max-width: 695px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.style-guide-button-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.banner-title-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.workflow-profile-photo {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.workflow-profile-description {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.workflow-profile-wrapper {
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.workflow-content-wrapper {
  width: 50%;
}

.workflow-video-wrapper {
  width: 50%;
  max-height: 320px;
}

.workflow-wrapper {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.workflow-profile-photo-wrapper {
  border: 2px solid var(--primary);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
  display: flex;
}

.workflow-video {
  background-image: linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/business-meeting-image_1business-meeting-image.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  position: relative;
}

.play-button {
  z-index: 5;
  background-color: #0000;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.accordion-wrapper-large {
  width: 100%;
  display: flex;
}

.accordion-wrapper-large.service-details {
  grid-row-gap: 30px;
  flex-direction: column;
  margin-top: 45px;
}

.accordion-wrapper-large.team-page {
  grid-row-gap: 30px;
  flex-wrap: wrap;
}

.accordion-wrapper-large.faq {
  grid-row-gap: 30px;
  flex-direction: column;
}

.accordion-column-wrapper {
  width: 48.4%;
}

.accordion-column-wrapper.last-child {
  margin-right: 0;
}

.light-background {
  background-color: var(--light-gray);
}

.contacts-wrapper {
  width: 100%;
  display: flex;
}

.contacts-content-wrapper, .contacts-form-wrapper {
  width: 50%;
}

.contacts-detail {
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: .25rem;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.hidden {
  display: none;
}

.contacts-textarea {
  border-style: none none solid;
  border-width: 1px;
  border-color: transparent transparent var(--primary-dark);
  border-radius: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.1em;
}

.contacts-textarea:focus {
  border-bottom-color: var(--primary);
}

.contacts-textarea::placeholder {
  color: #00000080;
  font-size: 18px;
  line-height: 1.1em;
}

.contacts-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: transparent transparent var(--primary-dark);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  margin-bottom: 15px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.1em;
  transition: all .3s;
}

.contacts-input:focus {
  border-bottom-color: var(--primary);
}

.contacts-input::placeholder {
  color: #00000080;
  font-size: 18px;
  line-height: 1.1em;
}

.footer-link {
  float: none;
  color: var(--white);
  vertical-align: baseline;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 15px;
  transition: all .3s;
  display: block;
  position: static;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-link.w--current {
  font-size: 15px;
  font-weight: 400;
  display: block;
}

.footer-link.last-item {
  vertical-align: baseline;
  margin-bottom: 10px;
  display: block;
}

.social-icons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.footer-brand {
  color: #fff;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.social-icon-circle {
  color: #fff;
  background-color: #70ee914d;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.social-icon-circle:hover {
  background-color: #70ee9180;
}

.footer-links-wrapper {
  flex-flow: column wrap;
  flex: 1;
  align-items: flex-start;
  width: 16.6%;
  display: block;
}

.search-shop-con {
  align-items: center;
  margin-left: 20px;
  display: flex;
}

.search-result-item {
  margin-bottom: 40px;
}

.search-link {
  margin-bottom: 10px;
  transition: all .3s;
  display: inline-block;
}

.search-input {
  border: 1px solid var(--gray);
  border-radius: 8px;
  height: auto;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.1em;
}

.search-input:focus {
  border: 1px solid var(--primary);
}

.search-input::placeholder {
  color: var(--dark-gray);
  font-size: 18px;
  line-height: 1.1em;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 30px;
}

.search-section {
  padding-top: 155px;
  padding-bottom: 40px;
}

.customers-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #70ee9180;
  border-left: 1px solid #70ee9180;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.customer-wrapper {
  text-align: center;
  border-bottom: 1px solid #70ee9180;
  border-right: 1px solid #70ee9180;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  transition: all .4s;
  display: flex;
  position: relative;
}

.customer-title {
  margin-top: 20px;
  font-size: 16px;
}

.block-quote-wrapper {
  text-align: center;
  max-width: 820px;
  margin: 55px auto 95px;
}

.service-details-content-wrapper {
  width: 70%;
  margin-right: 2.5rem;
}

.service-details-sidebar-wrapper {
  background-color: var(--primary-dark);
  border-radius: 8px;
  width: 30%;
  padding: 30px 40px;
  position: sticky;
  top: 40px;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-details-sidebar-contacts {
  margin-top: 25px;
  margin-bottom: 25px;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.service-list-item {
  position: relative;
}

.primary-button-white {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  text-align: center;
  background-color: #0000;
  border-radius: .5rem;
  align-items: center;
  padding: .75rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .2s;
}

.primary-button-white:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 40px;
  display: flex;
}

.style-guide-content-wrapper.small-top-space {
  margin-top: 30px;
}

.testimonials-slider {
  background-color: #0000;
  width: 100%;
  height: auto;
  position: relative;
}

.slide-3 {
  max-height: 580px;
}

.card-icon {
  object-fit: contain;
  width: 2.5rem;
  height: 2.5rem;
}

.about-3-tab-link {
  width: 33.33%;
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-list {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.portfolio-grid-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
}

.portfolio-grid-image:hover {
  transform: scale(1.05);
}

.portfolio-grid-collection-item {
  width: 47.9%;
  position: relative;
  overflow: hidden;
}

.portfolio-grid-title-wrapper {
  flex-direction: column;
  width: 100%;
  padding-top: 1.8rem;
  display: flex;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.play-button-icon {
  z-index: 7;
  color: var(--primary);
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.play-button-hover {
  z-index: 10;
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.reviews-left-arrow {
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  transition: all .3s;
  display: flex;
  inset: auto 50px 0% auto;
}

.reviews-left-arrow:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-primary-color {
  color: var(--primary);
}

.text-primary-color.fonr-weight-medium {
  font-weight: 500;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.author-image {
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 200px;
  width: 100%;
  height: 100%;
}

.author-image.center-position {
  object-position: 50% 50%;
}

.testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.team-image {
  object-fit: cover;
  border-radius: .25rem;
  width: 100%;
  height: 25rem;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.portfolio-grid-image-link {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.rich-text-style h2 {
  margin-bottom: 15px;
}

.rich-text-style h3, .rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  margin-top: 20px;
  margin-bottom: 10px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.paragraph-gray-style-guide {
  background-color: var(--midnight-gray);
  width: 75px;
  height: 75px;
}

.shop-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shop-category-tabs {
  width: 100%;
}

.shop-collection-list-wrapper {
  z-index: 999;
  width: 100%;
  position: relative;
}

.shop-category-tabs-content {
  overflow: visible;
}

.shop-collection-item {
  width: 100%;
}

.shop-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  display: flex;
}

.shop-tabs {
  width: 100%;
}

.main-shop-list-item {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.shop-list-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 360px;
  transition: transform .3s;
}

.shop-list-image:hover {
  transform: scale(1.06);
}

.shop-link-block {
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.shop-links-wrapper {
  position: relative;
}

.shop-item-price {
  margin-top: 10px;
}

.shop-item-link {
  color: var(--primary-dark);
  font-weight: 600;
}

.shop-item-link:hover {
  color: var(--primary);
}

.on-sale-tag {
  z-index: 999;
  background-color: var(--light-green);
  color: var(--primary-dark);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 16px;
  display: none;
  position: absolute;
  inset: 15px 15px auto auto;
}

.on-sale-tag:hover {
  background-color: var(--primary);
  color: #fff;
}

.shop-price-wrapper {
  grid-column-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.shop-item-price-on-sale {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
  display: none;
}

.shop-details-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.12fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.shop-details-slider {
  background-color: #0000;
  border-radius: 10px;
  height: 480px;
}

.shop-details-image-lightbox {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.shop-details-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.shop-details-left-arrow {
  background-color: var(--primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  transition: background-color .2s, color .2s;
  display: flex;
}

.shop-details-left-arrow:hover {
  background-color: var(--white);
  color: var(--primary);
}

.arrow-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
}

.shop-details-right-arrow {
  background-color: var(--primary);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  transition: background-color .2s, color .2s;
  display: flex;
}

.shop-details-right-arrow:hover {
  background-color: var(--white);
  color: var(--primary);
}

.shop-details-content-block {
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.shop-details-title {
  font-size: 42px;
}

.shop-item-info-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.shop-item-price-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.shop-price-on-sale {
  color: #737886;
  text-decoration: line-through;
  display: none;
}

.shop-details-block {
  grid-row-gap: 25px;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  display: flex;
}

.section-two-side-title-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  position: relative;
}

.style-guide-subtitle {
  margin-bottom: 20px;
}

.footer-rights-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.collection-list-wrapper-portfolio {
  width: 100%;
}

.position-relative {
  position: relative;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column wrap;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.success-message {
  color: var(--midnight-gray);
  text-align: center;
  background-color: #0000;
}

.error-message {
  color: var(--midnight-gray);
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.error-message.left-align {
  text-align: left;
}

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.form-contacts {
  width: 100%;
  height: 100%;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.margin-top-xsmall {
  margin-top: 10px;
}

.dark-green-style-guide {
  background-color: var(--dark-green);
  width: 75px;
  height: 75px;
}

.margin-bottom-small {
  margin-bottom: 1.25rem;
}

.paragraph-small {
  font-size: 18px;
}

.margin-bottom-medium {
  margin-bottom: 40px;
}

.cart-button {
  background-color: #0000;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 10px;
  transition-property: opacity;
  display: none;
  position: relative;
}

.cart-button:hover {
  opacity: .6;
}

.cart-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.cart-quantity {
  color: var(--primary);
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  inset: 0% 0% auto auto;
}

.tablet-button-wrapper {
  display: none;
}

.footer-top-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.social-icon-white {
  width: 20px;
  height: 20px;
}

.text-color-white {
  color: var(--white);
}

.text-color-white.margin-bottom-small {
  display: block;
}

.footer-bottom-wrapper-left {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.display-flex-horizontal {
  width: 100%;
  display: flex;
}

.display-flex-horizontal.large-gap-center {
  grid-column-gap: 3.75rem;
  align-items: center;
}

.display-flex-horizontal.space-between-end {
  justify-content: space-between;
  align-items: flex-end;
}

.display-flex-horizontal.medium-gap-center {
  justify-content: space-between;
  align-items: center;
}

.display-flex-horizontal.xlarge-gap-center {
  grid-column-gap: 5rem;
  align-items: center;
}

.display-flex-horizontal.xmedium-gap-center {
  grid-column-gap: 1.5rem;
  align-items: center;
}

.display-flex-horizontal.medium-gap {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.display-flex-horizontal.reverse-xlarge-gap-center {
  grid-column-gap: 80px;
  flex-direction: row-reverse;
  align-items: center;
}

.display-flex-horizontal.medium-gap-left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.display-flex-horizontal.xlarge-gap-start {
  grid-column-gap: 80px;
  align-items: flex-start;
}

.title-bottom-space {
  margin-bottom: 1.5rem;
}

.title-bottom-space.text-color-white-center {
  color: var(--white);
  text-align: center;
}

.description {
  margin-bottom: 3.125rem;
}

.description.description-medium-width {
  width: auto;
  max-width: 27.5rem;
}

.description.description-xmedium-width {
  width: auto;
  max-width: 470px;
}

.banner-form {
  max-width: 470px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.banner-form-text-field {
  border: 1px solid var(--gray);
  border-radius: .5rem;
  height: auto;
  margin-bottom: 0;
  padding: 1rem 4.375rem 1rem 1.75rem;
  font-size: 1.25rem;
  line-height: 1.5em;
}

.banner-form-text-field:focus {
  border-color: var(--primary);
}

.banner-form-text-field::placeholder {
  color: var(--midnight-gray);
  font-size: 20px;
  line-height: 1.5em;
}

.banner-form-button {
  background-color: var(--staffless-green);
  background-image: url('../images/arrow-right-button.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: .25rem;
  width: 3.25rem;
  height: 3.25rem;
  transition: opacity .3s;
  position: absolute;
  inset: .3125rem .3125rem .3125rem auto;
}

.banner-form-button:hover {
  opacity: .7;
}

.paragraph-xsmall {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.2em;
}

.banner-image-wrapper {
  flex-direction: column;
  align-items: center;
  width: 50%;
  min-height: 32.5rem;
  display: flex;
  position: relative;
}

.banner-gray-background {
  background-image: url('../images/banner-background-item.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  min-height: 30rem;
  padding-top: 30px;
}

.banner-card-bottom {
  z-index: 1;
  height: 250px;
  position: absolute;
  top: auto;
  bottom: 70px;
  left: -10px;
  transform: rotate(30deg);
}

.banner-card-top {
  -webkit-backdrop-filter: blur(.3125rem) blur(.3125rem);
  backdrop-filter: blur(.3125rem) blur(.3125rem);
  pointer-events: auto;
  vertical-align: baseline;
  object-fit: contain;
  border-radius: 1.125rem;
  max-width: 200%;
  height: auto;
  margin-top: .625rem;
  display: inline-block;
  position: absolute;
  inset: 15% 0% 0% 5%;
}

.home-partner_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--gray);
  background-color: var(--white);
  border-radius: .5rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  display: flex;
  position: relative;
}

.logo-description {
  max-width: 17.1875rem;
}

.home-partner_logo {
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: 1.75rem;
}

.home-partner_logo-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.title-width-medium {
  width: 60%;
}

.content-large-wrapper {
  justify-content: flex-end;
  width: 100%;
  margin-top: 2rem;
  display: flex;
  position: relative;
}

.content-large-wrapper-left {
  z-index: 1;
  grid-row-gap: 1.875rem;
  flex-direction: column;
  width: 80%;
  display: flex;
  position: relative;
}

.content-wrapper-info {
  grid-column-gap: 4rem;
  background-color: var(--primary-light);
  border-radius: .5rem;
  align-items: center;
  padding: 1.25rem 1.25rem 1.25rem 5.625rem;
  display: flex;
}

.content-wrapper-circle {
  border: 1px dashed #10182866;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5.75rem;
  height: 5.75rem;
  padding: 1.125rem 2.125rem;
  display: flex;
}

.content-wrapper-number {
  font-size: 3.125rem;
  font-weight: 500;
}

.content-wrapper-text-info {
  flex-direction: column;
  width: 80%;
  display: flex;
}

.content-large-image-wrapper {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36%;
  min-height: 43.75rem;
  display: flex;
  position: absolute;
  top: -3.75rem;
  left: -2.8125rem;
}

.content-large-circle {
  background-color: var(--primary);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: none;
}

.image-absolute {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  min-height: 41.25rem;
  position: absolute;
}

.column-wrapper {
  width: 47%;
}

.content-wrapper-small {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  margin-bottom: 1.5rem;
  display: flex;
}

.content-wrapper-small.margin-bottom-small {
  margin-bottom: 20px;
}

.content-wrapper-link {
  border: 1px solid var(--staffless-green);
  color: var(--primary-dark);
  border-radius: 60px;
  padding: .25rem 1.25rem;
  transition-property: all;
}

.content-wrapper-link:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.column-image-bg {
  background-image: url('../images/image-background.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 37.8rem;
  position: relative;
}

.column-image-contain {
  object-fit: contain;
  width: 100%;
  height: 37.8rem;
}

.figure-item-top {
  width: 130px;
  height: 6.8rem;
  position: absolute;
  top: 3.75rem;
  bottom: 0%;
  right: .9375rem;
}

.figure-item-bottom {
  width: 180px;
  height: 11.25rem;
  position: absolute;
  bottom: 6.5rem;
  left: -1.5625rem;
}

.content-medium-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44%;
  min-height: 40.5rem;
  display: flex;
  position: relative;
}

.content-medium-image-wrapper.no-min-height-left {
  align-items: flex-start;
  width: 40%;
  min-height: auto;
}

.content-medium-text-wrapper {
  width: 50%;
}

.content-medium-text-wrapper.tablet-no-top-space {
  width: 60%;
}

.title-medium-width {
  max-width: 440px;
}

.check-list-wrapper-large {
  grid-column-gap: 2.5rem;
  width: 100%;
  margin-bottom: 3.125rem;
  display: flex;
}

.check-list-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.check-list-wrapper.large-size {
  grid-row-gap: 20px;
  width: 100%;
  margin-bottom: 50px;
}

.check-list-item {
  grid-column-gap: .75rem;
  align-items: center;
  width: 100%;
  display: flex;
}

.check-list-circle {
  background-color: var(--staffless-green);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .4rem;
  display: flex;
}

.check-list-circle.white-bg {
  background-color: #fff3;
}

.check-icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

.text-width-large {
  width: 75%;
}

.text-width-large.font-weight-semi-bold {
  width: 75%;
  font-weight: 600;
}

.text-width-large.font-weight-semi-bold-white {
  width: 75%;
  color: var(--white);
  font-weight: 600;
}

.content-medium-image {
  z-index: 2;
  object-fit: contain;
  width: 100%;
  height: 35.9rem;
  position: relative;
}

.figure-item-top-left {
  z-index: 2;
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  top: 1.875rem;
  left: .625rem;
}

.figure-item-full-bottom {
  z-index: 2;
  object-fit: contain;
  width: 100%;
  height: 9.4rem;
  position: absolute;
  bottom: -2rem;
  left: 0%;
  right: 0%;
}

.top-section-padding-large {
  width: 100%;
}

.card-item {
  border-right: 1px solid #10182833;
  width: 33.33%;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.card-item.no-left-padding {
  padding-left: 0;
}

.card-item.no-right-padding-border {
  border-right-style: none;
  padding-right: 0;
}

.margin-top-xmedium {
  margin-top: 1.5rem;
}

.testimonials-top-block {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 35px;
  display: flex;
}

.primary-text-color {
  color: var(--staffless-green);
}

.primary-text-color.font-weight-medium {
  font-weight: 500;
}

.testimonials-icon {
  object-fit: contain;
  width: 40px;
  height: 25px;
}

.testimonials-text {
  color: var(--white);
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1em;
}

.line-divider {
  background-color: #fff3;
  width: 100%;
  height: 1px;
  margin-bottom: 50px;
}

.author-wrapper {
  grid-column-gap: 25px;
  align-items: center;
  width: 40%;
  display: flex;
}

.author-image-holder {
  background-color: var(--staffless-green);
  border-radius: 200px;
  width: 40px;
  height: 40px;
  padding: 2px;
}

.reviews-icon {
  object-fit: contain;
  width: 25px;
  height: 25px;
}

.reviews-right-arrow {
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  transition: all .3s;
  display: flex;
  inset: auto 0% 0% auto;
}

.reviews-right-arrow:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.pricing-wrapper-large {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
}

.pricing-card-wrapper {
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
  background-color: #ffffff4d;
  border: 2px solid #70ee9180;
  border-radius: 20px;
  width: 33.33%;
  padding: 30px;
  box-shadow: 3px -14px 54px #ffffff8c;
}

.pricing-card-wrapper.center-item {
  border-color: var(--primary-dark);
  background-color: var(--primary-dark);
}

.margin-bottom-xsmall {
  margin-bottom: 1rem;
}

.paragraph-xsmall-bottom-space {
  margin-bottom: 15px;
}

.pricing-card-price-holder {
  grid-column-gap: 25px;
  align-items: center;
  margin-bottom: 55px;
  display: flex;
}

.price-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1em;
}

.price-title-small {
  font-size: 24px;
  line-height: 1.1em;
  text-decoration: line-through;
}

.large-link-wrapper {
  grid-column-gap: 1.875rem;
  background-color: var(--primary);
  border-radius: .5rem;
  justify-content: space-between;
  width: 100%;
  padding: .75rem 1.25rem;
  display: flex;
  box-shadow: 0 -1px 2px #1018280d;
}

.large-link-wrapper.fixed-width {
  background-color: var(--staffless-green);
  max-width: 16.9rem;
}

.dark-text-color {
  color: var(--primary-dark);
}

.dark-text-color.font-weight-medium {
  font-weight: 500;
}

.large-link-icon-wrapper {
  background-color: #ffffff80;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
}

.full-width {
  width: 100%;
}

.cta-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 39.4rem;
  display: flex;
}

.cta-line-divider {
  background-color: #fff3;
  max-width: 1170px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.background-image-large {
  object-fit: contain;
  width: 21.875rem;
  min-height: 18.75rem;
  position: absolute;
  right: 0%;
}

.banner-text-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 46.8rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.banner-description-small.no-bottom-space {
  margin-left: auto;
  margin-right: auto;
}

.banner-description-small.text-color-white-center {
  color: var(--white);
  text-align: center;
}

.buttons-wrapper {
  grid-column-gap: 20px;
  display: flex;
}

.card-wrapper-center {
  position: relative;
}

.card-wrapper-center.large-size-negative {
  width: 100%;
}

.card-figure-image-left {
  z-index: 1;
  object-fit: contain;
  width: 230px;
  height: 230px;
  position: absolute;
  top: 5px;
  left: -110px;
}

.card-figure-image-left.medium-size {
  width: 190px;
  height: 190px;
  display: none;
  top: -50px;
  left: -13px;
}

.card-figure-image-right {
  width: 160px;
  height: 160px;
  position: absolute;
  top: -60px;
  right: -60px;
}

.card-figure-image-right.medium-size {
  display: none;
  top: -45px;
  right: -10px;
}

.container-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 15px 80px;
}

.text-info-wrapper-left {
  max-width: 630px;
}

.large-image {
  z-index: 3;
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 25rem;
  position: relative;
}

.light-wrapper {
  z-index: 2;
  -webkit-backdrop-filter: blur(1.8rem);
  backdrop-filter: blur(1.8rem);
  background-color: #ffffff80;
  border-radius: .5rem;
  height: 12.5rem;
  margin-bottom: -1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dark-wrapper {
  z-index: 1;
  background-color: var(--staffless-green);
  border-radius: .5rem;
  height: 12.5rem;
  margin-bottom: -2rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-title-wrapper-medium {
  text-align: center;
  max-width: 38rem;
  margin-bottom: 3.125rem;
  margin-left: auto;
  margin-right: auto;
}

._1-3-column-wrapper-border {
  background-color: var(--primary-light);
  border: 1px solid #70ee9180;
  border-radius: .5rem;
  width: 31.3%;
  padding: 1.8rem;
}

._1-3-column-wrapper-border:hover {
  background-color: var(--staffless-green);
}

.banner-figure-item {
  z-index: 0;
  width: 9.375rem;
  height: 9.375rem;
  position: absolute;
  top: 0%;
  right: 0%;
}

.paragraph.text-color-dark {
  color: var(--primary-dark);
}

.numbers-large-block {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  max-width: 1700px;
  margin-left: 15px;
  margin-right: 15px;
}

.numbers-medium-block {
  grid-column-gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 15px;
  display: flex;
}

.medium-title-fixed {
  max-width: 355px;
}

.numbers-wrapper-small {
  grid-column-gap: 35px;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.numbers-wrapper {
  width: 33%;
}

.number-title {
  margin-bottom: 15px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1em;
}

.flex-horizontal-space-between {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.flex-horizontal-space-between.medium-gap-center {
  grid-column-gap: 2.5rem;
  align-items: center;
}

.description-medium-width {
  width: 55%;
}

.title-small-width {
  width: 34%;
}

.team-wrapper-large {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.team-wrapper-large.no-top-space {
  flex-wrap: wrap;
  margin-top: 0;
}

.team-image-holder {
  background-color: var(--staffless-green);
  border-radius: 8px;
  height: 25rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.team-item-wrapper {
  width: 22.7%;
}

.card-item-large {
  grid-column-gap: 40px;
  background-color: var(--primary);
  border-radius: 8px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 50px 100px 80px 50px;
  display: flex;
}

.card-item-large.light-green-negative {
  background-color: var(--light-green);
  margin-top: -30px;
}

.card-item-large.extra-light-green-negative {
  background-color: #cdfdda;
  margin-top: -30px;
  padding-bottom: 50px;
}

.description-xmedium-width {
  width: 54%;
}

.pages-banner-center {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pagination {
  margin-top: 50px;
  display: none;
}

.empty-state {
  background-color: #0000;
  padding: 0;
}

.title-hover {
  transition: color .3s;
}

.title-hover:hover {
  color: #10182880;
}

.banner-description-white, .text-color-white-center {
  color: var(--white);
  text-align: center;
}

.link-white {
  color: var(--white);
}

.link-white:hover {
  color: var(--primary);
}

.rich-text-style-no-top-title h2, .rich-text-style-no-top-title h3, .rich-text-style-no-top-title h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style-no-top-title h5, .rich-text-style-no-top-title h6 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.rich-text-style-no-top-title ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style-no-top-title img {
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style-no-top-title p {
  margin-bottom: 15px;
}

.text-breaking-normal {
  white-space: normal;
}

.margin-left-medium {
  margin-left: .6rem;
}

.dropdown-toggle {
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5625rem;
  display: flex;
}

.dropdown-toggle.w--open {
  margin-bottom: 0;
}

.plus-icon, .minus-icon {
  font-family: "Fa solid 900", sans-serif;
  line-height: 1.625rem;
}

.faq-dropdown-wrapper {
  background-color: #ffffff4d;
  border: 1px solid #70ee9180;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.faq-dropdown-list {
  background-color: #d8aeae;
  position: relative;
}

.faq-dropdown-list.w--open {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.faq-description {
  padding-bottom: 1.5625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.margin-bottom-xxsmall {
  margin-bottom: 5px;
}

.margin-bottom-xxsmall.font-weight-medium {
  font-weight: 500;
}

.margin-bottom-xxsmall.paragraph-xsmall {
  color: var(--midnight-gray);
}

.customer-bg-image-wrapper {
  z-index: 3;
  opacity: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.customer-background-image {
  opacity: .35;
  object-fit: cover;
  object-position: 80% 50%;
  width: 100%;
  height: 100%;
}

.flex-vertical-space-between {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.flex-vertical-space-between.full-height {
  height: 100%;
}

.testimonial-quotes-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: -16px;
}

.testimonial-quotes-icon.quotes-align-center {
  top: -.75rem;
}

.columns-content-wrapper {
  width: 100%;
  display: flex;
}

.columns-content-wrapper.desktop-wrap-medium-gap {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.8rem;
  flex-wrap: wrap;
}

.author-image-small {
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
}

.review-item-wrapper {
  background-color: var(--primary-light);
  border: 1px solid #70ee9180;
  border-radius: .5rem;
  flex-direction: column;
  justify-content: space-between;
  width: 31.9%;
  padding: 2.5rem 1.875rem 1.875rem 1.8rem;
  display: flex;
  position: relative;
}

.author-image-small-holder {
  border: 2px solid var(--primary);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.9rem;
  height: 3.9rem;
  display: flex;
}

.text-info-medium {
  width: 75%;
}

.authour-wrapper {
  grid-column-gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  display: flex;
}

.link-dark {
  color: var(--primary-dark);
}

.link-dark:hover {
  color: var(--primary);
}

.cart-header {
  border-bottom-color: #10182833;
  padding: 20px;
}

.cart-footer {
  border-top-color: #10182833;
  padding: 20px;
}

.checkout-form {
  background-color: #0000;
  min-height: auto;
  padding: 160px 15px 60px;
}

.block-header {
  border-color: #70ee9180;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.block-content {
  border-bottom-color: #70ee9180;
  border-left-color: #70ee9180;
  border-right-color: #70ee9180;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.billing-address-toggle {
  align-items: center;
}

.checkbox {
  margin-top: 0;
}

.checkbox-label {
  margin-bottom: 0;
}

.input-field {
  background-color: #0000;
  border-color: #70ee9180;
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.input-field:focus, .input-field.-wfp-focus {
  border-color: var(--primary);
}

.field-label {
  margin-bottom: 10px;
  font-weight: 500;
}

.shop-tab-link {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  background-color: #0000;
  border-radius: 60px;
  padding: 4px 20px;
  transition-property: all;
  display: flex;
}

.shop-tab-link:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.shop-tab-link.w--current {
  background-color: var(--primary);
}

.add-to-cart-wrapper {
  background-color: var(--primary);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 3.1px;
}

.default-state {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.add-to-cart {
  color: #fff;
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  transition: all .3s;
}

.add-to-cart:hover {
  color: var(--primary-dark);
}

.out-of-stock-state {
  color: #fff;
  background-color: #0000;
  margin-top: 0;
  padding: 15px;
}

.shop-error-state {
  color: #fff;
  background-color: #0000;
  margin-top: 0;
  padding: 0;
}

.flex-vertical-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.cart-quantity-small {
  border-color: transparent transparent var(--primary-dark);
  background-color: #0000;
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  border-radius: 0;
  margin-bottom: 0;
}

.cart-quantity-small:focus {
  border-bottom-color: var(--primary);
}

.cart-image {
  object-fit: cover;
  border-radius: 8px;
  width: 70px;
  min-height: 85px;
}

.remove-button {
  font-size: 18px;
}

.error-state {
  color: var(--primary-dark);
  text-align: center;
  background-color: #0000;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
}

.cart-item {
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}

.cart-info-wrapper {
  min-width: 60%;
  margin-left: 0;
  margin-right: 0;
}

.cart-list {
  grid-row-gap: 15px;
  flex-direction: column;
  padding: 20px;
  display: flex;
}

.product-details-default-state {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.cart-quantity-right {
  border-top-style: none;
  border-right-style: none;
  border-bottom-color: var(--primary-dark);
  background-color: #0000;
  border-left-style: none;
  border-radius: 0;
  margin-bottom: 0;
}

.cart-quantity-right:focus {
  border-style: none none solid;
  border-color: #db6526 #db6526 var(--primary);
}

.cart-quantity-right:focus-visible, .cart-quantity-right[data-wf-focus-visible] {
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
}

.cart-quantity-right::placeholder {
  color: var(--primary-dark);
}

.product-out-of-stock-state, .product-error-state {
  background-color: #0000;
  padding: 0;
}

.product-rich-text-style h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.product-rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 26px;
}

.product-rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 24px;
}

.product-rich-text-style h5 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 22px;
}

.product-rich-text-style h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
}

.product-rich-text-style li {
  font-size: 18px;
}

.product-rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-rich-text-style img {
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-rich-text-style p {
  margin-bottom: 15px;
  font-size: 18px;
}

.product-title-medium {
  font-size: 30px;
}

.shipping-method-list {
  border-left-color: #70ee9180;
  border-right-color: #70ee9180;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.shipping-method {
  border-bottom-color: #70ee9180;
}

.shipping-method:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.order-item {
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

.line-item {
  margin-bottom: 10px;
}

.no-bottom-margin {
  margin-bottom: 0;
}

.address-wrapper {
  margin-bottom: 5px;
}

.row-large {
  grid-row-gap: 20px;
}

._404-title {
  margin-bottom: 20px;
  font-size: 160px;
}

.search-empty-state {
  margin-bottom: 40px;
}

.checkout-error-state {
  background-color: #0000;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
}

.promotion-icon {
  margin-right: 8px;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  color: #ffffffb3;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-left {
  z-index: 1000;
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

.close-image {
  width: 12px;
  height: 12px;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  color: #000;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-text-block {
  font-size: 14px;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  color: #000;
}

.promotion-labels-wrapper {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: none;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.image {
  max-width: 120%;
}

.hero-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #f5f7fa;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.background-color-staffless-green {
  background-color: var(--staffless-green);
  color: #fff;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.background-color-staffless-green.is-tag {
  background-color: #dd23bb;
}

.text-size-tiny {
  font-size: .75rem;
}

.heading-style-h2 {
  font-size: 3.125rem;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #eee;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.padding-custom3 {
  padding: 3.5rem;
}

.heading-style-h6 {
  font-size: 1.375rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.background-color-primary-light {
  background-color: var(--primary-light);
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.margin-xsmall {
  margin: .5rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-weight-xbold {
  font-weight: 800;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-small {
  padding: 1rem;
}

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.nav_menu {
  color: var(--midnight-gray);
}

.pointer-events-auto {
  pointer-events: auto;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.text-weight-medium {
  font-weight: 500;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.text-style-muted {
  opacity: .6;
}

.margin-custom1 {
  margin: 1.5rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.text-size-regular {
  font-size: 1.125rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.form_component {
  margin-bottom: 0;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.text-align-left {
  text-align: left;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-small {
  margin: 1rem;
}

.text-align-center-2 {
  text-align: center;
}

.hide {
  display: none;
}

.heading-style-h1 {
  font-size: 3.75rem;
}

.overflow-scroll {
  overflow: scroll;
}

.margin-tiny {
  margin: .125rem;
}

.padding-xhuge {
  padding: 8rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-height-small {
  height: 1rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-color-primary {
  color: var(--midnight-gray);
}

.padding-large {
  padding: 3rem;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-align-right {
  text-align: right;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-custom1 {
  padding: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.padding-0 {
  padding: 0;
}

.overflow-auto {
  overflow: auto;
}

.text-style-italic {
  font-style: italic;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.padding-custom2 {
  padding: 2.5rem;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-color-primary-dark {
  color: var(--primary-dark);
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.heading-style-h4 {
  font-size: 1.75rem;
}

.margin-large {
  margin: 3rem;
}

.margin-0 {
  margin: 0;
}

.icon-height-large {
  height: 3rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.heading-style-h3 {
  font-size: 2rem;
  line-height: 1.2;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.button {
  background-color: var(--staffless-green);
  color: var(--primary-dark);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.25rem;
  font-weight: 600;
}

.button:hover {
  color: var(--white);
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.margin-medium {
  margin: 2rem;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-custom2 {
  margin: 2.5rem;
}

.text-weight-bold {
  font-weight: 700;
}

.padding-medium {
  padding: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-size-small {
  font-size: 1rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.text-size-large {
  font-size: 1.5rem;
}

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.padding-xsmall {
  padding: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.625rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.text-style-nowrap {
  white-space: nowrap;
}

.margin-huge {
  margin: 6rem;
}

.page-wrapper {
  overflow: clip;
}

.padding-xxsmall {
  padding: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-huge {
  padding: 6rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: #222;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-style-link {
  color: #2d62ff;
  text-decoration: underline;
}

.padding-tiny {
  padding: .125rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.background-color-tertiary {
  background-color: var(--white);
}

.text-size-medium {
  font-size: 1.25rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer-large {
  padding-top: 3rem;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_logo-link {
  padding-left: 0;
}

.margin-custom3 {
  margin: 3.5rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.icon-height-medium {
  height: 2rem;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.nav_logo {
  height: 3.45rem;
}

.nav_menu_flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav_dropdown {
  color: var(--midnight-gray);
}

.nav_dropdown-toggle {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--midnight-gray);
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-weight: 500;
  display: flex;
}

.nav_dropdown-list {
  overflow: hidden;
}

.nav_dropdown-list.w--open {
  background-color: var(--white);
  border-radius: .7rem;
}

.nav_link {
  color: var(--midnight-gray);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-weight: 500;
}

.nav_link:hover, .nav_link.w--current {
  color: var(--staffless-green);
}

.nav_link.is-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--midnight-gray);
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.nav_link.is-link:hover {
  color: var(--staffless-green);
}

.nav_link.is-link.w--current {
  color: var(--staffless-green);
  font-weight: 500;
}

.icon {
  margin-right: 0;
  position: static;
}

.nav_deopdown_link {
  color: var(--midnight-gray);
  padding: .75rem 1.325rem;
}

.nav_deopdown_link:hover {
  color: var(--staffless-green);
}

.nav_dropdown_link-wrap {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1.5px solid var(--primary);
  background-color: var(--white);
  border-radius: .75rem;
  flex-flow: column;
  width: 100%;
  min-width: 17.7rem;
  max-width: 18rem;
  padding: 1rem 0;
  display: flex;
}

.text-color-midnight-grey {
  color: var(--midnight-gray);
}

.section_home-solution.hide {
  display: none;
}

.home-solution_component {
  text-align: center;
}

.home-collection_item {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-collection_flex {
  grid-column-gap: .75rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.home-collection_icon-background {
  background-color: var(--staffless-green);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  display: flex;
}

.home-collection_icon {
  border-radius: 100%;
  width: 4.25rem;
  height: 4.25rem;
}

.section-2 {
  padding-top: 8rem;
}

.section-vanliga_header {
  background-color: var(--primary-dark);
  padding-top: 8rem;
}

.vanliga_faq-top {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-totally_header {
  padding-top: 13rem;
}

.section-totally_header.is-padel {
  background-image: linear-gradient(#0009, #0009), url('../images/pedal_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.section-totally_header.is-helt {
  background-image: linear-gradient(#0000006b, #0000006b), url('../images/helt_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-totally_header.is-delvis {
  background-image: linear-gradient(#0009, #0009), url('../images/Delvis-obemannad-butik-n_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.section-totally_header.is-camping {
  background-image: linear-gradient(#00000080, #00000080), url('../images/campingplatser_1.avif');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-totally_header.is-gasthamnar {
  background-image: linear-gradient(#0009, #0009), url('../images/Gasthamn-3_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-totally_header.is-showroom {
  background-image: linear-gradient(#00000080, #00000080), url('../images/visningshus_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-totally_header.is-andra {
  background-image: linear-gradient(#00000080, #00000080), url('../images/andra-smarta-losningar-1-medel.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section_v-ra-header {
  background-color: var(--primary-dark);
  padding-top: 8rem;
}

.v-ra-header_component {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-3 {
  background-image: linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/businessman-with-digital-tablet_1businessman-with-digital-tablet.webp');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, auto, auto;
  padding-top: 13rem;
}

.section_features-header {
  background-image: linear-gradient(#0000, #0009), linear-gradient(#0006, #0006), url('../images/Funktioner_1.avif');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  padding-top: 10rem;
}

.features-header_component {
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section-4 {
  background-color: var(--primary-dark);
}

.section-5 {
  background-image: url('../images/banner-lines.svg'), linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/business-meeting-image_1business-meeting-image.webp');
  background-position: 0 0, 0 0, 0 0, 50%;
  background-size: auto, auto, auto, cover;
  padding-top: 15rem;
}

.section-6 {
  background-color: var(--primary-dark);
  position: relative;
}

.section-7 {
  background-image: url('../images/section-bottom-blur.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 15rem;
}

.g-sthamnar-component, .helt-component, .delvis_component, .padelhallar_component, .campingplatser_component, .showroom_component, .andra_component {
  width: 50%;
}

.features-component_grid {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-content: center;
  justify-items: stretch;
  display: grid;
}

.features-component_item {
  background-color: #10182805;
  border: 1px solid #10182833;
  border-radius: .25em;
  padding: 2rem;
}

.features-component_item:hover {
  background-color: var(--staffless-green);
}

.hide-desktop {
  display: none;
}

.home-header_component {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.home-header_img {
  width: 100%;
  max-width: none;
}

.solution-header_componet {
  grid-column-gap: 2.5rem;
  grid-row-gap: 3.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.solution-header_img {
  z-index: 3;
  aspect-ratio: 3 / 1.75;
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.solutions-problem_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-2 {
  object-fit: cover;
  border-radius: .5rem;
  width: auto;
  max-width: none;
  height: auto;
  max-height: 10rem;
}

.text-align-center {
  text-align: center;
}

.solution-problem_card {
  background-color: var(--light-green);
  text-align: left;
  border-radius: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding: 2rem;
  display: flex;
}

.section_solution-process {
  background-color: var(--primary-dark);
  color: var(--light-gray);
}

.solution-process_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.solution-process_card {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 16rem;
  display: flex;
}

.solution-process_number {
  margin-bottom: -2rem;
  font-size: 2.75rem;
  font-weight: 700;
  position: relative;
}

.solution-benefits_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.solution-benefits_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.solution-benefits_img {
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  max-height: none;
}

.solution-benefits_content {
  flex-flow: column;
  justify-content: space-around;
  width: 100%;
  max-width: none;
  display: flex;
}

.div-block {
  border-left: 1px solid var(--staffless-green);
  background-image: linear-gradient(90deg, #9bf3b259, #fff);
  flex-flow: column;
  justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5rem;
  display: flex;
}

.section_solution-review {
  display: none;
}

.solution-review_component {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.solution-review_quotation01 {
  align-self: flex-start;
  width: 100%;
  max-width: 5rem;
  margin-top: -5rem;
}

.solution-review_quotation02 {
  align-self: flex-end;
  width: 100%;
  max-width: 5rem;
}

.solution-review_portrait {
  object-fit: cover;
  border-radius: 50%;
  width: 7rem;
  max-width: none;
  height: 7rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.solution-header_img-wrapper {
  position: relative;
}

.solution-header_img-wrapper.large-size-negative {
  width: 100%;
}

.div-block-2 {
  margin-left: auto;
  margin-right: auto;
}

.icon-height-xlarge {
  height: 4rem;
}

.div-block-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 70px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.shop-product-section {
    padding-top: 175px;
    padding-bottom: 115px;
  }

  .section.light-gray-bg-top-space-small {
    padding-top: 100px;
  }

  .section.banner-section-large {
    padding-bottom: 330px;
  }

  .section.dark-blue-bg-no-bottom-space {
    padding-bottom: 50px;
  }

  .section.banner-team {
    padding-top: 170px;
  }

  .section.banner-pricing {
    padding-top: 190px;
  }

  .section.banner-resources {
    padding-top: 200px;
    padding-bottom: 130px;
  }

  .section.banner-shop {
    padding-top: 190px;
  }

  .section.banner-category-shop {
    padding-top: 170px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-dropdown-toggle {
    padding-right: 50px;
  }

  .nav-dropdown-icon {
    right: 5px;
  }

  .pages-banner {
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .blog-grid-collection-list {
    grid-column-gap: 60px;
  }

  .blog-grid-item {
    width: 46.5%;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .workflow-video-wrapper {
    max-height: none;
  }

  .workflow-wrapper {
    grid-column-gap: 70px;
  }

  .footer-wrapper {
    margin-bottom: 80px;
  }

  .search-section {
    padding-top: 175px;
    padding-bottom: 90px;
  }

  .block-quote-wrapper {
    margin-top: 105px;
    margin-bottom: 145px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .shop-details-block {
    margin-top: 130px;
  }

  .display-flex-horizontal.large-gap-center, .display-flex-horizontal.medium-gap-center {
    grid-column-gap: 80px;
  }

  .banner-image-wrapper {
    min-height: 650px;
  }

  .banner-gray-background {
    min-height: 595px;
  }

  .banner-card-bottom {
    height: auto;
    left: -25px;
  }

  .banner-card-top {
    height: auto;
    right: -45px;
  }

  .home-partner_component {
    margin-top: -70px;
    padding-bottom: 30px;
    padding-right: 35px;
  }

  .home-partner_logo {
    height: 2.5rem;
  }

  .home-partner_logo-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .content-large-wrapper {
    margin-top: 4rem;
  }

  .content-wrapper-info {
    padding: 30px 100px 30px 90px;
  }

  .content-large-image-wrapper {
    left: -60px;
  }

  .content-large-circle {
    z-index: -1;
    width: 300px;
    height: 300px;
    display: block;
    position: relative;
    left: -40px;
  }

  .text-width-large.font-weight-semi-bold, .text-width-large.font-weight-semi-bold-white {
    width: 80%;
  }

  .figure-item-top-left {
    left: 20px;
  }

  .figure-item-full-bottom {
    bottom: -40px;
  }

  .top-section-padding-large {
    padding-top: 160px;
  }

  .card-item {
    padding-left: 60px;
    padding-right: 60px;
  }

  .pricing-card-wrapper {
    padding: 50px;
  }

  .cta-line-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .background-image-large {
    width: 520px;
  }

  .banner-text-info {
    max-width: 770px;
  }

  .card-wrapper-center {
    margin-top: 100px;
  }

  .card-figure-image-left {
    width: 250px;
    height: 250px;
  }

  .card-figure-image-left.medium-size {
    display: block;
    top: -60px;
    left: -45px;
  }

  .card-figure-image-right {
    width: 200px;
    height: 200px;
    top: -70px;
    right: -70px;
  }

  .card-figure-image-right.medium-size {
    display: block;
    right: -25px;
  }

  .container-bottom {
    bottom: 130px;
  }

  .large-image {
    height: 500px;
  }

  ._1-3-column-wrapper-border {
    width: 31.6%;
  }

  .banner-figure-item {
    width: 180px;
    height: 180px;
    top: 10px;
    right: -15px;
  }

  .numbers-medium-block {
    grid-column-gap: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .number-title {
    font-size: 70px;
  }

  .description-medium-width {
    width: 53%;
  }

  .team-item-wrapper {
    width: 23%;
  }

  .description-xmedium-width {
    width: 52%;
  }

  .pages-banner-center {
    max-width: 720px;
  }

  .desktop-hidden {
    display: none;
  }

  .checkout-form {
    padding-top: 180px;
    padding-bottom: 110px;
  }

  .solution-header_componet {
    grid-row-gap: 5rem;
  }

  .solution-process_component {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 80px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .footer-top-wrapper {
    margin-bottom: 80px;
  }

  .display-flex-horizontal.xlarge-gap-center, .display-flex-horizontal.reverse-xlarge-gap-center, .display-flex-horizontal.xlarge-gap-start {
    grid-column-gap: 100px;
  }

  .banner-text-wrapper {
    width: 60%;
  }

  .banner-image-wrapper {
    width: 45%;
    min-height: 620px;
  }

  .content-large-circle {
    width: 350px;
    height: 350px;
    left: -70px;
  }

  .text-width-large.font-weight-semi-bold, .text-width-large.font-weight-semi-bold-white {
    width: 85%;
  }

  .figure-item-top-left {
    left: 10px;
  }

  .card-figure-image-left.medium-size {
    top: -70px;
    left: -80px;
  }

  .card-figure-image-right {
    top: -80px;
    right: -80px;
  }

  .card-figure-image-right.medium-size {
    right: -45px;
  }

  .text-info-wrapper-left {
    max-width: 705px;
  }

  .banner-figure-item {
    top: 25px;
    right: -30px;
  }

  .numbers-medium-block {
    grid-column-gap: 150px;
  }

  .numbers-wrapper-small {
    grid-column-gap: 80px;
  }

  .pages-banner-center {
    max-width: 770px;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .section.shop-product-section {
    padding-bottom: 135px;
  }

  .section.light-gray-bg-top-space-small {
    padding-top: 120px;
  }

  .section.dark-blue-bg-fixed {
    min-height: 750px;
  }

  .section.banner-section-large {
    padding-top: 190px;
  }

  .section.dark-blue-bg-no-bottom-space {
    padding-bottom: 70px;
  }

  .section.banner-team {
    padding-top: 190px;
  }

  .section.banner-pricing {
    padding-top: 210px;
  }

  .section.banner-resources {
    padding-top: 220px;
    padding-bottom: 150px;
  }

  .section.banner-shop {
    padding-top: 210px;
  }

  .section.banner-category-shop {
    padding-top: 190px;
  }

  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer-wrapper {
    margin-bottom: 95px;
  }

  .search-section {
    padding-bottom: 110px;
  }

  .block-quote-wrapper {
    margin-top: 125px;
    margin-bottom: 150px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .shop-details-block {
    margin-top: 150px;
  }

  .display-flex-horizontal.xlarge-gap-center, .display-flex-horizontal.reverse-xlarge-gap-center {
    min-height: 648px;
  }

  .banner-image-wrapper {
    min-height: 650px;
  }

  .home-partner_component {
    grid-column-gap: 2rem;
  }

  .logo-description {
    margin-right: 30px;
  }

  .home-partner_logo-wrap {
    grid-column-gap: 40px;
  }

  .content-large-wrapper-left {
    z-index: 2;
  }

  .content-wrapper-info {
    grid-column-gap: 65px;
    padding-left: 120px;
  }

  .content-large-image-wrapper {
    z-index: 3;
    width: 36%;
    position: absolute;
    left: -75px;
  }

  .content-large-circle {
    width: 400px;
    height: 400px;
  }

  .check-list-wrapper-large {
    grid-column-gap: 50px;
  }

  .top-section-padding-large {
    padding-top: 180px;
  }

  .background-image-large {
    width: 840px;
    min-height: 600px;
    top: 40px;
  }

  .card-wrapper-center {
    margin-top: 130px;
  }

  .card-figure-image-left {
    width: 270px;
    height: 270px;
  }

  .card-figure-image-left.medium-size {
    width: 225px;
    top: -80px;
    left: -97px;
  }

  .card-figure-image-right {
    width: 220px;
    height: 220px;
    top: -110px;
    right: -110px;
  }

  .card-figure-image-right.medium-size {
    top: -65px;
    right: -65px;
  }

  .large-image {
    height: 500px;
  }

  .numbers-large-block {
    margin-left: auto;
    margin-right: auto;
  }

  .numbers-medium-block {
    grid-column-gap: 155px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .numbers-wrapper-small {
    grid-column-gap: 85px;
  }

  .card-item-large {
    padding-right: 135px;
  }

  .description-xmedium-width.dark-text-color {
    width: 54%;
  }

  .checkout-form {
    padding-bottom: 130px;
  }

  .solution-benefits_component {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 44px;
  }

  blockquote {
    font-size: 30px;
  }

  .section.shop-product-section {
    padding-top: 135px;
  }

  .section.light-gray-bg-top-space-small {
    padding-top: 70px;
  }

  .section.full-height-image-bg {
    background-image: linear-gradient(#0000, #0009), linear-gradient(#0003, #0003), url('../images/banner-image-full-height_1banner-image-full-height.webp');
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    min-height: auto;
    padding-top: 130px;
  }

  .section.banner-section-large {
    padding-top: 130px;
  }

  .section.banner-team {
    min-height: auto;
    padding-top: 120px;
  }

  .section.banner-pricing {
    min-height: auto;
    padding-top: 130px;
  }

  .section.banner-resources {
    padding-top: 130px;
  }

  .section.banner-shop {
    min-height: auto;
    padding-top: 130px;
  }

  .section.banner-category-shop {
    min-height: auto;
    padding-top: 120px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
    right: -10px;
  }

  .top-style-spacing-desktop {
    top: 4%;
    right: -10px;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-container {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .headings-typography-wrapper, .style-guide-body-wrapper {
    width: 100%;
  }

  .primary-button {
    display: block;
  }

  .primary-button.tablet-hidden {
    display: none;
  }

  .top-style-spacing-mobile {
    top: 3%;
    right: -20px;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
    right: -10px;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
    right: -20px;
  }

  .nav_component {
    padding-top: 15px;
    padding-bottom: 15px;
    position: fixed;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 6px 0;
    display: flex;
  }

  .nav-link.text-color-white {
    color: var(--midnight-gray);
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    margin-right: 0;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-icon.text-color-white {
    color: var(--midnight-gray);
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

  .nav-item-title.text-color-white {
    color: var(--midnight-gray);
  }

  .pages-banner {
    min-height: 300px;
    padding-top: 90px;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .blog-grid-collection-list {
    column-count: 2;
  }

  .footer-bottom-wrapper {
    justify-content: center;
  }

  .footer-rights {
    width: auto;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .workflow-profile-photo {
    width: 70px;
    height: 70px;
  }

  .workflow-profile-photo-wrapper {
    width: 72px;
    height: 72px;
  }

  .accordion-wrapper-large.service-details {
    margin-top: 35px;
  }

  .accordion-column-wrapper {
    width: 100%;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .social-icons-wrapper {
    margin-top: 10px;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .footer-links-wrapper {
    width: 33%;
  }

  .search-shop-con {
    flex: 1;
    justify-content: flex-end;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .search-result-wrapper {
    margin-top: 30px;
  }

  .search-section {
    padding-top: 130px;
  }

  .customers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-details-content-wrapper {
    width: 60%;
    margin-right: 20px;
  }

  .service-details-sidebar-wrapper {
    width: 40%;
    padding-left: 30px;
    padding-right: 30px;
    top: 20px;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: nowrap;
  }

  .portfolio-grid-collection-list {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-grid-image {
    height: 320px;
  }

  .portfolio-grid-collection-item {
    width: 100%;
  }

  .portfolio-grid-title-wrapper {
    inset: auto 0% 0%;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .team-image {
    object-position: 50% 15%;
    height: 370px;
  }

  .portfolio-grid-image-link {
    height: 320px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 67px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 1.5px;
  }

  .brand-tablet {
    display: block;
  }

  .shop-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .shop-collection-list.product-page {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shop-list-image.tablet-medium-size {
    height: 330px;
  }

  .shop-details-wrapper {
    grid-column-gap: 30px;
  }

  .shop-details-slider {
    height: 420px;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .cart-button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cart-quantity {
    top: -9px;
  }

  .tablet-button-wrapper {
    margin-top: 20px;
    display: block;
  }

  .footer-bottom-wrapper-left {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .display-flex-horizontal.large-gap-center {
    grid-row-gap: 50px;
    flex-wrap: wrap-reverse;
  }

  .display-flex-horizontal.space-between-end {
    justify-content: space-between;
    align-items: center;
  }

  .display-flex-horizontal.medium-gap-center {
    grid-row-gap: 50px;
    flex-wrap: wrap-reverse;
  }

  .display-flex-horizontal.xlarge-gap-center {
    flex-wrap: wrap;
  }

  .display-flex-horizontal.desktop-no-gap-tablet-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .display-flex-horizontal.reverse-xlarge-gap-center {
    flex-wrap: wrap;
  }

  .display-flex-horizontal.xlarge-gap-start {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .banner-text-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .description.description-medium-width {
    width: 55%;
    max-width: none;
  }

  .description.description-xmedium-width {
    text-align: center;
  }

  .banner-form {
    width: 65%;
    max-width: none;
  }

  .banner-image-wrapper {
    margin-right: auto;
  }

  .banner-gray-background {
    min-height: 445px;
  }

  .banner-card-bottom {
    height: 245px;
    bottom: 40px;
    left: 60px;
  }

  .banner-card-top {
    border-radius: .625rem;
  }

  .home-partner_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
  }

  .logo-description {
    max-width: 230px;
  }

  .home-partner_logo {
    height: 2.5rem;
  }

  .title-width-medium {
    width: 65%;
  }

  .content-large-wrapper {
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .content-large-wrapper-left {
    width: 100%;
  }

  .content-wrapper-info {
    grid-column-gap: 45px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-wrapper-circle {
    border-radius: 100%;
    width: 62px;
    height: 62px;
    padding: 15px;
  }

  .content-wrapper-number {
    font-size: 32px;
  }

  .content-large-image-wrapper {
    width: 100%;
    min-height: 400px;
    margin-bottom: 30px;
    position: static;
  }

  .content-large-circle {
    width: 230px;
    height: 230px;
    display: block;
    position: relative;
    left: -40px;
  }

  .image-absolute {
    object-fit: contain;
    height: 400px;
    min-height: auto;
  }

  .column-wrapper {
    width: 100%;
  }

  .column-wrapper.tablet-flex-vertical {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .column-image-bg {
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .column-image-contain {
    height: 25rem;
  }

  .figure-item-top, .figure-item-bottom {
    display: none;
  }

  .content-medium-image-wrapper {
    width: 45%;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .content-medium-image-wrapper.no-min-height-left {
    width: 100%;
  }

  .content-medium-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 70px;
    display: flex;
  }

  .content-medium-text-wrapper.tablet-no-top-space {
    width: 100%;
    margin-top: 0;
  }

  .content-medium-image {
    height: 375px;
  }

  .figure-item-top-left {
    width: 100px;
    height: 100px;
    top: 10px;
  }

  .figure-item-full-bottom {
    height: 95px;
  }

  .top-section-padding-large {
    padding-top: 80px;
  }

  .card-item {
    border-right-style: none;
    width: 47.2%;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-text {
    font-size: 30px;
  }

  .pricing-wrapper-large {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card-wrapper {
    width: 47.9%;
  }

  .price-title {
    font-size: 44px;
  }

  .cta-wrapper {
    max-width: 425px;
  }

  .background-image-large {
    width: 300px;
  }

  .card-figure-image-left {
    display: none;
  }

  .card-figure-image-right {
    top: -50px;
    right: -13px;
  }

  .container-bottom {
    margin-left: 15px;
    margin-right: 15px;
    position: static;
  }

  .large-image {
    height: 350px;
  }

  .section-title-wrapper-medium {
    max-width: 560px;
  }

  ._1-3-column-wrapper-border {
    width: 47.9%;
  }

  .banner-figure-item {
    width: 120px;
    height: 120px;
    right: 80px;
  }

  .numbers-medium-block {
    grid-row-gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .medium-title-fixed {
    text-align: center;
    width: 80%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .numbers-wrapper-small {
    width: 100%;
  }

  .numbers-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .tablet-text-align-center {
    text-align: center;
  }

  .description-medium-width {
    width: 48%;
  }

  .title-small-width {
    width: 40%;
  }

  .team-wrapper-large {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-image-holder {
    height: 370px;
  }

  .team-item-wrapper {
    width: 100%;
  }

  .card-item-large {
    padding: 30px 50px 60px 30px;
  }

  .card-item-large.extra-light-green-negative {
    padding-bottom: 30px;
  }

  .description-xmedium-width {
    width: 52%;
  }

  .columns-content-wrapper {
    flex-wrap: wrap;
  }

  .columns-content-wrapper.desktop-wrap-medium-gap {
    grid-row-gap: 60px;
  }

  .review-item-wrapper {
    width: 100%;
  }

  .text-info-medium {
    width: 90%;
  }

  .checkout-form {
    padding-top: 135px;
  }

  .row {
    flex-wrap: wrap;
  }

  .column {
    min-width: 100%;
  }

  .add-to-cart:hover {
    opacity: 1;
  }

  .address-wrapper {
    flex-wrap: wrap;
  }

  ._404-title {
    font-size: 130px;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .promotion-label-holder, .promotion-labels-wrapper {
    display: none;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .nav_menu {
    background-color: var(--primary-light);
    height: 90svh;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col, .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav_menu_flex {
    border: 1px solid var(--gray);
    background-color: var(--primary-light);
    border-radius: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 88svh;
    padding: 1rem 1rem 2rem;
    overflow: scroll;
    box-shadow: .5rem .5rem 1.5rem .35rem #0000001a;
  }

  .nav_dropdown {
    margin-left: 0;
    margin-right: auto;
  }

  .nav_dropdown-toggle {
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }

  .nav_dropdown-list {
    background-color: #ddd0;
    display: block;
    position: static;
  }

  .nav_link {
    margin-left: 0;
    margin-right: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
  }

  .nav_link.is-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .nav_deopdown_link {
    padding-left: 1.75rem;
  }

  .nav_dropdown_link-wrap {
    background-color: #fff0;
    border-style: none;
    border-radius: 0;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .g-sthamnar-component, .helt-component, .delvis_component, .padelhallar_component, .campingplatser_component, .showroom_component, .andra_component {
    width: 100%;
  }

  .features-component_grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav_hamburger {
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: .5rem;
    padding: 1rem;
  }

  .nav_hamburger.w--open {
    background-color: var(--primary);
    color: var(--primary-dark);
  }

  .hide-desktop.show-tablet {
    display: block;
  }

  .home-header_component {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .home-header_img {
    width: 80%;
  }

  .solution-header_componet {
    flex-flow: column;
    display: flex;
  }

  .solutions-problem_component {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .solution-problem_card {
    flex-flow: column;
    max-width: 47%;
  }

  .solution-benefits_component {
    grid-template-columns: 1fr;
  }

  .solution-review_component {
    grid-column-gap: 0%;
    grid-row-gap: 0%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1.25rem;
  }

  blockquote {
    font-size: 24px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.shop-product-section {
    padding-top: 115px;
  }

  .section.light-gray-bg-top-space-small {
    padding-top: 50px;
  }

  .section.dark-blue-bg-fixed {
    min-height: auto;
  }

  .section.full-height-image-bg, .section.banner-section-large, .section.banner-team, .section.banner-pricing {
    padding-top: 110px;
  }

  .section.banner-resources {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .section.banner-shop, .section.banner-category-shop {
    padding-top: 110px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 30px;
  }

  .grid-system {
    border-left: 1px solid #0000001a;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #0000001a;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #0000001a;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 40px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
    right: 0;
  }

  .top-style-spacing-desktop {
    top: 10%;
    right: 0;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-container {
    margin-top: 20px;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-body-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .primary-button.pagination {
    margin-top: 40px;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

  .top-style-spacing-mobile {
    top: 7%;
    right: 0;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
    right: 0;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
    right: 0;
  }

  .grid-header {
    width: 100%;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .pages-banner {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 65%;
  }

  .password-image {
    width: 130px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .blog-grid-collection-list {
    grid-row-gap: 40px;
    column-count: 1;
  }

  .blog-grid-image-link {
    width: 100%;
    margin-bottom: 40px;
  }

  .blog-grid-image {
    height: 280px;
  }

  .blog-grid-content-wrapper {
    width: 100%;
  }

  .blog-grid-post-wrapper {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .workflow-profile-wrapper {
    justify-content: center;
    margin-top: 20px;
  }

  .workflow-content-wrapper {
    text-align: center;
    width: 100%;
  }

  .workflow-video-wrapper {
    width: 100%;
  }

  .workflow-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .accordion-wrapper-large {
    flex-wrap: wrap;
  }

  .accordion-wrapper-large.service-details {
    margin-top: 25px;
  }

  .accordion-column-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .contacts-form-wrapper {
    width: 100%;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
    margin-bottom: 40px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .social-icon-circle {
    padding: 10px;
  }

  .footer-links-wrapper {
    width: 27%;
  }

  .search-section {
    padding-top: 110px;
    padding-bottom: 20px;
  }

  .customer-wrapper {
    height: 240px;
  }

  .block-quote-wrapper {
    margin-top: 35px;
    margin-bottom: 75px;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .headings-container {
    grid-row-gap: 30px;
  }

  .card-icon {
    font-size: 50px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .portfolio-grid-collection-list {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .portfolio-grid-collection-item {
    width: 100%;
  }

  .portfolio-grid-title-wrapper {
    padding-top: 25px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .shop-collection-list.product-page {
    grid-template-columns: 1fr;
  }

  .shop-tabs-menu {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }

  .main-shop-list-item {
    text-align: center;
  }

  .shop-list-image {
    height: 330px;
  }

  .shop-price-wrapper {
    justify-content: center;
  }

  .shop-details-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .shop-details-slider {
    height: 330px;
  }

  .shop-details-title {
    font-size: 36px;
  }

  .shop-details-block {
    margin-top: 60px;
  }

  .section-two-side-title-wrapper {
    grid-row-gap: 20px;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .footer-top-wrapper {
    margin-bottom: 40px;
  }

  .social-icon-white {
    width: 16px;
    height: 16px;
  }

  .display-flex-horizontal.large-gap-center {
    grid-row-gap: 0px;
  }

  .display-flex-horizontal.space-between-end {
    flex-wrap: wrap;
    justify-content: center;
  }

  .display-flex-horizontal.medium-gap-center {
    grid-row-gap: 40px;
  }

  .display-flex-horizontal.desktop-no-gap-tablet-wrap {
    grid-row-gap: 30px;
  }

  .description {
    margin-bottom: 40px;
  }

  .description.description-medium-width {
    width: 75%;
  }

  .banner-form {
    width: 70%;
  }

  .banner-image-wrapper {
    width: 55%;
    min-height: 390px;
  }

  .banner-gray-background {
    background-size: contain;
    min-height: 340px;
  }

  .banner-card-bottom {
    height: auto;
    bottom: 60px;
    left: -20px;
  }

  .banner-card-top {
    height: auto;
    top: 81px;
    right: -60px;
    box-shadow: 3px -15px 25px #0000001a;
  }

  .home-partner_component {
    grid-row-gap: 25px;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .logo-description {
    text-align: center;
    width: 80%;
    max-width: none;
  }

  .home-partner_logo {
    width: 28%;
  }

  .home-partner_logo-wrap {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .title-width-medium {
    width: 100%;
  }

  .title-width-medium.mobile-landscape-center {
    text-align: center;
  }

  .content-large-wrapper {
    margin-top: 30px;
  }

  .content-wrapper-info {
    grid-column-gap: 30px;
  }

  .content-wrapper-circle {
    width: 52px;
    height: 52px;
    padding: 10px;
  }

  .content-wrapper-number {
    font-size: 26px;
  }

  .content-large-image-wrapper {
    min-height: 300px;
  }

  .content-large-circle {
    width: 180px;
    height: 180px;
  }

  .image-absolute {
    height: 300px;
  }

  .column-image-bg {
    min-height: 300px;
  }

  .column-image-contain {
    height: 300px;
  }

  .content-medium-image-wrapper {
    width: 52%;
  }

  .content-medium-text-wrapper {
    margin-top: 60px;
  }

  .check-list-wrapper-large, .check-list-wrapper.large-size {
    margin-bottom: 40px;
  }

  .figure-item-top-left {
    top: 10px;
    left: -15px;
  }

  .top-section-padding-large {
    padding-top: 60px;
  }

  .card-item {
    border-bottom: 1px solid #10182833;
    width: 100%;
    padding-bottom: 30px;
  }

  .card-item.no-right-padding-border {
    border-bottom-style: none;
    padding-bottom: 0;
  }

  .testimonials-icon {
    width: 35px;
    height: 20px;
  }

  .testimonials-text {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .line-divider {
    margin-bottom: 40px;
  }

  .author-wrapper {
    width: 55%;
  }

  .pricing-card-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-price-holder {
    margin-bottom: 40px;
  }

  .price-title {
    font-size: 40px;
  }

  .cta-wrapper {
    width: 100%;
    max-width: none;
  }

  .background-image-large {
    display: none;
  }

  .banner-description-small {
    margin-bottom: 40px;
  }

  .card-wrapper-center.large-size-negative {
    margin-bottom: 95px;
  }

  .card-figure-image-right {
    width: 150px;
    height: 150px;
  }

  .card-figure-image-right.medium-size {
    right: -7px;
  }

  .large-image {
    height: 300px;
  }

  .section-title-wrapper-medium {
    margin-bottom: 40px;
  }

  ._1-3-column-wrapper-border {
    width: 100%;
  }

  .banner-figure-item {
    width: 100px;
    height: 100px;
    right: -20px;
  }

  .flex-horizontal-space-between.medium-gap-center {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .description-medium-width, .title-small-width {
    width: 100%;
  }

  .team-wrapper-large {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .card-item-large {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 50px;
    padding-right: 45px;
  }

  .card-item-large.light-green-negative, .card-item-large.extra-light-green-negative {
    margin-top: -20px;
  }

  .description-xmedium-width {
    width: 100%;
  }

  .dropdown-toggle {
    padding-bottom: 25px;
  }

  .testimonial-quotes-icon {
    font-size: 24px;
    top: -15px;
  }

  .testimonial-quotes-icon.quotes-align-center {
    top: -10px;
  }

  .columns-content-wrapper.desktop-wrap-medium-gap {
    grid-row-gap: 50px;
  }

  .authour-wrapper {
    margin-top: 25px;
  }

  .checkout-form {
    padding-top: 115px;
    padding-bottom: 40px;
  }

  .cart-info-wrapper {
    min-width: 55%;
  }

  .cart-list {
    grid-row-gap: 20px;
  }

  .product-rich-text-style h2, .product-title-medium {
    font-size: 28px;
  }

  .promotion-label-left {
    max-width: 300px;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h6 {
    font-size: 1.25rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .nav_menu {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .heading-style-h3, .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .text-size-large, .heading-style-h5 {
    font-size: 1.25rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .nav_container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .features-component_grid {
    grid-template-columns: 1fr;
  }

  .solution-header_componet {
    grid-row-gap: 2.5rem;
  }

  .solutions-problem_component {
    flex-flow: column;
  }

  .solution-problem_card {
    max-width: none;
  }

  .solution-benefits_grid {
    grid-template-columns: 1fr;
  }

  .solution-review_quotation01 {
    max-width: 2.5rem;
    margin-top: 0;
  }

  .solution-review_quotation02 {
    max-width: 2.5rem;
  }

  .solution-header_img-wrapper.large-size-negative {
    margin-bottom: 95px;
  }

  .div-block-3 {
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  ul {
    font-size: 18px;
  }

  .section.light-gray-bg-top-space-small {
    padding-top: 60px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #0000001a;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
    right: -20px;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
    right: -20px;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
    right: -20px;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
  }

  .coming-soon-heading {
    font-size: 48px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    text-align: center;
    flex-flow: column wrap;
  }

  .footer-rights {
    text-align: center;
  }

  .footer-copyright {
    justify-content: center;
    width: 100%;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .social-icons-wrapper {
    justify-content: center;
  }

  .footer-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-links-wrapper {
    align-items: center;
    width: 44%;
  }

  .customers-grid {
    grid-template-columns: 1fr;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .testimonials-slider {
    padding-bottom: 90px;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .portfolio-grid-image {
    height: 280px;
    transition: transform .4s;
  }

  .reviews-left-arrow {
    inset: auto auto 0% 0%;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .team-image {
    object-position: 50% 17%;
    width: 100%;
    top: 0;
  }

  .portfolio-grid-image-link {
    height: 280px;
  }

  .our-services-wrap, .home-9-team-item, .home-23-team-item {
    width: 100%;
  }

  .center-title {
    text-align: center;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .shop-collection-list {
    grid-template-columns: 1fr;
  }

  .shop-details-left-arrow {
    margin-left: 10px;
  }

  .shop-details-right-arrow {
    margin-right: 10px;
  }

  .section-two-side-title-wrapper {
    text-align: center;
  }

  .footer-rights-wrapper {
    justify-content: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cart-button {
    margin-right: 15px;
  }

  .footer-top-wrapper {
    flex-direction: column;
  }

  .footer-bottom-wrapper-left {
    text-align: center;
  }

  .display-flex-horizontal.large-gap-center {
    grid-row-gap: 20px;
  }

  .description.description-medium-width, .banner-form {
    width: 100%;
  }

  .banner-form-text-field, .banner-form-text-field::placeholder {
    font-size: 18px;
  }

  .banner-image-wrapper {
    justify-content: center;
    width: 75%;
    min-height: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-gray-background {
    min-height: 325px;
  }

  .banner-card-bottom {
    bottom: 50px;
    left: -23px;
  }

  .banner-card-top {
    top: 65px;
    right: -45px;
  }

  .logo-description {
    width: 100%;
  }

  .home-partner_logo {
    width: 40%;
  }

  .content-large-wrapper {
    margin-top: 40px;
  }

  .content-wrapper-info {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .content-wrapper-circle {
    padding: 10px;
  }

  .content-wrapper-text-info {
    width: 100%;
  }

  .content-large-image-wrapper {
    min-height: 250px;
    margin-bottom: 40px;
  }

  .content-large-circle {
    width: 130px;
    height: 130px;
  }

  .image-absolute {
    height: 250px;
  }

  .content-medium-image-wrapper {
    width: 80%;
    min-height: 300px;
    margin-top: -20px;
  }

  .content-medium-image-wrapper.no-min-height-left {
    margin-top: 0;
  }

  .check-list-wrapper-large {
    grid-row-gap: 25px;
    flex-wrap: wrap;
  }

  .check-list-wrapper {
    width: 100%;
  }

  .check-list-wrapper.large-size {
    margin-bottom: 30px;
  }

  .content-medium-image {
    height: 300px;
  }

  .figure-item-top-left {
    display: none;
  }

  .figure-item-full-bottom {
    height: 65px;
    bottom: -31px;
  }

  .author-wrapper {
    width: 100%;
  }

  .reviews-right-arrow {
    inset: auto auto 0% 50px;
  }

  .pricing-card-wrapper {
    width: 100%;
    padding: 25px;
  }

  .pricing-card-price-holder {
    margin-bottom: 30px;
  }

  .large-link-wrapper.fixed-width {
    max-width: none;
  }

  .buttons-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .card-wrapper-center {
    margin-top: 50px;
  }

  .card-wrapper-center.large-size-negative {
    margin-top: 0;
  }

  .card-figure-image-right {
    width: 100px;
    height: 100px;
    top: -25px;
  }

  .banner-figure-item {
    width: 80px;
    height: 80px;
    top: 35px;
    right: -30px;
  }

  .numbers-wrapper-small {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .numbers-wrapper {
    width: 100%;
  }

  .number-title {
    margin-bottom: 10px;
    font-size: 50px;
  }

  .team-item-wrapper {
    width: 100%;
  }

  .card-item-large {
    padding-right: 35px;
  }

  .text-breaking-normal {
    white-space: normal;
  }

  .faq-description {
    padding-left: 15px;
    padding-right: 15px;
  }

  .review-item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-info-medium {
    width: 73%;
  }

  .shop-tab-link {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-quantity-right {
    margin-bottom: 0;
  }

  ._404-title {
    font-size: 110px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav_dropdown, .nav_link.is-link {
    width: 100%;
  }

  .nav_deopdown_link {
    padding-left: 1rem;
  }

  .nav_dropdown_link-wrap {
    min-width: auto;
    max-width: 100%;
  }

  .nav_dropdown_text {
    font-size: 1.125rem;
  }

  .home-header_img {
    width: 100%;
  }

  .solution-header_img {
    aspect-ratio: auto;
    max-height: 25rem;
  }

  .solution-review_portrait {
    width: 5rem;
    height: 5rem;
  }

  .solution-header_img-wrapper.large-size-negative {
    margin-top: 0;
  }
}

#w-node-c066d64e-c7b2-3073-ac57-d970e5a4bf9c-9bda890f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c066d64e-c7b2-3073-ac57-d970e5a4bfa2-9bda890f, #w-node-c066d64e-c7b2-3073-ac57-d970e5a4bfa6-9bda890f, #w-node-c066d64e-c7b2-3073-ac57-d970e5a4bfaa-9bda890f, #w-node-c066d64e-c7b2-3073-ac57-d970e5a4bfae-9bda890f, #w-node-c066d64e-c7b2-3073-ac57-d970e5a4bfb2-9bda890f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-9bda8923, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-9bda8923, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-9bda8923, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-9bda8923, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-9bda8923, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-9bda8923, #w-node-_3ae40654-a547-6a24-bc62-337a74a65897-9bda8923, #w-node-_55a7fdb2-57e3-b70f-e42d-1161ceb0d51e-9bda8923, #w-node-e0ab27ad-177e-66f3-a361-18a88d944ff3-9bda8923, #w-node-_22afa9c3-0da5-8e0d-486f-67539c7f6dbb-9bda8923, #w-node-_6a078d37-a03b-58b0-5746-bd390040e948-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-9bda893e, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4bd-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4dc-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4e1-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4e6-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4eb-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4f1-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4f7-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd4fd-9bda893e {
  justify-self: start;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd5df-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd5e7-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd5fe-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd617-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd61a-9bda893e {
  justify-self: start;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd61c-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd61f-9bda893e {
  justify-self: start;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd66f-9bda893e, #w-node-f1b940c0-6e55-10e3-764c-acbf2ebb54f8-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd679-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd67a-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd6ec-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd6f1-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd6f6-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd6fb-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd700-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd705-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c01-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c06-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c0b-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c10-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c15-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c1a-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c1f-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c24-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c29-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c2e-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c33-9bda893e {
  justify-self: start;
}

#w-node-_422d4519-a343-2808-34eb-e50480ac6c37-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_422d4519-a343-2808-34eb-e50480ac6c38-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c3d-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c42-9bda893e, #w-node-_422d4519-a343-2808-34eb-e50480ac6c47-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd719-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd71e-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd723-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd728-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd72d-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd732-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95da1-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95da6-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dab-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95db0-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95db5-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dba-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dbf-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dc4-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dc9-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dce-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dd3-9bda893e {
  justify-self: start;
}

#w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dd7-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95dd8-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95ddd-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95de2-9bda893e, #w-node-_6f3fd9c9-5c54-66cd-d447-8e899ea95de7-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd743-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd748-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd74d-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd752-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd757-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd75c-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd761-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd766-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd76b-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd770-9bda893e {
  justify-self: start;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd774-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd775-9bda893e {
  justify-self: start;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd778-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd7f9-9bda893e, #w-node-f2e8796d-119a-2e3d-967d-f64a94ffd826-9bda893e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2e8796d-119a-2e3d-967d-f64a94ffd864-9bda893e {
  justify-self: start;
}

#w-node-ce8b82dd-5591-5aec-780e-a509828ccd54-9bda8957 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49c55c65-cedc-8016-be26-7faaad8b68d1-ad8b68bf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-9bda8923, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-9bda8923, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-9bda8923, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-9bda8923, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-9bda8923, #w-node-b830aba6-668b-37aa-0bf5-73d1943ff779-9bda8923, #w-node-_3ae40654-a547-6a24-bc62-337a74a65897-9bda8923, #w-node-_55a7fdb2-57e3-b70f-e42d-1161ceb0d51e-9bda8923, #w-node-e0ab27ad-177e-66f3-a361-18a88d944ff3-9bda8923, #w-node-_22afa9c3-0da5-8e0d-486f-67539c7f6dbb-9bda8923 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}