@font-face {
  font-family: Material design iconic font;
  src: url('../fonts/Material-Design-Iconic-Font.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Black.otf') format("opentype"), url('../fonts/Gilroy-Heavy.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-BlackItalic.otf') format("opentype"), url('../fonts/Gilroy-HeavyItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Bold.otf') format("opentype"), url('../fonts/Gilroy-Extrabold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-ExtraboldItalic.otf') format("opentype"), url('../fonts/Gilroy-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-SemiboldItalic.otf') format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-UltraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-ThinItalic.otf') format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-UltraLightItalic.otf') format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}

:root {
  --sandy-brown: #ffa257;
  --light: #f8f9fa;
  --dark: #343a40;
  --dim-grey-2: #434352;
  --medium-slate-blue: #767ae6;
  --dark-slate-blue: #4549a8;
  --dark-orange: #ee8633;
  --black: #333;
  --dodger-blue: #3898ec;
  --slate-grey: #6c757d;
  --success: #28a746;
  --info: #16a2b8;
  --warning: #ffc108;
  --danger: #dc3446;
  --shadow-style1: #d6d6d6;
  --white-smoke: #ebebeb;
  --dim-grey: #656684;
  --dark-red: #881010;
  --footer-border: #acacac;
}

.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-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

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

.w-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-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

body {
  color: #333;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--sandy-brown);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  text-decoration: underline;
}

