:root {
  --white-smoke: #f0f0f3;
  --cornflower-blue: #85a4c4;
  --light-slate-grey: #7889b3;
  --white: white;
  --light-steel-blue: #9ec5ff;
  --plum: #e1a6f8;
}

.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;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.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: rgba(0, 0, 0, .8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: auto;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: 0;
}

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

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  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-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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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: -webkit-sticky;
  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-commercecheckoutdiscounts {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  flex-wrap: wrap;
  padding: 20px;
  display: flex;
}

.w-commerce-commercecheckoutdiscountslabel {
  flex-basis: 100%;
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutdiscountsinput {
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  flex: 1;
  width: auto;
  min-width: 0;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

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

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

.w-commerce-commercecheckoutdiscountsbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  height: 38px;
  margin-left: 8px;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  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-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  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;
  -webkit-appearance: none;
  -ms-appearance: none;
  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-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.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 {
  -webkit-appearance: none;
  -ms-appearance: none;
  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;
  -webkit-appearance: none;
  -ms-appearance: none;
  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;
  -webkit-appearance: none;
  -ms-appearance: none;
  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-commerce-commerceorderconfirmationcontainer {
  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-commercecheckoutshippingsummarywrapper, .w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

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

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

.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;
}

@media screen and (max-width: 767px) {
  .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;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector, .w-commerce-commercecheckoutdiscountsinput, .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }
}

body {
  background-color: var(--white-smoke);
  color: var(--cornflower-blue);
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--light-slate-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--light-slate-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--light-slate-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--light-slate-grey);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--light-slate-grey);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  color: var(--light-slate-grey);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

a {
  color: var(--light-slate-grey);
  text-decoration: none;
  transition: opacity .4s;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

label {
  color: #808b9f;
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

blockquote {
  border-left: 5px solid rgba(133, 164, 196, .15);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.margin-xhuge {
  margin: 8rem;
}

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

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

.background-color-dark {
  background-color: var(--light-slate-grey);
  color: #f5f5f5;
}

.heading-style-h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-message-error {
  text-align: center;
  border-radius: 1.25rem;
  margin-top: 3rem;
  padding: 1.25rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

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

.text-size-small {
  font-size: .875rem;
  line-height: 1.6;
}

.text-size-small.text-style-allcaps {
  color: var(--cornflower-blue);
}

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

.margin-0 {
  margin: 0;
}

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

.styleguide-header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  display: grid;
}

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

.padding-0 {
  padding: 0;
}

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

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

.text-size-large {
  color: var(--cornflower-blue);
  font-size: 1.5rem;
  line-height: 1.4;
}

.styleguide-item-header {
  border-bottom: 1px solid rgba(133, 164, 196, .25);
  width: 100%;
  padding-bottom: 2rem;
}

.overflow-visible {
  overflow: visible;
}

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

.styleguide-background {
  border: 1px solid rgba(0, 0, 0, .1);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.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;
}

.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;
}

.styleguide-2-col.is-align-start {
  align-items: start;
}

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

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

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

.padding-xxlarge {
  padding: 5rem;
}

.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;
}

.styleguide-background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.styleguide-section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid rgba(133, 164, 196, .25);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.margin-small {
  margin: 1rem;
}

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

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

.padding-xhuge {
  padding: 8rem;
}

.icon-height-medium {
  height: 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;
}

.padding-custom3 {
  padding: 3.5rem;
}

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

.margin-xxhuge {
  margin: 12rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.margin-huge {
  margin: 6rem;
}

.styleguide-section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

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

.styleguide-heading-large {
  font-size: 6rem;
  line-height: 1;
}

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

.styleguide-item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid rgba(133, 164, 196, .25);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.styleguide-item.is-stretch {
  justify-items: stretch;
}

.margin-medium {
  margin: 2rem;
}

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

.styleguide-spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, rgba(0, 115, 230, .1), rgba(255, 255, 255, 0));
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: stretch;
  display: grid;
  position: relative;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

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

.padding-small {
  padding: 1rem;
}

.text-color-black {
  color: #000;
}

.text-color-grey {
  color: var(--light-slate-grey);
}

.heading-style-h2 {
  background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-style-h2.cta {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 900;
}

.heading-style-h2.gradientadd {
  background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum) 20%);
}

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

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

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

.text-style-link {
  color: var(--light-slate-grey);
  text-decoration: none;
}

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

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

.styleguide-label {
  color: #fff;
  background-color: #0073e6;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.styleguide-label.is-tag {
  background-color: #be4aa5;
}

.styleguide-label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

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

.text-style-quote {
  border-left: .25rem solid rgba(133, 164, 196, .15);
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.form-field-wrapper {
  margin-bottom: 40px;
}

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

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.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;
}

.styleguide-3-col.is-align-start {
  align-items: start;
}

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

.form-label {
  color: var(--light-slate-grey);
  margin-bottom: 10px;
}

.text-size-medium {
  color: var(--light-slate-grey);
  padding-top: 0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

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

.text-size-medium.year-experience {
  opacity: .6;
  white-space: nowrap;
  font-weight: 700;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.overflow-auto {
  overflow: auto;
}

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

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

.padding-custom2 {
  padding: 2.5rem;
}

.icon-1x1-medium {
  color: var(--light-slate-grey);
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
  line-height: 1;
}

.icon-1x1-large {
  color: var(--light-slate-grey);
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 1;
}

.padding-xlarge {
  padding: 4rem;
}

.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;
}

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

.max-width-medium.sticky {
  padding-top: 4rem;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}

.form-component {
  margin-bottom: 0;
}

.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;
}

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

.form-input {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  min-height: 3.5rem;
  margin-bottom: 0;
  padding: 1rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: 1.5rem;
}

.form-input.newsletter {
  width: 18rem;
}

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

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

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-large {
  padding: 3rem;
}

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

.margin-top, .margin-top.margin-large, .margin-top.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  flex-direction: column;
  align-items: stretch;
  margin-top: .5rem;
  display: flex;
}

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

.padding-top.padding-xxhuge {
  padding: 10rem 0 0;
}

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

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

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

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

.form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: 6px;
  padding-left: 10px;
  display: flex;
}

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

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

.styleguide-heading-medium {
  font-size: 4rem;
  line-height: 1;
}

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

.padding-xxhuge {
  padding: 12rem;
}

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

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

.background-color-grey {
  background-color: var(--white-smoke);
}

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

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-medium {
  padding: 2rem;
}

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

.styleguide-header {
  border-bottom: 1px solid rgba(133, 164, 196, .25);
}

