@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --palette-2a: #3f5372;
  --palette-1a: #06bcc1;
  --white: white;
  --palette-2c: #2b3a4f;
  --palette-2b: #f2f4f8;
  --border-dark: #3f537226;
  --status-green: #06c15c;
  --palette-1b: #ebfefe;
  --palette-1c: #04868b;
  --palette-3b: #fff9eb;
  --palette-4b: #fcedee;
  --goldenrod: #ffbf00;
  --royal-blue: #0c56c4;
  --yellow-green: #80cc28;
  --deep-pink: #dd2476;
  --navlinks: 1.2rem;
  --palette-3a: #ffb100;
  --palette-3c: #cc8f00;
  --palette-4a: #e23c47;
  --palette-4c: #b11b25;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

body {
  color: var(--palette-2a);
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

h1 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3em;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3em;
}

h5 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 27px;
}

a {
  color: var(--palette-1a);
  font-weight: 600;
  text-decoration: none;
}

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

label {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: 6px solid var(--palette-1a);
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 0 0 0 24px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
}

.loading-container {
  z-index: 9999;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.load-second {
  padding-top: 20px;
}

.section {
  padding-top: 45px;
  padding-bottom: 46px;
}

.section.reduced-bottom-padding {
  padding-bottom: 72px;
}

.section.bg-palette-2b {
  background-color: #fff;
  padding-bottom: 103px;
}

.section.with-bg-image {
  color: var(--white);
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 79px;
  padding-bottom: 0;
  display: flex;
}

.section.reduced-padding {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.contains-grid-section {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section.contains-grid-section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.no-bottom-padding {
  padding-top: 100px;
  padding-bottom: 54px;
}

.section.no-bottom-padding.bg-palette-2b.toppadding {
  padding-top: 156px;
}

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

.section.grow {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-height: 800px;
  display: flex;
}

.section.padding {
  padding-top: 180px;
}

.section.lilpadding {
  padding-bottom: 90px;
}

.main-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.main-container.atop-image {
  z-index: 1;
  position: absolute;
}

.main-container.wide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.bg-palette-1a {
  background-color: var(--palette-1a);
  color: #fff;
}

.large-text {
  margin-bottom: 22px;
  padding-right: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
}

.small-text {
  font-size: 18px;
  line-height: 1.5em;
}

.small-text.padding {
  margin-top: 30px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #dd2476;
  border-radius: 200px;
  margin-bottom: 0;
  padding: 18px 24px;
  font-weight: 700;
  transition: background-color .2s;
}

.button:hover {
  background-color: #80cc28;
}

.button.bg-palette-2a {
  transition: color .2s, background-color .2s;
}

.button.bg-palette-2a:hover {
  background-color: var(--palette-2b);
  color: var(--palette-2a);
}

.button.adjacent-to-link {
  background-color: #dd2476;
  margin-right: 24px;
}

.navbar {
  background-color: #0000;
  align-items: center;
  min-height: 84px;
  display: flex;
}

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

.form-input {
  border: 1px solid var(--border-dark);
  background-color: var(--white);
  color: var(--palette-2c);
  border-radius: 6px;
  min-height: 63px;
  margin-bottom: 0;
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1.5em;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--palette-1a);
}

.form-input::placeholder {
  color: var(--palette-2a);
  font-size: 18px;
  line-height: 1.5em;
}

.form-input.text-area {
  min-height: 150px;
}

.form-input.horizontal-form-input {
  margin-right: 18px;
}

.form-grid {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer {
  background-color: var(--palette-2c);
  color: var(--white);
  padding-top: 144px;
  padding-bottom: 96px;
}

.back-to-top-button {
  z-index: 10;
  color: #dd2476;
  background-color: #dd2476;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: fixed;
  bottom: 14px;
  right: 14px;
}

.announcement-cross {
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 0;
}

.trigger-search-modal {
  margin-left: 24px;
  padding: 0;
}

.search-modal {
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.search-modal-screen {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.search-modal-container {
  width: 100%;
  max-width: 840px;
  padding-top: 72px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.display-heading {
  letter-spacing: -.01em;
  margin-bottom: 18px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1em;
}

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

.form-success {
  background-color: var(--status-green);
  padding: 14px;
  font-size: 16px;
}

.form-error {
  color: var(--palette-2c);
  text-align: center;
  margin-top: 21px;
  padding: 14px;
  font-size: 14px;
}

.uppercase-text {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.uppercase-text.subheading {
  margin-bottom: 18px;
}

.bg-palette-1b {
  background-color: var(--palette-1b);
}

.bg-palette-1c {
  background-color: var(--palette-1c);
  color: var(--white);
}

.bg-palette-2a {
  background-color: var(--palette-2a);
  color: var(--white);
}

.bg-palette-2b {
  background-color: var(--palette-2b);
}

.bg-palette-2c {
  background-color: var(--palette-2c);
  color: var(--white);
}

.bg-palette-3b {
  background-color: var(--palette-3b);
}

.bg-palette-4b {
  background-color: var(--palette-4b);
}

.arrow-link {
  align-items: center;
  display: flex;
}

.arrow-link-extension {
  background-color: var(--palette-1a);
  width: 0;
  height: 2px;
  position: relative;
  top: .5px;
  left: .5px;
}

.arrow-link-image {
  filter: hue-rotate(180deg);
  color: #ffbf00;
  margin-right: 12px;
  display: block;
}

.text-palette-2a {
  color: var(--palette-2a);
}

.icon-link-image {
  margin-right: 6px;
  display: block;
}

.icon-link-image.right {
  margin-left: 6px;
  margin-right: 0;
}

.dropdown-link-wrapper {
  color: var(--palette-2a);
  cursor: pointer;
  align-items: center;
  padding: 0;
  font-weight: 700;
  display: flex;
}

.divider {
  background-color: var(--palette-2c);
  justify-content: center;
  align-items: center;
  height: 54px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.divider.bg-palette-1c {
  background-color: var(--palette-1c);
}

.divider-line {
  background-color: var(--palette-2a);
  width: 1vw;
  min-width: 12px;
  height: 272px;
  margin-left: 5vw;
  margin-right: 5vw;
}

.divider-line.line-1 {
  transform: rotate(-35deg);
}

.divider-line.line-1.bg-palette-1a {
  background-color: var(--palette-1a);
}

.divider-line.line-2 {
  transform: rotate(-15deg);
}

.divider-line.line-2.bg-palette-1a {
  background-color: var(--palette-1a);
}

.divider-line.line-3 {
  transform: rotate(15deg);
}

.divider-line.line-3.bg-palette-1a {
  background-color: var(--palette-1a);
}

.divider-line.line-4 {
  transform: rotate(-45deg);
}

.divider-line.line-4.bg-palette-1a {
  background-color: var(--palette-1a);
}

.divider-line.line-5 {
  transform: rotate(40deg);
}

.divider-line.line-5.bg-palette-1a {
  background-color: var(--palette-1a);
}

.nav-menu {
  align-items: center;
  font-size: 16px;
  display: flex;
}

.nav-link {
  color: var(--palette-2a);
  font-weight: 500;
  transition: color .2s;
  display: block;
}

.nav-link:hover {
  color: #6057ca;
}

.nav-link-wrapper {
  margin-left: 18px;
  margin-right: 18px;
}

.dropdown-list.w--open {
  background-color: var(--white);
  border-radius: 12px;
  min-width: 245px;
  padding: 18px;
  font-size: 18px;
  box-shadow: 0 0 12px 3px #0000000d;
}

.dropdown-link {
  color: var(--palette-2a);
  border-radius: 6px;
  align-items: center;
  padding: 9px 12px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.dropdown-link:hover {
  background-color: var(--palette-2b);
}

.dropdown-heading {
  opacity: .5;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.dropdown-divider {
  background-color: var(--border-dark);
  width: 100%;
  height: 1px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.navigation-wrapper {
  z-index: 10;
  background-color: #fffffff7;
  position: sticky;
  top: 0;
}

.dropdown-columns {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-auto-flow: column;
  align-items: start;
}

.dropdown-rows {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  min-width: 213px;
}

.badge {
  background-color: var(--palette-2b);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  margin-left: 12px;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.justify-contents-left {
  justify-content: flex-start;
  display: flex;
}

.container---l {
  width: 100%;
  max-width: 840px;
}

.container---l.align-center {
  max-width: 920px;
}

.footer-grid {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 498px 1fr;
  margin-bottom: 96px;
}

.footer-large-link {
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-bottom: 36px;
  font-size: 24px;
  line-height: 1.4em;
}

.hover-link {
  opacity: .7;
  transition: opacity .2s;
}

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

.hover-link.text-white {
  color: var(--white);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

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

.footer-grid-2 {
  grid-column-gap: 16px;
  grid-row-gap: 54px;
  grid-template-columns: 1fr;
}

.footer-menus {
  grid-column-gap: 72px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
}

.links-grid {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.horizontal-form {
  margin-bottom: 0;
  display: flex;
}

.footer-details-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: column;
  font-size: 16px;
}

.social-links {
  justify-content: flex-start;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
}

.social-link {
  margin-left: 12px;
  margin-right: 12px;
}

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

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

.section-title {
  margin-bottom: 72px;
}

.section-title.reduced-margin {
  margin-bottom: 36px;
}

.section-title.row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.large-heading {
  letter-spacing: -.01em;
  margin-bottom: 18px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
}

.large-heading.reduced-margin {
  margin-bottom: 6px;
}

.small-quote {
  margin-bottom: 12px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3em;
}

.grid---2-columns {
  grid-column-gap: 72px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid---2-columns.container-xs---left {
  grid-template-columns: 368px 1fr;
}

.grid---2-columns.section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  max-width: 1680px;
  min-height: 672px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.grid---2-columns.section.increased-height {
  min-height: 650px;
  overflow: hidden;
}

.grid---2-columns.section.lesss {
  min-height: 600px;
}

.grid---2-columns.align-center {
  align-items: center;
}

.container---xl {
  width: 100%;
  max-width: 1068px;
}

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

.grid-columns.align-center {
  place-items: center;
}

.grid-columns.reduced-gaps {
  grid-column-gap: 36px;
  grid-row-gap: 72px;
}

.grid-columns.form-inputs {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
}

.grid-columns.section {
  background-color: #fff;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  max-width: 1344px;
  margin-left: 24px;
  margin-right: 24px;
  padding: 96px 48px;
}

.link-row {
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.link-row.no-margin {
  align-items: center;
  margin-top: 0;
}

.link-row.justify-contents-center {
  justify-content: center;
}

.medium-heading {
  margin-bottom: 12px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

.medium-heading.no-bottom-margin, .no-bottom-margin {
  margin-bottom: 0;
}

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

.column-section-contents {
  justify-content: center;
  align-items: center;
  padding: 96px 24px 0;
  display: flex;
  position: relative;
}

.column-section-contents.less {
  padding-top: 68px;
  padding-bottom: 68px;
}

.container---s {
  width: 100%;
  max-width: 498px;
}

.container---s.align-center {
  max-width: 550px;
  position: static;
  top: -38px;
}

.table-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  padding: 12px;
}

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

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

.image-wrapper {
  position: relative;
}

.graphic-bottom-left {
  position: absolute;
  bottom: -48px;
  left: -48px;
}

.top-layer {
  z-index: 2;
  border-radius: 20px;
  position: relative;
  box-shadow: 1px 1px 3px #0000;
}

.text-palette-1a {
  color: var(--palette-1a);
}

.horizontal-rule {
  background-color: var(--border-dark);
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.review-row {
  justify-content: center;
  align-items: center;
  display: flex;
}

.stars-image {
  margin-left: 18px;
  margin-right: 18px;
}

.column-section-image {
  object-fit: cover;
  border-radius: 0;
  min-height: 100%;
  max-height: 100%;
  display: block;
}

.stars {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  justify-items: start;
  display: grid;
}

.quote-author {
  margin-top: 6px;
}

.quote-author.increased-margin {
  margin-top: 18px;
}

.section-bg-image {
  opacity: .6;
  object-fit: cover;
  width: 1680px;
  max-height: 712px;
}

.box {
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  flex-direction: column;
  padding: 36px;
  display: flex;
}

.icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 102px;
  height: 102px;
  display: flex;
}

.icon-circle.bg-palette-4b {
  background-color: #dd2476b0;
}

.icon-circle.bg-palette-1b {
  background-color: #80cc28b3;
}

.icon-circle.bg-palette-3b {
  background-color: #ffbf00c2;
}

.icon-heading {
  margin-top: 24px;
}

.box-text {
  flex: 1;
}

.horizontal-icon-grid {
  grid-column-gap: 36px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.trustpilot-small {
  max-height: 18px;
}

.review-box {
  border-radius: 12px;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.review-box.bg-palette-3b {
  background-color: #80cc285e;
  padding-bottom: 0;
}

.review-box.bg-palette-2b {
  background-color: #dd247652;
}

.review-box.bg-palette-1b {
  background-color: #0c56c45e;
}

.review-box.bg-palette-4b {
  background-color: #ffbf008a;
}

.review-box-heading {
  margin-top: 18px;
  font-weight: 500;
}

.review-box-text {
  flex: 1;
  margin-top: 17px;
}

.review-summary {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ui-snippet {
  z-index: 1;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--white);
  color: var(--palette-2a);
  text-align: left;
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 284px;
  padding: 18px;
  font-size: 16px;
  line-height: 1.5em;
  display: grid;
  position: relative;
  box-shadow: 0 6px 18px #0000000d;
}

.ui-snippet.inside-window {
  box-shadow: none;
  border-radius: 0;
  max-width: 100%;
}

.ui-snippet-window {
  z-index: 2;
  border-radius: 12px;
  width: 100%;
  max-width: 368px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px #0000000d;
}

.ui-snippet-window.wide {
  max-width: 491px;
}

.ui-snippet-box {
  background-color: #0000;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 612px;
  padding: 24px;
  display: flex;
}

.accordion-title {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-weight: 700;
  display: flex;
}

.hero-ui-snippets {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.ui-snippet-heroes-graphic {
  width: 70%;
  position: absolute;
  top: 0;
  right: 0;
}

.portrait-image-over-snippet {
  z-index: 2;
  border-radius: 12px;
  max-height: 378px;
  margin-bottom: -160px;
  margin-left: auto;
  display: block;
  position: relative;
  bottom: 160px;
  transform: rotate(2deg);
}

.small-image-gallery {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.small-image-gallery-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 288px 1fr;
  grid-auto-flow: column;
  align-items: end;
}

.display-none {
  display: none;
}

.full-page-wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.search-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.search-url {
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 14px;
}

.search-modal-box {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.text-block {
  color: #636363;
}

.text-block-2 {
  font-weight: 500;
}

.text-block-3, .text-block-4, .text-block-5 {
  color: #585858;
}

.text-block-6 {
  color: #fff;
}

.section-2 {
  padding-top: 10px;
  padding-bottom: 9px;
}

.link {
  color: #585858;
}

.image {
  border: 20px solid var(--palette-2a);
  object-fit: contain;
  border-radius: 20px;
  max-width: 160%;
  position: relative;
  top: -54px;
  overflow: hidden;
}

.image.noboarder {
  border-style: none;
}

.slider-2 {
  color: #0000;
  background-color: #0000;
  border: 30px #0000;
  border-radius: 0;
  height: 600px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  top: 72px;
  left: 5px;
  overflow: hidden;
}

.slide {
  border: 30px none var(--palette-2a);
  background-color: #0000;
  background-image: url('../images/P1030232-min_1.avif');
  background-position: 100%;
  background-size: cover;
  border-radius: 0;
  overflow: hidden;
}

.navbar-logo-left {
  background-color: #0000;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  color: var(--palette-2c);
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 11px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #000;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #000;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
}

.button-primary {
  color: #fff;
  letter-spacing: 0;
  text-transform: capitalize;
  background-color: #80cc28;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  transition: all .2s;
}

.button-primary:hover {
  background-color: var(--deep-pink);
  color: #fff;
}

.button-primary:active {
  background-color: #43464d;
}

.image-3 {
  max-width: 140%;
  position: relative;
  left: -4px;
  overflow: visible;
}

.image-4 {
  position: relative;
  left: -10px;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
  font-size: 16px;
}

.image-5 {
  border: 20px none var(--palette-2a);
  filter: brightness(114%);
  object-fit: contain;
  border-radius: 30px;
}

.text-span {
  color: #dd2476;
}

.hero-without-image {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 110px 30px 80px;
  position: relative;
}

.hero-without-image.padding {
  padding-top: 139px;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px {
  text-align: left;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.65em;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 0;
  text-transform: capitalize;
  background-color: #dd2476;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.link-2, .link-3 {
  color: #fff;
}

.icon {
  background-color: #0000;
  border-radius: 0;
  padding-top: 0;
  padding-left: 0;
}

.icon-2 {
  background-color: #0000;
  border-radius: 20px;
}

.link-4 {
  color: #000;
  background-color: #0000;
  border: 1px #fff;
  border-radius: 30px;
  margin-left: 0;
  margin-right: 5px;
  padding: 12px 22px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .35s;
  display: inline-block;
}

.link-4:hover {
  background-color: var(--deep-pink);
  color: #fff;
  font-weight: 400;
}

.link-5 {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 30px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
}

.link-5:hover {
  background-color: var(--royal-blue);
  font-weight: 700;
}

.list-item {
  color: #fff;
}

.image-7 {
  border: 13px solid var(--palette-2a);
  object-fit: contain;
  border-radius: 20px;
  min-width: 500px;
  box-shadow: 2px 2px 3px #0000004d;
}

.image-8 {
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 2px 2px 6px #00000063;
}

.italic-text, .italic-text-2 {
  color: #dd2476;
}

.image-10 {
  border-radius: 20px;
}

.text-block-7 {
  color: var(--deep-pink);
}

.button-2 {
  background-color: var(--deep-pink);
  border-radius: 200px;
  padding: 18px 24px;
}

.slide-nav {
  top: 452px;
}

.right-arrow {
  left: 609.5px;
}

.left-arrow-2 {
  left: 18px;
}

.slide-2 {
  border: 30px none var(--palette-2a);
  background-color: #0000;
  background-image: url('../images/pink-shirt-day-1.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  overflow: hidden;
}

.dropdown-toggle {
  padding-right: 41px;
}

.dropdown-toggle.dropdown-link-5 {
  color: #000;
  background-color: #fff;
  border-style: none;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
}

.dropdown-link-4 {
  color: #000;
  background-color: #fff;
  border: 1px solid #797979;
  border-radius: 30px;
  margin-top: 6px;
  padding: 12px 22px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .35s;
}

.dropdown-link-4:hover {
  background-color: var(--goldenrod);
  color: #fff;
}

.dropdown-link-5 {
  background-color: var(--white);
  color: #000;
  border: 1px solid #949494;
  border-radius: 30px;
  margin-top: 4px;
  padding-left: 22px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: all .35s;
}

.dropdown-link-5:hover {
  background-color: var(--deep-pink);
  color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.dropdown-list-2 {
  background-color: #0000;
}

.mask {
  border-radius: 0;
}

.slide-3 {
  border: 30px none var(--palette-2a);
  background-image: url('../images/DCS-HOME-WEB-PAGE-.webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 0;
  left: 2px;
}

.nav-link-4 {
  color: #000;
  background-color: #fff;
  border: 1px #000;
  border-radius: 30px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.nav-link-4.w--current {
  color: #000;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  transition: all .35s;
}

.nav-link-4.w--current:hover {
  background-color: var(--royal-blue);
  color: #fff;
}

.list-item-2 {
  color: #fff;
}

.dropdown-toggle-2 {
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 22px;
  font-size: 16px;
  line-height: 20px;
  transition: all .35s;
}

.dropdown-toggle-2:hover {
  background-color: var(--goldenrod);
  color: #fff;
}

.dropdown-link-6 {
  color: #000;
  background-color: #fff;
  border: 1px solid #7e7e7e;
  border-radius: 30px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .35s;
}

.dropdown-link-6:hover {
  background-color: var(--yellow-green);
  color: #fff;
}

.dropdown-link-7 {
  color: #000;
  background-color: #fff;
  border: 1px solid #7e7e7e;
  border-radius: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .35s;
}

.dropdown-link-7:hover {
  background-color: var(--yellow-green);
  color: #fff;
}

.dropdown-list-3.w--open {
  background-color: #0000;
}

.text-block-9 {
  font-size: 16px;
  font-weight: 400;
  transition: all .35s;
}

.text-block-10 {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
}

.text-span-4 {
  color: var(--deep-pink);
}

.cell {
  justify-content: center;
  align-items: center;
}

.section-3 {
  padding-top: 158px;
  padding-bottom: 80px;
}

.button-3 {
  background-color: var(--deep-pink);
}

.button-4 {
  background-color: var(--yellow-green);
}

.text-span-5 {
  letter-spacing: .01em;
  font-size: 1.4rem;
  line-height: 1.55em;
}

.heading-2 {
  margin-bottom: 40px;
}

.section-4 {
  padding-top: 40px;
}

.main-container-copy {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
}

.givealittle {
  color: var(--goldenrod);
}

.nav-link-5 {
  z-index: 178;
  color: #000;
  background-color: #fff0;
  border-bottom: 1px #000;
  padding: 12px 15px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-link-5:hover {
  color: var(--goldenrod);
}

.nav-link-5.w--current {
  color: #000;
  background-color: #fff0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1.2rem;
}

.nav-link-5.hidedesk {
  display: none;
}

.logo {
  max-width: none;
  height: 70px;
}

.nav-button {
  background-color: var(--deep-pink);
  color: #fff;
  text-align: center;
  border: 1px #282828;
  border-radius: 50px;
  padding: 11px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-button:hover {
  color: #fff;
  background-color: #282828;
}

.nav-button.w--current:hover {
  color: #fff;
}

.navbar-2 {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.icon-nav-extra {
  width: 19px;
  max-width: none;
  height: 19px;
}

.block-navbar {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  display: flex;
}

.text-nav-extra {
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.service-links {
  color: #333;
  background-color: #fff;
  border: 1px solid #000;
  border-top-style: none;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  transition: all .18s, color .3s cubic-bezier(.25, .46, .45, .94);
}

.service-links:hover {
  background-color: var(--royal-blue);
  color: #fff;
}

.service-links.w--current {
  color: #282828;
}

.dropdown-toggle-3 {
  z-index: 187;
  color: var(--palette-1b);
  padding-left: 15px;
  font-size: 18px;
}

.nav-menu-2 {
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.nav {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-extra-link {
  color: #333;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-right: 8px;
  padding: 11px 20px;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.nav-extra-link:hover {
  color: #fff;
  background-color: #fff;
  box-shadow: 0 20px 20px -10px #102d470d;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
}

.code-embed {
  margin-bottom: 40px;
}

.paragraph-3 {
  text-align: left;
  font-size: 17px;
  line-height: 25px;
  display: none;
}

.image-15 {
  object-fit: cover;
  min-width: 100%;
  max-height: 70vh;
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-16 {
  border-radius: 8px;
  width: 320px;
  height: 320px;
  max-height: 100%;
  margin-bottom: 15px;
}

.text-block-11 {
  color: #000;
  font-size: var(--navlinks);
  font-weight: 500;
}

.min-height {
  min-height: 400px;
}

.johns {
  display: none;
}

.icon-5 {
  color: var(--palette-2c);
}

.new {
  max-width: 100%;
  max-height: 105px;
  margin-top: 22px;
}

@media screen and (min-width: 1440px) {
  a {
    border: 1px #000;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .load-second {
    padding-top: 30px;
  }

  .section.no-bottom-padding {
    padding-top: 137px;
  }

  .main-container {
    max-width: 1340px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .small-text {
    font-size: 20px;
  }

  .small-text.left {
    text-align: left;
    font-size: 23px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .arrow-link {
    border-style: none;
  }

  .container---l.align-center {
    max-width: 1300px;
  }

  .container---l.align-center.text-center.smaller {
    max-width: 1130px;
  }

  .hover-link.text-white {
    border-style: none;
  }

  .links-grid {
    grid-row-gap: 2px;
  }

  .large-heading.maxwidth {
    max-width: 60%;
  }

  .grid---2-columns.container-xs---left {
    grid-row-gap: 40px;
  }

  .grid-columns.section {
    padding-top: 70px;
  }

  .grid-columns.section.lessgap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .container---s.align-center {
    position: static;
  }

  .section-bg-image {
    opacity: .9;
    filter: brightness(55%);
  }

  .ui-snippet-window.align-center.new {
    max-width: 500px;
  }

  .ui-snippet-heroes-graphic {
    width: 70%;
    max-width: 70%;
  }

  .portrait-image-over-snippet.less {
    min-height: 450px;
    max-height: 550px;
    margin-bottom: -109px;
  }

  .link {
    border-style: none;
  }

  .image {
    border-radius: 10px;
    box-shadow: 4px 4px 9px #0000007a;
  }

  .image.noboarder {
    box-shadow: none;
  }

  .slider-2 {
    height: 700px;
  }

  .slide {
    border-style: none;
    border-radius: 0;
    overflow: hidden;
  }

  .navbar-logo-left {
    background-color: #fff;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-logo-left-container.shadow-three {
    background-color: #fff;
    max-width: 1280px;
  }

  .navbar-brand {
    border-style: none;
  }

  .nav-link-accent {
    border-style: none;
    font-size: 1.2rem;
    font-weight: 500;
  }

  .nav-link-accent:hover {
    color: #000;
    font-family: Satoshi, sans-serif;
    font-weight: 500;
  }

  .image-3 {
    min-width: 320px;
    position: static;
    left: -98px;
  }

  .container-2 {
    max-width: 1300px;
  }

  .centered-heading {
    font-size: 42px;
  }

  .team-card {
    justify-content: flex-end;
    align-items: center;
  }

  .hero-without-image.padding {
    padding-top: 166px;
  }

  .link-4 {
    font-size: 1.2rem;
    transition: all .5s;
  }

  .link-4:hover {
    background-color: var(--deep-pink);
    color: #fff;
    font-weight: 400;
  }

  .text-block-8 {
    color: #fff;
    font-size: 24px;
  }

  .button-2 {
    background-color: var(--deep-pink);
    border-radius: 200px;
    padding: 18px 24px;
  }

  .slide-nav {
    top: 600px;
  }

  .slide-2 {
    border-style: none;
    border-radius: 0;
    overflow: hidden;
  }

  .dropdown-toggle {
    padding-right: 42px;
  }

  .dropdown-toggle.dropdown-link-5 {
    font-family: Satoshi, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all .5s;
  }

  .dropdown-toggle.dropdown-link-5:hover {
    background-color: var(--yellow-green);
    color: #fff;
  }

  .link-block {
    border-style: none;
  }

  .dropdown-link-4 {
    background-color: var(--goldenrod);
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .dropdown-link-5 {
    padding-right: 22px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
  }

  .dropdown-list-2.w--open {
    color: #fff;
  }

  .slide-3 {
    overflow: hidden;
  }

  .nav-link-4 {
    font-size: 1.2rem;
    transition: all .5s;
  }

  .nav-link-4:hover {
    background-color: var(--royal-blue);
    color: #fff;
  }

  .dropdown-toggle-2 {
    font-size: 1.2rem;
    transition: all .5s;
  }

  .dropdown-toggle-2:hover {
    background-color: var(--goldenrod);
    color: #fff;
  }

  .dropdown-link-6 {
    border-color: #fff;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
  }

  .dropdown-link-7 {
    background-color: var(--palette-2a);
    border-color: #fff;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
  }

  .text-block-9 {
    padding-right: 20px;
    font-size: 1.2rem;
  }

  .section-3 {
    padding-top: 185px;
  }

  .list-item-3 {
    font-size: 1.2rem;
  }

  .nav-link-5 {
    font-size: var(--navlinks);
    background-color: #fff0;
    border-radius: 0;
  }

  .nav-link-5:hover {
    background-color: var(--palette-3a);
    color: #000;
    border-radius: 30px;
  }

  .nav-link-5.w--current {
    font-size: var(--navlinks);
  }

  .logo {
    height: 80px;
  }

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

  .service-links {
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;
    border-radius: 0;
  }

  .service-links.w--current:hover {
    color: #fff;
  }

  .image-16 {
    height: 70%;
    min-height: 350px;
    margin-bottom: 25px;
  }

  .dropdown-list-4 {
    background-color: #dddddd29;
  }

  .dropdown-list-4.w--open {
    background-color: #ddd0;
    border-radius: 0;
  }

  .min-height {
    min-width: 500px;
  }

  .johns {
    display: none;
  }

  .new {
    max-height: 90px;
  }

  .new.larger {
    object-fit: contain;
    min-width: 170px;
    max-height: 120px;
    margin-top: 25px;
  }
}

@media screen and (min-width: 1920px) {
  .load-first {
    overflow: hidden;
  }

  .section.no-bottom-padding.bg-palette-2b {
    padding-top: 151px;
    padding-bottom: 103px;
  }

  .button.adjacent-to-link {
    border-style: none;
  }

  .footer {
    background-color: var(--palette-2c);
  }

  .back-to-top-button {
    border-style: none;
  }

  .bg-palette-2c {
    background-color: var(--palette-2a);
  }

  .social-link {
    border-style: none;
  }

  .grid---2-columns.section.increased-height {
    position: relative;
  }

  .column-section-contents {
    left: -47px;
    overflow: hidden;
  }

  .column-section-image {
    position: static;
    left: -33px;
  }

  .ui-snippet-heroes-graphic {
    width: 60%;
  }

  .portrait-image-over-snippet {
    bottom: 145px;
    left: -37px;
  }

  .section-2 {
    padding-top: 60px;
  }

  .image {
    border: 15px none var(--palette-2a);
    opacity: 1;
    border-radius: 0;
    box-shadow: 4px 4px 20px #0000003b;
  }

  .slider-2 {
    height: 900px;
    top: -3px;
    left: 117px;
    overflow: hidden;
  }

  .slide {
    border: 20px none var(--palette-2a);
    background-color: #0000;
    background-image: url('../images/.webp');
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    top: auto;
  }

  .navbar-logo-left {
    z-index: 99999999;
    background-color: #fff;
    padding-bottom: 0;
    position: sticky;
    top: 0;
  }

  .navbar-logo-left-container.shadow-three {
    background-color: #fff;
    padding-top: 3px;
    padding-bottom: 0;
  }

  .nav-menu-two {
    padding-left: 40px;
    position: relative;
  }

  .nav-link-accent:hover {
    color: #000;
  }

  .image-3 {
    min-width: 160%;
    left: -200px;
  }

  .image-5 {
    border: 20px none var(--palette-2a);
    border-radius: 0;
  }

  .hero-without-image {
    padding-top: 131px;
    padding-bottom: 102px;
  }

  .hero-without-image.padding {
    padding-top: 182px;
  }

  .link-2, .link-3 {
    border-style: none;
  }

  .icon, .icon-2 {
    display: none;
  }

  .link-4 {
    border: 1px #fff;
    border-radius: 20px;
    font-size: 16px;
  }

  .link-4:hover {
    background-color: var(--deep-pink);
  }

  .link-5 {
    border: 1px solid #fff;
    font-size: 16px;
  }

  .link-5:hover {
    background-color: var(--royal-blue);
  }

  .list-item {
    color: #fff;
  }

  .image-7 {
    border: 23px solid var(--palette-2a);
    border-radius: 40px;
    min-width: 700px;
    position: relative;
    left: 2px;
  }

  .image-8 {
    max-width: 80%;
  }

  .text-block-7 {
    color: var(--palette-2c);
  }

  .text-block-8 {
    color: #fff;
    margin-top: 12px;
    font-size: 24px;
  }

  .slide-nav {
    display: none;
    position: relative;
    top: -62px;
    left: auto;
  }

  .right-arrow {
    position: absolute;
    top: -5px;
    left: auto;
  }

  .left-arrow-2 {
    left: 8px;
  }

  .slide-2 {
    background-color: #0000;
    background-image: url('../images/pink-shirt-day-1.jpeg');
    background-position: 50%;
    background-size: cover;
    border-style: none;
    border-width: 20px;
    border-radius: 0;
    position: static;
    left: 151px;
    overflow: hidden;
  }

  .dropdown-toggle.dropdown-link-5 {
    margin-left: 0;
    padding-right: 22px;
    transition-duration: .35s;
  }

  .dropdown-link-4 {
    color: #000;
    background-color: #fff;
    border-style: solid;
    font-size: 16px;
    font-weight: 400;
  }

  .dropdown-link-5 {
    background-color: #fff;
    border-style: solid;
  }

  .dropdown-link-5.w--current {
    background-color: #0000;
    font-size: 16px;
  }

  .mask {
    border: 0 #000;
  }

  .slide-3 {
    border: 30px none var(--palette-2a);
    background-image: url('../images/DCS-HOME-WEB-PAGE-.webp');
    background-position: 0 0;
    background-size: cover;
    border-radius: 0;
    padding-bottom: 75px;
    padding-left: 0;
    top: auto;
    left: auto;
  }

  .link-block-2 {
    border-style: none;
  }

  .nav-link-4 {
    margin-left: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }

  .dropdown-toggle-2 {
    color: #000;
    background-color: #0000;
    border-radius: 30px;
    margin-left: 0;
    margin-right: 5px;
    padding: 12px 40px 12px 22px;
    font-size: 16px;
    line-height: 20px;
  }

  .dropdown-link-6 {
    color: #000;
    background-color: #fff;
    border-style: solid;
    border-color: #929292;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }

  .dropdown-link-6:hover {
    background-color: var(--yellow-green);
    color: #fff;
  }

  .dropdown-link-6.w--current {
    color: #fff;
    border-radius: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .dropdown-link-7 {
    color: #000;
    background-color: #fff;
    border-style: solid;
    border-color: #929292;
    font-weight: 500;
    transition: all .2s;
  }

  .dropdown-link-7:hover {
    background-color: var(--yellow-green);
    color: #fff;
  }

  .dropdown-link-7.w--current {
    color: #fff;
    border-radius: 30px;
    margin-top: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .dropdown-list-3 {
    background-color: #0000;
  }

  .text-span-3 {
    color: #000;
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  blockquote {
    font-size: 32px;
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.contains-grid-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-container {
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu {
    border: 1px solid var(--border-dark);
    background-color: var(--white);
    text-align: left;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 24px;
  }

  .nav-link-wrapper {
    margin: 18px 0;
  }

  .dropdown-list.w--open {
    box-shadow: none;
    background-color: #0000;
    border-radius: 0;
    width: 100%;
    min-width: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0;
    position: relative;
  }

  .dropdown-heading {
    display: none;
  }

  .dropdown-columns {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .dropdown {
    width: 100%;
  }

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

  .footer-details-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer-left-grid {
    text-align: center;
  }

  .section-title.row {
    grid-column-gap: 16px;
    grid-row-gap: 18px;
    text-align: center;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .grid---2-columns.container-xs---left, .grid---2-columns.section {
    grid-template-columns: 1fr;
  }

  .grid-columns {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .grid-columns.align-center {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-columns.section {
    text-align: center;
    border-radius: 0;
  }

  .column-section-contents {
    padding-top: 185px;
  }

  .column-section-image {
    width: 100%;
    max-width: 498px;
    margin-bottom: 72px;
    margin-left: auto;
    margin-right: auto;
  }

  .horizontal-icon-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .container-2 {
    max-width: 728px;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .container-3 {
    max-width: 728px;
  }

  .main-container-copy {
    max-width: 680px;
  }

  .nav-link-5 {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .menu-button {
    color: #0c2134;
    background-color: #fff;
    border-radius: 50px;
    margin-left: 8px;
    padding: 11px;
    box-shadow: 0 20px 20px #102d470d;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #282828;
  }

  .service-links {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .icon-menu {
    font-size: 21px;
    line-height: 1em;
  }

  .nav-menu-2 {
    background-color: #fff;
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    box-shadow: 0 20px 20px -10px #102d470d;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 1.2em;
  }

  h2 {
    font-size: 32px;
  }

  h4 {
    font-size: 24px;
    line-height: 1.4em;
  }

  h5 {
    font-size: 18px;
    line-height: 1.5em;
  }

  h6 {
    font-size: 16px;
  }

  p {
    margin-bottom: 24px;
  }

  blockquote {
    font-size: 24px;
    line-height: 1.4em;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section.with-bg-image {
    background-color: var(--palette-2c);
  }

  .main-container.atop-image {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
  }

  .large-text {
    font-size: 22px;
  }

  .footer {
    padding-top: 96px;
  }

  .search-modal-container {
    padding-top: 24px;
  }

  .display-heading {
    margin-bottom: 12px;
    font-size: 48px;
    line-height: 1.15em;
  }

  .divider {
    height: 36px;
  }

  .divider-line {
    margin-left: 8vw;
    margin-right: 8vw;
  }

  .divider-line.line-2, .divider-line.line-4 {
    display: none;
  }

  .footer-menus {
    grid-column-gap: 36px;
    grid-row-gap: 16px;
  }

  .section-title {
    margin-bottom: 54px;
  }

  .large-heading {
    font-size: 40px;
    line-height: 1.2em;
  }

  .small-quote {
    font-size: 24px;
  }

  .grid---2-columns {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .grid---2-columns.section.increased-height {
    min-height: auto;
  }

  .grid-columns, .grid-columns.reduced-gaps {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .medium-heading {
    font-size: 32px;
  }

  .column-section-image {
    max-width: 368px;
  }

  .section-bg-image {
    opacity: 1;
  }

  .ui-snippet-box {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

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

  .team-circles {
    padding: 60px 15px;
  }

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

  .hero-without-image {
    padding: 60px 15px;
  }

  .navbar-2 {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
  }

  .text-nav-extra {
    display: none;
  }

  .nav-extra-link {
    padding-left: 11px;
    padding-right: 11px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    letter-spacing: 0;
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }

  h3, h4 {
    font-size: 24px;
  }

  h5 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  blockquote {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 30px;
  }

  .section.padding {
    padding-top: 45px;
  }

  .section.lilpadding {
    padding-bottom: 60px;
  }

  .large-text {
    text-align: left;
    font-size: 18px;
    line-height: 28px;
  }

  .small-text {
    font-size: 17px;
  }

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

  .button.adjacent-to-link {
    margin-right: 0;
  }

  .navbar {
    min-height: 72px;
  }

  .form-input {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-input.horizontal-form-input {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .form-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .footer {
    padding-bottom: 34px;
  }

  .display-heading {
    text-align: left;
    font-size: 36px;
  }

  .uppercase-text.subheading {
    text-align: center;
    margin-bottom: 12px;
  }

  .arrow-link {
    margin-top: 7px;
  }

  .dropdown-link-wrapper {
    font-size: 18px;
  }

  .divider-line {
    min-width: 10px;
  }

  .nav-menu {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-link-wrapper {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .dropdown-list.w--open {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 16px;
  }

  .dropdown-link {
    padding: 6px 9px;
  }

  .dropdown-divider {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .footer-large-link {
    font-size: 20px;
  }

  .footer-menus {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .horizontal-form {
    flex-flow: column wrap;
  }

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

  .section-title {
    margin-bottom: 48px;
  }

  .section-title.reduced-margin {
    margin-bottom: 24px;
  }

  .large-heading {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 12px;
    font-size: 28px;
  }

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

  .small-quote {
    font-size: 22px;
  }

  .grid---2-columns {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .grid-columns {
    justify-items: center;
  }

  .grid-columns.align-center, .grid-columns.reduced-gaps {
    grid-template-columns: 1fr;
  }

  .grid-columns.form-inputs {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .grid-columns.section {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding: 72px 24px;
  }

  .link-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .medium-heading {
    font-size: 30px;
  }

  .no-bottom-margin {
    text-align: center;
  }

  .column-section-contents {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .table-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .graphic-bottom-left {
    display: none;
  }

  .review-row {
    flex-direction: column;
  }

  .stars-image {
    margin: 12px 0;
  }

  .column-section-image {
    margin-bottom: 0;
  }

  .box {
    padding: 24px;
  }

  .icon-circle.bg-palette-4b {
    background-color: #dd2476e3;
  }

  .horizontal-icon-grid {
    grid-column-gap: 36px;
    grid-row-gap: 18px;
  }

  .review-box {
    padding: 18px;
  }

  .review-box.bg-palette-3b {
    border: 2px solid var(--goldenrod);
    background-color: #80cc2800;
    padding-bottom: 10px;
  }

  .review-box.bg-palette-2b {
    border: 2px solid var(--royal-blue);
    background-color: #ffffff52;
  }

  .review-box.bg-palette-1b {
    border: 2px solid var(--yellow-green);
    background-color: #0c56c400;
  }

  .review-box.bg-palette-4b {
    border: 2px solid var(--deep-pink);
    background-color: #ffbf0000;
  }

  .review-summary {
    grid-template-rows: auto;
  }

  .ui-snippet {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-radius: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .ui-snippet-window {
    border-radius: 6px;
  }

  .ui-snippet-box {
    width: 105%;
    min-height: auto;
    padding: 6px;
  }

  .ui-snippet-heroes-graphic, .portrait-image-over-snippet {
    display: none;
  }

  .small-image-gallery-row {
    grid-template-columns: 1fr;
  }

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

  .image {
    border-style: none;
    border-width: 10px;
    top: -14px;
  }

  .slider-2 {
    display: none;
  }

  .container {
    max-width: none;
    padding-left: 5px;
  }

  .nav-menu-two {
    flex-direction: column;
    margin-top: -1px;
  }

  .nav-link-accent {
    color: #353535;
  }

  .image-3 {
    max-width: 100%;
    left: -7px;
  }

  .container-2 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

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

  .image-5 {
    border-width: 10px;
  }

  .container-3 {
    max-width: none;
  }

  .link-4, .link-5 {
    color: #000;
    margin-bottom: 5px;
  }

  .image-7 {
    min-width: auto;
  }

  .button-2 {
    justify-content: center;
    display: flex;
  }

  .dropdown-toggle.dropdown-link-5 {
    padding-left: 31px;
  }

  .dropdown-list-2.w--open {
    position: static;
  }

  .dropdown-link-7.w--current {
    color: #fff;
  }

  .dropdown-list-3.w--open {
    background-color: #0000;
    position: static;
    top: 91px;
  }

  .text-block-9 {
    color: #000;
  }

  .icon-4 {
    filter: invert();
    color: #fff;
  }

  .text-span-3 {
    color: #000;
  }

  .image-12 {
    filter: invert();
  }

  .image-13 {
    filter: brightness(0%) invert();
  }

  .image-14 {
    filter: invert();
  }

  .section-3 {
    padding-top: 35px;
  }

  .quick-stack {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack-2 {
    padding: 0;
  }

  .nav-link-5 {
    border-bottom: 1px solid #282828;
  }

  .nav-link-5.hidedesk {
    display: block;
  }

  .menu-button {
    border: 1px solid #00000080;
  }

  .menu-button.w--open {
    background-color: var(--deep-pink);
  }

  .logo {
    height: 60px;
  }

  .nav-button {
    display: none;
  }

  .navbar-2 {
    padding-left: 4px;
    padding-right: 15px;
    position: sticky;
  }

  .icon-nav-extra {
    width: 28px;
    height: 28px;
  }

  .service-links {
    border-bottom: 1px solid #282828;
  }

  .dropdown-2 {
    border-bottom: 1px solid #000000cf;
    width: 100%;
  }

  .nav-menu-2 {
    background-color: #fff;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 15px;
  }

  .nav-extra-link {
    margin-left: 0;
    margin-right: 10px;
  }

  .image-16 {
    width: 90%;
    height: auto;
    max-height: 400px;
  }

  .image-16.dif {
    min-height: 320px;
  }

  .text-block-11 {
    font-size: 17px;
  }

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

  .image-17 {
    max-height: 50px;
  }
}

#w-node-cce86b5a-9bea-5ad9-c71f-c7d812fa51a9-24ed0314, #w-node-f92b1bf7-3af5-7de5-4cc0-a09c35125cdb-24ed0314, #w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b83-24ed0314, #w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b85-24ed0314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b86-24ed0314, #w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b91-24ed0314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b92-24ed0314, #w-node-_53b3f23e-7d81-a628-1154-b9ecb6f1c190-24ed0314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b9c-24ed0314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b43a7b1d-ae49-06ca-8c69-9e95308d8be9-24ed0314, #w-node-_4514e997-dcf8-9c8d-7a38-9f9292879787-24ed0314, #w-node-_4514e997-dcf8-9c8d-7a38-9f9292879795-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de478-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de47a-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de47f-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de484-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de489-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de48f-24ed0314, #w-node-f486bdde-8a29-e49a-ba08-9bb8968de490-24ed0314, #w-node-_792b1e7c-ebc6-d068-2af9-13a28ae3d767-24ed0314 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_792b1e7c-ebc6-d068-2af9-13a28ae3d778-24ed0314 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6bef8061-4d7f-61c7-a0e1-a6c432cd5897-24ed0314, #w-node-_6bef8061-4d7f-61c7-a0e1-a6c432cd58a4-24ed0314, #w-node-_6bef8061-4d7f-61c7-a0e1-a6c432cd58b1-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25dc-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25de-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25df-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25e0-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25e1-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25e2-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25eb-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25ed-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25ee-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25ef-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25f0-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25f1-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25fa-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25fc-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25fd-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25fe-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e25ff-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e2600-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e2609-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e260b-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e260c-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e260d-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e260e-24ed0314, #w-node-_53f3ecd2-a07d-f7bc-4fdc-63259e3e260f-24ed0314, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f26-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f2d-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f2f-43530f23, #w-node-_5ae891e3-239e-602f-41be-96192636fb5d-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f38-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f39-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f3a-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f4c-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f48-43530f23, #w-node-aee7c5ea-3c5d-8c66-5581-05578f47a146-43530f23, #w-node-d3388960-e25e-ea11-c95c-95ae054b087e-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f46-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f40-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f42-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f6c-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f6d-43530f23, #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f6f-43530f23, #w-node-e90f2baf-8979-212e-bc25-e4a36a8fe4be-3ded032e, #w-node-e90f2baf-8979-212e-bc25-e4a36a8fe4c0-3ded032e, #w-node-e90f2baf-8979-212e-bc25-e4a36a8fe4c2-3ded032e, #w-node-b87c9970-1724-e967-906e-88f678273488-3ded032e, #w-node-b87c9970-1724-e967-906e-88f67827348e-3ded032e, #w-node-e31adcb1-ecbe-b317-7410-8ceadeb91357-3ded032e, #w-node-c0190569-7643-6bb9-1da0-c105c9174d54-3ded032e, #w-node-_91150b15-1055-ab69-95d7-27ffa766c1ea-3ded032e, #w-node-_7e31aa21-ae05-a78b-86fc-086ebce61a90-3ded032e, #w-node-eb540f40-2abd-7419-c88c-86be2680c823-3ded032e, #w-node-f0e7ce7b-61d4-d261-50c8-a4c16b171072-3ded032e, #w-node-_030d0688-7ff7-7d0c-111f-7d2649fbf1ef-3ded032e, #w-node-_7d41d91c-45e5-7163-8c77-85b73c7dd1ef-3ded032e, #w-node-_512e18a6-e6e5-e715-cb8e-4117c321fdb1-3ded032e, #w-node-b212eb6a-0f76-026a-f9bf-d30724fd9e73-03ed0338, #w-node-b212eb6a-0f76-026a-f9bf-d30724fd9e79-03ed0338 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_273134f5-ee39-e387-d57d-ad02f564997b-03ed0338 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_273134f5-ee39-e387-d57d-ad02f5649980-03ed0338, #w-node-_273134f5-ee39-e387-d57d-ad02f5649985-03ed0338, #w-node-_11db4c51-1e8e-660a-a8ac-9d30f3372b58-03ed0338, #w-node-_11db4c51-1e8e-660a-a8ac-9d30f3372b5b-03ed0338, #field.w-node-_11db4c51-1e8e-660a-a8ac-9d30f3372b5e-03ed0338, #w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe720-e1ed03c2, #w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe73f-e1ed03c2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0746683c-5564-cc92-2fed-72f12c020ddf-e1ed03c2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_53d4ff60-6634-94c5-d798-ef1462854bbd-e1ed03c2, #w-node-_0746683c-5564-cc92-2fed-72f12c020dfe-e1ed03c2, #w-node-e5f2267e-4562-ef37-5d0a-2a99ad6ebd6e-e1ed03c2, #w-node-e5f2267e-4562-ef37-5d0a-2a99ad6ebd70-e1ed03c2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e5f2267e-4562-ef37-5d0a-2a99ad6ebd71-e1ed03c2, #w-node-e5f2267e-4562-ef37-5d0a-2a99ad6ebd7c-e1ed03c2, #w-node-e5f2267e-4562-ef37-5d0a-2a99ad6ebd87-e1ed03c2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_5f46cb92-ba3a-729e-50c3-6c1ae3fdd6c8-9bed03d3, #w-node-c652b089-533a-3ae8-9354-2cfdf0e79bd1-9bed03d3, #w-node-db6b18da-4762-9a8e-337f-0f73931ea9be-9bed03d3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5444c504-350d-7188-bd87-02c4dc2b4aa0-9bed03d3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fba-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fbd-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fc2-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fc5-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fca-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fcd-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fd2-9bed03d3, #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fd5-9bed03d3, #w-node-ec61da77-7195-bc6d-b23e-81b662797715-9bed03d3, #w-node-ec61da77-7195-bc6d-b23e-81b662797718-9bed03d3, #w-node-_0bf96ebb-eafe-cbeb-0514-7315d2dae1d1-9bed03d3, #w-node-_0bf96ebb-eafe-cbeb-0514-7315d2dae1d4-9bed03d3, #field.w-node-_0bf96ebb-eafe-cbeb-0514-7315d2dae1d7-9bed03d3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e6288935-19c3-386d-9af1-b80f5e911535-9ff19ce8, #w-node-f6e3aea4-05d9-b0ff-a37b-2100d0e6223e-9ff19ce8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9653acef-b71c-3c5b-3a1c-9115cfff5570-9ff19ce8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe720-717b3162, #w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe73f-717b3162, #w-node-ddf66e9a-ee60-e233-f126-e49c2e52b242-717b3162, #w-node-a421d146-62dd-4197-5f00-2ec87dbe6bc3-717b3162, #w-node-b89002d2-bfc3-f749-a276-3fc0f37d8bcd-717b3162 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-cce86b5a-9bea-5ad9-c71f-c7d812fa51a9-24ed0314, #w-node-f92b1bf7-3af5-7de5-4cc0-a09c35125cdb-24ed0314, #w-node-eb540f40-2abd-7419-c88c-86be2680c823-3ded032e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_6bef8061-4d7f-61c7-a0e1-a6c432cd5897-24ed0314 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_792b1e7c-ebc6-d068-2af9-13a28ae3d778-24ed0314 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f26-43530f23 {
    justify-self: center;
  }

  #w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe73f-e1ed03c2, #w-node-_0746683c-5564-cc92-2fed-72f12c020ddf-e1ed03c2, #w-node-_0746683c-5564-cc92-2fed-72f12c020dfe-e1ed03c2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_62fe4e5e-97a7-5778-17d5-154a57a52fd2-9bed03d3, #w-node-ec61da77-7195-bc6d-b23e-81b662797715-9bed03d3 {
    align-self: start;
  }

  #w-node-e6288935-19c3-386d-9af1-b80f5e911535-9ff19ce8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_3215e9c7-51e5-2670-a761-4a5df7fbe73f-717b3162 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_185fbd4a-1517-b1a9-3af3-e822a8af8b83-24ed0314 {
    place-self: center;
  }

  #w-node-_0120e4c0-04c6-33ab-8815-2a5e43530f26-43530f23 {
    justify-self: start;
  }

  #w-node-e6288935-19c3-386d-9af1-b80f5e911535-9ff19ce8, #w-node-f6e3aea4-05d9-b0ff-a37b-2100d0e6223e-9ff19ce8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}