:root {
  --navy: #06121D;
  --navy-2: #07131F;
  --teal: #00A8A3;
  --teal-dark: #008E89;
  --teal-hover: #00C2BC;
  --gold: #D5A64A;
  --gold-dark: #B8872E;
  --off-white: #FBFBF8;
  --white: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

a,
.site-header a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

a :hover,
.site-header a:hover,
.site-footer a:hover {
  color: inherit;
  text-decoration: none;
}

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

.page-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}


.container {
  display: block;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.btn,
.site-header .btn,
.site-footer .btn,
.w-button,
.w-button-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary,
.site-header .btn-primary,
.site-footer .btn-primary,
.w-button,
.w-button-green {
  background: var(--teal-dark);
  color: var(--white);
}

/* 
.w-button,
.w-button-green {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
} */

.w-button-green {
  background-color: rgba(33, 204, 85, 0.89);
}

input.w-button,
input.w-button-green {
  -webkit-appearance: button;
}

.btn-primary:hover,
.site-header .btn-primary:hover,
.site-footer .btn-primary:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  border: 1px solid transparent;
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 18, 29, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
}

.logo-mark {
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 46px;
}

.logo-mark .head {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--teal);
}

.logo-mark .body {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 7px;
  height: 30px;
  background: var(--teal);
  border-radius: 0 0 14px 14px;
}

.logo-mark .arm-left,
.logo-mark .arm-right {
  position: absolute;
  top: 15px;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.logo-mark .arm-left {
  left: 6px;
  transform: rotate(-45deg);
}

.logo-mark .arm-right {
  right: 6px;
  transform: rotate(45deg);
}

.ray {
  position: absolute;
  top: 22px;
  left: 23px;
  width: 18px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  transform-origin: left center;
}

.brand-name {
  line-height: 1.05;
}

.brand-name strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.brand-name span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 168, 163, 0.92);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav a.w--current {
  color: var(--white);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 8px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 18, 29, 0.98) 0%, rgba(6, 18, 29, 0.88) 42%, rgba(6, 18, 29, 0.2) 100%),
    linear-gradient(135deg, #152433 0%, #ebe5dc 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  background:
    radial-gradient(circle at 65% 38%, rgba(213, 166, 74, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  opacity: 0.9;
}

.clinic-illustration {
  position: absolute;
  right: 5%;
  top: 70px;
  width: 52%;
  height: 470px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.24) 100%);
}

.clinic-illustration .desk {
  position: absolute;
  bottom: 54px;
  right: 90px;
  width: 62%;
  height: 90px;
  background: linear-gradient(135deg, rgba(5, 10, 16, 0.95), rgba(31, 41, 55, 0.82));
  box-shadow: 0 -10px 0 rgba(255, 255, 255, 0.08) inset;
}

.clinic-illustration .wall-logo {
  position: absolute;
  right: 120px;
  top: 120px;
  color: var(--teal);
  font-weight: 700;
  font-size: 24px;
}

.clinic-illustration .wall-logo small {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 500;
}

.clinic-illustration .plant {
  position: absolute;
  right: 42px;
  bottom: 70px;
  width: 58px;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 168, 163, 0.2), rgba(0, 168, 163, 0.05));
  border-radius: 50% 50% 8px 8px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 575px;
  padding: 96px 0;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--teal);
}

.gold-line {
  width: 52px;
  height: 2px;
  margin: 28px 0;
  background: var(--gold);
}

.hero p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.benefits {
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  display: flex;
  gap: 18px;
  padding: 30px 20px;
  border-right: 1px solid var(--border);
}

.benefit:last-child {
  border-right: 0;
}