.margin-bottom, .margin-bottom.margin-large {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.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;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-message-success {
  background-color: var(--white-smoke);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.styleguide-empty-box {
  z-index: -1;
  background-color: rgba(0, 115, 230, .1);
  border: 1px dashed #0073e6;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.padding-huge {
  padding: 6rem;
}

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

.styleguide-color.is-03 {
  background-color: var(--light-slate-grey);
}

.styleguide-color.is-01 {
  background-color: var(--white-smoke);
}

.styleguide-color.is-02 {
  background-color: var(--cornflower-blue);
}

.styleguide-color.is-04 {
  background-color: var(--light-steel-blue);
}

.styleguide-color.is-05 {
  background-color: var(--plum);
}

.styleguide-color.is-06 {
  background-color: var(--white);
}

.styleguide-color.neutral-01 {
  background-color: #f9f9fa;
}

.styleguide-color.neutral-02 {
  background-color: #ededf0;
}

.styleguide-color.neutral-03 {
  background-color: #e0e0e3;
}

.styleguide-color.neutral-04 {
  background-color: #d3d3d5;
}

.styleguide-color.neutral-05 {
  background-color: #c4c4c6;
}

.styleguide-color.neutral-06 {
  background-color: #b3b3b5;
}

.button {
  background-color: var(--white-smoke);
  color: var(--cornflower-blue);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1rem;
  justify-content: center;
  margin-left: 0;
  padding: 1.25rem 2.5rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  transition: all .3s;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.button:hover {
  box-shadow: 10px 10px 16px rgba(174, 174, 192, .4), -10px -10px 16px #fff;
}

.button:active {
  box-shadow: inset 10px 10px 16px rgba(174, 174, 192, .4), inset -10px -10px 16px #fff;
}

.button.w--current {
  box-shadow: inset 6px 6px 10px rgba(174, 174, 192, .4), inset -6px -6px 10px #fff;
}

.button.is-secondary {
  background-color: rgba(0, 0, 0, 0);
  border: 2px #000;
  border-bottom-width: .125rem;
}

.button.is-text {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
}

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

.button.is-large {
  padding: 1.5rem 3rem;
}

.button.is-small {
  padding: 1rem 1.25rem;
  font-size: .75rem;
}

.button.width-100 {
  width: 100%;
}

.margin-custom1 {
  margin: 1.5rem;
}

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

.margin-large {
  margin: 3rem;
}

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

.styleguide-spacing-all {
  display: none;
}

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

.heading-style-h1 {
  background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hide {
  display: none;
}

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

.styleguide-social-icons-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  max-width: 28rem;
}

.social-link {
  color: #6e7991;
  justify-content: center;
  align-items: center;
  font-family: Social Icon, sans-serif;
  text-decoration: none;
  transition: color .4s;
  display: flex;
}

.icon-1x1-small {
  color: var(--light-slate-grey);
  font-size: 1rem;
  line-height: 1;
}

.checkout-form-wrapper {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 3rem;
  padding: 0;
}

.checkout-header-block {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: 2rem;
}

.checkout-required-text {
  color: #85a4c4;
}

.checkout-content {
  color: #7889b3;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0 2rem 2rem;
}

.checktou-field-label {
  color: #7889b3;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.shipping-content-wrapper {
  border-radius: 2rem;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.billing-address-toggle {
  align-items: center;
  margin-top: 1.5rem;
}

.order-item-price {
  color: #7889b3;
  margin-top: 1rem;
}

.discount-wrapper {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  flex-direction: column;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.checkout-field-label {
  color: #7889b3;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.checkout-summary-content {
  border-radius: 2rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.web-payments {
  margin-bottom: 1rem;
}

.empty-state {
  border: 1px solid var(--white-smoke);
  background-color: var(--white-smoke);
  color: #85a4c4;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.shipping-method-content {
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: none;
}

.paypal-checkout-form, .order-confirmation-content {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 3rem;
  padding: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  border-radius: 2rem;
  flex-direction: column;
  width: 380px;
  margin-bottom: 0;
  padding: 2.5rem;
  display: flex;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

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

.instructions-content-wrapper {
  background-color: var(--white-smoke);
  border-radius: 2rem;
  margin-top: 3rem;
  padding: 6rem 4rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.text-rich-text h6 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.text-rich-text h4 {
  font-size: 2rem;
  line-height: 1.2;
}

.text-rich-text h3 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.text-rich-text h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.text-rich-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.text-rich-text li {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.text-rich-text blockquote {
  border-left-color: rgba(133, 164, 196, .15);
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}

.text-rich-text a {
  font-weight: 400;
  text-decoration: none;
  transition: opacity .4s;
}

.text-rich-text a:hover {
  color: rgba(69, 79, 102, .75);
}

.text-rich-text h5 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.text-rich-text h1 {
  font-size: 4rem;
  line-height: 1.1;
}

.divider-line {
  background-color: rgba(133, 164, 196, .25);
  width: 100%;
  height: 1px;
}

.licenses-content-wrapper {
  background-color: var(--white-smoke);
  border-radius: 2rem;
  margin-top: 3rem;
  padding: 6rem 4rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.licenses-image-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.changelog-content {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white-smoke);
  box-shadow: -6px -6px 10px 0 var(--white), 6px 6px 10px 0 rgba(174, 174, 192, .4);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 40rem;
  height: 4rem;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

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

.horizontal-flex.blog-post {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
}

.list-blog-categories {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.list-blog-categories.flex-center {
  justify-content: center;
}

.category-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.blog-post-category-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.small-line {
  background-color: rgba(108, 120, 146, .4);
  width: 32px;
  height: 2px;
}

.top-content-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.blog-component-grid, .pricing-component-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.plan-content-wrapper {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding: 2.5rem 2.5rem 4rem;
  transition: background-color .4s;
  overflow: hidden;
}

.plan-content-wrapper.categories {
  width: 26rem;
  padding: 1rem;
}

.price-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.check-icon {
  color: #1b993b;
  font-family: Filled Icon, sans-serif;
}

.pricing-features-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.plan-top-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.plan-top-content.package {
  justify-content: space-between;
}

.price-text {
  color: #7889b3;
  margin-bottom: 5px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.checked-icon {
  background-color: rgba(27, 153, 59, .3);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.inner-package-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: 1fr;
}

.plan-features-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

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

.product-component-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
}

.product-content {
  background-color: var(--white-smoke);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.input-wrap {
  background-color: #fff;
  border: 1px solid #dce0eb;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.input-wrap.quantity {
  padding-top: 6px;
  padding-left: 18px;
  padding-right: 18px;
  display: inline-block;
}

.input-wrap.quantity.hide {
  display: none;
}

.selector-input {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
}

.quantity-input {
  background-color: #fff;
  border-style: none;
  border-radius: 50px;
}

.product-category-component {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-home-header {
  position: relative;
}

.main-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.content-block {
  border-radius: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 2.5rem 2.25rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.content-block:hover {
  box-shadow: 11px 11px 18px rgba(174, 174, 192, .4), -10px -10px 16px #fff;
}

.content-block.no-hover {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 1rem;
}

.content-block.no-hover:hover {
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.content-block.no-hover.photo {
  background-image: url('../images/IMG_0954_v02.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 10px solid #f0f0f3;
}

.content-block.no-hover.project-about-image, .content-block.no-hover.project-results-image {
  border: 10px solid var(--white-smoke);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-block.no-hover.snap-project-image {
  border: 10px solid var(--white-smoke);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
}

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

.content-block.cta {
  flex-flow: column;
  height: 100%;
}

.content-block.resume {
  height: 20vh;
}

.arrow-circle {
  border: 2px solid #85a4c4;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  overflow: hidden;
}

.inner-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.arrow {
  color: #85a4c4;
  font-family: Filled Icon, sans-serif;
  transform: rotate(-45deg);
}

.card-icon {
  background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-self: flex-start;
  font-family: Filled Icon, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  display: inline-block;
}

.bottom-content {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 3.75fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: grid;
}

.bottom-content.absolute {
  align-content: center;
  margin-bottom: -25px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: absolute;
  top: auto;
  bottom: 2.5rem;
}

.services-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr .75fr .75fr .75fr;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-icon {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Filled Icon, sans-serif;
  font-size: 3rem;
  line-height: 1;
  display: inline-block;
}

.quantity-cart {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(133, 164, 196, .4);
}

.cart-button-navbar {
  color: var(--cornflower-blue);
  letter-spacing: .06rem;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  transition: opacity .4s;
}

.cart-button-navbar:hover {
  opacity: .7;
}

.cart-footer {
  border-top-color: rgba(129, 129, 139, .2);
}

.cart-header {
  border-bottom-color: rgba(129, 129, 139, .2);
  padding: 2rem 1.5rem;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.hamburger-menu {
  z-index: 999;
  color: var(--light-slate-grey);
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 100%;
  padding: 1rem;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.hamburger-menu:hover {
  border-color: rgba(255, 255, 255, .05);
  box-shadow: -11px -11px 20px #fff, 11px 11px 20px rgba(174, 174, 192, .4);
}

.hamburger-menu:active {
  box-shadow: inset -11px -11px 20px #fff, inset 11px 11px 20px rgba(174, 174, 192, .4);
}

.hamburger-menu.w--open {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset -6px -6px 10px #fff, inset 6px 6px 10px rgba(174, 174, 192, .4);
}

.cart-container {
  background-color: #f1f1f1;
  border-right: 1px solid rgba(129, 129, 139, .3);
}

.cart-quantity {
  background-color: var(--light-slate-grey);
  color: #fff;
  border-radius: 100%;
  min-width: 28px;
  height: 28px;
  margin-left: 5px;
  padding: 7px 8px 6px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.header-right-side {
  color: var(--cornflower-blue);
  align-items: center;
  display: flex;
}

.remove-button {
  transition: color .4s;
}

.remove-button:hover {
  color: #81818b;
}

.nav-link {
  background-color: var(--white-smoke);
  color: var(--light-slate-grey);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 16px;
  width: 12rem;
  margin-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  transition: all .4s;
  box-shadow: -7px -7px 12px #fff, 7px 7px 12px rgba(174, 174, 192, .4);
}

.nav-link:hover {
  border-color: rgba(255, 255, 255, .05);
  box-shadow: -13px -13px 20px #fff, 13px 13px 20px rgba(174, 174, 192, .4);
}

.nav-link:active {
  box-shadow: inset -6px -6px 10px #fff, inset 6px 6px 10px rgba(174, 174, 192, .4);
}

.nav-link.w--current {
  color: var(--light-slate-grey);
}

.close-icon {
  color: var(--light-slate-grey);
  margin-top: -5px;
  font-family: Filled Icon, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.cart-close-button {
  color: #fff;
}

.cart-default-state {
  margin-bottom: 0;
}

.logo-link {
  color: #555;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity .4s;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link.w--current {
  color: #555;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-link.w--current:hover {
  transform: none;
}

.text-cart {
  font-size: 1.1rem;
}

.logo {
  color: #808b9f;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.page-padding {
  color: #9c9c9c;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.header-nav-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu-list {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--cornflower-blue);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.nav-bottom-menu {
  justify-content: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: relative;
}

.message-empty-state {
  text-align: center;
  margin-bottom: 10px;
  padding: 30px 20px;
}

.nav-menu-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white-smoke);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-top: 20vh;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cart-button-wrapper {
  color: var(--cornflower-blue);
  margin-left: 10px;
  margin-right: 2rem;
  transition: transform .3s;
}

.social-media-header {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-social-link {
  background-color: var(--white-smoke);
  color: #7889b3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  font-family: Social Icon, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.nav-social-link:hover {
  box-shadow: 11px 11px 18px rgba(174, 174, 192, .4), -11px -11px 18px #fff;
}

.nav-social-link:active {
  box-shadow: inset 6px 6px 10px rgba(174, 174, 192, .4), inset -6px -6px 10px #fff;
}

.header-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.setting-icon {
  color: #7889b3;
  font-family: Filled Icon, sans-serif;
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
}

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

.body {
  background-color: var(--white-smoke);
}

.big-icon {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  -webkit-background-clip: text;
  background-clip: text;
  align-self: center;
  margin: 10px;
  font-family: Filled Icon, sans-serif;
  font-size: 6rem;
  line-height: 1;
  display: inline-block;
}

.input-wrapper {
  color: var(--cornflower-blue);
  border-radius: 1rem;
  box-shadow: inset 6px 6px 10px rgba(174, 174, 192, .4), inset -6px -6px 10px #fff;
}

.newslleter-form {
  color: #85a4c4;
  margin-top: 2rem;
  margin-bottom: 0;
}

.form-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.main-image-wrapper {
  width: 100px;
  height: 100px;
}

.about-component-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.experience-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.experience-line {
  opacity: .4;
  background-color: #85a4c4;
  width: 100%;
  height: 1px;
  margin-top: 5px;
}

.inner-content {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  display: flex;
}

.social-media-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.social-icon {
  font-size: 1rem;
  line-height: 1;
}

.footer-content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-item-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-nav-link {
  text-decoration: none;
  transition: opacity .4s;
}

.footer-nav-link:hover {
  opacity: .6;
}

.text-nav-footer {
  color: #85a4c4;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
}

.footer-nav-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  display: flex;
}

.footer-bottom {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.link-footer-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.link-footer {
  grid-column-gap: .325rem;
  grid-row-gap: .325rem;
  opacity: 1;
  color: #7889b3;
  align-items: center;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.link-footer:hover {
  opacity: .65;
}

.contact-component-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  width: 100%;
}

.contact-form-block {
  color: #7889b3;
}

.contact-form-wrapper {
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 6rem 2.5rem 4rem;
  display: flex;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.contact-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-component-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.faq-bottom {
  overflow: hidden;
}

.faq-icon {
  color: #7889b3;
  font-family: Filled Icon, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.faq-bottom-content {
  border-radius: 1.25rem;
  padding: 2rem 2.5rem 2.5rem;
  box-shadow: inset -6px -6px 10px #fff, inset 6px 6px 10px rgba(174, 174, 192, .4);
}

.faq-icon-wrapper {
  background-color: var(--white-smoke);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all .4s;
  display: flex;
  box-shadow: 6px 6px 10px rgba(174, 174, 192, .4), -6px -6px 10px #fff;
}

.faq-icon-wrapper:hover {
  box-shadow: 11px 11px 20px rgba(174, 174, 192, .4), -11px -11px 20px #fff;
}

.faq-icon-wrapper:active {
  box-shadow: inset 11px 11px 20px rgba(174, 174, 192, .4), inset -11px -11px 20px #fff;
}

.faq-list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: end;
  align-items: end;
  display: grid;
}

.faq-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .3fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 2.5rem;
  display: grid;
}

.faq-item {
  cursor: pointer;
}

.contact-inner-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: 1fr;
}

.contact-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.contact-item:hover {
  box-shadow: -11px -11px 18px #fff, 11px 11px 18px rgba(174, 174, 192, .4);
}

.content-block-link {
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  transition: box-shadow .4s;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.content-block-link:hover {
  box-shadow: -11px -11px 18px #fff, 11px 11px 18px rgba(174, 174, 192, .4);
}

.blog-details {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.5rem;
  display: grid;
}

.badge {
  color: #85a4c4;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  line-height: 1.6;
  display: inline-block;
  box-shadow: inset -6px -6px 10px #fff, inset 6px 6px 10px rgba(174, 174, 192, .4);
}

.blog-main-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

.blog-sidebar-content {
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-right: 10px;
  display: flex;
}

.blog-sidebar-image {
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
}

.blog-sidebar-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-inner-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
}

.blog-all-post-component {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-component-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;
}

.project-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  padding: 1rem 1rem 2rem;
  display: flex;
}

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

.project-image-wrapper {
  border: 10px solid var(--white-smoke);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.project-main-image {
  object-fit: cover;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
}

.project-info-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.project-info-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1.5rem;
}

.nav-link-wrapper {
  color: var(--cornflower-blue);
  width: 12rem;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action-component-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 100%;
  margin-top: 1.5rem;
}

.payment-info-block, .billing-address, .order-items-block, .checkout-content-block {
  border-radius: 2rem;
  box-shadow: -6px -6px 10px #fff, 6px 6px 10px rgba(174, 174, 192, .4);
}

.order-items-wrapper {
  color: #85a4c4;
}

.shipping-method-list {
  border-left-style: none;
  border-right-style: none;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.utility-icon {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  font-family: Filled Icon, sans-serif;
  font-size: 8rem;
  line-height: 1;
}

.button-icon {
  font-family: Filled Icon, sans-serif;
}

.service-top-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.service-image {
  height: 4rem;
  margin-bottom: 20px;
}

.resume-component-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.education-list {
  margin-top: 10px;
  padding-bottom: 0;
}

.list-item {
  margin-bottom: 20px;
}

.skills-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
}

.bold-text, .bold-text-2, .superscript, .superscript-2, .bold-text-3 {
  color: var(--light-slate-grey);
}

@media screen and (min-width: 1440px) {
  .heading-style-h2 {
    background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .heading-style-h2.cta {
    background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8);
  }

  .text-size-medium {
    margin-top: -5px;
    margin-bottom: -10px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-top.margin-small {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .margin-bottom.margin-medium {
    margin-bottom: 1.5rem;
  }

  .heading-style-h1 {
    background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .content-block.no-hover {
    padding-bottom: 1rem;
  }

  .content-block.no-hover.photo {
    background-image: url('../images/IMG_0954_v02.jpg');
    background-position: 50%;
    background-size: cover;
  }

  .content-block.resume {
    height: 20vh;
  }

  .card-icon {
    font-size: 2rem;
    line-height: 100%;
  }

  .service-icon {
    text-align: left;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding-left: 0;
    overflow: visible;
  }

  .navbar {
    padding-bottom: 0;
  }

  .padding-section-header {
    padding-top: 7.5rem;
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 1920px) {
  .heading-style-h2.cta {
    background-image: linear-gradient(135deg, #9ec5ff, #e1a6f8 52%);
  }

  .text-size-medium {
    padding-top: 0;
  }

  .margin-bottom.margin-medium {
    margin-bottom: 1.5rem;
  }

  .heading-style-h1 {
    background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum) 56%);
    text-align: center;
  }

  .content-block {
    padding-bottom: 1rem;
  }

  .content-block.no-hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .content-block.no-hover.photo {
    background-image: url('../images/IMG_0954_v02.jpg');
    background-position: 50%;
  }

  .content-block.cta {
    height: 18vh;
  }

  .content-block.resume {
    height: 17vh;
  }

  .service-icon {
    padding-left: 0;
  }

  .navbar {
    padding-bottom: 1rem;
  }

  .padding-section-header {
    padding-bottom: 2.5rem;
  }

  .social-icon {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
  }

  .call-to-action-component-grid {
    height: 17vh;
  }
}

@media screen and (max-width: 991px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .styleguide-2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .styleguide-4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .styleguide-section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

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

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

  .heading-style-h2.gradientadd {
    background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum) 32%);
  }

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

  .styleguide-3-col {
    grid-template-columns: 1fr;
  }

  .text-size-medium {
    flex-direction: column;
    display: flex;
  }

  .text-size-medium.text-weight-semibold {
    font-weight: 700;
  }

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

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

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

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

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

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

  .styleguide-heading-medium {
    font-size: 3rem;
  }

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

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

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

  .styleguide-1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .blog-post-category-component {
    grid-template-columns: 1fr;
  }

  .top-content-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog-component-grid {
    grid-template-columns: 1fr;
  }

  .pricing-component-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .product-component-grid {
    grid-template-columns: 1fr;
  }

  .content-block.no-hover.photo {
    background-image: url('../images/IMG_0954_v02.jpg');
    height: 80vh;
  }

  .content-block.cta {
    height: 45vh;
  }

  .content-block.resume {
    height: 24vh;
  }

  .navbar {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hamburger-menu {
    box-shadow: -8px -6px 15px #fff, 6px 8px 15px rgba(0, 0, 0, .15);
  }

  .hamburger-menu.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .header-nav-content {
    border-radius: 10px;
  }

  .cart-button-wrapper {
    margin-right: 1.5rem;
  }

  .empty-cart-content-wrapper {
    flex-direction: column;
  }

  .header-content-wrapper {
    justify-content: space-between;
  }

  .cart-form-wrapper {
    align-items: center;
  }

  .big-icon {
    font-size: 5rem;
  }

  .about-component-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .contact-component-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .blog-main-grid {
    grid-template-columns: 1fr;
  }

  .blog-all-post-component {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .heading-style-h4 {
    font-size: 1.2rem;
  }

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

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

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

  .padding-xxlarge {
    padding: 3rem;
  }

  .styleguide-section-header {
    font-size: .875rem;
  }

  .styleguide-heading-large {
    font-size: 3rem;
  }

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

  .hide-mobile-landscape {
    display: none;
  }

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

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

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

  .heading-style-h3 {
    font-size: 1.5rem;
  }

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

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

  .max-width-medium.sticky {
    padding-top: 0;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

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

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

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

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

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

  .styleguide-heading-medium {
    font-size: 2rem;
  }

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

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

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

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

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

  .instructions-content-wrapper {
    padding: 4rem 2.5rem;
  }

  .text-rich-text h2 {
    font-size: 2.8rem;
  }

  .text-rich-text h1 {
    font-size: 3.5rem;
  }

  .licenses-content-wrapper {
    padding: 4rem 2.5rem;
  }

  .changelog-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-radius: 1.75rem;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .top-content-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .pricing-component-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-block.no-hover.photo {
    background-image: url('../images/IMG_0954_v02.jpg');
    height: 60vh;
  }

  .content-block.no-hover.project-about-image, .content-block.no-hover.project-results-image, .content-block.no-hover.snap-project-image {
    height: 50vh;
  }

  .content-block.flex-center {
    height: 16rem;
  }

  .content-block.resume {
    height: 23vh;
  }

  .arrow-circle {
    width: 2rem;
    height: 2rem;
  }

  .service-icon {
    padding-left: 0;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cart-button-wrapper {
    margin-right: 1rem;
  }

  .big-icon {
    margin-bottom: 1.5rem;
    position: static;
  }

  .experience-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-bottom: 3rem;
  }

  .inner-content {
    flex-wrap: wrap;
  }

  .faq-icon {
    font-size: 1.75rem;
  }

  .faq-bottom-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .faq-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }

  .faq-title {
    padding-left: 0;
  }

  .blog-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-component-grid {
    grid-template-columns: 1fr;
  }

  .project-image-wrapper {
    height: 50vh;
  }

  .project-info-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
  }

  .project-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .call-to-action-component-grid {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

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

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

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

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

  .heading-style-h2.gradientadd {
    background-image: linear-gradient(135deg, var(--light-steel-blue), var(--plum) 38%);
  }

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

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

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

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

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

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

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

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

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

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

  .checkout-header-block, .checkout-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .shipping-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .checkout-summary-content {
    border-radius: 1.75rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .utility-page-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .utility-page-content {
    border-radius: 1.75rem;
  }

  .instructions-content-wrapper {
    padding: 3rem 1.5rem;
  }

  .text-rich-text h6 {
    font-size: 1rem;
  }

  .text-rich-text h4 {
    font-size: 1.6rem;
  }

  .text-rich-text h3 {
    font-size: 1.8rem;
  }

  .text-rich-text h2 {
    font-size: 2rem;
  }

  .text-rich-text h5 {
    font-size: 1.2rem;
  }

  .text-rich-text h1 {
    font-size: 2.5rem;
  }

  .licenses-content-wrapper {
    border-radius: 1.75rem;
    padding: 3rem 1.5rem;
  }

  .licenses-image-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .image-wrapper {
    border-radius: 1.5rem;
  }

  .image-wrapper.project {
    height: 32vh;
  }

  .plan-content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .plan-content-wrapper.categories {
    padding: 1rem;
  }

  .product-content {
    border-radius: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .content-block {
    border-radius: 1.75rem;
    padding: 2rem 1.5rem;
  }

  .content-block.no-hover.photo {
    background-image: url('../images/IMG_0954_v02.jpg');
    background-size: cover;
    height: 45vh;
  }

  .content-block.no-hover.project-about-image, .content-block.no-hover.project-results-image, .content-block.no-hover.snap-project-image {
    height: 40vh;
  }

  .content-block.flex-center {
    height: 12rem;
  }

  .content-block.cta {
    height: 42vh;
  }

  .content-block.resume {
    height: 100%;
  }

  .card-icon {
    font-size: 2.25rem;
  }

  .bottom-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
  }

  .bottom-content.absolute {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    bottom: 2rem;
  }

  .cart-quantity {
    min-width: 26px;
    height: 26px;
    padding-top: 6px;
    font-size: .75rem;
  }

  .nav-link {
    width: 10rem;
    margin-bottom: 25px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .logo-link {
    padding-left: 0;
  }

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

  .header-nav-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .nav-menu-list {
    margin-bottom: 30px;
  }

  .nav-menu-wrapper {
    flex-direction: column;
    padding-top: 18vh;
  }

  .cart-button-wrapper {
    margin-right: .5rem;
  }

  .nav-list-item {
    text-align: left;
  }

  .nav-social-link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .header-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .big-icon {
    margin-bottom: 2rem;
    font-size: 4rem;
    position: static;
  }

  .newslleter-form {
    margin-top: 3rem;
  }

  .experience-line {
    height: 2px;
  }

  .social-icon {
    font-size: 1rem;
  }

  .footer-item-content.top {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .link-footer-wrapper {
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 3.5rem 2rem 2.5rem;
  }

  .contact-item {
    border-radius: 1.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .content-block-link {
    border-radius: 1.75rem;
  }

  .badge {
    font-size: .875rem;
  }

  .blog-all-post-component {
    grid-template-columns: 1fr;
  }

  .project-image-wrapper {
    height: 40vh;
  }

  .nav-link-wrapper {
    width: 10rem;
  }

  .payment-info-block, .billing-address, .order-items-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .checkout-content-block {
    border-radius: 1.75rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .utility-icon {
    font-size: 6rem;
  }

  .service-image {
    height: 3.5rem;
  }

  .education-list {
    padding-left: 20px;
  }
}

#w-node-_5ad69f84-9254-341a-396b-42027b36c779-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5ad69f84-9254-341a-396b-42027b36c780-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_5ad69f84-9254-341a-396b-42027b36c782-1fd70ae6 {
  align-self: end;
  justify-self: start;
}

#w-node-_5ad69f84-9254-341a-396b-42027b36c784-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-c74d07db-60bd-f967-fafe-2dcf6b244e42-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_401947c9-652a-f48a-874f-b2c0c289bb17-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-dd3a52cb-5dc0-c8c7-936a-30f0b0fabfda-1fd70ae6 {
  align-self: end;
  justify-self: start;
}

#w-node-baf5e044-4020-cb79-47ce-084e9b075d7d-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-_22aededf-3a4e-78de-d6c7-6f311619fab0-1fd70ae6 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_0fd1574b-a664-b860-48e3-2037ba8bfa60-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0fd1574b-a664-b860-48e3-2037ba8bfa67-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_0fd1574b-a664-b860-48e3-2037ba8bfa69-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
  justify-self: start;
}

#w-node-_0fd1574b-a664-b860-48e3-2037ba8bfa6b-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-b951855a-6aab-996a-ca55-8dc98b03baf5-1fd70ae6 {
  grid-area: 2 / 1 / 4 / 3;
}

#w-node-_82ce68ce-ccf5-424c-6468-50ea6ba674ca-1fd70ae6, #w-node-_406e9a02-e2d9-7ced-81ab-4a2d615c1049-1fd70ae6, #w-node-_888187e3-345d-de74-c0dd-79c41d2d4f63-1fd70ae6, #w-node-_182fdd45-b962-3670-e8d2-e91a7f168188-1fd70ae6, #w-node-_1f4b6dac-8391-3d05-291a-937a335ee891-1fd70ae6, #w-node-_46729fa6-6488-e795-a44d-6fc9a1685c2f-1fd70ae6, #w-node-c07920f3-60e3-7b33-1425-6b9cab73534e-1fd70ae6, #w-node-d7de49a1-84be-4927-dabb-28aaebacd7b2-1fd70ae6, #w-node-_6ba9f92b-5b24-999a-61c0-1c6ba53d9b05-1fd70ae6, #w-node-_7031f824-2a21-197c-a011-f5d2e99e745c-1fd70ae6, #w-node-_29531713-ce73-5a17-ff8d-103ca82346a5-1fd70ae6, #w-node-_104bb044-4421-dc9e-520b-1659122e98c4-1fd70ae6, #w-node-d0d2ea1a-fd16-f5bb-979c-e9ced52cfe05-1fd70ae6, #w-node-c4092e15-a3bc-d17d-e861-094a3551e446-1fd70ae6, #w-node-_63534172-22a0-277b-953e-69ca8e9ab69e-1fd70ae6, #w-node-d4824feb-dee6-ad51-cde2-7a9d3c30289f-1fd70ae6, #w-node-_1cd76997-2117-ff99-3f42-fe6048149932-1fd70ae6, #w-node-_4ca2334b-2320-63ff-27c1-e454a9993ad6-1fd70ae6, #w-node-e821047f-cf6c-7615-543e-59a8ba294a7e-1fd70ae6, #w-node-_998ee6f7-c695-5e68-fdd6-e543e77f0091-1fd70ae6, #w-node-_76035c86-f731-e9a8-9d40-60b67b7b10cc-1fd70ae6, #w-node-_7c81453d-0aed-c35e-02ee-0f9c79cba99a-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bcb131a6-a77e-5e67-aba0-071841b85f97-1fd70ae6 {
  align-self: end;
  justify-self: start;
}

#w-node-bcb131a6-a77e-5e67-aba0-071841b85f99-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-_43f322cb-9c98-aed1-e950-17b298bdd220-1fd70ae6 {
  align-self: end;
  justify-self: start;
}

#w-node-_43f322cb-9c98-aed1-e950-17b298bdd222-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-c35dd23f-84c1-b3d4-eed9-842c721bc01e-1fd70ae6 {
  grid-area: 3 / 3 / 4 / 5;
}

#w-node-_3d834c90-381e-9ba6-7220-ec6f9c76f629-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d834c90-381e-9ba6-7220-ec6f9c76f630-1fd70ae6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_3d834c90-381e-9ba6-7220-ec6f9c76f634-1fd70ae6 {
  align-self: end;
  justify-self: end;
}

#w-node-dcc6e9db-740e-8d46-15c2-d8a41845a7e1-1fd70b08 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_91ca476e-ea4d-4851-b140-9fcfbe01310a-1fd70b08 {
  grid-area: 1 / 4 / 2 / 6;
}

#w-node-a1b1798c-5a09-a3ca-6e56-8bc3eaba9a42-1fd70b08 {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c83-1fd70b08 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c85-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c8c-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c90-1fd70b08 {
  align-self: end;
  justify-self: end;
}

#w-node-_81f7c11f-1049-9671-49c6-e9b5defcdff0-1fd70b08 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_81f7c11f-1049-9671-49c6-e9b5defcdff2-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_81f7c11f-1049-9671-49c6-e9b5defcdff9-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_81f7c11f-1049-9671-49c6-e9b5defcdffb-1fd70b08 {
  align-self: end;
  justify-self: start;
}

#w-node-_81f7c11f-1049-9671-49c6-e9b5defcdffd-1fd70b08 {
  align-self: end;
  justify-self: end;
}

#w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93be-1fd70b08 {
  grid-area: 3 / 5 / 4 / 6;
}

#w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93c0-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93c7-1fd70b08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93c9-1fd70b08 {
  align-self: end;
  justify-self: start;
}

#w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93cb-1fd70b08 {
  align-self: end;
  justify-self: end;
}

#w-node-_40ff622a-0093-f830-de48-f06bc1be7901-1fd70b12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_22e3b2e7-f67d-cb4b-4da6-99d099b322a4-1fd70b12 {
  align-self: end;
  justify-self: start;
}

#w-node-_22e3b2e7-f67d-cb4b-4da6-99d099b322a6-1fd70b12 {
  align-self: end;
  justify-self: end;
}

#w-node-_26579983-9639-0435-d648-519a2d6e7207-1fd70b12, #w-node-_3a67485b-e2ef-995a-b3b4-255043b275a8-1fd70b12, #w-node-_3b01d1f8-9c5e-5327-8b35-0ece5b5dbc25-1fd70b12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_571fa134-6adb-8856-e9d0-f5801bcc79f2-1fd70b12 {
  align-self: end;
  justify-self: start;
}

#w-node-_571fa134-6adb-8856-e9d0-f5801bcc79f4-1fd70b12 {
  align-self: end;
  justify-self: end;
}

#w-node-_3805674f-0db8-5b4e-3527-d29763409ebd-1fd70b12 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efdca815-6579-9bdb-ddb9-4efef0a9eb82-1fd70b12 {
  align-self: end;
  justify-self: start;
}

#w-node-efdca815-6579-9bdb-ddb9-4efef0a9eb84-1fd70b12 {
  align-self: end;
  justify-self: end;
}

#w-node-_766d8419-5912-e841-7509-edd867cd6cc9-1fd70b15, #w-node-_4457e98a-b26b-a015-3b83-d2ab2fd843d7-1fd70b15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8a89313-9d4f-92e7-5362-f1e42fe186bc-1fd70b15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ff96e599-12cd-c119-0e6f-03d2b51f41e3-1fd70b1a {
  align-self: end;
  justify-self: start;
}

#w-node-ff96e599-12cd-c119-0e6f-03d2b51f41e5-1fd70b1a {
  align-self: end;
  justify-self: end;
}

#w-node-_1556a030-3452-4610-2eee-3b3ee5d71cc5-1fd70b1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1556a030-3452-4610-2eee-3b3ee5d71ccb-1fd70b1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
  justify-self: end;
}

#w-node-_06ea6a0e-54f5-3481-cb54-10c72708a355-1fd70b1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06ea6a0e-54f5-3481-cb54-10c72708a357-1fd70b1b {
  align-self: end;
  justify-self: start;
}

#w-node-_06ea6a0e-54f5-3481-cb54-10c72708a359-1fd70b1b {
  align-self: end;
  justify-self: end;
}

#w-node-d0df666b-15f0-422a-c381-db51b4b78c62-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c6b-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c6c-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c71-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c76-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c7b-1fd70b1c, #w-node-d0df666b-15f0-422a-c381-db51b4b78c80-1fd70b1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_697a4a1d-b1ad-00bf-a527-a5aabbf87aea-1fd70b1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
  justify-self: start;
}