.cards-section {
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.centered-container {
  text-align: center;
  flex: 1;
  width: 68%;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-image-mask {
  border-radius: 0%;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.p-style1 {
  color: #333333c9;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6rem;
}

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

.p-style1.text-center.padding-top-20 {
  margin-top: 20px;
}

.p-style1.no-bot-padding {
  margin-bottom: 0;
}

.p-style1.text-white {
  color: #fff;
}

.btn-style1 {
  color: var(--light);
  letter-spacing: .75px;
  text-transform: uppercase;
  background-color: #ffa257;
  border-radius: 4px;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 0 1px 3px #00000085;
}

.btn-style1.color-green {
  background-color: #2eb442;
}

.btn-style1.color-green.center-alignment {
  align-self: center;
}

.btn-style1.color-red {
  background-color: #ec4438;
}

.btn-style1.color-red.margin-top-20 {
  margin-top: 20px;
}

.btn-style1.btn-lg {
  padding: 15px 25px;
}

.btn-style1.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.btn-style1.btn-block {
  text-align: center;
  flex: 0 auto;
  align-self: stretch;
  width: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0;
}

.btn-style1.padding-left-15px {
  margin-left: 15px;
}

.btn-style1.bg-white {
  color: #3898ec;
  background-color: #fff;
  font-weight: 600;
}

.btn-style1.padding-right-5px {
  margin-right: 5px;
}

.btn-style1.padding-left-5px {
  margin-left: 5px;
}

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

.cards-div-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.elements-container-block {
  margin: 50px 40px;
}

.elements-container-block.hide {
  display: none;
}

.btn-icon1 {
  background-color: #ffa257;
  border-radius: 2px;
  font-family: Material design iconic font, sans-serif;
  font-size: 25px;
}

.elements-div-block {
  flex-direction: row;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.elements-div-block._w-auto {
  flex-direction: column;
  align-items: stretch;
  width: auto;
  margin-right: 0;
  display: flex;
}

.btn-outline-style1 {
  color: #656684;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #ffa257;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.btn-link-style1 {
  border-bottom: 1.25px solid var(--sandy-brown);
  color: #656684;
  margin-right: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.btn-link-style1.font-italic {
  font-style: italic;
}

.btn-link-style1.font-weight-bold {
  font-weight: 700;
}

.btn-link-style1.font-weight-bolder {
  font-weight: 900;
}

.btn-link-style1.font-weight-light {
  font-weight: 300;
}

.btn-link-style1.font-weight-lighter {
  font-weight: 200;
}

.btn-link-style1.font-weight-normal {
  font-weight: 400;
}

.btn-link-style1.lead {
  font-size: 16px;
  line-height: 22px;
}

.btn-link-style1.small {
  font-size: 12px;
  line-height: 18px;
}

.btn-link-style1.text-capitalize {
  text-transform: capitalize;
}

.btn-link-style1.text-center {
  text-align: center;
}

.btn-link-style1.text-justify {
  text-align: justify;
}

.btn-link-style1.text-left {
  text-align: left;
}

.btn-link-style1.text-right {
  text-align: right;
}

.btn-link-style1.text-dark {
  color: var(--dark);
}

.btn-link-style1.text-decoration-none {
  text-decoration: none;
}

.btn-link-style1.text-hide {
  display: none;
}

.btn-link-style1.text-lowercase {
  text-transform: lowercase;
}

.btn-link-style1.text-uppercase {
  text-transform: uppercase;
}

.btn-link-style1.text-nowrap {
  white-space: nowrap;
}

.btn-link-style1.text-reset {
  color: #6e74f5;
}

.btn-link-style1.text-pre {
  white-space: pre;
}

.btn-link-style1.text-prewrap {
  white-space: pre-wrap;
}

.btn-link-style1.text-breakspaces {
  white-space: break-spaces;
}

.btn-link-style1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.btn-style2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #ffa257;
  border-radius: 30px;
  font-size: 14px;
}

.btn-style2.btn-lg {
  padding: 15px 25px;
}

.btn-style2.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.btn-style2.btn-block {
  background-color: var(--sandy-brown);
  text-align: center;
  flex: 0 auto;
  align-self: stretch;
  width: auto;
  margin-right: 0;
}

.btn-icon2 {
  background-color: #ffa257;
  border-radius: 30px;
  padding-left: 17px;
  padding-right: 17px;
  font-family: Material design iconic font, sans-serif;
  font-size: 25px;
}

.btn-outline-style2 {
  color: #656684;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #ffa257;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-style1 {
  border: 1px solid #6c757d61;
  border-radius: 5px;
}

.dropdown-style2 {
  border-radius: 5px;
}

.dropdown-header {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
}

.dropdown-link {
  color: #333;
  padding: 10px;
  text-decoration: none;
}

.dropdown-menu-style1.w--open {
  background-color: #fff;
  border: 1px solid #000;
  flex-direction: column;
  width: auto;
  padding: 10px 0;
  display: flex;
}

.dropdown-menu-style2.w--open {
  flex-direction: column;
  width: 200px;
  padding: 10px 0;
  display: flex;
}

.grid1 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 3px dotted #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 60px;
  display: grid;
}

.grid1.hide {
  display: none;
}

.btn-group-style1 {
  border: 1px #000;
  margin-right: 20px;
}

.btn-style3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #ffa257;
  font-size: 14px;
}

.btn-style3.border-white-1px {
  border: 1px solid #fff;
}

.btn-style3.rounded-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.btn-style3.rounded-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.btn-outline-style3 {
  color: #656684;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #ffa257;
  font-size: 14px;
  font-weight: 600;
}

.btn-outline-style3.border-leftright-0 {
  border-left-style: none;
  border-right-style: none;
}

.div-block-2 {
  margin-right: 10px;
}

.text-block {
  color: #3339;
  margin-bottom: 5px;
}

.btn-toolbar-style1 {
  border: 1px #000;
  align-items: stretch;
  margin-right: 20px;
  display: flex;
}

.dropdown-toggle-style1 {
  background-color: #ebebeb47;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-toggle-style2 {
  color: #fff;
  background-color: #ffa257;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.dropdown-toggle-style3 {
  color: #fff;
  background-color: #ffa257;
  align-self: stretch;
  align-items: center;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  display: flex;
}

.dropdown-toggle-style3.rounded-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown-toggle-style3.rounded-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown-style3 {
  align-self: stretch;
  align-items: center;
  height: auto;
  display: block;
}

.dropdown-style3.border-white-1px {
  border: 1px solid #fff;
}

.grid-2 {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  border-bottom: 3px dotted #0000001a;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-top: 10px;
  padding-bottom: 60px;
  display: grid;
}

.grid-2.hide {
  display: none;
}

.h1-display-1 {
  font-family: Open Sans, sans-serif;
  font-size: 4.209rem;
  font-weight: 800;
  line-height: 4.6rem;
}

.h1-display-1.font-italic {
  font-style: italic;
}

.h1-display-1.font-weight-bold {
  font-weight: 700;
}

.h1-display-1.font-weight-bold.font-color-white {
  color: var(--light);
  line-height: 4.6rem;
}

.h1-display-1.font-weight-light {
  font-weight: 300;
}

.h1-display-1.font-weight-lighter {
  font-weight: 200;
}

.h1-display-1.font-weight-normal {
  font-weight: 400;
}

.h1-display-1.lead {
  font-size: 44px;
  line-height: 48px;
}

.h1-display-1.small {
  font-size: 32px;
  line-height: 40px;
}

.h1-display-1.text-break {
  white-space: normal;
}

.h1-display-1.text-capitalize {
  text-transform: uppercase;
}

.h1-display-1.text-center {
  text-align: center;
}

.h1-display-1.text-justify {
  text-align: justify;
}

.h1-display-1.text-left {
  text-align: left;
}

.h1-display-1.text-right {
  text-align: right;
}

.h1-display-1.text-dark {
  color: var(--dark);
}

.h1-display-1.text-decoration-none {
  text-decoration: none;
}

.h1-display-1.text-hide {
  display: none;
}

.h1-display-1.text-lowercase {
  text-transform: lowercase;
}

.h1-display-1.text-uppercase {
  text-transform: uppercase;
}

.h1-display-1.text-nowrap {
  white-space: nowrap;
}

.h1-display-1.font-weight-bolder {
  font-weight: 900;
}

.h1-display-1.text-pre {
  white-space: pre;
}

.h1-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h1-display-1.text-preline {
  white-space: pre-line;
}

.h1-display-1.text-breakspaces {
  white-space: break-spaces;
}

.h1-display-1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.h1-display-1.text-decoration-underline {
  text-decoration: underline;
}

.h1-display-1.text-decoration-overline {
  text-decoration: overline;
}

.h1-display-1.text-white {
  color: #fff;
  line-height: 4.4rem;
}

.h2-display-1 {
  color: var(--dim-grey-2);
  object-fit: fill;
  font-family: Open Sans, sans-serif;
  font-size: 3.157rem;
  font-weight: 800;
  line-height: 3.7rem;
}

.h2-display-1.font-italic {
  font-style: italic;
}

.h2-display-1.font-weight-bold {
  font-weight: 700;
}

.h2-display-1.font-weight-bold.margin-bottom-20px {
  margin-bottom: 20px;
}

.h2-display-1.font-weight-bold.text-blue {
  color: var(--medium-slate-blue);
}

.h2-display-1.font-weight-bold.text-gray {
  color: var(--dim-grey-2);
}

.h2-display-1.font-weight-bold.text-dark-range {
  color: #5759a1;
}

.h2-display-1.font-weight-bold.text-darkviolet {
  color: var(--dark-slate-blue);
}

.h2-display-1.font-weight-bolder {
  font-weight: 900;
}

.h2-display-1.font-weight-light {
  font-weight: 300;
}

.h2-display-1.font-weight-lighter {
  font-weight: 200;
}

.h2-display-1.font-weight-normal {
  font-weight: 400;
}

.h2-display-1.font-weight-normal.text-white {
  color: #fff;
}

.h2-display-1.lead {
  font-size: 36px;
  line-height: 40px;
}

.h2-display-1.small {
  font-size: 28px;
  line-height: 32px;
}

.h2-display-1.text-breaktext-capitalize {
  text-transform: uppercase;
}

.h2-display-1.text-center {
  text-align: center;
}

.h2-display-1.text-left {
  text-align: left;
}

.h2-display-1.text-right {
  text-align: right;
}

.h2-display-1.text-dark {
  color: var(--dark);
}

.h2-display-1.text-decoration-none {
  text-decoration: none;
}

.h2-display-1.text-hide {
  display: none;
}

.h2-display-1.text-lowercase {
  text-transform: lowercase;
}

.h2-display-1.text-uppercase {
  text-transform: uppercase;
}

.h2-display-1.text-nowrap {
  white-space: nowrap;
}

.h2-display-1.text-pre {
  white-space: pre;
}

.h2-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h2-display-1.font-color-white {
  color: var(--light);
}

.divider {
  background-color: #d3d3d3;
  height: 40px;
}

.h3-display-1 {
  color: var(--dim-grey-2);
  font-family: Open Sans, sans-serif;
  font-size: 2.369rem;
  line-height: 2.8rem;
}

.h3-display-1.font-italic {
  font-style: italic;
}

.h3-display-1.font-weight-bold {
  font-weight: 700;
}

.h3-display-1.font-weight-bold.font-color-white {
  color: var(--light);
}

.h3-display-1.font-weight-bold.text-gray {
  color: var(--dim-grey-2);
}

.h3-display-1.font-weight-bold.text-darkorange {
  color: var(--dark-orange);
}

.h3-display-1.font-weight-bolder {
  font-weight: 900;
}

.h3-display-1.font-weight-light {
  font-weight: 300;
}

.h3-display-1.font-weight-lighter {
  font-weight: 200;
}

.h3-display-1.font-weight-normal {
  font-weight: 400;
}

.h3-display-1.font-weight-normal.font-text-white {
  color: #fff;
}

.h3-display-1.font-weight-normal.text-darkorange {
  color: var(--dark-orange);
}

.h3-display-1.lead {
  font-size: 28px;
  line-height: 34px;
}

.h3-display-1.small {
  font-size: 20px;
  line-height: 24px;
}

.h3-display-1.text-break {
  white-space: normal;
}

.h3-display-1.text-capitalize {
  text-transform: uppercase;
}

.h3-display-1.text-center {
  text-align: center;
}

.h3-display-1.text-justify {
  text-align: justify;
}

.h3-display-1.text-left {
  text-align: left;
}

.h3-display-1.text-right {
  text-align: right;
}

.h3-display-1.text-dark {
  color: var(--dark);
}

.h3-display-1.text-decoration-none {
  text-decoration: none;
}

.h3-display-1.text-hide {
  display: none;
}

.h3-display-1.text-lowercase {
  text-transform: lowercase;
}

.h3-display-1.text-uppercase {
  text-transform: uppercase;
}

.h3-display-1.text-nowrap {
  white-space: nowrap;
}

.h3-display-1.text-reset {
  color: var(--black);
}

.h3-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h3-display-1.text-preline {
  white-space: pre-line;
}

.h3-display-1.text-breakspaces {
  white-space: break-spaces;
}

.h3-display-1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.h3-display-1.text-decoration-underline {
  text-decoration: underline;
}

.h3-display-1.text-decoration-overline {
  text-decoration: overline;
}

.h3-display-1.text-white {
  color: #fff;
  line-height: 2.7rem;
}

.h3-display-1.margin-bottom-20px {
  margin-bottom: 20px;
}

.h3-display-1.font-weight-semibold {
  font-weight: 600;
}

.h3-display-1.font-weight-semibold.text-darkorange {
  color: var(--dark-orange);
}

.h4-display-1 {
  color: var(--dim-grey-2);
  font-family: Open Sans, sans-serif;
  font-size: 1.777rem;
  font-weight: 800;
  line-height: 2.2rem;
}

.h4-display-1.font-italic {
  font-style: italic;
}

.h4-display-1.font-weight-bold {
  font-size: 1.77rem;
  font-weight: 700;
}

.h4-display-1.font-weight-bold.center {
  text-align: center;
}

.h4-display-1.font-weight-bold.text-white {
  color: #fff;
}

.h4-display-1.font-weight-bold.text-dark-violet {
  color: var(--dark-orange);
}

.h4-display-1.font-weight-bold.text-violet {
  color: var(--medium-slate-blue);
}

.h4-display-1.font-weight-bold.text-darkorange {
  color: #e07d2c;
}

.h4-display-1.font-weight-bolder {
  font-weight: 900;
}

.h4-display-1.font-weight-light {
  font-size: 1.77rem;
  font-weight: 300;
  line-height: 2.3rem;
}

.h4-display-1.font-weight-lighter {
  font-weight: 200;
}

.h4-display-1.font-weight-normal {
  font-weight: 400;
}

.h4-display-1.font-weight-normal.text-white {
  color: #fff;
}

.h4-display-1.font-weight-normal.text-violet {
  color: var(--medium-slate-blue);
}

.h4-display-1.font-weight-normal.text-gray {
  color: var(--dim-grey-2);
}

.h4-display-1.lead {
  font-size: 22px;
  line-height: 28px;
}

.h4-display-1.small {
  font-size: 14px;
  line-height: 18px;
}

.h4-display-1.text-break {
  white-space: normal;
}

.h4-display-1.text-capitalize {
  text-transform: uppercase;
}

.h4-display-1.text-center {
  text-align: center;
}

.h4-display-1.text-justify {
  text-align: justify;
}

.h4-display-1.text-left {
  text-align: left;
}

.h4-display-1.text-right {
  text-align: right;
}

.h4-display-1.text-dark {
  color: var(--black);
}

.h4-display-1.text-decoration-none {
  text-decoration: none;
}

.h4-display-1.text-hide {
  display: none;
}

.h4-display-1.text-lowercase {
  text-transform: lowercase;
}

.h4-display-1.text-uppercase {
  text-transform: uppercase;
}

.h4-display-1.text-nowrap {
  white-space: nowrap;
}

.h4-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h4-display-1.text-preline {
  white-space: pre-line;
}

.h4-display-1.text-breakspaces {
  white-space: break-spaces;
}

.h4-display-1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.h4-display-1.text-decoration-underline {
  text-decoration: underline;
}

.h4-display-1.text-decoration-overline {
  text-decoration: overline;
}

.h4-display-1.font-weight-semibold {
  font-weight: 600;
}

.h4-display-1.font-weight-semibold.text-darkviolet {
  color: var(--dark-slate-blue);
}

.h5-display-1 {
  color: #434352e6;
  font-family: Open Sans, sans-serif;
  font-size: 1.33rem;
  font-weight: 800;
  line-height: 1.8rem;
}

.h5-display-1.font-italic {
  font-style: italic;
}

.h5-display-1.font-weight-bold {
  font-weight: 700;
}

.h5-display-1.font-weight-bold.text-dark-violet {
  color: var(--dark-slate-blue);
}

.h5-display-1.font-weight-bold.text-gray {
  color: var(--dim-grey-2);
}

.h5-display-1.font-weight-bolder {
  font-weight: 900;
}

.h5-display-1.font-weight-light {
  font-weight: 300;
}

.h5-display-1.font-weight-lighter {
  font-weight: 200;
}

.h5-display-1.font-weight-lighter.margin-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.h5-display-1.font-weight-lighter.margin-0:hover {
  text-decoration: underline;
}

.h5-display-1.font-weight-normal {
  font-weight: 400;
}

.h5-display-1.font-weight-normal.margin-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.h5-display-1.font-weight-normal.text-darkorange {
  color: var(--dark-orange);
}

.h5-display-1.lead {
  font-size: 18px;
  line-height: 22px;
}

.h5-display-1.small {
  font-size: 12px;
  line-height: 16px;
}

.h5-display-1.text-capitalize {
  text-transform: capitalize;
}

.h5-display-1.text-center {
  text-align: center;
}

.h5-display-1.text-justify {
  text-align: justify;
}

.h5-display-1.text-left {
  text-align: left;
}

.h5-display-1.text-right {
  text-align: right;
}

.h5-display-1.text-dark {
  color: var(--dark);
}

.h5-display-1.text-decoration-none {
  text-decoration: none;
}

.h5-display-1.text-hide {
  display: none;
}

.h5-display-1.text-lowercase {
  text-transform: lowercase;
}

.h5-display-1.text-uppercase {
  text-transform: uppercase;
}

.h5-display-1.text-nowrap {
  white-space: nowrap;
}

.h5-display-1.text-reset {
  color: #333;
}

.h5-display-1.text-pre {
  white-space: pre;
}

.h5-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h5-display-1.text-preline {
  white-space: pre-line;
}

.h5-display-1.text-breakspaces {
  white-space: break-spaces;
}

.h5-display-1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.h5-display-1.text-decoration-underline {
  text-decoration: underline;
}

.h5-display-1.text-decoration-overline {
  text-decoration: overline;
}

.h5-display-1.text-white {
  color: #fff;
}

.h5-display-1.font-weight-semibold {
  font-weight: 600;
}

.h5-display-1.font-weight-semibold.text-dark-orange {
  color: var(--dark-orange);
}

.h6-display-1 {
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4rem;
}

.h6-display-1.font-italic {
  font-style: italic;
}

.h6-display-1.font-weight-bold {
  font-weight: 700;
}

.h6-display-1.font-weight-bold.text-orange {
  color: #ffa257;
}

.h6-display-1.font-weight-bolder {
  font-weight: 900;
}

.h6-display-1.font-weight-light {
  font-weight: 300;
}

.h6-display-1.font-weight-lighter {
  font-weight: 200;
}

.h6-display-1.font-weight-normal {
  font-weight: 400;
}

.h6-display-1.font-weight-normal.text-orange {
  color: #ffa257;
}

.h6-display-1.font-weight-normal._3 {
  font-size: 15px;
}

.h6-display-1.lead {
  font-size: 16px;
}

.h6-display-1.small {
  font-size: 11px;
  line-height: 16px;
}

.h6-display-1.text-break {
  white-space: normal;
}

.h6-display-1.text-capitalize {
  text-transform: uppercase;
}

.h6-display-1.text-center {
  text-align: center;
}

.h6-display-1.text-justify {
  text-align: justify;
}

.h6-display-1.text-left {
  text-align: left;
}

.h6-display-1.text-right {
  text-align: right;
}

.h6-display-1.text-dark {
  color: var(--dark);
}

.h6-display-1.text-decoration-none {
  text-decoration: none;
}

.h6-display-1.text-hide {
  display: none;
}

.h6-display-1.text-lowercase {
  text-transform: lowercase;
}

.h6-display-1.text-uppercase {
  text-transform: uppercase;
}

.h6-display-1.text-nowrap {
  white-space: nowrap;
}

.h6-display-1.text-reset {
  color: #333;
}

.h6-display-1.text-pre {
  white-space: pre;
}

.h6-display-1.text-prewrap {
  white-space: pre-wrap;
}

.h6-display-1.text-preline {
  white-space: pre-line;
}

.h6-display-1.text-breakspaces {
  white-space: break-spaces;
}

.h6-display-1.text-decoration-strikethrough {
  text-decoration: line-through;
}

.h6-display-1.text-decoration-underline {
  text-decoration: underline;
}

.h6-display-1.text-decoration-overline {
  text-decoration: overline;
}

.h6-display-1.text-violet {
  color: var(--medium-slate-blue);
}

.h3-boilerplate-heading {
  color: #3339;
  background-color: #e9e9e9;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
}

.h1-boilerplate-heading {
  color: #035b96;
  font-weight: 700;
}

.p-style-1 {
  color: #444c;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
}

.p-style-1.font-italic {
  font-style: italic;
}

.p-style-1.font-weight-bold {
  font-weight: 700;
}

.p-style-1.font-weight-bold.text-center.margin-bottom-0px {
  margin-bottom: 0;
}

.p-style-1.font-weight-bolder {
  font-weight: 900;
}

.p-style-1.font-weight-light {
  font-weight: 300;
}

.p-style-1.font-weight-lighter {
  font-weight: 200;
}

.p-style-1.font-weight-normal {
  font-weight: 400;
}

.p-style-1.lead {
  font-size: 16px;
}

.p-style-1.small {
  font-size: 12px;
  line-height: 18px;
}

.p-style-1.text-capitalize {
  text-transform: uppercase;
}

.p-style-1.text-center {
  text-align: center;
}

.p-style-1.text-center.text-white {
  color: #fff;
}

.p-style-1.text-justify {
  text-align: justify;
}

.p-style-1.text-left {
  text-align: left;
}

.p-style-1.text-right {
  text-align: right;
}

.p-style-1.text-dark {
  color: var(--dark);
}

.p-style-1.text-decoration-none {
  text-decoration: none;
}

.p-style-1.text-hide {
  display: none;
}

.p-style-1.text-lowercase {
  text-transform: lowercase;
}

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

.p-style-1.text-pre {
  white-space: pre;
}

.p-style-1.text-preline {
  white-space: pre-line;
}

.p-style-1.text-white {
  color: #fff;
}

.p-style-1.blog {
  color: #444c;
  text-align: center;
  font-size: 1rem;
}

.p-style-1.quantity-price {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3rem;
}

.block-quotes-style-1 {
  color: #444;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.block-quotes-style-1.font-italic {
  font-style: italic;
}

.block-quotes-style-1.font-weight-bold {
  font-weight: 700;
}

.block-quotes-style-1.font-weight-bolder {
  font-weight: 900;
}

.block-quotes-style-1.font-weight-light {
  font-weight: 300;
}

.block-quotes-style-1.font-weight-lighter {
  font-weight: 200;
}

.block-quotes-style-1.font-weight-normal {
  font-weight: 400;
}

.block-quotes-style-1.lead {
  font-size: 22px;
  line-height: 28px;
}

.block-quotes-style-1.small {
  font-size: 16px;
  line-height: 20px;
}

.block-quotes-style-1.text-capitalize {
  text-transform: uppercase;
}

.block-quotes-style-1.text-center {
  text-align: center;
}

.block-quotes-style-1.text-left {
  text-align: left;
}

.block-quotes-style-1.text-right {
  text-align: right;
}

.block-quotes-style-1.text-dark {
  color: var(--dark);
}

.block-quotes-style-1.text-decoration-none {
  text-decoration: none;
}

.block-quotes-style-1.text-hide {
  display: none;
}

.block-quotes-style-1.text-lowercase {
  text-transform: lowercase;
}

.block-quotes-style-1.text-uppercase {
  text-transform: uppercase;
}

.block-quotes-style-1.text-nowrap {
  white-space: nowrap;
}

.block-quotes-style-1.text-reset {
  color: #333;
}

.block-quotes-style-1.text-pre {
  white-space: pre;
}

.block-quotes-style-1.text-prewrap {
  white-space: pre-wrap;
}

.block-quotes-style-1.text-breakspaces {
  white-space: break-spaces;
}

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

.block-quotes-style-1.text-decoration-underline {
  text-decoration: underline;
}

.block-quotes-style-1.text-decoration-overline {
  text-decoration: overline;
}

.ul-style-1.font-italic {
  font-style: italic;
}

.ul-style-1.font-weight-bold {
  font-weight: 700;
}

.ul-style-1.font-weight-bolder {
  font-weight: 900;
}

.ul-style-1.font-weight-light {
  font-weight: 300;
}

.ul-style-1.font-weight-lighter {
  font-weight: 200;
}

.ul-style-1.font-weight-normal {
  font-weight: 400;
}

.ul-style-1.lead {
  font-size: 16px;
  line-height: 22px;
}

.ul-style-1.small {
  font-size: 12px;
  line-height: 18px;
}

.ul-style-1.text-break {
  white-space: normal;
}

.ul-style-1.text-capitalize {
  text-transform: uppercase;
}

.ul-style-1.text-center {
  text-align: center;
}

.ul-style-1.text-justify {
  text-align: justify;
}

.ul-style-1.text-left {
  text-align: left;
}

.ul-style-1.text-right {
  text-align: right;
}

.ul-style-1.text-dark {
  color: var(--dark);
}

.ul-style-1.text-decoration-none {
  text-decoration: none;
}

.ul-style-1.text-hide {
  display: none;
}

.ul-style-1.text-lowercase {
  text-transform: lowercase;
}

.ul-style-1.text-uppercase {
  text-transform: uppercase;
}

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

.ul-style-1.text-reset {
  color: #333;
}

.ul-style-1.text-pre {
  white-space: pre;
}

.ul-style-1.text-prewrap {
  white-space: pre-wrap;
}

.ul-style-1.text-preline {
  white-space: pre-line;
}

.ul-style-1.text-breakspaces {
  white-space: break-spaces;
}

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

.ul-style-1.text-decoration-underline {
  text-decoration: underline;
}

.ul-style-1.text-decoration-overline {
  text-decoration: overline;
}

.list-item-style-1 {
  color: #444c;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumb-style-1 {
  display: flex;
}

.breadcrumb-item {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #313131;
}

.breadcrumb-divider {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
}

.breadcrumb-divider.none {
  opacity: 0;
}

.form-group {
  flex-direction: column;
  display: flex;
}

.form-row {
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.form-row.v-align-center {
  align-items: center;
}

.form-control-sm {
  border: 1px #000;
  height: 30px;
  margin-bottom: 0;
  font-size: 12px;
}

.form-control {
  border: 1px #000;
  flex-direction: column;
  flex: 0 auto;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.form-control.rounded-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.form-control.rounded-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.form-control.border-0 {
  border-style: none;
}

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

.form-card-style-1 {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
}

.form-card-style-1._w-50 {
  width: 50%;
}

.label-style-1 {
  color: #444;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6rem;
}

.label-style-1.font-italic {
  font-style: italic;
}

.label-style-1.font-weight-bold {
  font-weight: 700;
}

.label-style-1.font-weight-bolder {
  font-weight: 900;
}

.label-style-1.font-weight-light {
  font-weight: 300;
}

.label-style-1.font-weight-lighter {
  font-weight: 200;
}

.label-style-1.font-weight-normal {
  font-weight: 400;
}

.label-style-1.lead {
  font-size: 16px;
  line-height: 22px;
}

.label-style-1.small {
  font-size: 12px;
  line-height: 18px;
}

.label-style-1.text-capitalize {
  text-transform: uppercase;
}

.label-style-1.text-center {
  text-align: center;
}

.label-style-1.text-justify {
  text-align: justify;
}

.label-style-1.text-left {
  text-align: left;
}

.label-style-1.text-right {
  text-align: right;
}

.label-style-1.text-dark {
  color: var(--dark);
}

.label-style-1.text-decoration-none {
  text-decoration: none;
}

.label-style-1.text-hide {
  display: none;
}

.label-style-1.text-lowercase {
  text-transform: lowercase;
}

.label-style-1.text-uppercase {
  text-transform: uppercase;
}

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

.label-style-1.text-reset {
  color: #333;
}

.label-style-1.text-pre {
  white-space: pre;
}

.label-style-1.text-prewrap {
  white-space: pre-wrap;
}

.label-style-1.text-preline {
  white-space: pre-line;
}

.label-style-1.text-breakspaces {
  white-space: break-spaces;
}

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

.label-style-1.text-decoration-underline {
  text-decoration: underline;
}

.label-style-1.text-decoration-overline {
  text-decoration: overline;
}

.form-input-style-1 {
  border: 1px solid #00000026;
  flex: 1;
  margin-bottom: 10px;
}

.form-input-style-1.bottom-margin-0 {
  margin-bottom: 0;
}

.form-input-style-2 {
  border-radius: 5px;
  margin-bottom: 0;
}

.form-input-style-2.shadow-style-1 {
  box-shadow: 0 1px 4px #d6d6d6;
}

.form-input-style-2.sizing-grow {
  flex: 1;
}

.text-area-style-1 {
  border: 1px solid #00000026;
  align-self: stretch;
  height: 20vh;
  margin-bottom: 20px;
  display: flex;
}

.text-area-style-2 {
  border: 1px solid #00000026;
  border-radius: 5px;
  height: 15vh;
  margin-bottom: 20px;
  display: flex;
  box-shadow: 0 1px 4px #d6d6d6;
}

.input-group-style-1 {
  border: 1px solid #00000026;
  align-items: stretch;
  display: flex;
}

.input-item-style-1 {
  color: #333333b3;
  background-color: #e7e7e7;
  align-self: stretch;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  display: flex;
}

.input-group-style-2 {
  display: flex;
}

.input-group-style-2.shadow-style-1 {
  border: 1px solid #00000026;
  border-radius: 5px;
  box-shadow: 1px 1px 4px #d6d6d6;
}

.input-item-style-2 {
  color: #333333b3;
  background-color: #e7e7e7;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  align-self: stretch;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  display: flex;
}

.input-item-style-2.align-right {
  border-radius: 0 5px 5px 0;
}

.grid-row {
  border-bottom: 3px dotted #0000001a;
  grid-template-rows: auto;
  padding-bottom: 20px;
}

.form-control-textarea {
  border: 1px #000;
  flex-direction: row;
  flex: 0 auto;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.form-control-textarea.from-gray {
  background-color: var(--light);
}

.form-control-textarea.from-gray.min-height-150 {
  width: 100%;
  min-height: 150px;
}

.form-control-textarea.min-height-150px {
  min-height: 150px;
}

.note {
  color: #333333b3;
  border-left: 3px solid #3898ecb3;
  margin: 10px 10px 10px 20px;
  padding-left: 10px;
  font-size: 12px;
  font-style: italic;
}

.note.padding-left-0 {
  margin-left: 0;
}

.form-control-lg {
  border: 1px #000;
  flex-direction: column;
  flex: 0 auto;
  align-items: stretch;
  height: 50px;
  margin-bottom: 0;
  font-size: 24px;
  display: flex;
}

.grid-3 {
  grid-template-rows: auto auto auto auto;
}

.modal {
  width: 650px;
}

.modal-style-1 {
  background-color: #fff;
  border-radius: 5px;
  padding: 0;
}

.modal-style-1.shadow-style-1 {
  box-shadow: 0 1px 4px #d6d6d6;
}

.modal-header {
  padding: 5px 40px;
}

.modal-body {
  padding-left: 40px;
  padding-right: 40px;
}

.modal-footer {
  background-color: #f0f0f0;
  padding: 15px 40px;
}

.modal-xl {
  width: 900px;
}

.modal-row {
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.modal-lg {
  width: 750px;
}

.modal-sm {
  width: 500px;
}

.modal-wrapper {
  background-color: #00000080;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.alert-style-1 {
  background-color: var(--dodger-blue);
  color: #fff;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.alert-style-1.alert-light {
  color: #464646;
  background-color: #d8d8d8;
}

.alert-style-1.alert-dark {
  background-color: #999;
}

.alert-style-1.bg-success {
  background-color: #28a746;
}

.alert-style-1.bg-danger {
  background-color: #dc3446;
}

.alert-style-1.bg-warning {
  background-color: #ffc108;
}

.alert-style-1.bg-info {
  background-color: #16a2b8;
}

.close {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px;
  font-family: Material design iconic font, sans-serif;
  font-size: 18px;
}

.close.text-white {
  color: #fff;
  font-size: 16px;
}

.accordion {
  margin-top: 15px;
  margin-bottom: 15px;
}

.accordion-style-1 {
  border: 1px solid #00000026;
}

.accordion-header-1 {
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #00000026;
  height: 60px;
  padding: 10px 20px;
  display: flex;
}

.accordion-body-1 {
  padding: 20px;
  display: none;
}

.accordion-header-2 {
  cursor: pointer;
  background-color: #fff;
  align-items: center;
  height: 50px;
  padding: 5px 20px;
  display: flex;
}

.chevron-down {
  margin-left: 10px;
  font-family: Material design iconic font, sans-serif;
  font-size: 30px;
}

.add-button {
  color: #838383;
  margin-right: 10px;
  font-family: Material design iconic font, sans-serif;
  font-size: 30px;
}

.tooltip-top-style-1 {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-bottom: 5px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 40px;
}

.tooltip-top-style-1.hide {
  display: none;
}

.tooltip-inner {
  z-index: 998;
  color: #fff;
  white-space: nowrap;
  background-color: #504f4f;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  width: 110px;
  padding: 5px;
  font-size: 12px;
  display: flex;
  position: static;
}

.div-block-3 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.div-block-3.align-center {
  justify-content: center;
}

.tooltip-top-arrow {
  background-color: #504f4f;
  width: 15px;
  height: 15px;
  margin-top: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.tooltip-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.tooltip-container.margin-right-15px {
  margin-right: 15px;
}

.tooltip-bottom-style-1 {
  z-index: 99;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 5px;
  display: flex;
  position: absolute;
  top: 40px;
  bottom: auto;
}

.tooltip-bottom-style-1.hide {
  display: none;
}

.tooltip-bottom-arrow {
  background-color: #504f4f;
  width: 15px;
  height: 15px;
  margin-bottom: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.tooltip-right-style-1 {
  flex-direction: row;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 105%;
}

.tooltip-right-style-1.hide {
  display: none;
}

.tooltip-right-arrow {
  background-color: #504f4f;
  width: 15px;
  height: 15px;
  margin-right: -12px;
  transform: rotate(45deg);
}

.tooltip-left-style-1 {
  flex-direction: row;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 105% 0% auto;
}

.tooltip-left-style-1.hide {
  display: none;
}

.tooltip-left-arrow {
  background-color: #504f4f;
  width: 15px;
  height: 15px;
  margin-left: -12px;
  transform: rotate(45deg);
}

.popover-top-style-1 {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-bottom: 5px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 40px;
}

.popover-top-style-1.hide {
  display: none;
}

.popover-top-arrow {
  background-color: #eee;
  width: 15px;
  height: 15px;
  margin-top: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.popover-inner {
  z-index: 998;
  background-color: #eee;
  border-radius: 4px;
  flex-direction: column;
  align-items: stretch;
  width: 200px;
  display: flex;
  position: static;
}

.popover-header {
  border-bottom: 1px solid #dadada;
  padding-left: 10px;
  padding-right: 10px;
}

.popover-body {
  padding: 10px;
}

.popover {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.popover.margin-15px {
  margin: 15px;
}

.popover-bottom-style-1 {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 5px;
  display: flex;
  position: absolute;
  top: 40px;
  bottom: auto;
}

.popover-bottom-style-1.hide {
  display: none;
}

.popover-bottom-arrow {
  background-color: #eee;
  width: 15px;
  height: 15px;
  margin-bottom: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.popover-right-style-1 {
  flex-direction: row;
  align-items: center;
  width: auto;
  margin-left: 5px;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 105%;
}

.popover-right-style-1.hide {
  display: none;
}

.popover-right-arrow {
  background-color: #eee;
  width: 15px;
  height: 15px;
  margin-right: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.popover-left-style-1 {
  flex-direction: row;
  align-items: center;
  width: auto;
  margin-right: 5px;
  display: flex;
  position: absolute;
  inset: 0% 105% 0% auto;
}

.popover-left-style-1.hide {
  display: none;
}

.popover-left-arrow {
  background-color: #eee;
  width: 15px;
  height: 15px;
  margin-left: -12px;
  position: static;
  top: 15px;
  bottom: auto;
  transform: rotate(45deg);
}

.accordion-body-2 {
  border: 1px solid #00000026;
  border-radius: 5px;
  padding: 20px;
  display: none;
}

.accordion-header-3 {
  cursor: pointer;
  background-color: #fff;
  align-items: center;
  height: 50px;
  padding: 5px 20px;
  display: flex;
}

.accordion-body-3 {
  padding: 20px;
  display: none;
}

.figure {
  margin-top: 10px;
  margin-bottom: 10px;
}

.figure-caption {
  margin-top: 10px;
}

.panel.margin-right-15px {
  margin-right: 15px;
}

.panel-style-1 {
  background-color: #fff;
  border-radius: 5px;
  width: 25vw;
}

.panel-style-1.shadow-style-1 {
  box-shadow: 0 1px 4px #d6d6d6;
}

.panel-header-style-1 {
  color: #fff;
  background-color: #2574ab;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  padding-left: 15px;
  display: flex;
}

.panel-header-style-1.bg-success {
  background-color: #259dab;
}

.panel-header-style-1.bg-warning {
  background-color: #e6ad5c;
}

.panel-header-style-1.bg-danger {
  background-color: #d95350;
}

.panel-header-style-1.bg-info {
  background-color: #5ac0de;
}

.panel-body-style-1 {
  padding: 15px;
}

.pagination {
  flex-direction: column;
  width: 300px;
  height: 42px;
  display: flex;
}

.pagination-style-1 {
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.page-item-style-1 {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.page-item-style-1.padding-right-5px {
  margin-right: 5px;
}

.page-item-style-1.padding-right-5px.active {
  background-color: #2b6597;
}

.page-icon-style-1 {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: Material design iconic font, sans-serif;
  font-size: 20px;
  display: flex;
}

.page-icon-style-1.padding-right-5px {
  margin-right: 5px;
}

.pagination-lg {
  flex-direction: column;
  width: 370px;
  height: 50px;
  font-size: 18px;
  display: flex;
}

.pagination-sm {
  flex-direction: column;
  width: 240px;
  height: 32px;
  font-size: 12px;
  display: flex;
}

.pagination-style-2 {
  background-color: #fff;
  border: 1px solid #00000026;
  border-radius: 5px;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.page-icon-style-2 {
  color: #33333380;
  background-color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: Material design iconic font, sans-serif;
  font-size: 20px;
  display: flex;
}

.page-item-style-2 {
  color: #2a2a2a80;
  background-color: #fff;
  border-right: 1px solid #00000026;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.page-item-style-2.border-left-1px {
  border-left: 1px solid #00000026;
}

.page-item-style-2.border-left-1px.active {
  color: #fff;
  background-color: #3898ec;
  border-top: 1px solid #3898ec;
  border-bottom: 1px solid #3898ec;
}

.div-block-4 {
  width: 100px;
}

.pager {
  flex: 1;
  justify-content: center;
  display: flex;
}

.pager.h-justify-space-between {
  justify-content: space-between;
}

.pager-symbol {
  font-family: Material design iconic font, sans-serif;
}

.pager-style-1 {
  border-radius: 5px;
}

.pager-style-1.margin-right-5px {
  margin-right: 5px;
}

.pager-style-1.margin-left-5px {
  margin-left: 5px;
}

.badge {
  flex-direction: column;
  align-items: flex-start;
}

.badge.padding-right-10px {
  margin-right: 10px;
}

.badge-style-1 {
  background-color: var(--slate-grey);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  padding: 3px 7px;
  display: flex;
}

.badge-style-1.badge-primary {
  background-color: #3898ec;
}

.badge-style-1.badge-success {
  background-color: var(--success);
}

.badge-style-1.badge-info {
  background-color: var(--info);
}

.badge-style-1.badge-warning {
  background-color: var(--warning);
}

.badge-style-1.badge-danger {
  background-color: var(--danger);
}

.badge-style-1.badge-light {
  background-color: var(--light);
  color: var(--slate-grey);
}

.badge-style-1.badge-dark {
  background-color: var(--dark);
}

.badge-pill-style-1 {
  background-color: var(--slate-grey);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  padding: 3px 10px;
  font-size: 12px;
  display: flex;
}

.card-group {
  flex-wrap: wrap;
  justify-content: center;
  width: 1285px;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
}

.card-group._w-80 {
  border-bottom: 2px solid var(--sandy-brown);
  flex-wrap: wrap;
  align-items: center;
  width: 70%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.card {
  flex-direction: column;
  width: 300px;
  display: flex;
}

.card.shadow-style-1 {
  border-radius: 5px;
  justify-content: center;
  width: 40%;
  margin: 20px;
  box-shadow: 1px 1px 4px #d6d6d6;
}

.card.shadow-style-1._w-50, .card._w-50 {
  width: 45%;
}

.card-header {
  border-bottom: 1px solid #00000026;
  padding: 10px 20px;
}

.card-body {
  padding: 10px 20px;
}

.card-footer {
  background-color: #f0f0f0;
  padding: 10px 20px;
}

.card-title.text-white {
  color: #fff;
}

.card-img {
  border-radius: 5px;
  flex-direction: column;
  width: 300px;
  margin: 20px;
  display: flex;
}

.card-img.shadow-style-1 {
  width: 25%;
  box-shadow: 1px 1px 4px #d6d6d6;
}

.card-img-top {
  border-bottom: 1px solid #00000026;
  flex-direction: column;
  justify-content: center;
  height: 150px;
  display: flex;
  overflow: hidden;
}

.card-img-bottom {
  padding: 20px;
}

.card-img-overlay {
  background-image: linear-gradient(#525252d1, #525252d1), url('../images/5e5552679c9dd9be9b84ff97_map-and-compass-p-1080.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 250px;
  margin: 10px;
  display: flex;
}

.card-img-overlay.shadow-style-1 {
  background-image: linear-gradient(#525252a6, #525252a6), url('../images/5e5552679c9dd9be9b84ff97_map-and-compass-p-1080.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.div-block-5 {
  padding-left: 60px;
  padding-right: 60px;
}

.cta-card-style-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 80vw;
  padding: 40px;
  display: grid;
}

.cta-card-style-1.shadow-style-1 {
  box-shadow: 2px 2px 5px 2px var(--shadow-style1);
  border-radius: 10px;
}

.cta-card-style-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid #00000026;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 80vw;
  padding: 40px;
  display: grid;
}

.form-card {
  border-radius: 5px;
  width: 40vw;
}

.form-card.shadow-style-1 {
  box-shadow: 2px 2px 5px 2px var(--shadow-style1);
}

.carousel-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-caption {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.media-body {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  width: 50vw;
  display: flex;
}

.media {
  flex: none;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
}

.tabs-style-1 {
  border-radius: 5px;
}

.tabs-style-1._2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.tabs-style-1.table-dark {
  color: #fff;
  background-color: #313131;
}

.tabs-style-1.bordered {
  border: 1px solid var(--white-smoke);
}

.tabs-style-1.table-light {
  background-color: #e0e0e0;
}

.tabs-menu-1 {
  display: flex;
}

.tabs-menu-1.h-justify-center {
  justify-content: center;
  display: flex;
}

.tabs-menu-1.h-justify-end {
  justify-content: flex-end;
}

.tabs-menu-1._w-25 {
  flex-direction: column;
  flex: 0 auto;
  width: 25%;
}

.tabs-link-1.sizing-grow {
  text-align: center;
  flex: 1;
}

.tabs-content-1._w-75 {
  width: 75%;
}

.navbar {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.navbar-nav {
  justify-content: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.navbar-nav.bg-dark {
  background-color: var(--dark);
  color: #fff;
  align-items: center;
}

.navbar-nav.top-nav {
  background-color: var(--white-smoke);
  justify-content: center;
  height: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

.navbar-nav.top-nav.v2 {
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand {
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--dim-grey);
  text-align: center;
  font-size: 15px;
}

.nav-pills {
  background-color: #0000;
  border-radius: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.nav-pills.w--current {
  background-color: var(--dodger-blue);
  color: #fff;
}

.nav-pills.sizing-grow {
  text-align: center;
  flex: 1;
}

.div-block-6 {
  border-bottom: 3px solid #0000000d;
  padding-top: 20px;
  padding-bottom: 20px;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.icon._w-152 {
  width: 152px;
  height: 152px;
}

.icon._w-120 {
  width: 120px;
  height: 120px;
}

.icon._w-76 {
  width: 76px;
  height: 76px;
}

.icon._w-60 {
  width: 60px;
  height: 60px;
}

.icon._w-60.margin-right {
  margin-right: 10px;
}

.icon._w-32 {
  width: 32px;
  height: 32px;
}

.icon._w-32.margin-right-10px {
  margin-right: 10px;
}

.icon._w-32.margin-right-30px {
  flex: none;
  margin-right: 30px;
}

.icon._w-16 {
  width: 16px;
  height: 16px;
}

.thead {
  justify-content: space-between;
  display: flex;
}

.tbody {
  flex-direction: column;
  display: flex;
}

._2-column {
  width: 50%;
}

.text-block-2 {
  background-color: #ebebeb;
  border: 1px solid #00000026;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

.div-block-7 {
  display: flex;
}

.div-block-7.hide {
  display: none;
}

._3-column {
  width: 33.33%;
}

._4-column {
  width: 25%;
}

.th, .td {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.tr {
  align-self: stretch;
  display: flex;
}

.thead-style-1 {
  border: 1px none var(--white-smoke);
  justify-content: space-between;
  display: flex;
}

.thead-style-1.stripped {
  background-color: var(--white-smoke);
}

.tbody-style-1 {
  flex-direction: column;
  display: flex;
}

.tr-style-1 {
  align-self: stretch;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.tr-style-1.stripped {
  background-color: var(--white-smoke);
}

.tr-style-1.bordered {
  border-top: 1px solid var(--white-smoke);
}

.tr-style-1.table-active {
  background-color: #3898ec4d;
}

._5-column {
  width: 20%;
}

._6-column {
  width: 16.67%;
}

._7-column {
  width: 14.29%;
}

._8-column {
  width: 12.5%;
}

._9-column {
  width: 11.11%;
}

._10-column {
  width: 10%;
}

._11-column {
  width: 9.09%;
}

._12-column {
  width: 8.34%;
}

._13-column {
  width: 7.69%;
}

.div-block.border-1px {
  border: 1px solid #000;
}

.div-block.border-top-1px {
  border-top: 1px solid #000;
}

.div-block.border-bottom-1px {
  border-bottom: 1px solid #000;
}

.div-block.border-right-1px {
  border-right: 1px solid #000;
}

.div-block.border-left-1px {
  border-left: 1px solid #000;
}

.div-block.border-0 {
  border: 1px #000;
}

.div-block.border-top-0 {
  border-top: 1px #000;
}

.div-block.border-bottom-0 {
  border-bottom: 1px #000;
}

.div-block.border-right-0 {
  border-right: 1px #000;
}

.div-block.border-left-0 {
  border-left: 1px #000;
}

.div-block.border-primary {
  border: 1px solid var(--dodger-blue);
}

.div-block.border-secondary {
  border: 1px solid var(--dark);
}

.div-block.border-success {
  border: 1px solid var(--success);
}

.div-block.border-danger {
  border: 1px solid var(--danger);
}

.div-block.border-info {
  border: 1px solid var(--info);
}

.div-block.border-warning {
  border: 1px solid var(--warning);
}

.div-block.border-light {
  border: 1px solid var(--light);
}

.div-block.border-dark {
  border: 1px solid var(--dark);
}

.div-block.border-white {
  border: 1px solid #fff;
}

.div-block.rounded {
  border: 1px solid #000;
  border-radius: 5px;
}

.div-block.rounded-top {
  border: 1px solid #000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.div-block.rounded-bottom {
  border: 1px solid #000;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.div-block.rounded-right {
  border: 1px solid #000;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.div-block.rounded-left {
  border: 1px solid #000;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.div-block.rounded-circle {
  border: 1px solid #000;
  border-radius: 50px;
}

.div-block.rounded-pill {
  border: 1px solid #000;
  border-radius: 10px;
}

.div-block.rounded-0 {
  border: 1px solid #000;
}

.div-block.rounded-8px {
  border: 1px solid #000;
  border-radius: 8px;
}

.div-block.rounded-sm {
  border: 1px solid #000;
  border-radius: 3px;
}

.div-block.rounded-lg {
  border: 1px solid #000;
  border-radius: 8px;
}

.div-block.clearfix {
  clear: none;
}

.div-block.clear-left {
  clear: left;
}

.div-block.clear-right {
  clear: right;
}

.div-block.clear-both {
  clear: both;
}

.div-block.text-dark-red {
  color: var(--dark-red);
}

.div-block.text-primary {
  color: var(--dodger-blue);
}

.div-block.text-secondary {
  color: var(--slate-grey);
}

.div-block.text-success {
  color: var(--success);
}

.div-block.text-info {
  color: var(--info);
}

.div-block.text-warning {
  color: var(--warning);
}

.div-block.text-danger {
  color: var(--danger);
}

.div-block.text-light {
  color: var(--light);
}

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

.div-block.text-body {
  color: #333;
}

.div-block.text-muted {
  color: #33333380;
}

.div-block.text-white {
  color: #fff;
}

.div-block.bg-dark-red {
  background-color: var(--dark-red);
}

.div-block.bg-primary {
  background-color: var(--dodger-blue);
}

.div-block.bg-secondary {
  background-color: var(--slate-grey);
}

.div-block.bg-success {
  background-color: var(--success);
}

.div-block.bg-info {
  background-color: var(--info);
}

.div-block.bg-warning {
  background-color: var(--warning);
}

.div-block.bg-danger {
  background-color: var(--danger);
}

.div-block.bg-light {
  background-color: var(--light);
}

.div-block.bg-dark {
  background-color: var(--dark);
}

.div-block.bg-white {
  background-color: #fff;
}

.div-block.bg-transparent {
  background-color: #0000;
}

.div-block.bg-gradient-dark-red {
  background-image: linear-gradient(to bottom, var(--dark-red), white);
}

.div-block.d-block, .div-block.d-flex, .div-block.d-grid {
  display: flex;
}

.div-block.d-inline-block {
  display: inline-block;
}

.div-block.d-inline {
  display: inline;
}

.div-block.d-none {
  display: none;
}

.div-block.h-align-start {
  align-items: flex-start;
  display: flex;
}

.div-block.custom-flex1 {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.div-block.h-align-center {
  align-items: center;
  display: flex;
}

.div-block.h-align-end {
  align-items: flex-end;
  display: flex;
}

.div-block.h-align-baseline {
  flex-direction: row;
  align-items: baseline;
  display: flex;
}

.div-block.h-align-stretch {
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

.div-block.h-justify-start {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.div-block.h-justify-center {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.div-block.h-justify-end {
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
}

.div-block.h-justify-space-between, .div-block.h-justify-space-around {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.div-block.h-children-wrap-start, .div-block.h-children-wrap-center {
  flex-flow: wrap;
  place-content: center space-between;
  display: flex;
}

.div-block.h-children-wrap-end {
  flex-flow: wrap;
  place-content: flex-end space-between;
  display: flex;
}

.div-block.h-children-wrap-stretch, .div-block.h-children-wrap-space-between, .div-block.h-children-wrap-space-around {
  flex-flow: wrap;
  place-content: stretch space-between;
  display: flex;
}

.div-block.v-align-start {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.div-block.v-align-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block.v-align-baseline {
  flex-direction: column;
  align-items: baseline;
  display: flex;
}

.div-block.v-align-stretch {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.div-block.v-justify-start {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.div-block.v-justify-center {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.div-block.v-justify-end {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.div-block.v-justify-space-between {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.div-block.v-justify-space-around {
  flex-direction: column;
  justify-content: space-around;
  display: flex;
}

.div-block.v-children-wrap-start {
  flex-flow: column wrap;
  align-content: flex-start;
  display: flex;
}

.div-block.v-children-wrap-center {
  flex-flow: column wrap;
  align-content: center;
  display: flex;
}

.div-block.v-children-wrap-end {
  flex-flow: column wrap;
  align-content: flex-end;
  display: flex;
}

.div-block.v-children-wrap-stretch {
  flex-flow: column wrap;
  align-content: stretch;
  display: flex;
}

.div-block.v-children-wrap-space-between {
  flex-flow: column wrap;
  align-content: space-between;
  display: flex;
}

.div-block.v-children-wrap-space-around {
  flex-flow: column wrap;
  align-content: space-around;
  display: flex;
}

.div-block.sizing-grow {
  flex: 1;
}

.div-block.sizing-none {
  flex: none;
}

.div-block.sizing-shrink {
  flex: 0 auto;
}

.div-block.sizing-grow-1 {
  flex: 1 0 auto;
}

.div-block.sizing-shrink-1 {
  flex: 0 auto;
}

.div-block.sizing-basis-20vw {
  flex: 0 0 20vw;
}

.div-block.align-left {
  align-self: flex-start;
}

.div-block.align-center {
  align-self: center;
}

.div-block.align-right {
  align-self: flex-end;
}

.div-block.align-stretch {
  align-self: stretch;
}

.div-block.align-baseline {
  align-self: baseline;
}

.div-block.align-auto {
  align-self: auto;
}

.div-block.align-top {
  align-self: flex-start;
}

.div-block.align-bottom {
  align-self: flex-end;
}

.div-block.order-first {
  order: -1;
}

.div-block.order-last, .div-block.order-3 {
  order: 1;
}

.div-block.float-none {
  float: none;
}

.div-block.float-left {
  float: left;
}

.div-block.float-right {
  float: right;
}

.div-block.overflow-visible {
  overflow: visible;
}

.div-block.overflow-hidden {
  overflow: hidden;
}

.div-block.overflow-scroll, .div-block.overflow-auto {
  overflow: scroll;
}

.div-block.position-static {
  position: static;
}

.div-block.position-relative {
  position: relative;
}

.div-block.position-absolute {
  position: absolute;
}

.div-block.position-fixed {
  position: fixed;
}

.div-block.position-sticky {
  position: sticky;
}

.div-block.position-relative-style1 {
  position: relative;
  inset: 10px;
}

.div-block.position-sticky-style1 {
  position: sticky;
  inset: 10px;
}

.div-block.position-absolute-style1, .div-block.position-fixed-style1, .div-block.position-fixed-style1-copy {
  z-index: -1;
  position: absolute;
  inset: 10px;
}

.div-block.position-absolute-topleft {
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block.position-absolute-topright {
  position: absolute;
  inset: 0% 0% auto auto;
}

.div-block.position-absolute-bottomleft {
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block.position-absolute-bottomright {
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block.position-absolute-left {
  position: absolute;
  inset: 0% auto 0% 0%;
}

.div-block.position-absolute-right {
  position: absolute;
  inset: 0% 0% 0% auto;
}

.div-block.position-absolute-bottom {
  position: absolute;
  inset: auto 0% 0%;
}

.div-block.position-absolute-top {
  position: absolute;
  inset: 0% 0% auto;
}

.div-block.position-absolute-full {
  position: static;
  inset: 0%;
}

.div-block.position-fixed-topleft, .div-block.position-fixed-topright {
  position: fixed;
  inset: 0% auto auto 0%;
}

.div-block.position-fixed-bottomleft {
  position: fixed;
  inset: auto auto 0% 0%;
}

.div-block.position-fixed-left {
  position: fixed;
  inset: 0% auto 0% 0%;
}

.div-block.position-fixed-right {
  position: fixed;
  inset: 0% 0% 0% auto;
}

.div-block.position-fixed-bottom {
  position: fixed;
  inset: auto 0% 0%;
}

.div-block.position-fixed-top {
  position: fixed;
  inset: 0% 0% auto;
}

.div-block.position-fixed-full {
  position: fixed;
  inset: 0%;
}

.div-block.shadow-none {
  box-shadow: none;
}

.div-block.shadow-style-1 {
  box-shadow: 1px 1px 3px 0 var(--shadow-style1);
}

.div-block._w-35 {
  width: 35%;
}

.div-block._w-25 {
  width: 25%;
}

.div-block._w-50 {
  width: 50%;
}

.div-block._w-75 {
  width: 75%;
}

.div-block._w-100 {
  width: 100%;
}

.div-block._w-auto {
  width: auto;
}

.div-block.h-35 {
  height: 35%;
}

.div-block.h-25 {
  height: 25%;
}

.div-block.h-50 {
  height: 50%;
}

.div-block.h-75, .div-block.h-100 {
  height: 75%;
}

.div-block.h-auto {
  height: auto;
}

.div-block._w-min-20 {
  min-width: 20%;
}

.div-block._w-max-20 {
  max-width: 20%;
}

.div-block.h-min-20 {
  min-height: 20%;
}

.div-block.h-max-20 {
  max-height: 20%;
}

.div-block.vw-35 {
  width: 35vw;
}

.div-block.vw-min-35 {
  min-width: 35vw;
}

.div-block.vw-max-35 {
  max-width: 35vw;
}

.div-block.vh-35 {
  height: 35vh;
}

.div-block.vh-min-35 {
  min-height: 35vh;
}

.div-block.vh-max-35 {
  max-height: 35vw;
}

.div-block._w-35px {
  width: 35px;
}

.div-block._w-35rem {
  width: 35rem;
}

.div-block._w-35em {
  width: 35em;
}

.div-block._w-min-35px {
  min-width: 35px;
}

.div-block._w-max-35px {
  max-width: 35px;
}

.div-block.h-35px {
  height: 35px;
}

.div-block.h-min-35px {
  min-height: 35px;
}

.div-block.h-max-35px {
  max-height: 35px;
}

.div-block.margin-top-35px {
  margin-top: 35px;
}

.div-block.margin-bottom-35px {
  margin-bottom: 35px;
}

.div-block.margin-left-35px {
  margin-left: 35px;
}

.div-block.margin-right-35px {
  margin-right: 35px;
}

.div-block.margin-x-35px {
  margin-left: 35px;
  margin-right: 35px;
}

.div-block.margin-y-35px {
  margin-top: 35px;
  margin-bottom: 35px;
}

.div-block.margin-35px {
  margin: 35px;
}

.div-block.margin-custom1 {
  margin: 10px 5px;
}

.div-block.padding-top-5px {
  padding-top: 5px;
}

.div-block.padding-bottom-5px {
  padding-bottom: 5px;
}

.div-block.padding-left-5px {
  padding-left: 5px;
}

.div-block.padding-right-5px {
  padding-right: 5px;
}

.div-block.padding-x-5px {
  padding-left: 5px;
  padding-right: 5px;
}

.div-block.padding-y-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}

.div-block.padding-5px {
  padding: 5px;
}

.div-block.padding-custom1 {
  padding: 10px 5px 20px;
}

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

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

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

.div-block.text-justify {
  text-align: justify;
}

.div-block.text-nowrap {
  white-space: nowrap;
}

.div-block.text-pre {
  white-space: pre;
}

.div-block.text-prewrap {
  white-space: pre-wrap;
}

.div-block.text-preline {
  white-space: pre-line;
}

.div-block.text-breakspaces {
  white-space: break-spaces;
}

.div-block.text-lowercase {
  text-transform: lowercase;
}

.div-block.text-uppercase {
  text-transform: uppercase;
}

.div-block.text-capitalize {
  text-transform: capitalize;
}

.div-block.font-weight-bold {
  font-weight: 700;
}

.div-block.font-weight-bolder {
  font-weight: 900;
}

.div-block.font-weight-normal {
  font-weight: 400;
}

.div-block.font-weight-light {
  font-weight: 300;
}

.div-block.font-weight-lighter {
  font-weight: 200;
}

.div-block.font-italic {
  font-style: italic;
}

.div-block.font-regular {
  font-style: normal;
}

.div-block.spacing-2px {
  letter-spacing: 2px;
}

.div-block.text-reset {
  color: #333;
}

.div-block.text-decoration-none {
  text-decoration: none;
}

.div-block.text-decoration-strikethrough {
  text-decoration: line-through;
}

.div-block.text-decoration-underline {
  text-decoration: underline;
}

.div-block.text-decoration-overline {
  text-decoration: overline;
}

.div-block.text-shadow-style1 {
  text-shadow: 1px 1px 6px var(--shadow-style1);
}

.div-block.visible {
  opacity: 1;
}

.div-block.invisible {
  opacity: 0;
}

.div-block.text-font-arial {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.div-block.text-size-16px {
  font-size: 16px;
}

.h2-boilerplate-heading {
  color: #333333e6;
  font-size: 28px;
  font-weight: 600;
}

.note-copy {
  color: #333333b3;
  text-align: left;
  margin-bottom: 15px;
  margin-right: 10px;
  font-size: 14px;
}

.main-note {
  color: #6c757dbf;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 300;
}

.mark-style-1 {
  background-color: #3898ec80;
}

.ol-style-1 {
  text-decoration: none;
}

.ol-style-1.font-italic {
  font-style: italic;
}

.ol-style-1.font-weight-bold {
  font-weight: 700;
}

.ol-style-1.font-weight-bolder {
  font-weight: 900;
}

.ol-style-1.font-weight-light {
  font-weight: 300;
}

.ol-style-1.font-weight-lighter {
  font-weight: 200;
}

.ol-style-1.font-weight-normal {
  font-weight: 400;
}

.ol-style-1.lead {
  font-size: 16px;
  line-height: 22px;
}

.ol-style-1.small {
  font-size: 12px;
  line-height: 18px;
}

.ol-style-1.text-capitalize {
  text-transform: uppercase;
}

.ol-style-1.text-center {
  text-align: center;
}

.ol-style-1.text-justify {
  text-align: justify;
}

.ol-style-1.text-left {
  text-align: left;
}

.ol-style-1.text-right {
  text-align: right;
}

.ol-style-1.text-dark {
  color: var(--dark);
}

.ol-style-1.text-hide {
  display: none;
}

.ol-style-1.text-lowercase {
  text-transform: lowercase;
}

.ol-style-1.text-uppercase {
  text-transform: uppercase;
}

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

.ol-style-1.text-reset {
  color: #333;
}

.ol-style-1.text-pre {
  white-space: pre;
}

.ol-style-1.text-prewrap {
  white-space: pre-wrap;
}

.ol-style-1.text-preline {
  white-space: pre-line;
}

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

.ol-style-1.text-decoration-underline {
  text-decoration: underline;
}

.ol-style-1.text-decoration-overline {
  text-decoration: overline;
}

.bold-text {
  color: var(--dodger-blue);
}

.div-block-8 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.div-block-9 {
  flex-direction: column;
  display: flex;
}

.div-block-79 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: block;
}

.div-block-80 {
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.nav-menu-2 {
  flex: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-81 {
  align-items: center;
  display: flex;
}

.div-block-81.align-top {
  align-items: flex-start;
  margin-bottom: 20px;
}

.top-navbar-content {
  background-color: #ecebeb;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.top-navbar-content-left {
  display: flex;
}

.div-block-82 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-82.bg-gray {
  background-color: #ecebeb;
}

.div-block-26 {
  flex-direction: column;
  align-items: center;
  width: 1200px;
  display: flex;
}

.div-block-26.margin-custom1 {
  width: 1285px;
  padding-top: 70px;
  padding-bottom: 40px;
}

.div-block-83 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 600px;
  display: flex;
}

.hero-content-left {
  flex-direction: column;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

.hero-content-left.margin-10px {
  margin-left: 20px;
}

.hero-content-left.style1 {
  width: 40%;
  margin-left: 60px;
}

.hero-content-right {
  justify-content: center;
  align-items: center;
  width: 30%;
  display: flex;
}

.div-block-84 {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 600px;
  display: flex;
}

.div-block-85 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  display: flex;
}

.div-block-86 {
  text-align: center;
  text-shadow: 0 2px 2px #000;
  background-color: #0000004d;
  flex-direction: column;
  align-items: center;
  width: 60%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-87 {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-88 {
  background-color: #dadada;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  display: flex;
}

.div-block-89 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-90 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 32%;
  display: flex;
}

.div-block-91 {
  background-image: url('../images/Shoes.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}

.div-block-91.blog02 {
  background-image: url('../images/Handwash.jpg');
}

.div-block-91.blog03 {
  background-image: url('../images/Gloves.jpg');
}

.div-block-91.b804 {
  background-image: url('../images/B804.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-91.b349c {
  background-image: url('../images/B349C.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-91.b398 {
  background-image: url('../images/B398.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-91.b433c {
  background-image: url('../images/B433C.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-91.b374d {
  background-image: url('../images/B374D.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-91.b0321 {
  background-image: url('../images/B321.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-92 {
  background-color: #767ae608;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  display: flex;
}

.div-block-92.horizontal {
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.div-block-92.horizontal.justify-center {
  justify-content: center;
}

.div-block-92.horizontal._2 {
  background-color: #0000;
}

.div-block-93 {
  width: 25%;
}

.div-block-93._w-10 {
  flex: none;
  width: 10%;
  margin-right: 20px;
}

.div-block-93._w-80 {
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  display: flex;
}

.div-block-10 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 24%;
  display: flex;
}

.div-block-10.shadowed {
  background-color: #fff;
  border-style: none;
  border-radius: 5px;
  justify-content: center;
  box-shadow: 0 2px 8px -3px #0000003d;
}

.div-block-11 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px 15px;
  display: flex;
}

.div-block-12 {
  border: 1px solid #000;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 33%;
  display: flex;
}

.div-block-12.border-bottom-0 {
  border-bottom-style: none;
}

.div-block-12.border-top {
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
}

.div-block-12.border-left-0-border-right-0 {
  border-left-style: none;
  border-right-style: none;
}

.div-block-14 {
  justify-content: center;
  width: 25%;
  display: flex;
}

.div-block-15 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 49%;
  margin-bottom: 25px;
  display: flex;
}

.div-block-15.shadowed {
  background-color: #fff;
  border-style: none;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #d6d6d6;
}

.div-block-16 {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  display: flex;
}

.div-block-18 {
  justify-content: center;
  align-items: center;
  width: 15%;
  margin-right: 20px;
  display: flex;
}

.div-block-17 {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.div-block-19 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.div-block-19._w-70 {
  width: 1285px;
}

.div-block-20 {
  text-align: center;
  width: 1285px;
}

.div-block-21 {
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.div-block-22 {
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.div-block-94 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-23 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(#ecebeb, #ecebeb);
  background-position: 50% 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 60%, auto;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
}

.div-block-24 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.div-block-25 {
  background-color: #fff;
  border: 1px solid #000;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.div-block-27 {
  width: 100%;
}

.div-block-29 {
  width: 32px;
  margin-right: 30px;
}

.list {
  padding-left: 0;
  list-style-type: none;
}

.div-block-28 {
  color: #333c;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.div-block-28.margin-bottom-30px {
  margin-bottom: 30px;
}

.div-block-33 {
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-top: 50px;
  margin-bottom: 10px;
  display: flex;
}

.div-block-33.margin-bottom-0px {
  text-align: center;
  width: 1285px;
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-33.margin-bottom-0px._2 {
  width: 100%;
  margin-bottom: 40px;
}

.div-block-33.margin-bottom-0px._4 {
  width: 1285px;
  margin-top: 0;
}

.div-block-33.margin-bottom-0px._3 {
  margin-top: 0;
}

.div-block-33.margin-bottom-0px._w-80 {
  width: 80%;
}

.div-block-33.margin-bottom-0px._4-copy {
  width: 80%;
  margin-top: 0;
}

.div-block-33.margin-bottom-0px._5 {
  width: auto;
}

.div-block-33.margin-bottom-50px {
  border-bottom: 1px solid var(--footer-border);
  width: 1285px;
  margin-bottom: 0;
  padding-bottom: 50px;
}

.div-block-31 {
  justify-content: center;
  align-items: center;
  width: 50px;
  margin-right: 10px;
  display: flex;
}

.div-block-34 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.div-block-35 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
  display: flex;
}

.div-block-37 {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.div-block-38 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.div-block-39 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.div-block-40 {
  flex-direction: column;
  align-items: flex-start;
  width: 32%;
  display: flex;
}

.div-block-41 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.div-block-43 {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.div-block-44 {
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-45 {
  background-color: #ecebeb;
  justify-content: center;
  align-items: center;
  width: 32.5%;
  margin-bottom: 16px;
  display: flex;
}

.div-block-45._w-26-5 {
  width: 26.5%;
}

.div-block-45._w-44-5 {
  width: 44.5%;
}

.div-block-49 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.div-block-46 {
  background-color: #ecebeb;
  justify-content: center;
  align-items: center;
  width: 24%;
  margin-bottom: 16px;
  display: flex;
}

.div-block-46._w-49-5 {
  width: 49.5%;
}

.link-block {
  border: 1px solid #000;
  justify-content: space-between;
  display: flex;
}

.div-block-47 {
  background-color: #ecebeb;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-50 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
  margin-top: 0;
  display: flex;
}

.div-block-48 {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 40px;
  display: flex;
}

.link-block-2 {
  color: var(--black);
  border: 1px #000;
  flex-direction: column;
  align-items: center;
  width: 31%;
  text-decoration: none;
  display: flex;
  box-shadow: 1px 1px 4px #0003;
}

.div-block-53 {
  flex-direction: column;
  align-items: flex-start;
  width: 24%;
  padding: 30px 15px;
  display: flex;
}

.div-block-54 {
  background-color: #000;
  width: 90%;
  height: 1px;
  margin-bottom: 10px;
}

.div-block-58 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 20px;
  display: flex;
}

.div-block-58.bg-gray {
  background-color: #ecebeb;
}

.div-block-55 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 24%;
  display: flex;
}

.div-block-57 {
  background-color: #ecebeb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-56 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.div-block-59 {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  width: 32%;
  display: flex;
}

.div-block-70 {
  justify-content: center;
  align-items: center;
  width: 20%;
  display: flex;
}

.div-block-63 {
  justify-content: space-between;
  width: 70%;
  display: flex;
}

.div-block-60 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.div-block-62 {
  width: 30%;
}

.div-block-77 {
  justify-content: space-between;
  width: 70%;
  display: flex;
}

.div-block-64 {
  flex-direction: column;
  align-items: center;
  width: 20%;
  padding: 15px;
  display: flex;
}

.div-block-64.bg-gray {
  background-color: #ecebeb;
}

.div-block-64.bg-gray.border-1px {
  border: 1px solid #000;
}

.div-block-78 {
  flex-direction: column;
  align-items: center;
  width: 20%;
  padding: 15px;
  display: flex;
}

.div-block-72 {
  background-color: #ecebeb;
}

.div-block-69 {
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
  display: flex;
}

.div-block-61 {
  display: flex;
}

.div-block-71 {
  width: 20px;
}

.div-block-67 {
  align-items: center;
  width: 30%;
  padding: 10px 15px;
  display: flex;
}

.div-block-68 {
  width: 32px;
  margin-right: 10px;
}

.div-block-66 {
  border-bottom: 1px solid #000;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.div-block-73 {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 70%;
  display: flex;
}

.div-block-74 {
  border: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 25px;
  display: flex;
}

.div-block-76 {
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}

.div-block-154-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.div-block-169 {
  width: 80%;
}

.div-block-156 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.grid-5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-157 {
  justify-content: center;
  align-items: center;
  height: 350px;
  display: flex;
}

.div-block-158 {
  text-align: center;
  margin-bottom: 20px;
}

.div-block-159 {
  text-align: center;
}

.div-block-166 {
  width: 65%;
}

.div-block-164 {
  justify-content: space-around;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.link-block-4 {
  width: 35px;
}

.div-block-165 {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-161 {
  text-align: center;
  width: 60%;
}

.grid-3-copy {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-160 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.div-block-162 {
  border-bottom: 5px solid #aca9a9;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.div-block-163 {
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.div-block-154 {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-167 {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
}

.grid-3-copy-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-168 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 55px;
  padding-bottom: 55px;
  display: flex;
}

.div-block-176 {
  border-top: 1px solid #ffa25780;
  border-bottom: 1px none var(--sandy-brown);
  background-color: #0000;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.div-block-176.no-top-border {
  border-top-style: none;
  margin-top: 0;
  padding-top: 0;
}

.grid-6 {
  grid-row-gap: 55px;
}

.div-block-171 {
  background-color: #a0a0a0;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 31px 25px;
  display: flex;
}

.div-block-172 {
  flex: 1;
  padding-left: 20px;
}

.div-block-164-copy {
  justify-content: space-around;
  width: 200px;
  display: flex;
}

.div-block-170 {
  align-items: stretch;
  min-height: 270px;
  display: flex;
}

.slider-arrow {
  color: #544949;
}

.div-block-122 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.div-block-120 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.slider-3 {
  background-color: #0000;
}

.div-block-124 {
  margin-bottom: 10px;
}

.slide-nav {
  display: none;
}

.div-block-117 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.icon-2 {
  font-size: 14px;
}

.div-block-119 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.div-block-121 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-block-129 {
  margin-top: 20px;
  display: flex;
}

.div-block-131 {
  flex: none;
}

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

.div-block-126 {
  justify-content: center;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.div-block-128 {
  border: 1px solid #918f8f;
  padding: 26px;
}

.div-block-128.middle {
  border-left-width: 0;
  border-right-width: 0;
}

.div-block-125 {
  flex-direction: column;
  width: 70%;
  display: flex;
}

.div-block-130 {
  width: 20%;
  margin-right: 10px;
}

.div-block-134 {
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-135 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.div-block-136 {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.slider-2 {
  background-color: #0000;
}

.div-block-184 {
  display: flex;
}

.div-block-153 {
  flex-direction: column;
  justify-content: flex-end;
  width: 20%;
  margin-left: 10px;
  display: flex;
}

.div-block-153._2 {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 10px;
}

.div-block-140 {
  justify-content: center;
  align-items: center;
  width: 30%;
  display: flex;
}

.div-block-194 {
  background-color: #898686;
  flex-direction: column;
  width: 70%;
  padding: 20px;
  display: flex;
}

.div-block-139 {
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.right-arrow, .left-arrow {
  display: none;
}

.div-block-141 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.div-block-137 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-147 {
  align-items: center;
  display: flex;
}

.grid-8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-143 {
  width: 70%;
}

.div-block-146 {
  padding: 10px;
}

.div-block-150 {
  margin-top: 10px;
}

.div-block-145 {
  margin-bottom: 13px;
}

.div-block-148 {
  width: 15%;
  margin-right: 10px;
}

.div-block-144 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
}

.div-block-95 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vw;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
}

.div-block-195 {
  width: 1285px;
}

.div-block-97 {
  margin-bottom: 40px;
}

.div-block-96-copy {
  width: 60%;
}

.div-block-98 {
  cursor: pointer;
  border: 1px solid #b9b9b9;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.div-block-98._2 {
  border-width: 0 1px 1px;
}

.div-block-99 {
  border-bottom: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  padding: 15px;
}

.div-block-99.hide {
  border-bottom-width: 1px;
  display: none;
}

.div-block-102 {
  flex: 1;
}

.div-block-100 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 20vw;
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
}

.div-block-104 {
  margin-bottom: 20px;
  display: flex;
}

.div-block-104._2 {
  margin-bottom: 0;
}

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

.div-block-101 {
  justify-content: center;
  width: 80%;
  display: flex;
}

.div-block-105 {
  width: 10%;
}

.div-block-112 {
  border-bottom: 1px solid #535353;
  flex-direction: column;
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-113-copy {
  cursor: pointer;
  margin-bottom: 23px;
  display: flex;
}

.div-block-110 {
  flex: 0 auto;
  width: 48%;
}

.div-block-116 {
  flex: 1;
  width: 80%;
}

.div-block-114 {
  width: 50px;
}

.minus {
  display: none;
}

.div-block-109 {
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.div-block-196 {
  background-color: #979696;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 20vw;
  display: flex;
}

.div-block-197 {
  margin-bottom: 25px;
}

.div-block-199 {
  align-items: flex-start;
  display: flex;
}

.div-block-200 {
  margin-right: 15px;
}

.div-block-84-copy {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1285px;
  min-height: 20vw;
  display: flex;
}

.div-block-201 {
  text-align: center;
  margin-bottom: 21px;
  font-style: italic;
}

.div-block-201._w-80 {
  width: 80%;
}

.div-block-201._2 {
  font-style: normal;
}

.div-block-201._2-copy {
  width: 80%;
  font-style: normal;
}

.div-block-86-copy {
  background-color: #0000;
  border-radius: 5px;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px;
  display: flex;
}

.div-block-87-copy {
  width: 300px;
  margin-right: 15px;
  display: flex;
}

.div-block-87-copy._2 {
  width: auto;
}

.div-block-202 {
  background-color: #d6d6d626;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 1285px;
  padding-top: 30px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-203 {
  justify-content: space-between;
  width: 270px;
  display: flex;
}

.div-block-91-copy {
  background-color: #909090;
  justify-content: center;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
}

.div-block-91-copy.withbackground {
  background-color: #656684;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.div-block-204 {
  justify-content: space-between;
  align-items: center;
  width: 60%;
  display: flex;
}

.div-block-204.center {
  flex-direction: column;
  justify-content: center;
  width: 1285px;
}

.div-block-182 {
  text-align: center;
}

.div-block-205 {
  justify-content: center;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
}

.div-block-92-copy {
  background-color: #d6d5d5;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: 250px;
  padding-left: 109px;
  padding-right: 109px;
  display: flex;
}

.div-block-206 {
  align-items: center;
  width: 300px;
  display: flex;
}

.div-block-207 {
  background-color: #7c7c7c;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.div-block-208 {
  flex-direction: column;
  justify-content: center;
  width: 40%;
  display: flex;
}

.div-block-208._3 {
  width: 40%;
  margin-top: 20px;
}

.div-block-80-copy {
  background-color: #959292;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.div-block-185 {
  display: flex;
}

.div-block-80-copy-2 {
  background-color: #6b6868;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.div-block-81-copy {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  width: 40%;
  display: flex;
}

.div-block-81-copy.margin-right-30px {
  width: 80%;
  margin-top: 20px;
  margin-right: 30px;
}

.list-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-block-80-3 {
  background-color: #908787;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.div-block-209 {
  text-align: center;
}

.div-block-187 {
  align-items: center;
  display: flex;
}

.div-block-210 {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-210._2 {
  align-items: flex-start;
}

.div-block-211 {
  background-color: #7a7979;
  min-height: 50vw;
  padding-bottom: 5vw;
  padding-left: 59px;
  padding-right: 59px;
  display: flex;
}

.div-block-61-copy-copy {
  width: 64%;
  margin-right: 0;
}

.div-block-212 {
  text-align: left;
  width: 30%;
  margin-right: 10px;
}

.div-block-212._2 {
  width: 18%;
}

.div-block-213 {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-214 {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.div-block-215 {
  width: 49%;
}

.div-block-216 {
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding-top: 40px;
}

.div-block-217 {
  width: 50%;
  padding-top: 5vw;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-61-copy {
  width: 32%;
  margin-right: 0;
}

.div-block-218 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vw;
  display: flex;
}

.div-block-65 {
  background-color: #777;
  width: 700px;
  padding: 20px;
}

.div-block-219 {
  padding-left: 100px;
  padding-right: 100px;
}

.div-block-190 {
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.div-block-220 {
  flex-direction: column;
  justify-content: center;
  width: 30%;
  padding-bottom: 0;
  display: flex;
}

.div-block-221 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.div-block-222 {
  justify-content: center;
  align-items: center;
  width: 12%;
  display: flex;
}

.div-block-223 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-223.opacity-zero {
  opacity: 0;
}

.div-block-223.center {
  justify-content: center;
}

.div-block-179 {
  text-align: center;
  margin-bottom: 20px;
}

.div-block-224 {
  border: 1px solid #e9e9e9;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.form {
  flex-direction: column;
  display: flex;
}

.div-block-225 {
  z-index: 1;
  background-color: #a1a0a0;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 51.625px;
  left: -13px;
  transform: rotate(45deg);
}

.div-block-226 {
  padding-left: 40px;
}

.div-block-75 {
  z-index: 99;
  background-color: #a1a0a0;
  width: 420px;
  padding: 20px;
  position: relative;
}

.div-block-227 {
  justify-content: center;
  min-height: 50vw;
  display: flex;
}

.div-block-228 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  display: flex;
}

.div-block-228.dark {
  background-color: #444;
  min-height: 80vh;
}

.div-block-229 {
  width: 30%;
  min-height: 25vh;
}

.div-block-30 {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.div-block-188 {
  flex-direction: column;
  display: flex;
}

.div-block-230 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-32 {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 90px;
  display: flex;
}

.div-block-29-copy {
  background-color: #fff;
  flex-direction: column;
  width: 40%;
  min-height: 25vh;
  padding: 20px;
  display: flex;
}

.link-block-3 {
  border: 1px solid #acacac;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.link-block-3-copy {
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.div-block-42 {
  border-bottom: 1px solid #353535;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-231 {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

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

.div-block-36 {
  justify-content: space-between;
  height: 10vh;
  display: flex;
}

.div-block-233 {
  background-color: #9a9a9a;
  flex-direction: column;
  min-height: 70vh;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.div-block-37-copy {
  height: 15%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.div-block-234 {
  flex-direction: column;
  justify-content: center;
  width: 40%;
  display: flex;
}

.div-block-235 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-236 {
  width: 15%;
}

.div-block-237 {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-238 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 40vh;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.div-block-240 {
  border: .5px solid #6a6a6a;
  margin-bottom: 10px;
  padding: 10px;
}

.div-block-240._2 {
  justify-content: space-between;
  display: flex;
}

.div-block-241 {
  flex: 1;
  padding-top: 15vw;
}

.div-block-242 {
  flex-direction: column;
  width: 40%;
  padding: 10px 10px 10px 20px;
  display: flex;
}

.div-block-52 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.div-block-243 {
  background-color: #7c7979;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-244 {
  justify-content: center;
  height: auto;
  min-height: 50vw;
  display: flex;
}

.div-block-51 {
  text-align: center;
  align-items: center;
}

.div-block-245 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-245.margin-bottom-10px {
  margin-bottom: 10px;
}

.div-block-246 {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-247 {
  flex-direction: column;
  width: 25%;
  display: flex;
}

.div-block-248 {
  border-top: 1px solid #dadada;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.div-block-249 {
  margin-bottom: 10px;
}

.div-block-250 {
  justify-content: space-between;
  width: 120px;
  display: flex;
}

.div-block-251 {
  flex-direction: column;
  padding: 0 40px;
  display: flex;
}

.div-block-251.dark {
  background-color: #8d8c8c;
}

.link-block-5 {
  margin-bottom: 10px;
}

.div-block-5-copy {
  flex-direction: column;
  width: 25%;
  padding-right: 20px;
  display: flex;
}

.div-block-252 {
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.div-block-253 {
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

.div-block-254 {
  justify-content: space-around;
  display: flex;
}

.div-block-3-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding: 0 40px;
  display: flex;
}

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

.div-block-256 {
  text-align: center;
}

.div-block-257 {
  justify-content: space-around;
  width: 50vw;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-258 {
  justify-content: space-between;
  width: 27%;
  display: flex;
}

.div-block-259 {
  justify-content: space-between;
  align-items: center;
  width: auto;
  display: flex;
}

.div-block-22-copy {
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-260 {
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  display: flex;
}

.div-block-261 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  display: flex;
}

.div-block-263 {
  justify-content: space-between;
  align-items: center;
  width: 25%;
  display: flex;
}

.div-block-264 {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-bottom: 20px;
  margin-right: 0;
  display: flex;
}

.div-block-264.margin-bottom-0 {
  margin-bottom: 0;
}

.div-block-89-copy {
  background-color: #898989;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding-top: 53px;
  padding-bottom: 53px;
  display: flex;
}

.div-block-90-copy-copy {
  justify-content: center;
  width: 270px;
  display: flex;
}

.div-block-183-copy {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-183-copy._w-30vw {
  flex: none;
  width: 15vw;
}

.div-block-183-copy._w-30vw.invert {
  filter: none;
  width: 10%;
}

.div-block-92-copy-2 {
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: 250px;
  padding-left: 109px;
  padding-right: 109px;
  display: flex;
}

.div-block-92-copy-2._2 {
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-92-copy-2.flip {
  flex-direction: row-reverse;
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-92-copy-2.flip.justify-center {
  justify-content: center;
  width: 1285px;
}

.div-block-92-copy-2.flip.justify-center._2 {
  background-color: #43435212;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-91-copy-2 {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-91-copy-2._2 {
  background-color: #0000;
}

.div-block-91-copy-2.bg-grey {
  color: var(--light);
  background-color: #0000;
}

.div-block-266 {
  width: 50%;
}

.div-block-266._2 {
  width: auto;
}

.div-block-183-copy-2._2 {
  flex-direction: column;
  align-items: flex-start;
}

.div-block-267 {
  flex-direction: column;
  display: flex;
}

.div-block-267.h-align-start {
  flex-direction: row;
  align-items: flex-start;
}

.div-block-268 {
  position: relative;
}

.div-block-269 {
  z-index: -999;
  position: relative;
}

.div-block-269.hide {
  display: none;
}

.div-block-270, .div-block-271, .div-block-272, .div-block-273, .div-block-274 {
  margin-bottom: 10px;
}

.p-style-1.color-white {
  color: var(--light);
}

.body {
  font-family: Open Sans, sans-serif;
}

.coupon-div {
  width: 33.33%;
}

.div-block-275 {
  background-color: var(--light);
  padding-bottom: 20px;
}

.call-text-div {
  justify-content: flex-end;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.div-block-276 {
  background-color: #656684;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.text-block-4 {
  color: var(--dim-grey);
  margin-left: 5px;
  font-family: Material design iconic font, sans-serif;
  font-size: 22px;
}

.text-block-5 {
  color: var(--dim-grey);
  margin-left: 10px;
  margin-right: 5px;
}

.special-announcement-div {
  background-color: var(--medium-slate-blue);
  border-top: 1px #fff;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 70px;
  display: flex;
}

.text-block-6 {
  color: #fff;
  letter-spacing: .5px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.text-block-6.mobile-text-center {
  font-size: 18px;
}

.dry-packing, .hpp {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.div-block-286 {
  flex-direction: row;
  justify-content: center;
  width: auto;
  display: flex;
}

.labeling, .wet-packing {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.div-block-290 {
  flex-direction: column;
  align-self: auto;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.div-block-284 {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.bottling {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.co-packaging-available-version {
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-283 {
  justify-content: space-between;
  align-items: center;
  height: 500px;
  display: flex;
}

.co-packing-details {
  background-color: #fff;
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: 1285px;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
}

.map-packaging {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.co-packaging-hero-section {
  background-color: #f6f6f8;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  height: 500px;
  display: flex;
}

.skin-packaging {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.h1-display-1-2 {
  font-weight: 700;
}

.h1-display-1-2.text-center {
  text-align: center;
}

.h1-display-1-2.text-white {
  color: #fff;
}

.h1-display-1-2.margin-bottom-20px {
  margin-bottom: 20px;
}

.div-block-288 {
  box-shadow: none;
  background-color: #fafafac7;
  border-bottom: 1px solid #acacac59;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 20px;
  display: flex;
}

.div-block-288.no-bottom-border {
  border-bottom-style: none;
}

.div-block-289 {
  color: #4d4c4c;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  display: flex;
}

.list-item-style-1-2 {
  color: #333c;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4rem;
}

.div-block-282 {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-287 {
  color: var(--dark-slate-blue);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 13%;
  margin: 5px 20px;
  text-decoration: none;
  display: flex;
}

.div-block-287:hover {
  text-decoration: underline;
}

.co-packaging-page {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.co-packaging-section1 {
  background-color: #f0f0f0;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.why-maryland-packaging {
  flex-direction: column;
  align-items: stretch;
  width: 80%;
  display: flex;
}

.onboarding-details {
  background-color: #f0f0f3;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.send-samples, .two-weeks, .nda, .inquiry, .process-schedule, .discovery-calls, .client-visit, .packaging-vendors {
  flex-direction: column;
  align-items: stretch;
  width: 80%;
  display: flex;
}

.onboarding-section1 {
  background-color: var(--dim-grey);
  color: #f8f9fa;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-291 {
  width: 40%;
  margin-right: 10px;
  display: flex;
}

.slider-4 {
  flex: 1;
}

.home-section-2 {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.home-section-3 {
  flex-direction: column;
  align-items: center;
  display: none;
}

.div-block-279 {
  border-bottom: 1px solid var(--footer-border);
  width: 1285px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-292 {
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-278 {
  border-bottom: 2px solid var(--sandy-brown);
  width: 75%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-278.no-border {
  border-bottom-style: none;
  width: 1285px;
}

.div-block-293 {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  margin-left: 10px;
  display: flex;
}

.h2-display-1-2.text-center {
  text-align: center;
}

.h2-display-1-2.text-white {
  color: #fff;
}

.homepage-hero-section {
  flex-direction: column;
  height: 78vh;
  display: flex;
}

.home-certified-section {
  background-color: #f0f0f366;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-276-copy {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 1px 6px -3px #4e4e4e91;
}

.nav-link1 {
  color: #44466b;
  letter-spacing: 0;
  border-bottom: 1px #fff;
  font-weight: 600;
  text-decoration: none;
}

.nav-link1:hover {
  text-decoration: underline;
}

.text-block-7 {
  z-index: 99;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 6px #000;
  font-size: 3.052rem;
  font-weight: 400;
  line-height: 4rem;
  position: absolute;
  inset: auto 3% 7% auto;
}

.video {
  z-index: 1;
}

.background-video {
  height: 100%;
}

.footer {
  color: #fff;
  background-color: #f0f0f366;
  border-top: 2px #65668457;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  display: flex;
}

.footer-margin {
  border-top: 1px #acacac;
  border-bottom: 1px #acacac;
  justify-content: space-between;
  width: 1285px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.footer-link {
  border-bottom: 1px solid var(--sandy-brown);
  color: var(--dim-grey);
  margin-left: 20px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
}

.fb-logo {
  filter: invert();
  width: 35px;
  height: 35px;
  margin-left: 10px;
  margin-right: 0;
}

.co-packing-hero-image {
  width: 350px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
}

.media-body-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  width: 50vw;
  display: flex;
}

.sous-vide {
  flex-direction: column;
  align-items: stretch;
  width: 75%;
  display: flex;
}

.coupon-img {
  width: 150px;
}

.image {
  width: 300px;
}

.brand-div {
  align-self: auto;
  width: 33.33%;
  display: flex;
}

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

.sample-logo {
  width: 245px;
}

.footer-img {
  width: 250px;
}

.onboarding-img {
  width: 150px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
}

.div-block-295 {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 1285px;
  height: 500px;
  display: flex;
}

.div-block-295.auto {
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-295.auto.flip {
  flex-direction: row-reverse;
}

.div-block-295.auto.flip._2 {
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-295._2 {
  justify-content: space-around;
  width: 80%;
  height: auto;
  margin-top: 40px;
}

.div-block-277 {
  grid-column-gap: 5px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  display: grid;
}

.p-style-1-2.text-center {
  text-align: center;
}

.media-body-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 50vw;
  display: flex;
}

.media-body-2.certified {
  width: 20vw;
}

.media-body-2._w-20vw {
  width: 15vw;
}

.media-body-2._w-20vw.pricing {
  width: 70%;
}

.media-2 {
  display: flex;
}

.div-block-296 {
  background-color: #fff;
  border-radius: 4px;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 40px;
  display: flex;
  box-shadow: 0 2px 8px -3px #0000003d;
}

.list-3 {
  padding-left: 20px;
  list-style-type: disc;
}

.div-block-297 {
  margin-top: 20px;
}

.div-block-298 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1285px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-299 {
  width: 1285px;
  margin-bottom: 60px;
}

.div-block-280 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.banner-gray {
  background-color: #656684;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 300px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.banner-gray.hide {
  display: none;
}

.banner-gray._2 {
  background-color: var(--dim-grey);
  justify-content: center;
  height: 120px;
}

.banner-gray._2.request-quote-page {
  height: 150px;
  padding-top: 10px;
}

.div-block-300 {
  border-bottom: 1px solid var(--sandy-brown);
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.div-block-300.center {
  text-align: center;
  border-bottom-width: 0;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.form-control-textarea-2 {
  border: 1px #000;
  flex-direction: row;
  flex: 0 auto;
  align-items: stretch;
  min-height: 120px;
  margin-bottom: 0;
  display: flex;
}

.div-block-301 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.div-block-302 {
  border-top: 1px solid #fff;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 40px;
  display: flex;
}

.div-block-302.no-margin-and-padding {
  margin-top: 0;
  padding-top: 0;
}

.div-block-212-copy {
  flex: 1;
  width: 20%;
  margin-right: 10px;
}

.div-block-303 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.btn-style1-2 {
  border-radius: 4px;
}

.div-block-296-copy {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: stretch;
  width: 80%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 40px 25px;
  display: flex;
  box-shadow: 0 2px 8px -3px #0000003d;
}

.div-block-296-copy.v2 {
  box-shadow: none;
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-296-copy.v2-copy {
  box-shadow: none;
  border: 1px solid #ffa25769;
  border-radius: 0;
  width: 70%;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 40px 40px 20px;
}

.div-block-304 {
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
  padding-bottom: 0;
  padding-right: 10px;
  display: flex;
}

.div-block-305 {
  padding-left: 0;
}

.div-block-306 {
  border: 0 solid #e9e9e9;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.div-block-307 {
  align-self: flex-end;
}

.div-block-308 {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-309 {
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-310 {
  justify-content: center;
  width: 1285px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-310._w-100 {
  width: 100%;
  min-height: auto;
  margin-bottom: 20px;
}

.div-block-311 {
  justify-content: center;
  align-items: center;
  width: 12%;
  margin-right: 10px;
  display: flex;
}

.div-block-311.opacity-zero {
  opacity: 0;
}

.div-block-312 {
  z-index: 99;
  background-color: var(--white-smoke);
  border-radius: 20px;
  width: 95%;
  padding: 20px;
  position: relative;
  box-shadow: 0 2px 8px -3px #0000003d;
}

.text-icon {
  color: var(--sandy-brown);
  margin-top: 10px;
  font-family: Material design iconic font, sans-serif;
  font-size: 28px;
  line-height: 38px;
}

.text-icon.margin-top-0 {
  margin-top: 0;
}

.div-block-299-copy {
  width: 1285px;
  margin-bottom: 20px;
}

.div-block-85-copy-2 {
  background-image: url('../images/produce-pricing-page-001.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  display: flex;
}

.div-block-85-copy-2.about-us {
  background-image: url('../images/Layer-431.jpg');
  height: 500px;
}

.div-block-85-copy-2.blogs {
  background-image: url('../images/Blog-BG.jpg');
  background-position: 50% 100%;
}

.div-block-313 {
  justify-content: space-between;
  width: 1285px;
  display: flex;
}

.div-block-314 {
  width: 45%;
  margin-bottom: 40px;
}

.div-block-315 {
  width: 48%;
}

.div-block-316 {
  border-bottom: 1px solid var(--sandy-brown);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.fulfillment {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.h3-display-1-2.text-white {
  color: #fff;
}

.div-block-317 {
  width: 80%;
  margin-top: 40px;
}

.fulfillment-section1 {
  background-color: #f5f5f8;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 80px;
  display: flex;
}

.div-block-80-copy-3 {
  background-color: #f8f9fa;
  justify-content: center;
  width: 1285px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.div-block-80-copy-3.align-start {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
}

.div-block-318 {
  flex-direction: column;
  align-items: center;
  width: 1285px;
  padding-top: 50px;
  display: flex;
}

.div-block-318.bottom-border {
  border-bottom: 2px solid var(--sandy-brown);
}

.hero-content-left-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.hero-content-left-2.fulfillment {
  text-shadow: 0 1px 6px #000;
  background-color: #0000004d;
  width: 55vw;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 40px;
}

.div-block-319 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-319.align-stretch {
  align-items: stretch;
  width: 90%;
}

.div-block-319.justify-center {
  justify-content: center;
}

.div-block-320 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 41px;
  padding-right: 41px;
  display: flex;
}

.media-body-copy-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.media-body-copy-2.bg-dark {
  background-color: #333;
  border-radius: 10px;
  padding: 5px;
}

.div-block-81-copy-2 {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.div-block-321 {
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-322 {
  text-align: center;
  flex: 1;
  padding-top: 34px;
  padding-bottom: 34px;
}

.div-block-323 {
  flex-direction: column;
  align-items: center;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-323._w-80 {
  width: 80%;
}

.div-block-324 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-324.flip {
  flex-direction: row-reverse;
}

.div-block-324._w-80 {
  width: 80%;
}

.div-block-325 {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  padding: 20px 15px 30px;
  display: flex;
}

.btn-style1-3 {
  margin-right: 20px;
}

.h4-display-1-2.text-white {
  color: #fff;
}

.hero-content-right-2 {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
}

.list-4 {
  padding-left: 20px;
  list-style-type: disc;
}

.list-4.style-none {
  list-style-type: none;
}

.div-block-220-copy {
  flex-direction: column;
  justify-content: flex-start;
  width: 45%;
  padding-bottom: 0;
  padding-right: 20px;
  display: flex;
}

.div-block-326 {
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-327 {
  flex: none;
  margin-right: 10px;
}

.div-block-328 {
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.div-block-328.margin-bottom-30px {
  margin-bottom: 30px;
}

.div-block-329 {
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
}

.p-style1-2 {
  text-align: left;
  margin-bottom: 20px;
}

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

.div-block-330 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-330.bottom-border {
  border-bottom: 2px solid var(--dodger-blue);
}

.div-block-330.shadowed {
  background-color: #fff;
  border-radius: 10px;
  width: 60%;
  margin-bottom: 10px;
  box-shadow: 1px 1px 4px #d6d6d6;
}

.div-block-17-copy {
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  width: 40%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.div-block-331 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 65%;
  display: flex;
}

.div-block-332 {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.fulfillment-section2 {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.fulfillment-section2.bg-light {
  background-color: #0000;
  background-image: linear-gradient(#d6d6d621, #fff);
  padding-bottom: 70px;
}

.fulfillment-section2.bg-light.padding-bottom {
  padding-top: 40px;
}

.fulfillment-section2.bg-light.padding-bottom._2 {
  background-color: #0000;
  background-image: none;
  margin-top: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.fulfillment-section2.padding-bottom-30 {
  padding-bottom: 20px;
}

.fulfillment-section2._2 {
  background-color: #0000;
}

.fulfillment-section2.bg {
  background-color: #ebebeb4a;
  background-image: none;
  padding-top: 40px;
  padding-bottom: 0;
}

.div-block-333 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vw;
  display: flex;
}

.div-block-333.h-auto {
  background-color: var(--light);
  min-height: auto;
  padding-top: 60px;
}

.div-block-333.h-auto._2 {
  padding-top: 20px;
}

.div-block-334 {
  border: 1px solid #e6e6e6c2;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 30px 20px 15px;
  display: flex;
}

.div-block-334.margin-custom1 {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.div-block-334.margin-custom1.bg-grey {
  background-color: #faf4ed;
}

.div-block-335 {
  margin-left: 30px;
  margin-right: 30px;
  font-size: 1rem;
}

.div-block-336 {
  width: 25%;
}

.fulfillment-hero-section {
  background-image: url('../images/shutterstock_701551372.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.div-block-337 {
  text-align: center;
  margin-left: 0;
}

.div-block-338 {
  width: 80%;
}

.div-block-339 {
  margin-right: 20px;
}

.div-block-318-copy {
  border-top: 1px #ffa25766;
  flex-direction: column;
  align-items: center;
  width: 1285px;
  padding-top: 90px;
  display: flex;
}

.div-block-318-copy.bottom-border {
  border-bottom: 2px solid var(--sandy-brown);
}

.div-block-176-copy {
  border-top: 2px none var(--sandy-brown);
  border-bottom: 1px none var(--sandy-brown);
  background-color: #0000;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-title {
  color: var(--dim-grey);
  text-align: center;
  flex: 0 auto;
  padding: 20px 25px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.nav-title:hover {
  color: var(--sandy-brown);
}

.nav-title.w--current {
  flex: 0 auto;
  font-size: 15px;
}

.nav-title.request-a-quote {
  color: var(--light);
  background-color: #767ae6;
  border-top: 1px #fff;
  border-bottom: 1px #fff;
  padding-left: 0;
  padding-right: 0;
}

.services-menu-dropdown {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  inset: 95% auto auto 21%;
  box-shadow: 1px 1px 4px #00000026;
}

.nav-menu-2-copy {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link-v2 {
  color: var(--dim-grey);
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
}

.div-block-341 {
  justify-content: space-between;
  align-items: stretch;
  width: 1285px;
  display: flex;
}

.nav-linkblock {
  color: var(--dim-grey);
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 20px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
}

.nav-linkblock:hover {
  background-color: #6566840d;
  font-weight: 600;
}

.div-block-342 {
  margin-right: 15px;
}

.material-icon {
  font-family: Material design iconic font, sans-serif;
  font-size: 8px;
}

.products-menu-dropdown {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  inset: 95% auto auto 37%;
  box-shadow: 1px 1px 4px #00000026;
}

.about-us-menu-dropdown {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  position: absolute;
  inset: 95% auto auto 54%;
  box-shadow: 1px 1px 4px #00000026;
}

.navbar-v2 {
  background-color: #fff;
}

.div-block-343 {
  flex: 0 auto;
  justify-content: center;
  align-items: stretch;
  width: 1285px;
  padding-left: 20px;
  padding-right: 0;
  display: flex;
}

.webinar-content {
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.opening-hours {
  background-color: #f0f0f3;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-344 {
  background-color: #fff;
  border-radius: 10px;
  width: 70%;
  padding: 30px 24px 40px;
  box-shadow: 1px 1px 4px #0003;
}

.div-block-345 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.co-packing-slider {
  flex: 1;
}

.div-block-346 {
  width: 85%;
}

.div-block-347 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-348 {
  flex-direction: column;
  align-items: center;
  width: 1285px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-349 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 70px;
  display: flex;
}

.div-block-350 {
  flex-direction: column;
  align-items: center;
  width: 10%;
  display: flex;
}

.image-2 {
  flex: none;
  margin-bottom: 20px;
}

.div-block-351 {
  justify-content: center;
  align-items: center;
  width: 4%;
  display: flex;
}

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

.div-block-352 {
  border-bottom: 2px solid var(--sandy-brown);
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.div-block-353 {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.div-block-354 {
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
}

.div-block-355 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.div-block-356 {
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 120px;
  display: flex;
}

.div-block-357 {
  width: 75%;
}

.invi-image {
  opacity: 0;
}

.div-block-358 {
  height: 120px;
  margin-bottom: 20px;
}

.div-block-359 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.div-block-360 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-361 {
  flex-direction: column;
  align-items: center;
  width: 1285px;
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
}

.bottle-choices {
  border: 1px #0000001a;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  width: 31%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
  box-shadow: 0 1px 5px 1px #00000012;
}

.bottle-choices:hover {
  box-shadow: 1px 1px 5px #0000003b;
}

.bottle-description {
  height: 70px;
  margin-top: 0;
  margin-bottom: 15px;
}

.div-block-362 {
  justify-content: flex-end;
  width: 100%;
  display: none;
}

.div-block-363 {
  background-color: #dc344626;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-364 {
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
}

.home-h1 {
  text-shadow: 0 3px 2px #000;
  margin-bottom: 20px;
  font-size: 4.209rem;
  font-weight: 700;
  line-height: 4.6rem;
}

.home-h1.margin-bottom-10px {
  margin-bottom: 10px;
}

.home-h3 {
  text-shadow: 0 2px 7px #000;
  font-size: 2.3rem;
  line-height: 2.8rem;
}

.home-h3.margin-bottom-10px {
  margin-bottom: 10px;
}

.div-block-365 {
  text-align: left;
  background-color: #0000004d;
  width: 55vw;
  padding: 20px;
  position: absolute;
  inset: auto auto 7% 5%;
}

.onboarding-hero-section {
  background-color: #f6f6f8;
  flex-direction: column;
  align-items: center;
  height: 500px;
  display: flex;
}

.bold-text-2 {
  letter-spacing: .5px;
  font-weight: 800;
}

.text-block-10 {
  color: var(--medium-slate-blue);
  font-size: .9rem;
  line-height: 1.3rem;
}

.card-header-style1 {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.div-block-366 {
  text-align: center;
}

.hero-content-left-2-copy {
  flex-direction: column;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

.hero-content-left-2-copy.fulfillment {
  background-color: #333333e6;
  width: 55vw;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 40px;
}

.div-block-367 {
  margin-bottom: 20px;
}

.div-block-368 {
  text-align: center;
  margin-bottom: 60px;
}

.div-block-369 {
  align-self: flex-start;
}

.div-block-27-copy {
  width: 100%;
}

.div-block-370 {
  margin-bottom: 20px;
}

.nav-title-btn {
  color: #fff;
  text-align: center;
  flex: 0 auto;
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.nav-title-btn.w--current {
  flex: 0 auto;
  font-size: 15px;
}

.nav-title-btn.request-a-quote {
  color: var(--light);
  background-color: #767ae6;
  border-top: 1px #fff;
  border-bottom: 1px #fff;
  padding-left: 0;
  padding-right: 0;
}

.request-a-quote {
  background-color: var(--sandy-brown);
  color: #fff;
}

.div-block-372 {
  text-align: center;
  width: 80%;
}

.div-block-373 {
  margin-bottom: 20px;
}

.div-block-374 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
}

.div-block-334-copy {
  flex-direction: column;
  align-items: center;
  width: 60%;
  display: flex;
}

.div-block-334-copy.margin-custom1 {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.div-block-334-copy.margin-custom1.bg-grey {
  background-color: #faf4ed;
}

.bold-text-3 {
  color: var(--dark-orange);
}

.body-2 {
  color: var(--dim-grey-2);
}

.div-block-375 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-376 {
  width: 80%;
  margin-top: 20px;
}

.div-block-377 {
  flex-direction: column;
  align-items: center;
  width: 1285px;
  display: flex;
}

.div-block-378 {
  background-color: #0000;
  width: 1285px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.div-block-379 {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-380 {
  background-color: #f0f0f3;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-381 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-382 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.div-block-384 {
  background-color: var(--dim-grey);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-385 {
  width: 300px;
}

.div-block-386, .div-block-387, .div-block-388, .div-block-389, .div-block-390 {
  flex-direction: column;
  align-items: center;
  width: 1285px;
  display: flex;
}

.div-block-391 {
  background-color: var(--dim-grey);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-392 {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.heading-7 {
  text-decoration: underline;
}

.div-block-393 {
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .btn-style1._2 {
    margin-left: 0;
  }

  .h1-display-1 {
    font-size: 3.052rem;
    line-height: 3.6rem;
  }

  .h2-display-1 {
    font-size: 2.441rem;
    line-height: 2.8rem;
  }

  .h3-display-1 {
    font-size: 1.953rem;
    line-height: 2.6rem;
  }

  .h4-display-1 {
    font-size: 1.563rem;
    line-height: 2.2rem;
  }

  .h4-display-1.font-weight-light.text-center {
    text-align: center;
  }

  .h5-display-1 {
    font-size: 1.25rem;
    line-height: 1.6rem;
  }

  .ul-style-1 {
    margin-bottom: 0;
  }

  .card-group, .card-group._w-80 {
    width: 90%;
  }

  .navbar-nav {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-nav.top-nav {
    justify-content: space-between;
    align-items: center;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .div-block-80 {
    width: 95%;
  }

  .nav-menu-2 {
    background-color: #fff;
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    width: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
    top: 136px;
    left: 560px;
  }

  .top-navbar-content, .div-block-26 {
    width: 95%;
  }

  .div-block-26.margin-custom1 {
    width: 90%;
  }

  .div-block-83 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-content-left.style1 {
    align-items: center;
    width: 70%;
  }

  .hero-content-right._2 {
    width: 40%;
  }

  .div-block-86 {
    width: 90%;
  }

  .div-block-10.shadowed {
    width: 48%;
    margin-bottom: 20px;
  }

  .div-block-19 {
    width: 95%;
  }

  .div-block-19._w-70 {
    width: 100%;
  }

  .div-block-20 {
    width: 90%;
  }

  .div-block-21 {
    width: 100%;
  }

  .div-block-22 {
    text-align: center;
    width: 90%;
  }

  .div-block-27 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-33 {
    margin-bottom: 0;
  }

  .div-block-33.margin-bottom-0px {
    width: 80%;
  }

  .div-block-33.margin-bottom-0px._4, .div-block-33.margin-bottom-0px._3 {
    text-align: center;
    width: 80%;
  }

  .div-block-33.margin-bottom-0px._w-80 {
    text-align: center;
  }

  .div-block-33.margin-bottom-0px._4-copy {
    text-align: center;
    width: 80%;
  }

  .div-block-33.margin-bottom-50px {
    width: 90%;
  }

  .div-block-44 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-49 {
    width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-73 {
    width: 85%;
  }

  .div-block-169 {
    width: 90%;
  }

  .grid-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: flex;
  }

  .div-block-175 {
    width: 48%;
    margin-bottom: 4%;
  }

  .div-block-165 {
    flex-direction: row;
    width: 35%;
    margin-bottom: 20px;
  }

  .div-block-161 {
    width: 80%;
  }

  .grid-3-copy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    display: flex;
  }

  .grid-6 {
    flex-direction: column;
    display: flex;
  }

  .div-block-170 {
    margin-bottom: 20px;
  }

  .div-block-125 {
    width: 90%;
  }

  .div-block-136 {
    width: 70%;
  }

  .div-block-194, .div-block-143, .div-block-195 {
    width: 90%;
  }

  .div-block-96-copy {
    width: 70%;
  }

  .div-block-102 {
    flex: 0 auto;
    width: 48%;
  }

  .div-block-101 {
    justify-content: space-between;
    width: 90%;
  }

  .div-block-114 {
    width: 30px;
  }

  .div-block-109 {
    width: 90%;
  }

  .div-block-196 {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .div-block-84-copy {
    width: 90%;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .div-block-201._2, .div-block-201._2-copy {
    margin-bottom: 10px;
  }

  .div-block-85-copy {
    width: 70%;
  }

  .div-block-86-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .div-block-87-copy {
    width: 400px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .div-block-87-copy._3 {
    width: auto;
  }

  .div-block-202 {
    width: 80%;
  }

  .div-block-204 {
    width: 90%;
  }

  .div-block-204.center {
    text-align: center;
    width: 90%;
  }

  .div-block-92-copy {
    width: 90%;
    padding-left: 19px;
    padding-right: 20px;
  }

  .div-block-208 {
    width: 45%;
  }

  .div-block-208._2 {
    width: 30%;
  }

  .div-block-208._3 {
    text-align: center;
    width: 100%;
    padding-left: 20px;
  }

  .div-block-81-copy {
    width: 35%;
  }

  .div-block-81-copy.margin-right-30px {
    width: 100%;
  }

  .div-block-180 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .list-2 {
    text-align: left;
    width: 80%;
  }

  .div-block-209 {
    text-align: center;
  }

  .div-block-211 {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-212 {
    width: 30%;
    margin-right: 10px;
  }

  .div-block-213 {
    width: 100%;
  }

  .div-block-217 {
    width: 100%;
    padding-left: 20px;
  }

  .div-block-61-copy {
    width: 70%;
  }

  .div-block-218 {
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .div-block-65 {
    width: 500px;
  }

  .div-block-190 {
    flex-direction: column;
    display: flex;
  }

  .div-block-220 {
    flex-direction: row;
    width: 40%;
  }

  .div-block-221 {
    width: auto;
  }

  .div-block-222 {
    margin-right: 10px;
  }

  .div-block-179 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-75 {
    width: 300px;
  }

  .div-block-227 {
    flex-flow: column wrap;
    justify-content: space-between;
    height: auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .div-block-229 {
    width: 50%;
  }

  .div-block-188 {
    flex-direction: column;
    display: flex;
  }

  .div-block-32 {
    justify-content: space-between;
    height: 90px;
  }

  .div-block-29-copy {
    width: 50%;
  }

  .div-block-233 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-234 {
    align-items: center;
    width: 50%;
  }

  .div-block-238 {
    width: 80%;
  }

  .div-block-241 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .div-block-242 {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-52 {
    width: 80%;
  }

  .div-block-244 {
    height: auto;
  }

  .div-block-246 {
    flex-wrap: wrap;
  }

  .div-block-247 {
    width: 50%;
  }

  .div-block-5-copy {
    width: 50%;
    margin-bottom: 20px;
  }

  .div-block-258 {
    width: 40%;
  }

  .div-block-261 {
    width: 70%;
  }

  .div-block-263 {
    width: 40%;
  }

  .div-block-183-copy {
    flex: 0 auto;
    width: 50%;
    display: block;
  }

  .div-block-183-copy._2-copy {
    flex: 1;
  }

  .div-block-92-copy-2 {
    width: 90%;
    padding-left: 19px;
    padding-right: 20px;
  }

  .div-block-92-copy-2._2, .div-block-92-copy-2.flip {
    flex-flow: row;
    justify-content: space-between;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-92-copy-2.flip.justify-center {
    flex-direction: row-reverse;
  }

  .div-block-266 {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    display: flex;
  }

  .div-block-266._2 {
    text-align: center;
    align-items: stretch;
    width: 70%;
  }

  .div-block-183-copy-2 {
    width: auto;
  }

  .div-block-267 {
    width: 70%;
    margin-top: 20px;
  }

  .coupon-div, .call-text-div {
    width: 30%;
  }

  .dry-packing, .hpp, .labeling, .wet-packing {
    width: 90%;
  }

  .div-block-290 {
    justify-content: center;
  }

  .div-block-284 {
    width: 80%;
  }

  .bottling {
    width: 90%;
  }

  .co-packing-details {
    width: 100%;
  }

  .map-packaging, .skin-packaging {
    width: 90%;
  }

  .div-block-287 {
    width: 30%;
  }

  .div-block-291 {
    width: 100%;
  }

  .div-block-279, .div-block-292, .div-block-278 {
    width: 90%;
  }

  .div-block-278.no-border {
    width: 85%;
  }

  .div-block-293 {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .h2-display-1-2.text-white {
    text-align: center;
  }

  .footer-margin {
    width: 100%;
  }

  .sous-vide {
    width: 90%;
  }

  .div-block-295 {
    flex-direction: column-reverse;
    width: 100%;
    padding-top: 20px;
  }

  .div-block-277 {
    margin-top: 10px;
  }

  .media-body-2._w-20vw.pricing {
    width: 25vw;
  }

  .div-block-296 {
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-298 {
    width: 100%;
  }

  .div-block-299 {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .banner-gray {
    width: 100%;
  }

  .div-block-302 {
    justify-content: center;
  }

  .div-block-212-copy {
    text-align: center;
    width: 25%;
    margin-right: 0;
  }

  .div-block-296-copy {
    width: 90%;
  }

  .div-block-296-copy.v2, .div-block-296-copy.v2-copy {
    width: 80%;
  }

  .div-block-304 {
    flex-direction: row;
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .div-block-305 {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .div-block-305._2 {
    flex-direction: row;
  }

  .div-block-308 {
    width: auto;
  }

  .div-block-310 {
    flex-flow: column wrap;
    justify-content: space-between;
    width: 90%;
    height: auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .div-block-311 {
    width: 15%;
    margin-top: 5px;
    margin-right: 10px;
  }

  .div-block-312 {
    width: 100%;
  }

  .text-icon {
    margin-top: 0;
  }

  .div-block-299-copy {
    width: 90%;
  }

  .div-block-313 {
    flex-direction: column;
    width: 90%;
  }

  .div-block-314 {
    width: 100%;
  }

  .div-block-317 {
    width: 95%;
  }

  .div-block-80-copy-3.align-start {
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-318 {
    width: 90%;
  }

  .hero-content-left-2 {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }

  .hero-content-left-2.fulfillment {
    width: 85%;
  }

  .div-block-320 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .media-body-copy-2 {
    flex: none;
  }

  .div-block-323 {
    width: 95%;
  }

  .div-block-324 {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-324.flip {
    flex-direction: row;
  }

  .list-4 {
    margin-top: 10px;
  }

  .div-block-220-copy {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .div-block-329 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-330 {
    flex-wrap: nowrap;
  }

  .div-block-330.shadowed {
    justify-content: center;
    width: 90%;
  }

  .div-block-17-copy {
    flex-direction: column;
  }

  .div-block-331 {
    width: 90%;
  }

  .div-block-334 {
    width: 95%;
  }

  .fulfillment-hero-section {
    height: 500px;
  }

  .div-block-337 {
    text-align: center;
  }

  .div-block-338 {
    width: 100%;
  }

  .div-block-318-copy {
    width: 90%;
  }

  .menu-button {
    background-color: #0000;
  }

  .menu-button.w--open {
    color: var(--sandy-brown);
    background-color: #0000;
  }

  .nav-title {
    flex: none;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
  }

  .nav-title.request-a-quote {
    border-radius: 3px;
    align-items: center;
    width: 65%;
    height: 40px;
    margin-top: 5px;
    padding-left: 10px;
  }

  .services-menu-dropdown {
    box-shadow: none;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
    top: auto;
    left: auto;
  }

  .nav-menu-2-copy {
    background-color: #fff;
    flex-flow: column;
    flex: none;
    justify-content: flex-start;
    align-items: flex-start;
    width: 250px;
    padding: 10px;
    display: flex;
    left: 499px;
    box-shadow: 1px 1px 4px #0003;
  }

  .nav-link-v2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .div-block-341 {
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    padding-right: 10px;
    position: relative;
  }

  .nav-linkblock {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .products-menu-dropdown, .about-us-menu-dropdown {
    box-shadow: none;
    display: flex;
    position: relative;
    top: auto;
    left: auto;
  }

  .menu-button-2 {
    background-color: #fff;
  }

  .menu-button-2.w--open {
    color: var(--sandy-brown);
    background-color: #0000;
  }

  .div-block-343 {
    justify-content: space-between;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-344 {
    width: 80%;
  }

  .div-block-348 {
    text-align: center;
    width: 90%;
  }

  .div-block-350 {
    width: 15%;
    margin-bottom: 20px;
  }

  .div-block-351 {
    width: 4%;
  }

  .div-block-354 {
    align-items: center;
    width: 100%;
  }

  .div-block-355 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .image-3 {
    width: 100%;
  }

  .div-block-357 {
    width: 90%;
  }

  .div-block-358 {
    height: 150px;
  }

  .div-block-359 {
    align-items: center;
  }

  .div-block-361, .div-block-364 {
    width: 90%;
  }

  .home-h1 {
    font-size: 3.052rem;
    line-height: 3.6rem;
  }

  .home-h3 {
    font-size: 1.953rem;
    line-height: 2.3rem;
  }

  .div-block-365 {
    width: 80vw;
  }

  .hero-content-left-2-copy {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-content-left-2-copy.fulfillment {
    width: 85%;
  }

  .div-block-367 {
    align-self: flex-start;
  }

  .div-block-368 {
    text-align: center;
  }

  .form-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-27-copy {
    text-align: left;
    flex-direction: column;
    align-self: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .list-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .recaptcha {
    margin-top: 5px;
  }

  .nav-title-btn {
    flex: none;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
  }

  .nav-title-btn.request-a-quote {
    border-radius: 3px;
    align-items: center;
    width: 65%;
    height: 40px;
    margin-top: 5px;
    padding-left: 10px;
  }

  .request-a-quote {
    align-items: center;
    display: flex;
  }

  .div-block-334-copy {
    width: 95%;
  }

  .div-block-377 {
    width: 90%;
  }

  .div-block-378 {
    width: 100%;
  }

  .div-block-385 {
    width: 400px;
  }

  .div-block-387, .div-block-388 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .h1-display-1.text-white, .h3-display-1.text-white, .h5-display-1.font-weight-bold.text-white, .p-style-1.mobile-text-center {
    text-align: center;
  }

  .card-group {
    flex-direction: column;
    align-items: center;
  }

  .card-group._w-80 {
    width: 90%;
  }

  .card.shadow-style-1 {
    width: 60%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .card._w-50 {
    width: 85%;
  }

  .navbar-nav.top-nav {
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu-2 {
    top: 143px;
    left: 360px;
  }

  .div-block-83 {
    flex-direction: column;
  }

  .hero-content-left {
    width: 100%;
  }

  .hero-content-left.style1 {
    width: 80%;
    margin-left: 0;
  }

  .hero-content-right {
    width: 100%;
  }

  .hero-content-right._2 {
    justify-content: flex-start;
    align-self: flex-start;
    width: 80%;
  }

  .div-block-84 {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-85 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-86 {
    width: 90%;
  }

  .div-block-91 {
    height: auto;
  }

  .div-block-92.horizontal.justify-center {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .div-block-10 {
    width: 49%;
    margin-bottom: 15px;
  }

  .div-block-12 {
    flex: 1;
  }

  .div-block-16 {
    flex-direction: column;
  }

  .div-block-20, .div-block-21 {
    width: 90%;
  }

  .div-block-33 {
    width: 85%;
  }

  .div-block-33.margin-bottom-0px, .div-block-33.margin-bottom-0px._4 {
    width: 95%;
  }

  .div-block-33.margin-bottom-0px._3 {
    width: 100%;
  }

  .div-block-33.margin-bottom-0px._4-copy {
    width: 95%;
  }

  .div-block-33.margin-bottom-50px {
    width: 90%;
  }

  .div-block-39 {
    flex-direction: column;
  }

  .div-block-40 {
    width: 80%;
  }

  .div-block-50 {
    flex-direction: row;
    width: 90%;
  }

  .link-block-2 {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    margin-bottom: 20px;
  }

  .div-block-53, .div-block-55, .div-block-59 {
    width: 49%;
  }

  .div-block-63 {
    width: 100%;
  }

  .div-block-60 {
    overflow: auto;
  }

  .div-block-62 {
    display: none;
  }

  .div-block-77, .div-block-69 {
    width: 100%;
  }

  .div-block-61 {
    justify-content: space-between;
  }

  .div-block-67 {
    width: auto;
    margin-bottom: 15px;
  }

  .div-block-66 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .div-block-73 {
    flex-direction: column;
    width: 100%;
  }

  .div-block-74 {
    width: 100%;
  }

  .div-block-157 {
    height: 300px;
  }

  .div-block-166 {
    width: 75%;
  }

  .div-block-165 {
    width: 40%;
  }

  .div-block-160 {
    margin-bottom: 20px;
  }

  .slider-arrow {
    width: 10%;
  }

  .grid-7 {
    flex-direction: column;
    display: flex;
  }

  .div-block-128.middle {
    border-width: 0 1px;
  }

  .slider-2 {
    height: auto;
  }

  .slide-nav-2 {
    position: relative;
  }

  .div-block-140 {
    width: 100%;
    height: 250px;
  }

  .div-block-139 {
    flex-direction: column;
  }

  .grid-8 {
    flex-flow: wrap;
    justify-content: space-between;
    display: flex;
  }

  .div-block-146 {
    width: 49%;
  }

  .div-block-144 {
    margin-bottom: 20px;
  }

  .div-block-95 {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .div-block-195 {
    width: 95%;
  }

  .div-block-96-copy {
    width: 90%;
  }

  .div-block-102 {
    width: 100%;
  }

  .div-block-101 {
    flex-direction: column;
  }

  .div-block-110 {
    width: 100%;
  }

  .div-block-109 {
    flex-direction: column;
  }

  .div-block-198 {
    width: 80%;
  }

  .div-block-199 {
    flex-direction: column;
    align-items: stretch;
  }

  .div-block-200 {
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .div-block-201 {
    width: 80%;
  }

  .div-block-201._w-80 {
    width: 95%;
  }

  .div-block-201._2-copy {
    width: 100%;
  }

  .div-block-85-copy {
    width: 95%;
  }

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

  .div-block-181 {
    text-align: center;
  }

  .div-block-182 {
    margin-top: 10px;
  }

  .div-block-92-copy {
    flex-direction: column;
    justify-content: center;
  }

  .div-block-183 {
    text-align: center;
    margin-bottom: 20px;
  }

  .div-block-207 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-208 {
    width: 80%;
    margin-bottom: 19px;
    padding-bottom: 0;
  }

  .div-block-208._3 {
    width: 90%;
    padding-left: 0;
  }

  .div-block-80-copy, .div-block-80-copy-2 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-81-copy {
    width: 30%;
  }

  .div-block-81-copy.margin-right-30px {
    margin-right: 0;
  }

  .div-block-180 {
    margin-bottom: 15px;
  }

  .div-block-209 {
    width: 80%;
  }

  .div-block-210, .div-block-210._2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-212 {
    width: 100%;
    margin-bottom: 10px;
  }

  .div-block-214 {
    flex-direction: row;
  }

  .div-block-61-copy {
    width: 100%;
  }

  .div-block-220 {
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
  }

  .div-block-179 {
    width: 100%;
  }

  .div-block-225 {
    width: 20px;
    height: 20px;
    top: -11.375px;
    left: 30px;
  }

  .div-block-226 {
    flex: 1;
  }

  .div-block-75 {
    width: 100%;
  }

  .div-block-227 {
    flex-direction: column;
  }

  .div-block-229, .div-block-29-copy {
    width: 70%;
  }

  .div-block-231 {
    flex-direction: column;
  }

  .div-block-178 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-234 {
    width: 100%;
  }

  .div-block-237 {
    text-align: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .div-block-238 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-242 {
    width: 100%;
    padding-right: 10px;
  }

  .div-block-243 {
    flex: 0 auto;
    height: 50vw;
  }

  .div-block-244 {
    flex-direction: column;
  }

  .div-block-247 {
    margin-bottom: 15px;
  }

  .div-block-251, .div-block-251.dark {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-253 {
    padding-left: 10px;
  }

  .div-block-255 {
    text-align: center;
    align-items: stretch;
    width: 80%;
  }

  .div-block-256 {
    flex-wrap: nowrap;
  }

  .div-block-257 {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }

  .div-block-258 {
    text-align: center;
    width: 70%;
  }

  .div-block-259 {
    width: 50%;
  }

  .div-block-22-copy {
    flex-flow: column wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-260 {
    flex-direction: column;
    justify-content: center;
  }

  .div-block-261 {
    flex-direction: column;
    order: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .div-block-177 {
    margin-bottom: 10px;
  }

  .div-block-262 {
    justify-content: center;
    margin-bottom: 10px;
    display: flex;
  }

  .div-block-263 {
    width: 80%;
    margin-bottom: 10px;
  }

  .div-block-264, .div-block-264.margin-bottom-0 {
    margin-bottom: 10px;
  }

  .div-block-265 {
    flex-direction: column;
    display: flex;
  }

  .div-block-183-copy {
    text-align: center;
    margin-bottom: 20px;
  }

  .div-block-183-copy._w-30vw.invert {
    width: 25%;
    margin-bottom: 0;
  }

  .div-block-92-copy-2 {
    flex-direction: column;
    justify-content: center;
  }

  .div-block-92-copy-2.flip.justify-center {
    flex-direction: column-reverse;
    padding-top: 20px;
  }

  .div-block-266 {
    width: 90%;
  }

  .div-block-266._2 {
    text-align: center;
    width: 90%;
  }

  .div-block-183-copy-2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .div-block-183-copy-2._2 {
    text-align: center;
  }

  .div-block-267 {
    width: 100%;
  }

  .p-style-1 {
    margin-bottom: 0;
  }

  .call-text-div {
    width: 33%;
  }

  .special-announcement-div {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-6.mobile-text-center {
    text-align: center;
  }

  .div-block-290 {
    width: 100%;
  }

  .div-block-284 {
    width: 90%;
  }

  .div-block-283 {
    height: 400px;
  }

  .div-block-288 {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-289 {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }

  .div-block-287 {
    width: 40%;
    margin: 10px 15px;
  }

  .footer-margin {
    flex-flow: column wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-295 {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-295.auto.flip._2 {
    flex-direction: column;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .media-body-2 {
    justify-content: flex-start;
    width: 90%;
  }

  .media-body-2.mobile-size {
    width: 80%;
  }

  .media-2.pricing {
    width: auto;
  }

  .div-block-296 {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding: 30px 25px;
  }

  .div-block-299 {
    width: 90%;
  }

  .div-block-280 {
    align-items: start;
  }

  .banner-gray {
    width: 100%;
  }

  .div-block-301 {
    flex-direction: row;
    align-self: stretch;
  }

  .div-block-212-copy {
    width: 100%;
  }

  .div-block-296-copy {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-296-copy.v2, .div-block-296-copy.v2-copy {
    width: 90%;
  }

  .div-block-304 {
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
  }

  .div-block-305 {
    flex: 1;
  }

  .div-block-305._2 {
    flex-direction: column;
    flex: 0 auto;
    align-items: center;
  }

  .div-block-309 {
    width: 50%;
  }

  .div-block-310 {
    flex-direction: column;
  }

  .div-block-310._w-100 {
    padding-top: 0;
  }

  .div-block-311._2 {
    margin-top: 0;
  }

  .div-block-312 {
    width: 100%;
  }

  .div-block-85-copy-2 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-block-317 {
    width: 100%;
  }

  .div-block-80-copy-3 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-80-copy-3.align-start {
    align-items: center;
  }

  .div-block-318 {
    padding-top: 0;
  }

  .hero-content-left-2 {
    text-align: center;
    width: 100%;
  }

  .hero-content-left-2.fulfillment {
    width: 100%;
    padding-right: 20px;
  }

  .media-body-copy-2 {
    width: 35%;
  }

  .div-block-324, .div-block-324.flip {
    flex-direction: column-reverse;
  }

  .hero-content-right-2 {
    width: 100%;
  }

  .hero-content-right-2._2 {
    height: auto;
    margin-top: 20px;
  }

  .list-4.style-none {
    margin-top: 0;
    margin-bottom: 0;
  }

  .div-block-220-copy {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }

  .div-block-329, .div-block-330 {
    flex-direction: column;
  }

  .div-block-17-copy {
    width: 90%;
  }

  .div-block-331 {
    width: 100%;
  }

  .div-block-332 {
    text-align: center;
    align-items: center;
  }

  .fulfillment-section2 {
    padding-bottom: 20px;
  }

  .div-block-333 {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .div-block-333.h-auto {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fulfillment-hero-section {
    height: 400px;
  }

  .nav-menu-2-copy {
    top: 54px;
    left: 298px;
  }

  .div-block-341 {
    justify-content: space-between;
    padding-left: 0;
    padding-right: 5px;
  }

  .div-block-343 {
    align-items: center;
    padding-left: 0;
    padding-right: 15px;
  }

  .div-block-344 {
    width: 90%;
  }

  .div-block-350 {
    width: 20%;
  }

  .div-block-361 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .bottle-choices {
    width: 48%;
  }

  .div-block-365 {
    left: 10%;
  }

  .onboarding-hero-section {
    height: 400px;
  }

  .hero-content-left-2-copy {
    width: 100%;
  }

  .hero-content-left-2-copy.fulfillment {
    width: 100%;
    padding-right: 20px;
  }

  .div-block-367, .div-block-369 {
    align-self: center;
  }

  .div-block-27-copy {
    margin-left: 15px;
  }
}

@media screen and (max-width: 479px) {
  .centered-container {
    text-align: left;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .btn-style1 {
    margin-top: 10px;
    margin-left: 0;
  }

  .h1-display-1.font-weight-bold, .h1-display-1.font-weight-bold.mobile-text-center {
    text-align: center;
  }

  .h1-display-1.font-weight-bold.core {
    font-size: 2.5rem;
  }

  .h2-display-1.font-weight-bold.font-color-white, .h3-display-1.font-weight-bold, .h3-display-1.font-weight-normal.font-text-white {
    text-align: center;
  }

  .card-group {
    flex-flow: column;
    align-items: center;
  }

  .card.shadow-style-1 {
    width: 80%;
  }

  .card._w-50 {
    width: 100%;
  }

  .media-body.mobile-vertical {
    flex-direction: column;
  }

  .navbar-nav.top-nav {
    flex-direction: column;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu-2 {
    top: 135px;
    left: 114px;
  }

  .hero-content-left.style1 {
    width: 100%;
  }

  .div-block-84 {
    flex-direction: column;
  }

  .div-block-89 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .div-block-90, .div-block-10, .div-block-10.shadowed, .div-block-12 {
    width: 100%;
  }

  .div-block-12.border-bottom-0, .div-block-12.border-top, .div-block-12.border-left-0-border-right-0 {
    border-style: solid;
  }

  .div-block-15 {
    width: 100%;
  }

  .div-block-19._w-70 {
    width: 95%;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-21, .div-block-22 {
    width: 100%;
  }

  .div-block-33.margin-bottom-0px {
    text-align: center;
  }

  .div-block-33.margin-bottom-0px._w-80, .div-block-40 {
    width: 100%;
  }

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

  .div-block-47 {
    width: 100%;
  }

  .div-block-50 {
    width: 90%;
  }

  .link-block-2 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-53, .div-block-54, .div-block-55 {
    width: 100%;
  }

  .div-block-56 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-59 {
    width: 100%;
  }

  .div-block-63 {
    flex-direction: column;
  }

  .div-block-64 {
    width: 100%;
  }

  .div-block-66 {
    align-items: flex-start;
  }

  .div-block-74 {
    padding: 15px;
  }

  .div-block-175 {
    width: 100%;
  }

  .div-block-157 {
    height: 250px;
  }

  .div-block-165 {
    width: 100%;
  }

  .grid-3-copy-2 {
    flex-direction: column;
  }

  .div-block-171 {
    width: 100%;
  }

  .div-block-172 {
    padding-left: 0;
  }

  .div-block-164-copy {
    width: 100%;
  }

  .div-block-170 {
    flex-direction: column;
  }

  .slider-arrow {
    position: absolute;
  }

  .div-block-119 {
    width: auto;
    overflow: visible;
  }

  .div-block-131 {
    flex: 0 auto;
  }

  .div-block-135 {
    width: 90%;
  }

  .div-block-184 {
    text-align: center;
    flex-direction: column;
    align-items: stretch;
  }

  .div-block-153 {
    width: auto;
  }

  .div-block-153._2 {
    width: auto;
    margin-right: 0;
  }

  .div-block-194 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-147 {
    margin-bottom: 10px;
  }

  .div-block-146 {
    width: 100%;
  }

  .div-block-197 {
    text-align: center;
    margin-left: 28px;
    margin-right: 28px;
  }

  .div-block-84-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-201 {
    width: 90%;
  }

  .div-block-85-copy {
    width: 100%;
  }

  .div-block-87-copy {
    width: auto;
  }

  .div-block-87-copy._2 {
    flex-direction: column;
  }

  .div-block-202 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .div-block-203 {
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: 90px;
  }

  .div-block-91-copy {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .div-block-92-copy {
    align-items: stretch;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .heading-4 {
    margin-top: 10px;
  }

  .div-block-206 {
    flex-direction: column;
    width: auto;
  }

  .div-block-208 {
    text-align: center;
  }

  .div-block-208._3 {
    text-align: center;
    width: 100%;
  }

  .div-block-185 {
    flex-flow: column;
  }

  .div-block-180 {
    text-align: center;
  }

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

  .div-block-187 {
    flex-direction: column;
    align-items: stretch;
  }

  .div-block-210 {
    flex-direction: column;
  }

  .div-block-212 {
    width: auto;
  }

  .div-block-214 {
    flex-direction: row;
  }

  .div-block-217 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-61-copy {
    width: 100%;
  }

  .div-block-65 {
    width: auto;
  }

  .div-block-219 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-220 {
    flex-direction: column;
  }

  .div-block-179 {
    width: 100%;
  }

  .div-block-225 {
    width: 10px;
    height: 10px;
    top: -6.375px;
  }

  .div-block-226 {
    padding-left: 0;
  }

  .div-block-75 {
    padding: 10px;
  }

  .div-block-229, .div-block-29-copy {
    width: 90%;
  }

  .div-block-191 {
    flex-direction: column;
    display: flex;
  }

  .div-block-238 {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  .div-block-52 {
    width: 90%;
  }

  .div-block-245.margin-bottom-10px {
    flex-direction: column;
    align-items: center;
  }

  .div-block-246 {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .div-block-247 {
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .div-block-248 {
    text-align: center;
    flex-direction: column;
  }

  .div-block-249 {
    width: 100%;
  }

  .div-block-251.dark {
    padding-top: 20px;
  }

  .div-block-5-copy {
    width: 100%;
    padding-right: 0;
  }

  .div-block-3-copy {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-255 {
    width: 90%;
  }

  .div-block-257 {
    flex-flow: column wrap;
  }

  .div-block-258 {
    text-align: center;
    flex-direction: column;
    width: 100%;
  }

  .div-block-259 {
    width: 100%;
  }

  .div-block-260 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .div-block-261 {
    flex-wrap: wrap;
    order: 1;
  }

  .div-block-263 {
    width: 100%;
  }

  .div-block-264 {
    flex-flow: column wrap;
    justify-content: center;
    width: 90%;
    margin-bottom: 20px;
  }

  .div-block-90-copy-copy {
    text-align: center;
    flex-direction: column;
    width: 70%;
    height: 90px;
  }

  .div-block-183-copy._w-30vw {
    width: 70%;
  }

  .div-block-92-copy-2 {
    align-items: stretch;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-92-copy-2._2, .div-block-92-copy-2.flip {
    flex-direction: column;
    align-items: center;
  }

  .div-block-92-copy-2.flip.justify-center {
    flex-direction: column;
  }

  .div-block-266._2 {
    width: 90%;
  }

  .div-block-183-copy-2._2 {
    text-align: center;
  }

  .p-style-1.color-white.margin-bottom-10px {
    text-align: center;
    margin-bottom: 20px;
  }

  .coupon-div {
    width: auto;
    display: none;
  }

  .call-text-div {
    width: auto;
  }

  .special-announcement-div {
    height: auto;
    padding: 20px 10px;
  }

  .text-block-6.mobile-text-center {
    line-height: 22px;
  }

  .div-block-286 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-290 {
    width: 100%;
  }

  .div-block-283 {
    flex-direction: column-reverse;
    height: 450px;
  }

  .co-packaging-hero-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-288 {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-289 {
    width: 100%;
  }

  .div-block-282 {
    text-align: center;
    width: 100%;
  }

  .div-block-287 {
    width: 100%;
  }

  .why-maryland-packaging, .send-samples, .two-weeks, .nda, .inquiry, .process-schedule, .discovery-calls, .client-visit, .packaging-vendors {
    width: 90%;
  }

  .div-block-293 {
    margin-left: 0;
  }

  .footer-link {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0;
  }

  .brand-div {
    width: auto;
  }

  .div-block-295 {
    flex-direction: column;
  }

  .div-block-295.auto.flip._2 {
    flex-direction: column-reverse;
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .media-body-2, .media-body-2.certified {
    width: 100%;
  }

  .media-body-2._w-20vw {
    width: 70%;
  }

  .div-block-296 {
    flex-direction: column-reverse;
    width: 90%;
  }

  .div-block-280 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-301 {
    flex-direction: row;
  }

  .div-block-212-copy {
    width: auto;
  }

  .div-block-296-copy {
    flex-direction: column;
  }

  .div-block-296-copy.v2 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-296-copy.v2-copy {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-304 {
    flex-direction: column;
  }

  .div-block-305 {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .div-block-307 {
    align-self: center;
  }

  .div-block-309 {
    width: 80%;
  }

  .div-block-312 {
    padding: 10px;
  }

  .div-block-85-copy-2.about-us {
    height: auto;
  }

  .div-block-314 {
    text-align: center;
  }

  .div-block-319 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .div-block-320 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-321 {
    flex-direction: column-reverse;
  }

  .div-block-323 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-324._w-80 {
    width: 95%;
  }

  .hero-content-right-2 {
    margin-top: 5px;
  }

  .div-block-220-copy {
    flex-direction: column;
    padding-right: 0;
  }

  .div-block-327 {
    margin-bottom: 10px;
  }

  .div-block-329 {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-330.shadowed {
    width: 100%;
  }

  .fulfillment-section2 {
    padding-bottom: 0;
  }

  .div-block-334.margin-custom1.bg-grey {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-336 {
    width: 50%;
    margin-bottom: 10px;
  }

  .div-block-337 {
    margin-left: 0;
  }

  .div-block-339 {
    margin-right: 0;
  }

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

  .nav-menu-2-copy {
    width: 220px;
    top: 51px;
    left: 78px;
  }

  .div-block-343 {
    flex-direction: column;
    padding-right: 0;
  }

  .div-block-344 {
    width: 95%;
  }

  .div-block-346 {
    width: 90%;
  }

  .div-block-350 {
    width: 40%;
  }

  .div-block-351 {
    width: 10%;
  }

  .div-block-357 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-358 {
    height: 120px;
  }

  .bottle-choices {
    width: 100%;
  }

  .home-h1 {
    font-size: 1.802rem;
    line-height: 2.2rem;
  }

  .home-h3 {
    font-size: 1.424rem;
    line-height: 1.8rem;
  }

  .div-block-365 {
    width: 75vw;
    left: 12%;
  }

  .onboarding-hero-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-content-left-2-copy {
    text-align: center;
  }

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

  .icon-3 {
    margin-right: 5px;
  }

  .icon-4 {
    margin-left: 5px;
  }

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

  .div-block-371 {
    margin-bottom: 20px;
  }

  .request-a-quote {
    flex: 0 auto;
  }

  .div-block-334-copy.margin-custom1.bg-grey {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-385 {
    width: auto;
  }
}

#w-node-d47e7950-1ea9-967d-3d67-794cf530255b-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730a84-0b2cd11d {
  justify-self: start;
}

#w-node-c382b6a2-1d06-9616-62c1-ee3e70730bb3-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bc2-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bc4-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bca-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bd9-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bdc-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70730bde-0b2cd11d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c382b6a2-1d06-9616-62c1-ee3e7073101e-0b2cd11d {
  align-self: center;
}

#w-node-c382b6a2-1d06-9616-62c1-ee3e70731023-0b2cd11d {
  place-self: center end;
}

#w-node-c382b6a2-1d06-9616-62c1-ee3e7073102b-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70731030-0b2cd11d {
  place-self: center;
}

#w-node-c382b6a2-1d06-9616-62c1-ee3e7073103e-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e7073104d-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70731050-0b2cd11d, #w-node-c382b6a2-1d06-9616-62c1-ee3e70731052-0b2cd11d, #w-node-ede1e13c-bff7-2e12-91d0-dff988f86d0a-0b2cd11d, #w-node-_7445df38-46fb-be30-10ca-050e4386f981-0b2cd11d, #w-node-_4d11cf30-8337-3d6e-b2df-6ab107b49ff9-0b2cd11d, #w-node-_0cccb93c-1c20-5b6c-5464-f2b63148ab72-0b2cd11d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_09f2ee53-3c46-7b4c-9aff-0a045155cead-0b2cd11d {
  justify-self: start;
}

#w-node-_9b8d6578-1ba5-9bea-a158-88b3ed082fb2-0b2cd11d, #w-node-fd294527-b071-9f8e-2a5a-1901da20adda-0b2cd11d, #w-node-b8110182-c846-fb9c-be6d-58d896f46e38-0b2cd11d, #w-node-_858ef89b-41f3-d9fc-5aa4-023e4735f41b-0b2cd11d, #w-node-_0bc91d6b-5858-da73-1a15-f5f21419435f-0b2cd11d, #w-node-_4e387fca-04de-eb41-2893-64fcbb38ceb6-0b2cd11d, #w-node-_4d7efd4d-cdd3-e444-f7f2-28ce599a0ed9-0b2cd11d, #w-node-dabbf2ce-d562-cdd4-d0f2-ab47be83b4dd-0b2cd11d, #w-node-de4dc39b-57cb-bf0e-a4f4-66daf6098bfe-0b2cd11d, #w-node-_2e45d1fd-1e46-f580-dd91-4d9b4a4f3bc1-0b2cd11d, #w-node-e5774176-c51a-177c-66a8-3487c7e7104b-0b2cd11d, #w-node-_1fc1e782-c002-bad4-0e73-3e7e81adff79-0b2cd11d, #w-node-e76cd0cb-bf04-7603-523f-7277f3e072c9-0b2cd11d, #w-node-a07454d7-5e3d-fa60-df89-397dfeed8bf2-0b2cd11d, #w-node-_632c0273-891c-4d59-aeab-abae4f6fb259-0b2cd11d, #w-node-_72d67917-0d62-ab1b-260e-69a4f94a7543-0b2cd11d, #w-node-_42547568-530e-6503-0b42-34a48c0bb4a8-0b2cd11d, #w-node-b2103937-137f-8bff-bc0a-fa8ca9d34024-0b2cd11d, #w-node-ef818800-c2ce-35c4-a607-78eae1cc17d3-0b2cd11d, #w-node-fd393d4a-0c04-a682-4d33-e338f2f174a7-0b2cd11d, #w-node-_70646a37-0b26-4148-daca-0d47cf182dfe-0b2cd11d, #w-node-c926e7a8-754e-8dfb-3b56-e6c40e190e3e-0b2cd11d, #w-node-e3585132-3287-1fb9-8fe1-06c2066aa1ad-0b2cd11d, #w-node-d4af8e73-a619-3cd0-cee9-b1ecc9f4a3fe-0b2cd11d, #w-node-d7eb19e3-c3be-a4ac-cbd9-56e7c257f571-0b2cd11d, #w-node-_85998ca3-60cd-3792-9f4c-b3a0bf2b7faf-0b2cd11d, #w-node-b9dff332-7d22-3a11-d804-855bd8d23fbb-0b2cd11d, #w-node-a51a6e80-b7ef-c63b-dbea-1fa5629ccdac-0b2cd11d, #w-node-cddc4dd0-8601-306a-8f88-b2547bfa3d97-0b2cd11d, #w-node-d0688d6e-0cc5-15fb-d718-207c68194ca5-0b2cd11d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5084fdaf-5995-d866-28e9-8fe00b16a78f-342cd11e, #w-node-_5084fdaf-5995-d866-28e9-8fe00b16a7a0-342cd11e, #w-node-_5084fdaf-5995-d866-28e9-8fe00b16a7b1-342cd11e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_174be0aa-e58d-7eb6-953c-398426de31dd-c62cd11c, #w-node-_174be0aa-e58d-7eb6-953c-398426de31df-c62cd11c, #w-node-_174be0aa-e58d-7eb6-953c-398426de31e4-c62cd11c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_174be0aa-e58d-7eb6-953c-398426de31e6-c62cd11c {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_174be0aa-e58d-7eb6-953c-398426de31d3-c62cd11c, #w-node-_174be0aa-e58d-7eb6-953c-398426de31da-c62cd11c, #w-node-_174be0aa-e58d-7eb6-953c-398426de31e1-c62cd11c {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Material design iconic font';
  src: url('../fonts/Material-Design-Iconic-Font.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.otf') format('opentype'), url('../fonts/Gilroy-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-BlackItalic.otf') format('opentype'), url('../fonts/Gilroy-HeavyItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.otf') format('opentype'), url('../fonts/Gilroy-Extrabold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraboldItalic.otf') format('opentype'), url('../fonts/Gilroy-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-UltraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}