:root {
  --font-family: Archivo, sans-serif;
  --color--black: #151515;
  --font-size--small-body-text: .7rem;
  --font-size--h3: 2.8rem;
  --font-size--btn-text: .8rem;
  --color--primary: #ff471d;
  --color--white: white;
  --font-size--h1: 4rem;
  --font-size--body-text: .9rem;
  --color--gray: #e3e3e3;
  --font-size--h6: 1.35rem;
  --gray-500: #292929;
  --transparent: transparent;
  --dark-blue: #1c354e;
  --light-blue: #264158;
  --color--black-light: #1d1d1e;
  --font-size--h2: 3.75rem;
  --font-size--h4: 2.5rem;
  --font-size--h5: 1.8rem;
}

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

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

@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 {
  font-family: var(--font-family);
  color: var(--color--black);
  font-size: 1rem;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
}

h2 {
  font-size: var(--font-size--small-body-text);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  font-size: var(--font-size--h3);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

p {
  font-size: var(--font-size--small-body-text);
  margin-bottom: 10px;
  font-weight: 400;
}

.nav-link {
  color: var(--color--black);
  font-size: var(--font-size--btn-text);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
}

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

.nav-link.cta {
  background-color: var(--color--primary);
  color: var(--color--white);
}

.hero-section {
  background-image: linear-gradient(-90deg, #39393900, #000000c4);
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
}

.btn-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 40px;
  display: flex;
}

.hero-heading {
  color: var(--color--white);
  font-size: var(--font-size--h1);
  font-weight: 200;
  line-height: .9;
}

.hero-heading.dark {
  color: var(--color--black);
}

.hero-subheading {
  color: var(--color--white);
  font-size: var(--font-size--body-text);
  width: 60%;
  font-weight: 400;
  line-height: 1.4;
}

.btn {
  background-color: var(--color--primary);
  color: var(--color--white);
  font-size: var(--font-size--btn-text);
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  flex: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 16px 24px;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

.section.dark {
  background-color: #051627;
}

.section.gray {
  background-color: var(--color--gray);
  padding-bottom: 7rem;
}

.section.bg {
  background-image: url('../images/staff-discussion.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
}

.section.large {
  padding-top: 7rem;
}

.section-parent-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-left: auto;
  margin-right: auto;
}

.grid-content-w {
  height: 500px;
  padding: 40px;
}

.grid-content-w.img {
  background-image: url('../images/ship-sailing-top.avif');
  background-position: 0 0;
  background-size: cover;
  height: 450px;
}

.section-heading {
  font-weight: 200;
}

.section-heading.white {
  color: var(--color--white);
}

.section-heading.white.large {
  font-size: var(--font-size--h3);
  text-transform: none;
}

.section-subtitle {
  font-size: var(--font-size--h6);
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.4;
}

.section-subtitle.short {
  width: 75%;
}

.section-subtitle.n-m {
  margin-top: 0;
  margin-bottom: 0;
}

.section-paragraph {
  font-size: var(--font-size--body-text);
  line-height: 1.6;
}

.section-paragraph.white {
  z-index: 4;
  color: var(--color--gray);
  font-size: var(--font-size--body-text);
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.section-paragraph.serv {
  color: var(--gray-500);
  width: 80%;
}

.section-paragraph.team {
  text-align: left;
  width: 80%;
  margin-top: 10px;
}

.section-paragraph.team.title {
  color: var(--color--primary);
  font-size: var(--font-size--btn-text);
  text-transform: uppercase;
}

.about-img {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.section-header-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
  place-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.slider {
  background-color: var(--transparent);
  max-width: 1100px;
  height: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.slide-block {
  margin-left: 20px;
  margin-right: 20px;
}

.slider-mask {
  width: 33%;
  overflow: visible;
}

.slide-content-w {
  border-radius: 24px;
  padding: 40px;
  transition: background-color .2s;
}

.slide-content-w:hover {
  background-color: var(--dark-blue);
}

.service-title-w {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--color--white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.section-title {
  color: var(--color--white);
  font-size: var(--font-size--body-text);
  text-transform: uppercase;
  font-weight: 400;
}

.section-title.large {
  z-index: 4;
  font-size: var(--font-size--h6);
  font-weight: 300;
  line-height: 1.2;
  position: relative;
}

.section-title.large.dark {
  color: var(--gray-500);
  margin-top: 20px;
}

.section-title.large.dark.ind {
  text-transform: none;
  font-weight: 300;
}

.section-title.large.colored {
  color: var(--color--primary);
}

.section-title.dark, .section-title.dark-copy {
  color: var(--gray-500);
}

.section-title.orange, .icon {
  color: var(--color--primary);
}

.slider-arrow {
  color: var(--color--primary);
  font-size: var(--font-size--h6);
  width: 60px;
  height: 60px;
  inset: -5% 0% auto auto;
}

.slider-arrow.left {
  right: 6%;
}

.slider-nav {
  font-size: var(--font-size--small-body-text);
  text-align: left;
  padding-left: 40px;
}

.section-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
  top: -120px;
}

.section-grid.footer {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
  max-width: 1100px;
  margin-bottom: -120px;
  padding-bottom: 0;
}

.grid-w-black {
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 240px;
  padding: 25px;
  transition: background-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-w-black:hover {
  background-color: var(--light-blue);
}

.grid-w-black.large {
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 450px;
  padding: 40px;
  display: flex;
  position: relative;
}

.grid-w-black.dark {
  z-index: 2;
  background-color: var(--color--black-light);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 360px;
  padding: 40px;
  display: flex;
  position: relative;
}

.grid-w-black.pad {
  border-radius: 16px;
  height: 380px;
  padding: 40px;
  text-decoration: none;
}

.section-bg-img {
  background-image: url('../images/ship-back-view.avif');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}

.card-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #051627;
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  display: grid;
}

.content-w {
  padding-right: 40px;
}

.cta-img {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

.icon-img {
  z-index: 2;
  position: absolute;
  inset: 13% 10% auto auto;
}

.icon-img.serv {
  margin-top: 10px;
  position: static;
}

.footer-link-w {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  padding: 100px 20px 40px;
  display: grid;
}

.footer-link {
  color: var(--color--black-light);
  font-size: var(--font-size--body-text);
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link.small {
  font-size: var(--font-size--btn-text);
}

.footer-info-title {
  color: var(--color--primary);
  font-size: var(--font-size--small-body-text);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-info-text {
  font-size: var(--font-size--body-text);
  font-weight: 400;
}

.footer-info-text.small {
  font-size: var(--font-size--small-body-text);
}

.footer-section {
  padding-top: 4rem;
  padding-bottom: 0;
  position: relative;
}

.footer-section.dark {
  background-color: var(--color--black);
}

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

.bottom-note-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footnote-text-link {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-end;
  display: flex;
}

.footer-marquee {
  background-color: #051627;
  height: 200px;
  text-decoration: none;
  position: static;
  inset: auto 0% 0%;
  overflow: hidden;
}

.marquee-w {
  z-index: 3;
  min-width: 150%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-text-w {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  display: flex;
  position: relative;
}

.marquee-text {
  color: var(--dark-blue);
  font-size: 10rem;
  display: block;
}

.section-main-title {
  font-size: var(--font-size--small-body-text);
  text-transform: uppercase;
  margin-top: 20px;
}

.section-main-title.white {
  color: var(--color--white);
  margin-top: 20px;
  margin-bottom: 10px;
}

.section-main-title.orange {
  color: var(--color--primary);
  margin-bottom: 10px;
}

.footer-w-block {
  background-color: var(--color--black-light);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 240px;
  padding: 20px;
  transition: background-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-w-block:hover {
  background-color: var(--gray-500);
}

.footer-w-block.large {
  background-color: var(--color--primary);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 450px;
  padding: 40px;
  display: flex;
  position: relative;
}

.footer-w-block.dark {
  z-index: 2;
  background-color: #051627;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 360px;
  padding: 40px;
  display: flex;
  position: relative;
}

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

.service-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-container {
  max-width: 1100px;
}

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

.section-large-img {
  height: 540px;
  margin-top: 60px;
  overflow: hidden;
}

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

.breadcrumbs-w {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

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

.service-desc-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 20px;
  display: grid;
}

.service-w {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.service-desc-w {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 85%;
  display: flex;
}

.service-desc-w.long {
  width: 100%;
  margin-top: 60px;
}

.service-content-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  cursor: pointer;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-list-w {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.divider {
  background-color: var(--color--primary);
  width: 100%;
  height: .25px;
}

.divider-w {
  background-color: var(--color--gray);
  width: 100%;
  height: .25px;
  position: absolute;
  inset: auto 0% 1%;
}

.team-list-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.section-title-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: block;
}

.about-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1.5fr 1.5fr;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.main-content-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  padding-right: 100px;
  display: grid;
}

.about-image {
  object-fit: cover;
  width: 100%;
  height: 380px;
  margin-bottom: 40px;
}

.team-card {
  background-color: #051627;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 25px;
  transition: background-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  background-color: var(--light-blue);
}

.team-card.large {
  background-color: var(--color--primary);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 450px;
  padding: 40px;
  display: flex;
  position: relative;
}

.team-card.dark {
  z-index: 2;
  background-color: var(--color--black-light);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 360px;
  padding: 40px;
  display: flex;
  position: relative;
}

.team-card.pad {
  border: 1px solid var(--gray-500);
  border-radius: 16px;
  height: 380px;
  padding: 40px;
}

.team-card.vi {
  margin-top: 40px;
}

.rel-cover-img {
  object-fit: cover;
  width: 450px;
  height: 500px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.navbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffffad;
  border-radius: 8px;
  width: 70%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.team-members-w {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  padding-bottom: 10px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.about-vid-w {
  width: 100%;
  height: 320px;
  position: relative;
}

.about-bg-vid {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn-text {
  z-index: 3;
  text-align: center;
  position: relative;
}

.btn-overlay {
  background-color: var(--color--black);
  position: absolute;
  inset: 0%;
}

.btn-text-start {
  z-index: 3;
  text-align: center;
  position: absolute;
  inset: 0%;
}

.btn-text-w {
  z-index: 2;
  text-align: center;
  position: relative;
}

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

.brand-w {
  width: 150px;
}

.nav-menu {
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.serv-grid-img {
  z-index: 0;
  object-fit: cover;
  width: 200%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blur-overlay {
  z-index: 1;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #c4c4c470;
  width: 110%;
  height: 110%;
  position: absolute;
  top: -5%;
  left: -5%;
  right: 0%;
}

.ind-parent-grid {
  grid-column-gap: 40px;
  grid-row-gap: 100px;
  align-items: center;
  margin-top: 60px;
  display: block;
}

.ind-content-w {
  flex-flow: row;
  width: 50%;
  padding: 40px;
}

.ind-img-w {
  width: 50%;
  height: 450px;
  overflow: hidden;
}

.ind-img, .ind-img-1, .ind-img-2, .ind-img-3, .ind-img-4, .ind-img-5 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-bg-vid-hero {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.contact-form-block {
  text-align: left;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.form-label {
  color: var(--gray-500);
  font-size: var(--font-size--h6);
  font-weight: 500;
}

.form-field {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--color--gray);
  font-size: var(--font-size--body-text);
  margin-bottom: 40px;
}

.form-field::placeholder {
  color: #15151566;
}

.form-field.large {
  height: 200px;
}

.profile-block {
  z-index: 999999;
  background-color: #232222e0;
  justify-content: flex-end;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.profile-parent-w {
  background-color: var(--color--white);
  flex-flow: column;
  width: 50%;
  max-width: 640px;
  min-height: 50%;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: auto;
}

.profile-content-w {
  margin-bottom: 20px;
}

.profile-rich-text li {
  font-size: var(--font-size--btn-text);
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-rich-text p, .profile-rich-text h5 {
  font-size: var(--font-size--body-text);
}

.close-w {
  background-color: var(--color--primary);
  color: var(--color--white);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.team-content-w {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  cursor: pointer;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.title-content-w {
  width: 100%;
}

.ind-child-flex {
  margin-bottom: 64px;
  display: flex;
}

.ind-child-flex.rev {
  flex-flow: row-reverse;
}

@media screen and (min-width: 1280px) {
  body {
    --font-family: Archivo, sans-serif;
    --color--black: #151515;
    --font-size--small-body-text: .9rem;
    --font-size--h3: 3.2rem;
    --font-size--btn-text: .8rem;
    --color--primary: #ff471d;
    --color--white: white;
    --font-size--h1: 4.5rem;
    --font-size--body-text: 1.15rem;
    --color--gray: #e3e3e3;
    --font-size--h6: 1.5rem;
    --dark-blue: #1c354e;
    --light-blue: #264158;
    --color--black-light: #1d1d1e;
    --font-size--h2: 4rem;
    --font-size--h4: 2.8rem;
    --font-size--h5: 2.2rem;
  }
}

@media screen and (min-width: 1440px) {
  body {
    --font-family: Archivo, sans-serif;
    --color--black: #0b1219;
    --font-size--small-body-text: 1rem;
    --font-size--h3: 3.5rem;
    --font-size--btn-text: 1rem;
    --color--primary: #ff471d;
    --color--white: white;
    --font-size--h1: 4.8rem;
    --font-size--body-text: 1.25rem;
    --color--gray: #e3e3e3;
    --font-size--h6: 1.65rem;
    --dark-blue: #1c354e;
    --light-blue: #264158;
    --color--black-light: #13202d;
    --font-size--h2: 4.3rem;
    --font-size--h4: 2.8rem;
    --font-size--h5: 2.2rem;
  }

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

  .section.dark {
    background-color: #051627;
  }

  .section-parent-grid {
    max-width: 1280px;
  }

  .slider-mask {
    width: 45%;
  }

  .slider-arrow {
    top: -2%;
  }

  .section-grid {
    max-width: 1360px;
  }

  .section-container, .about-grid {
    max-width: 1280px;
  }

  .navbar {
    width: 80%;
    max-width: 1280px;
  }

  .brand-w {
    width: 200px;
  }

  .ind-img-w {
    height: 480px;
  }
}

@media screen and (min-width: 1920px) {
  body {
    --font-family: Archivo, sans-serif;
    --color--black: #151515;
    --font-size--small-body-text: 1.2rem;
    --font-size--h3: 4rem;
    --font-size--btn-text: 1.2rem;
    --color--primary: #ff471d;
    --color--white: white;
    --font-size--h1: 5.5rem;
    --font-size--body-text: 1.5rem;
    --color--gray: #e3e3e3;
    --font-size--h6: 1.8rem;
    --dark-blue: #1c354e;
    --light-blue: #264158;
    --color--black-light: #1d1d1e;
    --font-size--h2: 4.75rem;
    --font-size--h4: 3.2rem;
    --font-size--h5: 2.8rem;
  }

  .hero-container {
    max-width: 1440px;
  }

  .hero-subheading {
    width: 75%;
  }

  .section.dark.large {
    padding-top: 9.4rem;
  }

  .section.bg {
    height: 480px;
  }

  .section-parent-grid {
    max-width: 1560px;
  }

  .section-header-grid {
    box-sizing: border-box;
    max-width: 1440px;
  }

  .slider {
    max-width: 1560px;
    margin-top: 60px;
  }

  .slider-mask {
    width: 33%;
  }

  .section-title {
    font-size: var(--font-size--h6);
  }

  .slider-arrow {
    top: -3%;
  }

  .section-grid {
    max-width: 1640px;
  }

  .section-grid.footer {
    max-width: 1560px;
  }

  .grid-w-black {
    height: 360px;
    padding: 40px;
  }

  .grid-w-black.large {
    width: auto;
  }

  .grid-w-black.pad {
    height: 480px;
  }

  .card-w {
    max-width: 1440px;
  }

  .icon-img {
    top: 10%;
    right: 8%;
  }

  .footer-link.small {
    font-size: var(--font-size--small-body-text);
  }

  .footer-w-block.dark {
    width: 480px;
    height: auto;
  }

  .service-grid, .section-container {
    max-width: 1440px;
  }

  .section-large-img {
    max-width: 1560px;
    height: 740px;
    margin-top: 98px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid {
    align-items: center;
  }

  .about-grid {
    max-width: 1560px;
  }

  .about-image {
    height: 480px;
  }

  .rel-cover-img {
    width: 650px;
    height: 700px;
  }

  .navbar {
    max-width: 1440px;
  }

  .ind-img-w {
    height: 640px;
  }

  .ind-child-flex {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 991px) {
  body {
    --font-family: Archivo, sans-serif;
    --color--black: #151515;
    --font-size--small-body-text: .85rem;
    --font-size--h3: 2.5rem;
    --font-size--btn-text: .8rem;
    --color--primary: #ff471d;
    --color--white: white;
    --font-size--h1: 3.4rem;
    --font-size--body-text: 1rem;
    --color--gray: #e3e3e3;
    --font-size--h6: 1.2rem;
    --dark-blue: #1c354e;
    --light-blue: #264158;
    --color--black-light: #1d1d1e;
    --font-size--h2: 3rem;
    --font-size--h4: 2rem;
    --font-size--h5: 1.5rem;
  }

  .section-header-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-w {
    padding: 24px 40px;
  }

  .footer-link-w {
    grid-row-gap: 0px;
  }

  .service-grid, .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .service-desc-grid {
    grid-template-columns: .5fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rel-cover-img {
    position: absolute;
    bottom: -10.5%;
    left: 1%;
  }

  .navbar {
    width: 90%;
  }

  .ind-content-w {
    flex-flow: column;
    justify-content: center;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .team-content-w {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .ind-child-flex.rev {
    flex-flow: row-reverse;
  }
}

@media screen and (max-width: 767px) {
  body {
    --font-family: Archivo, sans-serif;
    --color--black: #151515;
    --font-size--small-body-text: .85rem;
    --font-size--h3: 2.2rem;
    --font-size--btn-text: .8rem;
    --color--primary: #ff471d;
    --color--white: white;
    --font-size--h1: 2.8rem;
    --font-size--body-text: 1rem;
    --color--gray: #e3e3e3;
    --font-size--h6: 1.2rem;
    --dark-blue: #1c354e;
    --light-blue: #264158;
    --color--black-light: #1d1d1e;
    --font-size--h2: 2.5rem;
    --font-size--h4: 1.8rem;
    --font-size--h5: 1.5rem;
  }

  .section-parent-grid {
    grid-template-columns: 1fr;
  }

  .grid-content-w {
    height: auto;
  }

  .section-subtitle.short, .section-paragraph.team {
    width: 100%;
  }

  .slide-block {
    margin-right: 0;
  }

  .slider-mask {
    width: 70%;
  }

  .slide-content-w {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .grid-w-black.large {
    width: auto;
    height: auto;
    padding: 24px;
  }

  .section-bg-img {
    background-position: 50%;
  }

  .card-w {
    grid-template-columns: 1fr;
  }

  .footer-link-w {
    grid-column-gap: 8px;
    padding-top: 39px;
  }

  .footer-info-title {
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .bottom-note-w {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    place-items: center;
    margin-top: 16px;
  }

  .footnote-text-link {
    justify-content: center;
    align-items: center;
  }

  .footer-w-block.dark {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .service-desc-grid {
    text-align: left;
    grid-template-columns: 1fr;
  }

  .service-desc-w {
    width: 100%;
  }

  .team-card.vi {
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    margin-top: 0;
  }

  .rel-cover-img {
    width: 100%;
    position: static;
  }

  .team-members-w {
    place-items: start;
  }

  .ind-parent-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
  }

  .ind-child-flex {
    flex-flow: row;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-w {
    flex-flow: column;
  }

  .hero-subheading {
    width: 100%;
  }

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

  .grid-content-w {
    padding: 20px;
  }

  .section-subtitle.short {
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-header-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 2.25fr;
    justify-items: stretch;
  }

  .slider-mask {
    width: 90%;
  }

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

  .card-w {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-w {
    padding-right: 0;
  }

  .footer-link-w {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .bottom-note-w {
    grid-auto-flow: row;
    place-items: center start;
  }

  .footnote-text-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-w-block.dark {
    width: 100%;
    padding: 20px;
  }

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

  .section-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
  }

  .service-desc-w.long {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .about-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    display: flex;
  }

  .main-content-w {
    flex-flow: column;
    padding-right: 0;
    display: flex;
  }

  .rel-cover-img {
    display: none;
  }

  .navbar {
    width: 90%;
  }

  .team-members-w {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .team-members-w.title {
    padding-bottom: 0;
    display: flex;
  }

  .ind-parent-grid {
    grid-template-columns: 1fr;
    display: flex;
  }

  .ind-content-w {
    background-color: var(--color--gray);
    width: 100%;
  }

  .ind-img-w {
    width: 100%;
  }

  .contact-form-block {
    width: 90%;
  }

  .ind-child-flex, .ind-child-flex.rev {
    flex-flow: column;
  }
}

#w-node-_25e0bc2a-b4b3-a33e-be86-05faf62c6696-ba270ac0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8860e234-2e73-d801-0a76-a85af90c0d0c-ba270ac0 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_4f7fb327-d1c2-fca9-6e18-65aec5a2183d-ba270ac0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ead55f92-b9cb-04de-ded4-5d84541414c3-ba270ac0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center end;
}

#w-node-f1330973-e4c4-4c14-5538-0e71f787eb4d-ba270ac0 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end center;
}

#w-node-_3c244620-c7eb-ea74-cb30-da55b98382bc-ba270ac0 {
  grid-area: 2 / 3 / 3 / 4;
  justify-self: center;
}

#w-node-b1d0a95d-5407-5a3c-8551-2359f0ab2c9b-ba270ac0 {
  grid-area: 2 / 5 / 3 / 6;
  justify-self: center;
}

#w-node-_4bbdb090-447f-82af-582c-3e0c7be03c53-ba270ac0 {
  grid-area: 3 / 2 / 4 / 3;
  justify-self: center;
}

#w-node-_884e953b-b7ec-c785-e76b-f8ad1c1276cc-ba270ac0 {
  grid-area: 3 / 4 / 4 / 5;
  justify-self: center;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb1-d4c68eaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch start;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb8-d4c68eaf {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb9-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebb-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebd-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ec1-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebf-d4c68eaf {
  justify-self: center;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ec3-d4c68eaf {
  grid-area: 2 / 1 / 3 / 3;
  justify-self: center;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eca-d4c68eaf {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ed3-d4c68eaf {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68edc-d4c68eaf {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00dcd-b561e112, #w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00dd5-b561e112, #w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00ddb-b561e112, #w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00de1-b561e112, #w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00de7-b561e112, #w-node-_8a5e4b0e-b17e-c9ff-5925-d47074b00ded-b561e112 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end center;
}

#w-node-f732d0bf-d4eb-a465-e628-1abacf7fd182-aba6b799 {
  justify-self: center;
}

#w-node-_06fbcc6a-d8e9-791a-e0cf-3abc21ac91b2-05631f79 {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

#w-node-_9b3db545-f5c7-c380-d219-4db28762b16e-05631f79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_08bc8a04-8293-5806-cb3a-2d77d09efd5b-05631f79 {
  grid-area: 3 / 4 / 4 / 5;
  place-self: end center;
}

#w-node-fea1770e-bccb-a076-a6b4-8e8ee1ce8bf7-05631f79 {
  grid-area: 4 / 5 / 5 / 6;
  place-self: end center;
}

#w-node-_77a9753a-29f1-09cd-33a6-6266f151516e-05631f79, #w-node-_77a9753a-29f1-09cd-33a6-6266f1515176-05631f79, #w-node-_77a9753a-29f1-09cd-33a6-6266f151517c-05631f79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end center;
}

#w-node-ff0f466f-ea0a-74bc-e317-6eac2799edfb-05631f79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55e1f4b1-d406-2703-7ff3-a4e658d82be1-05631f79, #w-node-_4843c9e3-5166-be9b-f2bb-9b9e0b986ec6-05631f79, #w-node-_0f60e718-25e1-e182-928c-37ad2cc314e9-05631f79, #w-node-_5817e25b-11ec-31d6-6da5-270975aa76e3-05631f79, #w-node-_93c0eb4d-cb54-d0ec-b1f4-f7981e8dfe2b-05631f79 {
  justify-self: start;
}

#w-node-f732d0bf-d4eb-a465-e628-1abacf7fd182-0c61d52c, #w-node-a3b58804-a895-7e0e-49ac-0057beeec39c-b0bb5c6c, #w-node-a3b58804-a895-7e0e-49ac-0057beeec39c-ed9c0a38, #w-node-a3b58804-a895-7e0e-49ac-0057beeec39c-f8b756ab, #w-node-a3b58804-a895-7e0e-49ac-0057beeec39c-76440979 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb8-d4c68eaf {
    justify-self: center;
  }

  #w-node-_06fbcc6a-d8e9-791a-e0cf-3abc21ac91b2-05631f79 {
    grid-area: span 2 / span 5 / span 2 / span 5;
  }

  #w-node-_08bc8a04-8293-5806-cb3a-2d77d09efd5b-05631f79 {
    grid-area: 3 / 2 / 4 / 4;
    place-self: end center;
  }

  #w-node-fea1770e-bccb-a076-a6b4-8e8ee1ce8bf7-05631f79 {
    grid-area: 4 / 4 / 5 / 6;
    place-self: end center;
  }

  #w-node-f732d0bf-d4eb-a465-e628-1abacf7fd182-0c61d52c {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f1330973-e4c4-4c14-5538-0e71f787eb4d-ba270ac0, #w-node-_3c244620-c7eb-ea74-cb30-da55b98382bc-ba270ac0, #w-node-b1d0a95d-5407-5a3c-8551-2359f0ab2c9b-ba270ac0, #w-node-_4bbdb090-447f-82af-582c-3e0c7be03c53-ba270ac0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_884e953b-b7ec-c785-e76b-f8ad1c1276cc-ba270ac0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb1-d4c68eaf {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: stretch start;
  }

  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ede-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ee0-d4c68eaf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f732d0bf-d4eb-a465-e628-1abacf7fd182-aba6b799 {
    justify-self: start;
  }

  #w-node-_08bc8a04-8293-5806-cb3a-2d77d09efd5b-05631f79 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: start;
  }

  #w-node-fea1770e-bccb-a076-a6b4-8e8ee1ce8bf7-05631f79 {
    grid-area: 3 / 4 / 4 / 6;
  }

  #w-node-_77a9753a-29f1-09cd-33a6-6266f151517c-05631f79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: end center;
  }

  #w-node-_5050da46-e653-7df4-6f1e-9eba7af80044-59038ee6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_25e0bc2a-b4b3-a33e-be86-05faf62c6696-ba270ac0 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-ead55f92-b9cb-04de-ded4-5d84541414c3-ba270ac0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center end;
  }

  #w-node-_884e953b-b7ec-c785-e76b-f8ad1c1276cc-ba270ac0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb8-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eb9-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebb-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebd-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ec1-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ebf-d4c68eaf {
    justify-self: start;
  }

  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ec3-d4c68eaf {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68eca-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ed3-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68edc-d4c68eaf, #w-node-_332e48b3-c1d8-7121-aa25-9f00d4c68ee0-d4c68eaf, #w-node-_9b3db545-f5c7-c380-d219-4db28762b16e-05631f79 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_77a9753a-29f1-09cd-33a6-6266f151517c-05631f79 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: end center;
  }

  #w-node-_114b9b89-a187-a173-850f-d9db2c88bd13-59038ee6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