#w-node-b95b3499-b9b6-ce50-18e7-5a2e14c86c19-1fd70b1d {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_1dfec931-0ef0-2a73-3aaf-1de2cc4a0286-1fd70b1d {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-d8efe977-5d18-2d5d-303f-86f8b8b0e0ba-1fd70b1e, #w-node-d8efe977-5d18-2d5d-303f-86f8b8b0e0c0-1fd70b1e, #w-node-d8efe977-5d18-2d5d-303f-86f8b8b0e0c6-1fd70b1e, #w-node-d8efe977-5d18-2d5d-303f-86f8b8b0e0cc-1fd70b1e, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab634-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab63b-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab63c-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab641-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab646-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab64b-1fd70b20, #w-node-_91c42b5e-14be-a07c-99f3-d324e32ab655-1fd70b20, #w-node-f18682f3-738a-ce24-aa27-e5f913be9c20-1fd70b20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c25-1fd70b20 {
  justify-self: end;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c2e-1fd70b20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c33-1fd70b20 {
  justify-self: end;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c3c-1fd70b20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c41-1fd70b20 {
  justify-self: end;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c4a-1fd70b20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f18682f3-738a-ce24-aa27-e5f913be9c4f-1fd70b20 {
  justify-self: end;
}

#w-node-_2aae0543-0f6e-04b4-86d9-6a8905c95296-1fd70b2b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d57cd88e-9dc8-dbfe-9602-330944fc3ebf-1fd70b2e {
  align-self: end;
  justify-self: start;
}

#w-node-d57cd88e-9dc8-dbfe-9602-330944fc3ec1-1fd70b2e {
  align-self: end;
  justify-self: end;
}