.icon-circle {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 24px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.packages {
  background: var(--off-white);
  padding: 86px 0 70px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 600;
}

.packages .gold-line {
  margin: 22px auto 0;
}

.cards-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 34px 24px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.ribbon {
  position: absolute;
  right: -42px;
  top: 22px;
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  padding: 5px 44px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card .icon-circle {
  margin: 0 auto;
  width: 76px;
  height: 76px;
  font-size: 30px;
}

.package-card h3 {
  margin: 28px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.package-card p {
  min-height: 48px;
  margin: 16px auto 0;
  max-width: 190px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.from {
  margin-top: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.price {
  margin: 4px 0 24px;
  color: var(--teal-dark);
  font-size: 31px;
  font-weight: 800;
}

.trust-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span::before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 800;
  margin-right: 8px;
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--navy);
  color: var(--white);
}

.why-copy {
  padding: 86px max(40px, calc((100vw - var(--container)) / 2)) 86px max(40px, calc((100vw - var(--container)) / 2));
}

.why h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
}

.why p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  font-size: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  margin-right: 10px;
}

.mri-visual {
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, #eef1f3, #ffffff);
  overflow: hidden;
}

.mri-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  border: 42px solid #dce3e8;
  background: var(--white);
  left: 22%;
  top: 21%;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.mri-bed {
  position: absolute;
  left: 33%;
  top: 48%;
  width: 52%;
  height: 90px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
}

.dashboard {
  position: absolute;
  right: 9%;
  top: 18%;
  width: 250px;
  height: 170px;
  background: var(--navy);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.dashboard::before {
  content: "";
  display: block;
  width: 90px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  margin-bottom: 24px;
}

.dashboard::after {
  content: "";
  display: block;
  height: 82px;
  border: 1px solid rgba(0, 168, 163, 0.35);
  border-radius: 4px;
}

.stats {
  padding: 58px 0;
  text-align: center;
}

.stats-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  font-size: 34px;
  color: var(--teal-dark);
}

.stat strong {
  display: block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 30px;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-strip {
  background: var(--navy);
  color: var(--white);
  padding: 46px 0;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 46px;
  align-items: center;
}

blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

blockquote::before {
  content: "“";
  color: var(--gold);
  display: block;
  font-size: 76px;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 50px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 0 0 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

  .hero::after,
  .clinic-illustration {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .benefits-grid,
  .cards-grid,
  .trust-row,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why,
  .testimonial-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    padding: 70px 40px;
  }

  .mri-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .page-container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name span {
    font-size: 13px;
  }

  .header-inner>.btn {
    display: none;
  }

  .hero-content {
    padding: 68px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .benefits-grid,
  .cards-grid,
  .trust-row,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* WFlow */

.section.page-title {
  display: block;
  height: auto;
  /* margin-top: 80px; */
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: transparent;
  background-image: url('../images/back_bottom.png'), url('../images/background_fhs.png');
  background-position: 0px 100%, 100% 0px;
  background-size: auto 1080px, cover;
  background-repeat: no-repeat, repeat;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-image: -webkit-linear-gradient(white 0%, #f3f3f3 100%);
  background-image: linear-gradient(white 0%, #f3f3f3 100%);
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}

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

.w-checkbox:before,
.w-radio:before,
.w-checkbox:after,
.w-radio:after {
  content: " ";
  display: table;
}

.w-checkbox:after,
.w-radio:after {
  clear: both;
}

.w-checkbox-input,
.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
}

.w-radio-input {
  margin-top: 3px;
}

.w-file-upload {
  display: block;
  margin-bottom: 10px;
}

.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}

.w-file-upload-error {
  display: block;
  margin-top: 10px;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-uploading-bg-img {
  display: inline-block;
  padding-left: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBvcGFjaXR5PSIuMiIgZD0iTTE1IDMwYTE1IDE1IDAgMSAxIDAtMzAgMTUgMTUgMCAwIDEgMCAzMHptMC0zYTEyIDEyIDAgMSAwIDAtMjQgMTIgMTIgMCAwIDAgMCAyNHoiLz48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIG9wYWNpdHk9Ii43NSIgZD0iTTAgMTVBMTUgMTUgMCAwIDEgMTUgMHYzQTEyIDEyIDAgMCAwIDMgMTVIMHoiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiBkdXI9IjAuNnMiIGZyb209IjAgMTUgMTUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB0bz0iMzYwIDE1IDE1IiB0eXBlPSJyb3RhdGUiLz48L3BhdGg+PC9zdmc+");
  background-position: 12px 50%;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}

.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}

.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-label-bg-img {
  padding-left: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxNCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTUuOTIgNS4wMmE0LjUgNC41IDAgMCAxIC4wOCA4Ljk1VjE0SDRhNCA0IDAgMSAxIDAtOCA2IDYgMCAwIDEgMTEuOTItLjk4ek0xMSA5aDNsLTQtNS00IDVoM3YyaDJWOXoiLz48L3N2Zz4=");
  background-position: 12px 50%;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

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

.w-container:before,
.w-container:after {
  content: " ";
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333333%;
}

.w-col-2 {
  width: 16.66666667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.33333333%;
}

.w-col-5 {
  width: 41.66666667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.33333333%;
}

.w-col-8 {
  width: 66.66666667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.33333333%;
}

.w-col-11 {
  width: 91.66666667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 1199px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333333%;
  }

  .w-col-medium-2 {
    width: 16.66666667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.33333333%;
  }

  .w-col-medium-5 {
    width: 41.66666667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.33333333%;
  }

  .w-col-medium-8 {
    width: 66.66666667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.33333333%;
  }

  .w-col-medium-11 {
    width: 91.66666667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }


  .form-container-column.small-column {
    width: 100%;
    max-width: 100%;
    min-height: 70vh;
  }

  .column-4 {
    position: relative;
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .section-7 {
    height: 700px;
    background-image: url('../images/background_png.png'), -webkit-linear-gradient(43deg, #fdcd98, hsla(0, 0%, 100%, 0)), url('../images/AlphaScreening_pic-5.png');
    background-image: url('../images/background_png.png'), linear-gradient(47deg, #fdcd98, hsla(0, 0%, 100%, 0)), url('../images/AlphaScreening_pic-5.png');
    background-position: 50% 50%, 0px 0px, 50% 0px;
  }

  .heading-8 {
    margin-top: 315px;
    margin-left: 21px;
    font-size: 50px;
  }

  .paragraph-2 {
    margin-left: 20px;
  }

  .section-8 {
    display: block;
    height: 730px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .section-14 {
    background-image: -webkit-linear-gradient(270deg, hsla(0, 0%, 100%, .59), hsla(0, 0%, 100%, .59)), url('../images/back_bottom.png'), url('../images/background_fhs.png');
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .59), hsla(0, 0%, 100%, .59)), url('../images/back_bottom.png'), url('../images/background_fhs.png');
    background-position: 0px 0px, 0px 100%, 100% 0px;
    background-size: auto, contain, cover;
    background-repeat: repeat, no-repeat, repeat;
  }

  .heading-10 {
    height: 90px;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333333%;
  }

  .w-col-small-2 {
    width: 16.66666667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.33333333%;
  }

  .w-col-small-5 {
    width: 41.66666667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.33333333%;
  }

  .w-col-small-8 {
    width: 66.66666667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.33333333%;
  }

  .w-col-small-11 {
    width: 91.66666667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333333%;
  }

  .w-col-tiny-2 {
    width: 16.66666667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.33333333%;
  }

  .w-col-tiny-5 {
    width: 41.66666667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.33333333%;
  }

  .w-col-tiny-8 {
    width: 66.66666667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.33333333%;
  }

  .w-col-tiny-11 {
    width: 91.66666667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}


/* Original */

.header {
  position: relative;
  z-index: 10;
  box-shadow: none;

}

.meta {
  /* position: absolute; */
  height: 35px;
  left: 0px;
  top: 0px;
  right: 0px;
  /* display: none; */
  border-bottom: 1px solid rgba(0, 0, 0, .09);
  background-color: #fff;
}

.meta-list {
  margin: 0px -10px;
  float: left;
  font-size: 13px;
  line-height: 35px;
}

.meta-list.right {
  float: right;
  text-align: right;
}

.meta-list-item {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  font-weight: 300;
}


h1:not(.home *) {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 50px;
  line-height: 56px;
  font-weight: 300;
}

h2:not(.home *):not(.home *) {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 300;
}

h3:not(.home *) {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 26px;
  line-height: 1.3em;
  font-weight: 300;
}

h4:not(.home *):not(.site-footer *) {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

h5:not(.home *) {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

h6:not(.home *) {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #385b83;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

p {
  margin-bottom: 10px;
  color: #6c7e92;
  font-weight: 300;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 18px;
  font-weight: 300;
}

blockquote {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-left: 3px solid #6c7e92;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.table {
  border-collapse: collapse !important;
}

.table td,
.table th {
  background-color: #fff !important;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #ddd !important;
  padding: 4px;
}

.btn.orange {
  background: #e66e1e;
  color: white;
}


.small-spacing {
  height: 25px;
}

.spacing {
  height: 50px;
}

.large-spacing {
  height: 80px;
}

.clearing {
  height: 230px;
}

.error {
  color: red;
  padding-left: 5px;
}

.day-title {
  font-size: 16px;
  font-weight: bold;
  padding-left: 5px;
}

.hour-input {
  width: 100px;
  height: 20px;
}

.margin-bottom {
  margin-bottom: 30px;
}

.padding-top-bottom-medium {
  padding-top: 30px;
  padding-bottom: 30px;
}

.top20 {
  margin-top: 20px;
}

.top10 {
  margin-top: 10px;
}

.top5 {
  margin-top: 5px;
}

.bottom20 {
  margin-bottom: 20px;
}

.bottom10 {
  margin-bottom: 10px;
}

.bottom5 {
  margin-bottom: 5px;
}

.right30 {
  margin-right: 30px;
}









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


.section-14 {
  background-image: url('../images/back_bottom.png'), url('../images/background_fhs.png');
  background-position: 0px 100%, 100% 0px;
  background-size: contain, cover;
  background-repeat: no-repeat, repeat;
}

.section.b-b {
  border-bottom: 1px solid rgba(213, 220, 228, .64);
}

.section.b-b.informations {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.bg-grey {
  background-color: #f9f8f7;
}

.section.bg-grey.no-padding.section-line {
  min-height: 520px;
}

.section.page-title {
  display: block;
  height: auto;
  /* margin-top: 80px; */
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: transparent;
  background-image: url('../images/back_bottom.png'), url('../images/background_fhs.png');
  background-position: 0px 100%, 100% 0px;
  background-size: auto 1080px, cover;
  background-repeat: no-repeat, repeat;
}

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

.section.bg-color {
  position: relative;
  background-color: #1b918e;
  background-image: -webkit-linear-gradient(270deg, rgba(27, 145, 142, .5), #1b918e), url('../images/AlphaScreening_image5.jpg');
  background-image: linear-gradient(180deg, rgba(27, 145, 142, .5), #1b918e), url('../images/AlphaScreening_image5.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.section.section-line {
  min-height: 600px;
}


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

.form-container {
  padding: 75px 90px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .11);
  text-align: center;
}

.form-container.forn-container-split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border: solid 1px #fff;
}

.section-form-wrapper {
  position: relative;
  margin-top: -170px;
  margin-right: 60px;
  margin-left: 60px;
}

.section-form-wrapper.full-width {
  margin-top: -160px;
  margin-right: 0px;
  margin-left: 0px;
}

.section-color-text-spacer {
  margin-top: 100px;
  margin-bottom: 100px;
}

.form-container-icon {
  margin-bottom: 40px;
  font-family: 'Linea basic 10', sans-serif;
  color: #0073e6;
  font-size: 47px;
  line-height: 44px;
}

.form-container-icon.text-white {
  color: hsla(0, 0%, 100%, .29);
}

.form-wrapper {
  margin-top: 40px;
}



.form-container-column {
  padding: 75px 90px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-container-column.small-column {
  position: relative;
  width: 40%;
  max-width: 38%;
  padding-right: 45px;
  padding-left: 45px;
  background-color: #385b83;
  background-image: -webkit-radial-gradient(circle farthest-corner at 50% 50%, rgba(56, 91, 131, .94), rgba(41, 77, 117, .93));
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(56, 91, 131, .94), rgba(41, 77, 117, .93));
}



.input {
  height: 48px;
  padding-right: 0px;
  padding-left: 0px;
  border-style: none none solid;
  border-width: 1px;
  border-color: rgba(56, 91, 131, .19);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 300;
}

.input.textarea {
  height: 128px;
  padding-top: 14px;
}

.form-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 50px;
  background-color: #0073e6;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 18px;
  font-weight: 400;
}

.form-button:hover {
  background-color: #385b83;
}

form .btn,
.table .btn,
#map_canvas .btn {
  min-height: 10px;
  padding: 10px;
}

.clear {
  clear: both;
}

.w-hidden {
  display: none;
}


.btn.orange {
  background: #e66e1e;
}

.pull-left {
  float: left;
}

.free-input {
  padding: 10px;
  min-width: 250px;
  border-radius: 5px;
  border: solid 1px #ccc;
  margin-bottom: 25px;
}

.product-table {
  width: 100%;
}

.product-table td,
.product-table th {
  text-align: left;
}

.navbar-dropdown-menu {
  display: none;
  position: absolute;
  top: 50px;
  background-color: #f9f8f7;
  border-radius: 10px;
}

ul.parsley-errors-list {
  text-align: left;
  color: red;
  margin-top: 0;
}


.text-white {
  color: #fff;
}

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

/* Additional */

.form-map-wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
}

.form-map {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.form-map-information-wrapper {
  position: relative;
  z-index: 500;
}

.form-map-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  background-image: -webkit-linear-gradient(270deg, rgba(56, 91, 131, .94), rgba(56, 91, 131, .94));
  background-image: linear-gradient(180deg, rgba(56, 91, 131, .94), rgba(56, 91, 131, .94));
  opacity: 1;
}

@media (max-width: 479px) {
  .form-container-column.small-column {
    width: 100%;
    max-width: 100%;
    min-height: 70vh;
  }
}

@media (max-width: 479px) {
  .form-container-column {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.form-container-column {
  padding: 75px 90px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-container-column.small-column {
  position: relative;
  width: 40%;
  max-width: 38%;
  padding-right: 45px;
  padding-left: 45px;
  background-color: #385b83;
  background-image: -webkit-radial-gradient(circle farthest-corner at 50% 50%, rgba(56, 91, 131, .94), rgba(41, 77, 117, .93));
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(56, 91, 131, .94), rgba(41, 77, 117, .93));
}

.contact-information-number {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.contact-information-number.underlined {
  display: inline-block;
  border-bottom: 2px solid #f8f8f8;
}

.contact-information-headline {
  margin-top: 40px;
  margin-bottom: 5px;
  color: hsla(0, 0%, 100%, .39);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
}


.row {
  text-align: center;
}

img {
  display: inline-block;
}

main {
  color: rgb(108, 126, 146);
}


/* Fonts */
@font-face {
  font-family: 'Fontawesome webfont';
  src: url('../fonts/fontawesome-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Linea basic 10';
  src: url('../fonts/linea-basic-10.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Linea arrows 10';
  src: url('../fonts/linea-arrows-10.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Fontawesome';
  src: url('../fonts/FontAwesome.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}


/* Content */

.text-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-align: center;
}

.text-block-2 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #000;
  text-align: center;
}

.text-block-2:active {
  color: snow;
}

.text-block-2:focus {
  color: #fff;
}

.text-block-3 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.image {
  position: static;
  display: block;
  margin-right: auto;
  margin-left: auto;
}


.row {
  text-align: center;
}

.link {
  color: #1b918e;
}

.column {
  color: #575c63;
}

.column-2 {
  font-weight: 500;
}

.rich-text-block {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.row-2 {
  display: block;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.rich-text-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.row-3 {
  padding: 12px;
}

.image-2 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.row-4 {
  padding: 12px;
}

.row-5 {
  padding: 12px;
}

.heading-4 {
  margin-bottom: 0px;
}

.column-5 {
  position: relative;
}

.column-6 {
  color: #f9f8f7;
}

.list-item {
  color: #f9f8f7;
}

.link-2 {
  color: #f9f8f7;
}

.link-3 {
  color: #fff;
}

.tab-link-4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.heading-5 {
  margin-top: 10px;
}

.heading-6 {
  margin-top: 10px;
}

.heading-7 {
  margin-top: 10px;
}

.tablinknew {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tablinknew:active {
  background-image: -webkit-linear-gradient(270deg, #1b918e, #1b918e);
  background-image: linear-gradient(180deg, #1b918e, #1b918e);
  color: #fff;
}

.tablinknew:focus {
  background-color: #1b918e;
  background-image: -webkit-linear-gradient(270deg, #1b918e, #1b918e);
  background-image: linear-gradient(180deg, #1b918e, #1b918e);
  color: #fff;
}

.tablinknew.w--current {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tablinknew.w--current:active {
  background-image: -webkit-linear-gradient(270deg, #1b918e, #1b918e);
  background-image: linear-gradient(180deg, #1b918e, #1b918e);
}

.tablinknew.w--current:focus {
  background-image: -webkit-linear-gradient(270deg, #1b918e, #1b918e);
  background-image: linear-gradient(180deg, #1b918e, #1b918e);
}

.textblock1 {
  text-align: center;
}

.section-5 {
  position: static;
  display: block;
  background-image: url('../images/GettyImages-691511820_1.png');
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}

.image-3 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.section-6 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/AlphaScreening_image1.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/AlphaScreening_image1.jpg');
  background-position: 0px 0px, 50% 0px;
  background-size: auto, cover;
  background-repeat: repeat, repeat;
  background-attachment: scroll, scroll;
}

.section-7 {
  position: static;
  display: block;
  height: 750px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-bottom: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  background-image: url('../images/background_png.png'), -webkit-linear-gradient(43deg, #fdcd98, hsla(0, 0%, 100%, 0)), url('../images/AlphaScreening_pic-5.png');
  background-image: url('../images/background_png.png'), linear-gradient(47deg, #fdcd98, hsla(0, 0%, 100%, 0)), url('../images/AlphaScreening_pic-5.png');
  background-position: 50% 50%, 0px 0px, 50% -133px;
  background-size: cover, auto, cover;
  background-repeat: no-repeat, repeat, no-repeat;
  background-attachment: scroll, scroll, scroll;
}

.heading-8 {
  display: block;
  margin-top: 330px;
  margin-left: -50px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .45);
}

.container-3 {
  position: static;
  display: block;
  height: 500px;
  direction: ltr;
  text-decoration: none;
}

.paragraph-2 {
  width: 550px;
  margin-top: 26px;
  margin-left: -50px;
  float: left;
  border-top: 0px none #000;
  opacity: 1;
  font-family: Lato, sans-serif;
  color: #4d0ead;
  font-size: 24px;
  line-height: 30px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  text-shadow: none;
}

.heading-9 {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
  font-weight: 500;
  text-align: center;
}

.column-7 {
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  height: 0px;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
}

.row-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 26px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #213875;
}

.image-4 {
  display: block;
  margin: 10px auto -15px;
  padding-bottom: 0px;
}

.container-4 {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
  margin-top: 21px;
  margin-bottom: 0px;
}

.section-8 {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  height: 650px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url('../images/AS_logo_bg_side_Web_trans600.png');
  background-position: 0px 50%;
  background-size: auto 600px;
  background-repeat: no-repeat;
}

.heading-10 {
  position: static;
  min-height: 50px;
  padding-top: 4px;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

.paragraph-3 {
  line-height: 20px;
  text-align: left;
}

.heading-11 {
  margin-top: 6px;
  font-weight: 500;
  text-align: center;
}

.link-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-4:hover {
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .45);
}

.div-block-2 {
  display: block;
  width: 1200px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
}

.section-9 {
  display: block;
  height: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 6px;
  padding-left: 0px;
}

.column-8 {
  left: 0px;
  top: 0px;
  display: block;
  padding-right: 23px;
  padding-left: 23px;
}

.column-9 {
  display: block;
}

.column-10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-11 {
  /* left: -40px; */
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding-top: 10px;
  padding-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 5px 0px 0px;
  border-color: #1b918e #000 #000;
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: linear-gradient(180deg, #f9f8f7, #f9f8f7);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .46);
}

.column-11:hover {
  background-image: -webkit-radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), linear-gradient(180deg, #f9f8f7, #f9f8f7);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .46);
}

.column-12 {
  right: -40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding-top: 10px;
  padding-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 5px solid #1b918e;
  background-image: -webkit-radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), linear-gradient(180deg, #f9f8f7, #f9f8f7);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .46);
}

.column-12:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .46);
}

.div-block-3 {
  display: block;
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column-13 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding-top: 10px;
  padding-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 5px solid #1b918e;
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: linear-gradient(180deg, #f9f8f7, #f9f8f7);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .46);
}

.column-13:hover {
  background-image: -webkit-radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: radial-gradient(circle farthest-side at 50% 100%, rgba(108, 126, 146, .1), hsla(0, 0%, 100%, 0)), linear-gradient(180deg, #f9f8f7, #f9f8f7);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .46);
}

.row-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-5 {
  color: #f38925;
}

.paragraph-4 {
  margin-bottom: 19px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.column-14 {
  left: -13px;
  top: 0px;
  right: -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: none solid solid;
  border-width: 0px;
  border-color: #385b83 #000 #000;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, .53);
}

.column-14:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff);
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

.column-14.cell {
  left: -20px;
  background-image: none;
}

.column-14.shadow {
  border-style: solid;
  border-width: 3px 1px 1px;
  border-color: #1b918e;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, .53);
  -webkit-filter: none;
  filter: none;
  cursor: default;
}

.column-14.shadow:hover {
  border: 1px solid #000;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, .53);
  -webkit-filter: none;
  filter: none;
}

.column-14.css:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff);
}

.paragraph-5 {
  margin-top: 20px;
  font-family: Lato, sans-serif;
  color: #6c7e92;
  font-weight: 700;
  text-align: center;
}

.paragraph-5:hover {
  color: #6c7e92;
}

.column-15 {
  position: relative;
  right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  height: auto;
  padding-top: 15px;
  padding-left: 0px;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 0px solid #385b83;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 0 3px -1px #000;
}

.column-15:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff), -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff), linear-gradient(180deg, #fff, #fff);
  -webkit-filter: none;
  filter: none;
}

.column-16 {
  right: -4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 220px;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 0px solid #385b83;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 0 3px -1px #000;
  opacity: 1;
  -webkit-perspective: 947px;
  perspective: 947px;
}

.column-16:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff), -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff), linear-gradient(180deg, #fff, #fff);
  opacity: 1;
}

.column-17 {
  right: -13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 0px solid #385b83;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, .53);
}

.column-17:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff), -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff), linear-gradient(180deg, #fff, #fff);
}

.column-17.shadow {
  right: -13px;
  border-top: 0px solid #385b83;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
}

.column-17.shadow:hover {
  background-image: -webkit-linear-gradient(270deg, #f9f8f7, #fff), -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #f9f8f7, #fff), linear-gradient(180deg, #fff, #fff);
}

.row-8 {
  margin-top: 7px;
}

.section-10 {
  border-top: 0px none #385b83;
  background-image: url('../images/AS_logo_greenwhite.png'), -webkit-linear-gradient(270deg, #fcd8b6, #fcd8b6);
  background-image: url('../images/AS_logo_greenwhite.png'), linear-gradient(180deg, #fcd8b6, #fcd8b6);
  background-position: 0px 50%, 0px 0px;
  background-size: auto 500px, auto;
  background-repeat: no-repeat, repeat;
  background-attachment: scroll, scroll;
  color: #1b918e;
}

.column-20 {
  left: -5px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 3px none #fff;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 0 3px -1px #000;
}

.column-20:hover {
  background-image: -webkit-linear-gradient(270deg, #000, #000 0%, #f9f8f7 0, #fff), -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #000, #000 0%, #f9f8f7 0, #fff), linear-gradient(180deg, #fff, #fff);
}

.column-21 {
  left: 10px;
  right: -21px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 0px solid #385b83;
  box-shadow: 0 0 3px -1px #000;
}

.container-5 {
  padding-top: 40px;
  padding-bottom: 60px;
}

.section-11 {
  height: 850px;
  margin-top: 0px;
  background-image: -webkit-linear-gradient(270deg, hsla(30, 14%, 97%, .9), hsla(30, 14%, 97%, .9)), -webkit-radial-gradient(circle farthest-side at 0% 100%, #f9f8f7, hsla(0, 0%, 100%, 0)), url('../images/bg_2.png');
  background-image: linear-gradient(180deg, hsla(30, 14%, 97%, .9), hsla(30, 14%, 97%, .9)), radial-gradient(circle farthest-side at 0% 100%, #f9f8f7, hsla(0, 0%, 100%, 0)), url('../images/bg_2.png');
  background-position: 0px 0px, 0px 0px, 50% 50%;
  background-size: auto, auto, cover;
  background-repeat: repeat, repeat, no-repeat;
}

.heading-12 {
  font-weight: 500;
  text-align: center;
}

.heading-13 {
  font-weight: 400;
  text-align: center;
}

.heading-14 {
  font-weight: 400;
  text-align: center;
}

.heading-15 {
  font-weight: 400;
  text-align: center;
}

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

.section-12 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.heading-16 {
  margin-top: 40px;
  font-weight: 500;
}

.heading-17 {
  margin-top: 45px;
  font-weight: 500;
}

.column-22 {
  margin-bottom: 20px;
}

.container-6 {
  margin-bottom: 30px;
}

.div-block-4 {
  margin-top: 25px;
}

.link-6 {
  display: block;
  color: #6c7e92;
  text-align: center;
}

.link-7 {
  color: #f38925;
}

.link-8 {
  color: #f38925;
}

.section-13 {
  min-height: 750px;
  margin-top: -61px;
  background-image: url('../images/244357-P4JFJA-953_png.png'), -webkit-linear-gradient(270deg, #f9f8f7, #f9f8f7);
  background-image: url('../images/244357-P4JFJA-953_png.png'), linear-gradient(180deg, #f9f8f7, #f9f8f7);
  background-position: 0px 0px, 0px 0px;
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
}

.link-9 {
  position: static;
  left: 0px;
  bottom: 0px;
  display: inline-block;
  clear: none;
}

.paragraph-6 {
  margin-left: -50px;
  float: left;
}

.image-5 {
  position: static;
  display: block;
  margin-left: -50px;
  float: none;
  clear: left;
}

.paragraph-7 {
  position: relative;
  margin-top: -23px;
  margin-left: -15px;
  clear: left;
  font-weight: 700;
}

.link-10 {
  display: inline-block;
  margin-top: 10px;
  border-radius: 100px;
}

.row-9 {
  margin-top: 30px;
}

.heading-18 {
  margin-top: 50px;
  font-weight: 700;
}

.container-7 {
  margin-top: 20px;
}

.heading-19 {
  font-weight: 700;
}

.container-8 {
  margin-top: 20px;
}

.heading-20 {
  font-weight: 700;
}

.image-6 {
  box-shadow: 1px 1px 7px -1px rgba(0, 0, 0, .4);
}

.row-10 {
  margin-bottom: 68px;
}

.image-7 {
  box-shadow: 1px 1px 7px -1px rgba(0, 0, 0, .4);
}

.image-8 {
  box-shadow: 1px 1px 7px -1px rgba(0, 0, 0, .4);
}

.image-9 {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.image-10 {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.heading-21 {
  font-weight: 700;
}

.heading-22 {
  color: #1b918e;
  font-size: 20px;
}

.row-11 {
  margin-top: 144px;
}

.row-12 {
  margin-top: 20px;
}

.row-13 {
  margin-top: 20px;
}

.row-14 {
  margin-top: 20px;
}

.row-15 {
  margin-top: 20px;
}

.row-16 {
  margin-top: 20px;
}

.image-11 {
  float: right;
  clear: left;
}

.section-14 {
  background-image: url('../images/back_bottom.png'), url('../images/background_fhs.png');
  background-position: 0px 100%, 100% 0px;
  background-size: contain, cover;
  background-repeat: no-repeat, repeat;
}

.column-23 {
  height: 100px;
}

.paragraph-8 {
  font-weight: 300;
}

.paragraph-9 {
  font-size: 25px;
  font-weight: 300;
}

.paragraph-10 {
  font-weight: 500;
}

.paragraph-11 {
  font-weight: 500;
}

.paragraph-12 {
  margin-top: 15px;
}

.paragraph-13 {
  margin-top: 15px;
  margin-bottom: 0px;
}

.heading-23 {
  margin-top: 0px;
}

.image-15 {
  margin-top: 20px;
}

.image-16 {
  float: left;
}

.heading-24 {
  margin-top: 0px;
  font-size: 25px;
  line-height: 25px;
  font-weight: 300;
}

.paragraph-15 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}

.div-block-5 {
  height: 2px;
  margin-top: 8px;
  margin-bottom: 8px;
  border: 1px none #000;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, .17), rgba(0, 0, 0, .17));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .17), rgba(0, 0, 0, .17));
}

.column-24 {
  display: none;
}

.column-25 {
  display: block;
}

.paragraph-16 {
  margin-top: 20px;
}

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

.bold-text-2 {
  font-weight: 400;
}

.columns {
  margin-top: 10px;
  padding-bottom: 0px;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .05));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .05));
}

.paragraph-17 {
  font-weight: 400;
}

.paragraph-18 {
  font-weight: 400;
}

.paragraph-19 {
  margin-top: 25px;
  margin-bottom: 50px;
  font-size: 25px;
}

.section-15 {
  height: 240px;
  margin-top: 0px;
  background-image: -webkit-linear-gradient(270deg, rgba(140, 108, 146, .25), rgba(140, 108, 146, .25)), -webkit-linear-gradient(270deg, rgba(8, 58, 255, .57), rgba(8, 58, 255, .57));
  background-image: linear-gradient(180deg, rgba(140, 108, 146, .25), rgba(140, 108, 146, .25)), linear-gradient(180deg, rgba(8, 58, 255, .57), rgba(8, 58, 255, .57));
}

.text-block-5 {
  margin-top: 30px;
  color: #fff;
  text-align: center;
}

.text-block-6 {
  height: 40px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.container-10 {
  height: 200px;
  margin-top: 0px;
}

.text-field {
  width: 780px;
  text-align: left;
}

.column-26 {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  padding-left: 10px;
}

.column-27 {
  padding-right: 0px;
}

.submit-button {
  width: 150px;
  height: 38px;
  float: right;
  background-image: -webkit-linear-gradient(270deg, rgba(2, 21, 97, .82), rgba(2, 21, 97, .82));
  background-image: linear-gradient(180deg, rgba(2, 21, 97, .82), rgba(2, 21, 97, .82));
  text-align: center;
}

.image-17 {
  width: 100px;
  height: 100px;
  margin-top: -123px;
  margin-right: 500px;
  margin-left: 162px;
  float: left;
  clear: none;
}

.bold-text-3 {
  font-weight: 400;
}

.bold-text-4 {
  font-weight: 400;
}

.heading-25 {
  margin-top: 20px;
}

.heading-25._1 {
  margin-top: 0px;
}

.columns-2 {
  margin-bottom: 20px;
}

.columns-3 {
  margin-top: 20px;
}

.heading-26 {
  margin-top: 0px;
}

.columns-4 {
  margin-bottom: -20px;
}

.heading-27 {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.column-28 {
  margin-top: 20px;
}

.column-29 {
  margin-top: 0px;
}

.list-item-2 {
  margin-top: -20px;
}

.list-item-3 {
  margin-top: -20px;
}