#w-node-f472db98-8858-9119-62a1-7a9a8534ef93-1fd70b2e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f472db98-8858-9119-62a1-7a9a8534ef95-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f472db98-8858-9119-62a1-7a9a8534ef9c-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-f472db98-8858-9119-62a1-7a9a8534ef9e-1fd70b2e {
  align-self: end;
  justify-self: start;
}

#w-node-f472db98-8858-9119-62a1-7a9a8534efa0-1fd70b2e {
  align-self: end;
  justify-self: end;
}

#w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe44-1fd70b2e {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe46-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe4d-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe51-1fd70b2e {
  align-self: end;
  justify-self: end;
}

#w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffad-1fd70b2e {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffaf-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffb6-1fd70b2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffb8-1fd70b2e {
  align-self: end;
  justify-self: start;
}

#w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffba-1fd70b2e {
  align-self: end;
  justify-self: end;
}

#w-node-_2399bfbb-5210-99e7-dfc8-37f0de3f101c-1fd70b30 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_3db06efb-89de-2ae6-f2a2-5934d47f860d-1fd70b30 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c5cb0812-4d1c-603f-9334-a81b2ce664cc-1fd70b30 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_6a498578-06c8-739d-2055-f40ad28720e3-1fd70b30 {
  grid-area: 2 / 3 / 5 / 5;
  align-self: auto;
}

#w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbd7-1fd70b30 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbd9-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbe0-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbe2-1fd70b30 {
  align-self: end;
  justify-self: start;
}

#w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbe4-1fd70b30 {
  align-self: end;
  justify-self: end;
}

#w-node-_48d7865b-2913-f577-7227-e8f7b2811239-1fd70b30 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_48d7865b-2913-f577-7227-e8f7b281123b-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_48d7865b-2913-f577-7227-e8f7b2811242-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_48d7865b-2913-f577-7227-e8f7b2811246-1fd70b30 {
  align-self: end;
  justify-self: end;
}

#w-node-_309f5d6f-0166-ce71-33a9-b9598ae1057f-1fd70b30 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_309f5d6f-0166-ce71-33a9-b9598ae10581-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_309f5d6f-0166-ce71-33a9-b9598ae10588-1fd70b30 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_309f5d6f-0166-ce71-33a9-b9598ae1058a-1fd70b30 {
  align-self: end;
  justify-self: start;
}

#w-node-_309f5d6f-0166-ce71-33a9-b9598ae1058c-1fd70b30 {
  align-self: end;
  justify-self: end;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012678-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101267d-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012682-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012687-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101268d-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012693-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012699-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c096310127a6-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310127bf-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c096310127c2-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c096310127c4-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c096310127c7-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012830-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101283a-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101283b-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c096310128a9-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128ae-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128b3-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128b8-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128bd-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128c2-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128cc-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128d1-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128d6-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128db-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128e0-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128e5-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128ea-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128ef-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128f4-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128f9-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c096310128fe-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012902-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012903-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012905-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012908-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101290d-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012912-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012927-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101292c-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012931-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012936-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101293b-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012940-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101294a-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101294f-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012954-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012959-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101295e-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012963-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012968-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101296d-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012972-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012977-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101297c-1fd70b31 {
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012980-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012981-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012986-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c0963101298b-1fd70b31, #w-node-_79510c0a-24b1-2611-312e-c09631012990-1fd70b31 {
  justify-self: start;
}

#w-node-_331c85e4-a638-140b-5cac-f6e9b871f19f-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_331c85e4-a638-140b-5cac-f6e9b871f1a2-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1a5-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1a8-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1ab-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1ae-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1b1-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1b4-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1b7-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1ba-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1bd-1fd70b31, #w-node-_331c85e4-a638-140b-5cac-f6e9b871f1c0-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d811288d-5778-355b-be6b-fbde40fad330-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d811288d-5778-355b-be6b-fbde40fad333-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad336-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad339-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad33c-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad33f-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad342-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad345-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad348-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad34b-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad34e-1fd70b31, #w-node-d811288d-5778-355b-be6b-fbde40fad351-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9bb2509d-5649-3191-0e8c-6db82fec7dd9-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9bb2509d-5649-3191-0e8c-6db82fec7ddc-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7ddf-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7de2-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7de5-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7de8-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7deb-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7dee-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7df1-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7df4-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7df7-1fd70b31, #w-node-_9bb2509d-5649-3191-0e8c-6db82fec7dfa-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012a16-1fd70b31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79510c0a-24b1-2611-312e-c09631012a72-1fd70b31 {
  justify-self: start;
}

@media screen and (min-width: 1920px) {
  #w-node-_82ce68ce-ccf5-424c-6468-50ea6ba674ca-1fd70ae6, #w-node-d7de49a1-84be-4927-dabb-28aaebacd7b2-1fd70ae6, #w-node-_6ba9f92b-5b24-999a-61c0-1c6ba53d9b05-1fd70ae6, #w-node-_7031f824-2a21-197c-a011-f5d2e99e745c-1fd70ae6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a1b1798c-5a09-a3ca-6e56-8bc3eaba9a42-1fd70b08 {
    grid-area: 2 / 1 / 3 / 6;
  }

  #w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c83-1fd70b08 {
    grid-area: 4 / 3 / 5 / 6;
  }

  #w-node-_81f7c11f-1049-9671-49c6-e9b5defcdff0-1fd70b08, #w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93be-1fd70b08 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2399bfbb-5210-99e7-dfc8-37f0de3f101c-1fd70b30 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_6a498578-06c8-739d-2055-f40ad28720e3-1fd70b30 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_309f5d6f-0166-ce71-33a9-b9598ae1057f-1fd70b30 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_82ce68ce-ccf5-424c-6468-50ea6ba674ca-1fd70ae6, #w-node-_406e9a02-e2d9-7ced-81ab-4a2d615c1049-1fd70ae6, #w-node-_888187e3-345d-de74-c0dd-79c41d2d4f63-1fd70ae6, #w-node-_182fdd45-b962-3670-e8d2-e91a7f168188-1fd70ae6, #w-node-_1f4b6dac-8391-3d05-291a-937a335ee891-1fd70ae6, #w-node-_46729fa6-6488-e795-a44d-6fc9a1685c2f-1fd70ae6, #w-node-c07920f3-60e3-7b33-1425-6b9cab73534e-1fd70ae6, #w-node-d7de49a1-84be-4927-dabb-28aaebacd7b2-1fd70ae6, #w-node-_6ba9f92b-5b24-999a-61c0-1c6ba53d9b05-1fd70ae6, #w-node-_7031f824-2a21-197c-a011-f5d2e99e745c-1fd70ae6, #w-node-_29531713-ce73-5a17-ff8d-103ca82346a5-1fd70ae6, #w-node-_104bb044-4421-dc9e-520b-1659122e98c4-1fd70ae6, #w-node-d0d2ea1a-fd16-f5bb-979c-e9ced52cfe05-1fd70ae6, #w-node-c4092e15-a3bc-d17d-e861-094a3551e446-1fd70ae6, #w-node-_63534172-22a0-277b-953e-69ca8e9ab69e-1fd70ae6, #w-node-d4824feb-dee6-ad51-cde2-7a9d3c30289f-1fd70ae6, #w-node-_1cd76997-2117-ff99-3f42-fe6048149932-1fd70ae6, #w-node-_4ca2334b-2320-63ff-27c1-e454a9993ad6-1fd70ae6, #w-node-e821047f-cf6c-7615-543e-59a8ba294a7e-1fd70ae6, #w-node-_998ee6f7-c695-5e68-fdd6-e543e77f0091-1fd70ae6, #w-node-_76035c86-f731-e9a8-9d40-60b67b7b10cc-1fd70ae6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6a498578-06c8-739d-2055-f40ad28720e3-1fd70b30 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_48d7865b-2913-f577-7227-e8f7b2811239-1fd70b30 {
    grid-area: 3 / 2 / 4 / 4;
  }
}

@media screen and (max-width: 991px) {
  #w-node-dcc6e9db-740e-8d46-15c2-d8a41845a7e1-1fd70b08 {
    grid-column-end: 5;
  }

  #w-node-_91ca476e-ea4d-4851-b140-9fcfbe01310a-1fd70b08 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1b1798c-5a09-a3ca-6e56-8bc3eaba9a42-1fd70b08 {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c83-1fd70b08 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_81f7c11f-1049-9671-49c6-e9b5defcdff0-1fd70b08 {
    grid-area: 5 / 3 / 6 / 5;
  }

  #w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93be-1fd70b08 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-_1556a030-3452-4610-2eee-3b3ee5d71ccb-1fd70b1b {
    justify-self: start;
  }

  #w-node-_6a498578-06c8-739d-2055-f40ad28720e3-1fd70b30 {
    grid-area: 2 / 3 / 3 / 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5ad69f84-9254-341a-396b-42027b36c782-1fd70ae6, #w-node-dd3a52cb-5dc0-c8c7-936a-30f0b0fabfda-1fd70ae6 {
    align-self: center;
  }

  #w-node-_22aededf-3a4e-78de-d6c7-6f311619fab0-1fd70ae6 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_0fd1574b-a664-b860-48e3-2037ba8bfa69-1fd70ae6 {
    align-self: center;
  }

  #w-node-b951855a-6aab-996a-ca55-8dc98b03baf5-1fd70ae6 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-bcb131a6-a77e-5e67-aba0-071841b85f97-1fd70ae6, #w-node-_43f322cb-9c98-aed1-e950-17b298bdd220-1fd70ae6 {
    align-self: center;
  }

  #w-node-c35dd23f-84c1-b3d4-eed9-842c721bc01e-1fd70ae6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3d834c90-381e-9ba6-7220-ec6f9c76f632-1fd70ae6, #w-node-_9322cd59-5266-57c4-c3aa-13ff4aa02c8e-1fd70b08, #w-node-_81f7c11f-1049-9671-49c6-e9b5defcdffb-1fd70b08, #w-node-_9a7bd646-66b7-c217-9e1d-42cb015e93c9-1fd70b08, #w-node-_22e3b2e7-f67d-cb4b-4da6-99d099b322a4-1fd70b12, #w-node-_571fa134-6adb-8856-e9d0-f5801bcc79f2-1fd70b12, #w-node-efdca815-6579-9bdb-ddb9-4efef0a9eb82-1fd70b12, #w-node-ff96e599-12cd-c119-0e6f-03d2b51f41e3-1fd70b1a, #w-node-_06ea6a0e-54f5-3481-cb54-10c72708a357-1fd70b1b {
    align-self: center;
  }

  #w-node-b95b3499-b9b6-ce50-18e7-5a2e14c86c19-1fd70b1d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_585c2ca2-a316-c533-28cc-92e81e621a17-1fd70b1d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1dfec931-0ef0-2a73-3aaf-1de2cc4a0286-1fd70b1d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f8a29e4d-6c6b-1ba6-9651-9f4e365f22ad-1fd70b1d {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-d57cd88e-9dc8-dbfe-9602-330944fc3ebf-1fd70b2e {
    align-self: center;
  }

  #w-node-f472db98-8858-9119-62a1-7a9a8534ef93-1fd70b2e {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-f472db98-8858-9119-62a1-7a9a8534ef9e-1fd70b2e {
    align-self: center;
  }

  #w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe44-1fd70b2e {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f90dee06-6bfa-82c2-e23f-dab3a2ebbe4f-1fd70b2e {
    align-self: center;
  }

  #w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffad-1fd70b2e {
    grid-area: 1 / 3 / 2 / 5;
  }

  #w-node-f2dc1df3-ce43-58ae-ef46-9d5ff458ffb8-1fd70b2e {
    align-self: center;
  }

  #w-node-_2399bfbb-5210-99e7-dfc8-37f0de3f101c-1fd70b30 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_3db06efb-89de-2ae6-f2a2-5934d47f860d-1fd70b30 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c5cb0812-4d1c-603f-9334-a81b2ce664cc-1fd70b30 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_6a498578-06c8-739d-2055-f40ad28720e3-1fd70b30 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbd7-1fd70b30 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbe2-1fd70b30 {
    align-self: center;
  }

  #w-node-_48d7865b-2913-f577-7227-e8f7b2811239-1fd70b30 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_48d7865b-2913-f577-7227-e8f7b2811244-1fd70b30 {
    align-self: center;
  }

  #w-node-_309f5d6f-0166-ce71-33a9-b9598ae1057f-1fd70b30 {
    grid-area: 5 / 3 / 6 / 5;
  }

  #w-node-_309f5d6f-0166-ce71-33a9-b9598ae1058a-1fd70b30 {
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f4c0fc89-ccd8-49d7-76e0-dcd0ae79bbd7-1fd70b30 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_309f5d6f-0166-ce71-33a9-b9598ae1057f-1fd70b30 {
    grid-area: 6 / 1 / 7 / 5;
  }
}


@font-face {
  font-family: 'Filled Icon';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Social Icon';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}