:root {
  --lighter: #0ec98d;
  --mgg-text: #238d6b;
  --medium-sea-green-2: #1eb182;
  --sea-green: #000000bf;
  --mgg-green: #217258;
  --midnight-blue: #082130a1;
  --white-smoke-3: #fff;
  --white-smoke-2: #f0f0f0;
  --steel-blue: #0000;
  --steel-blue-2: #2e80b6;
  --dark-khaki: #a8d069;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --goldenrod: #e2a62b;
  --khaki: #face6a;
  --sandy-brown-2: #e4b962;
  --salmon: #fd7072;
  --indian-red: #cf404d;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray: #2d3e4f;
  --dark-slate-gray-2: #404047;
  --cadet-blue: #668cad;
  --pale-turquoise: #bfe0ff;
  --light-sky-blue: #69b9ff;
  --dodger-blue: #2e9dff;
  --black: #192024;
  --dim-gray-3: #676770;
  --light-slate-gray: #8e8e9c;
}

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

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

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

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

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #676770;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  color: #676770;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

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

h5 {
  color: #676770;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}

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

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #69b9ff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: #2e9dff;
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button.tab {
  background-color: #92a0ad;
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover, .button.tab.w--current {
  background-color: #2e80b6;
}

.navigation-link {
  color: #f0f0f0;
  text-align: center;
  letter-spacing: normal;
  margin-top: 6px;
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.navigation-link:hover {
  color: var(--lighter);
}

.navigation-link:active {
  color: var(--mgg-text);
}

.navigation-link.w--current {
  color: #f0f0f0;
  letter-spacing: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.navigation-link.w--current:hover {
  color: var(--lighter);
}

.navigation-link.w--current:active {
  color: var(--mgg-text);
}

.navigation-link.w--current:focus {
  color: #f0f0f0;
}

.navigation-link.page, .navigation-link.secondary-pages {
  display: none;
}

.navigation-bar {
  color: #2172587a;
  letter-spacing: 2px;
  background-color: #19202417;
  font-size: 18px;
  display: inline-block;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-bar:active, .navigation-bar:focus {
  color: var(--mgg-text);
}

.navigation-menu {
  display: flex;
}

.brand-text {
  color: #69b9ff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.brand-link {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section {
  text-align: center;
  background-color: #fff;
  padding: 0 auto;
  position: relative;
}

.section.accent {
  max-height: auto;
  background-color: #192024;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 750px;
  padding: 0;
  position: static;
}

.section.centered {
  background-image: linear-gradient(#192024c9 60%, #fff), url('../images/giammarco-boscaro-380907-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: auto;
  height: auto;
  min-height: 750px;
  margin: 0;
  padding: 0;
  display: block;
  position: static;
}

.section.contact {
  background-image: linear-gradient(#217258cc, #217258cc), url('../images/wes-hicks-435957-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  width: auto;
  height: auto;
  min-height: 750px;
  padding-top: 250px;
  padding-bottom: 0;
}

.section.contact.hero-section {
  height: auto;
  min-height: 0;
  padding-top: 220px;
  padding-bottom: 220px;
}

.section.contact.hero-section.partner-page {
  min-height: 550px;
  padding-top: 100px;
}

.section.border {
  border: 1px solid #0000;
  min-height: 200px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  transform: translate(0);
}

.section.border.clients {
  background-color: #0000;
  background-image: linear-gradient(226deg, #000000a8 49%, #fff), url('../images/rawpixel-633841-unsplash.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-style: none;
  border-width: 1px;
  min-height: 800px;
}

.section.accent-copy {
  max-height: auto;
  background-color: #192024;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 750px;
  padding: 0;
  position: static;
}

.white-box {
  text-align: center;
  background-color: #fff;
  border: 1px solid #dcebf7;
  border-radius: 5px;
  padding: 15px;
  font-size: 12px;
  line-height: 4px;
}

.white-box.transparent {
  background-color: #0000;
  border-style: none;
}

.main {
  padding-top: 242px;
  padding-bottom: 242px;
}

.main.centered {
  text-align: center;
  background-color: #2172588a;
  background-image: linear-gradient(#217258b5, #217258b5), url('../images/max-bender-572807-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-bottom: 4px solid #69b9ff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 0;
  min-height: 740px;
  padding: 0;
  display: flex;
}

.main.centered.careers {
  background-color: #1f7056ad;
  background-image: linear-gradient(to bottom, var(--sea-green), var(--sea-green)), url('../images/zane-lee-joJvfijEc4s-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.main.centered.careers.phone {
  background-color: #080e0cad;
  background-image: linear-gradient(to bottom, var(--sea-green), var(--sea-green)), url('../images/zane-lee-joJvfijEc4s-unsplash.jpg');
  -webkit-text-fill-color: inherit;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-clip: border-box;
  height: auto;
  min-height: 1400px;
}

.hero-heading {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
}

.hero-subheading {
  color: #2e9dff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.hollow-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.hollow-button.all-caps {
  text-transform: uppercase;
}

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

.section-heading.centered {
  color: var(--lighter);
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  display: block;
}

.section-heading.centered.white {
  color: #ecf0f1;
  margin-top: auto;
  margin-bottom: 0%;
  font-size: 27px;
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: 2px;
}

.section-heading.centered.green-heading {
  color: var(--mgg-green);
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.section-heading.centered.green-main-heading {
  color: var(--mgg-text);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.section-heading.centered.clients {
  color: #ecf0f1;
  border: 3px solid #ecf0f1;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
}

.section-subheading.center {
  color: #fff;
  text-align: right;
  letter-spacing: 2px;
  text-transform: none;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
}

.section-subheading.center.off-white {
  color: #ecf0f1;
  text-align: justify;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 25px;
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  position: static;
}

.section-title-group {
  margin-top: 70px;
  margin-bottom: 40px;
}

.form-field {
  border: 0 solid #000;
  border-radius: 3px;
  height: 45px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px #4040474d;
}

.form-field.text-area {
  height: 110px;
}

.footer {
  background-image: linear-gradient(223deg, #217258c2 86%, #fff), url('../images/giammarco-boscaro-380907-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, 750px;
  padding-top: 35px;
  padding-bottom: 35px;
  overflow: visible;
}

.footer.center {
  text-align: center;
  background-color: #383838;
  border-top: 1px solid #dbdbdb;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-text {
  color: #fff;
  letter-spacing: 1px;
  text-indent: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 200;
}

.grid-image {
  background-color: #69b9ff;
  border: 10px solid #fff;
  border-radius: 50%;
  width: 35%;
  margin: 20px auto;
  padding: 20px;
  display: block;
  box-shadow: 0 0 0 1px #2e9dff;
}

.info-icon {
  float: left;
}

.footer-link {
  color: #668cad;
  border-bottom: 1px solid #d5d5e0;
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #008cffd6;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

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

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.image {
  float: left;
  margin: 220px;
  padding: 0;
  position: static;
  inset: 25%;
}

.container {
  clear: both;
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  height: auto;
  margin-bottom: 0;
  padding-top: auto;
  padding-bottom: auto;
  transition: opacity .575s;
  display: flex;
  position: static;
  bottom: auto;
  overflow: visible;
  transform: translate(0);
}

.grid {
  grid-template: ". . . . ."
  / 1fr 1fr 1fr 1fr 1fr;
}

.grid-2 {
  grid-template: ". . . . . . . ."
  / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  position: static;
  inset: 400px 0% 0%;
}

.text-span {
  color: #f0f0f0;
}

.image-2 {
  position: absolute;
  left: 100px;
  right: 100px;
}

.heading {
  color: #edeff2;
  letter-spacing: 2px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 18px;
}

.paragraph {
  color: #edeff2;
}

.grid-1 {
  grid-template: ". . . . . . ."
  / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-top: 20px;
  padding-bottom: auto;
  position: static;
  inset: 200px 0% 0%;
}

.heading-2 {
  color: #f0f0f0;
  letter-spacing: 3px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 159px;
  margin-bottom: auto;
  padding-bottom: 0;
  font-weight: 400;
  display: flex;
  position: static;
  inset: 15% 0% auto;
}

.div-block {
  width: auto;
  height: 100px;
}

.container-2 {
  position: absolute;
  inset: auto 0% 0%;
}

.container-3 {
  float: none;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
  padding-bottom: 0;
  font-size: 12px;
  display: flex;
  position: static;
  top: auto;
  bottom: auto;
  right: auto;
  overflow: visible;
}

.section-2 {
  background-color: #edeff2;
}

.image-3 {
  flex: 0 auto;
  align-self: flex-start;
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative;
}

.container-4 {
  background-image: url('../images/giammarco-boscaro-380907-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
}

.field-label {
  color: #f4f6f8;
  margin-top: 10px;
  margin-left: 1px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.field-label-2 {
  color: #eff2f5;
  margin-left: 20px;
  font-weight: 400;
}

.submit-button {
  color: #edeff2;
  background-color: #175340;
  margin-left: 20px;
}

.submit-button:hover, .submit-button:active {
  background-color: var(--medium-sea-green-2);
}

.columns {
  margin-top: -20px;
  margin-bottom: auto;
}

.heading-3 {
  color: #f0f0f0;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.heading-3.colored-character {
  color: var(--lighter);
  text-align: right;
  margin-top: 54px;
}

.paragraph-2 {
  color: #ecf0f1;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
}

.colored-character {
  color: var(--medium-sea-green-2);
}

.image-4 {
  width: 60px;
  margin-bottom: 0;
  display: block;
}

.div-block-2 {
  background-color: #19202417;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 70px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.container-5 {
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 100px;
  display: block;
  position: absolute;
  inset: 10% 0% auto;
}

.textarea {
  min-height: 200px;
  margin-left: 20px;
}

.container-6 {
  max-height: auto;
  min-height: auto;
  position: absolute;
  overflow: visible;
}

.container-7 {
  margin-top: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
}

.container-8 {
  padding-bottom: auto;
}

.container-9 {
  margin-top: 50px;
}

.line {
  float: none;
  clear: none;
  background-color: var(--mgg-text);
  color: var(--mgg-text);
  width: auto;
  height: 2px;
  margin-top: 20px;
  font-size: 30px;
  line-height: 12px;
  position: static;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

.column {
  background-image: url('../images/001-pin-3-copy.png');
  background-position: 0 0;
  background-size: 1066px;
}

.column-2 {
  color: var(--mgg-text);
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  line-height: 16px;
}

.column-3 {
  color: var(--mgg-text);
  padding-left: 0;
  padding-right: 0;
}

.div-block-3 {
  height: 30px;
}

.div-block-4 {
  height: 40px;
}

.columns-2 {
  margin-left: 60px;
  margin-right: 60px;
}

.grid-3 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
}

.text-span-2 {
  color: var(--mgg-text);
}

.text-block {
  color: var(--mgg-text);
  text-decoration: underline;
}

.text-block-2 {
  color: var(--mgg-green);
  margin-top: 6px;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  text-decoration: none;
}

.text-block-2.email {
  text-decoration: overline;
}

.columns-3 {
  margin-left: 0;
  margin-right: 0;
}

.div-block-5 {
  height: 50px;
  margin-top: 0;
  padding-top: 0;
}

.grid-4 {
  grid-template: "."
                 "."
                 "."
                 / 1fr 1fr;
}

.div-block-6 {
  height: 100px;
}

.container-10 {
  flex: 0 auto;
}

.image-5 {
  flex: none;
}

.container-11 {
  clear: none;
  flex-wrap: wrap;
  place-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: static;
}

.image-6 {
  align-self: flex-start;
}

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

.image-7 {
  flex: none;
  align-self: center;
  width: auto;
  max-width: 120%;
  padding-right: 0;
  display: block;
  position: absolute;
}

.container-12 {
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-8, .div-block-9 {
  background-color: var(--mgg-text);
}

.grid-5 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: auto;
  min-width: 1000px;
  margin-left: 0;
  margin-right: 95px;
  padding-left: 40px;
  padding-right: 59px;
}

.slide, .slide-2 {
  background-color: #fff;
}

.icon {
  background-color: #bcc6c37d;
  margin-left: 0;
  margin-right: 0;
}

.icon.right {
  margin-right: 162px;
}

.slider {
  width: auto;
}

.text-block-3 {
  color: #458974;
  text-align: center;
  text-transform: lowercase;
  align-self: center;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Montserrat, sans-serif;
}

.column-4 {
  margin-top: 57px;
}

.right-arrow {
  align-items: stretch;
  padding-left: 0;
  display: flex;
}

.section-3 {
  background-color: var(--sea-green);
  background-image: linear-gradient(341deg, #217258e3 56%, #fff), url('../images/wes-hicks-435957-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  min-height: 750px;
}

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

.section-4 {
  background-image: url('../images/rawpixel-1055781-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  min-height: 750px;
}

.section-5 {
  background-color: #1e775af5;
  background-image: url('../images/rawpixel-633841-unsplash.png');
  background-position: 50%;
  background-size: cover;
  min-height: 750px;
}

.container-14 {
  margin-top: -3px;
}

.rich-text-block {
  padding-top: 38px;
  font-family: Montserrat, sans-serif;
}

.heading-4 {
  margin-top: 83px;
}

.section-6 {
  min-height: 500px;
}

.slider-2 {
  background-image: url('../images/rawpixel-1055781-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  min-height: 700px;
}

.slide-3 {
  min-width: 0;
  height: auto;
  min-height: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.slider-3 {
  background-color: #0000;
  min-width: 0;
  min-height: 0;
  margin-top: 50px;
}

.icon-2 {
  background-color: #1920240f;
}

.icon2.back {
  background-color: #1920241a;
}

.grid-6 {
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  height: auto;
  min-height: 0;
  padding-bottom: 0;
  padding-left: 70px;
  padding-right: 70px;
}

.slide-nav {
  margin-top: auto;
  padding-top: 0;
  inset: auto 0%;
  overflow: hidden;
}

.slide-nav.tablet {
  margin-top: 10px;
}

.grid-7 {
  grid-template: "."
                 "Area"
                 / 1fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  margin-bottom: 0;
  padding-left: 100px;
  padding-right: 100px;
}

.mask {
  height: 400px;
}

.grid-8 {
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
}

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

.paragraph-3 {
  color: #fff;
  text-align: justify;
  font-size: 16px;
}

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

.paragraph-4 {
  color: #192024;
  font-weight: 400;
}

.text-block-4 {
  color: #192024;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
}

.paragraph-5 {
  color: #192024;
  font-size: 14px;
  font-weight: 400;
}

.text-block-5 {
  color: #192024;
  text-align: left;
  padding-right: 20px;
  font-size: 14px;
  line-height: 15px;
}

.div-block-11 {
  height: 40px;
}

.div-block-12 {
  height: 120px;
}

.div-block-12.phone-p {
  height: 100px;
}

.heading-6 {
  color: var(--mgg-green);
  text-align: left;
  margin-top: 32px;
  font-family: Montserrat, sans-serif;
  font-size: 27px;
  font-weight: 600;
}

.heading-6.phone-p {
  margin-top: 42px;
  margin-bottom: 12px;
  font-family: Montserrat, sans-serif;
  line-height: 38px;
}

.heading-6.phone-p.section-heading {
  font-size: 20px;
  font-weight: 300;
}

.paragraph-6 {
  color: var(--mgg-green);
  text-align: justify;
}

.paragraph-7 {
  color: #192024;
  text-align: justify;
  padding: 10px 60px 10px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.paragraph-7.phone-l {
  font-family: Montserrat, sans-serif;
}

.tab-link-tab-1 {
  background-color: var(--mgg-text);
}

.tab-link-tab-1.w--current {
  background-color: var(--mgg-text);
  color: #ecf0f1;
}

.tab-link-tab-1.w--current:hover {
  background-color: var(--mgg-green);
  color: #ecf0f1;
}

.tab-link-tab-1.w--current:active {
  background-color: var(--mgg-text);
}

.tab-link-tab-1.w--current:focus {
  background-color: var(--mgg-text);
  color: #ecf0f1;
}

.tab-link-tab-1.w--current:visited {
  background-color: var(--mgg-green);
  color: var(--mgg-green);
}

.tab-link-tab-1.phone-p.w--current {
  font-family: Montserrat, sans-serif;
}

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

.tab-link-tab-2 {
  background-color: var(--mgg-green);
  color: #ecf0f1;
  font-family: Montserrat, sans-serif;
}

.tab-link-tab-2:hover, .tab-link-tab-2:focus {
  background-color: var(--mgg-text);
}

.tab-link-tab-2:visited {
  color: var(--mgg-green);
}

.tab-link-tab-2.w--current {
  background-color: var(--mgg-green);
}

.text-block-7 {
  color: #ecf0f1;
}

.tab-link-tab-3 {
  color: #ecf0f1;
  background-color: #114c39;
  font-family: Montserrat, sans-serif;
}

.tab-link-tab-3.w--current {
  color: #ecf0f1;
  background-color: #0e4433;
}

.tab-link-tab-3.w--current:hover {
  background-color: var(--mgg-green);
}

.rich-text-block-2 {
  text-align: left;
  font-size: 18px;
}

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

.image-8 {
  padding-top: 200px;
  display: inline-block;
}

.image-9 {
  text-align: center;
  max-width: 80%;
  margin-top: -20px;
  margin-left: -27px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.div-block-13 {
  background-color: var(--mgg-text);
  height: 4px;
}

.link-block {
  color: var(--mgg-text);
  font-style: normal;
  text-decoration: none;
}

.link-block-2, .link-block-3 {
  text-decoration: none;
}

.image-10 {
  z-index: 100;
  display: inline-block;
  position: relative;
  inset: 140px 0% 140px auto;
}

.image-11 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.image-11.phone-l {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.image-11.phone-l.phone-p.centered {
  margin-top: 100px;
}

.div-block-14 {
  height: 9px;
}

.text-block-8 {
  color: #ecf0f1;
  background-color: #0b4734;
  width: 400px;
}

.container-22 {
  background-color: #0a473400;
  border: 0 solid #ecf0f1;
  margin-top: 20px;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: visible;
}

.heading-7 {
  color: #ecf0f1;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 600;
  overflow: visible;
}

.paragraph-8 {
  color: #ecf0f1;
  text-align: justify;
  border: 4px solid #ecf0f1;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: relative;
}

.paragraph-8.phone-p {
  font-family: Montserrat, sans-serif;
  position: static;
}

.text-block-9 {
  color: #ecf0f1;
  border: 3px solid #ecf0f1;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  overflow: visible;
}

.text-block-9.tablet {
  font-style: normal;
}

.text-block-10 {
  color: #192024;
  text-align: left;
  font-size: 14px;
  line-height: 15px;
}

.text-block-10.phone-p {
  font-size: 13px;
}

.container-23 {
  overflow: scroll;
}

.text-block-11 {
  color: #192024;
  text-align: left;
  height: 300px;
}

.container-24 {
  flex: none;
  margin-top: 100px;
  margin-bottom: auto;
  padding-left: 0;
  display: block;
  position: static;
}

.columns-4 {
  height: auto;
  margin-bottom: -86px;
}

.field-label-3 {
  clear: right;
  color: #ecf0f1;
  font-size: 14px;
  font-weight: 600;
}

.submit-button-2 {
  background-color: #0b4432;
}

.list-item {
  color: #ecf0f1;
}

.text-block-12 {
  float: left;
  clear: none;
  color: #ecf0f1;
  text-align: center;
  border: 3px solid #ecf0f1;
  margin-left: 20px;
  padding: 5px 8px;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

.heading-8 {
  display: flex;
}

.tab-link-tab-1-2 {
  float: left;
  background-color: #0000;
  border: 4px solid #ecf0f1;
  margin-left: 10px;
}

.tab-link-tab-1-2:hover {
  background-color: var(--sea-green);
  color: #ecf0f1;
}

.tab-link-tab-1-2.w--current {
  float: left;
  color: #ecf0f1;
  background-color: #0000;
  border: 4px solid #ecf0f1;
  margin-left: 8px;
  margin-right: 0;
}

.tab-link-tab-1-2.w--current:hover {
  background-color: var(--sea-green);
  color: #ecf0f1;
}

.tab-link-tab-1-2.phone-p {
  position: static;
}

.tab-link-tab-1-2.phone-p.w--current {
  margin-left: 10px;
}

.text-block-13 {
  color: #ecf0f1;
  font-size: 20px;
  font-weight: 300;
}

.text-block-14 {
  color: #ecf0f1;
  border: 0 solid #0000;
  font-size: 20px;
}

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

.heading-9 {
  color: #ecf0f1;
  padding-top: 5px;
  font-size: 23px;
  line-height: 30px;
}

.column-7 {
  background-color: #0000;
  display: block;
}

.text-block-15 {
  color: #ecf0f1;
  text-align: justify;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.5px;
}

.container-27 {
  border: 4px solid #ecf0f1;
  margin-top: 0;
}

.div-block-15 {
  height: 20px;
}

.heading-10 {
  display: inline-block;
}

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

.column-8 {
  display: block;
  position: static;
}

.heading-11 {
  color: #ecf0f1;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  font-size: 35px;
  font-weight: 600;
  display: block;
  position: static;
}

.columns-5 {
  display: block;
  overflow: visible;
}

.tabs-menu-2 {
  margin-left: 10px;
}

.tabs-menu-2.phone-l.phone-p {
  position: relative;
  top: 0%;
}

.div-block-16 {
  height: 25px;
}

.link {
  color: #ecf0f1;
}

.tabs-2.phone-p {
  position: static;
}

.tabs-2.phone-p.phone-l {
  height: 500px;
  margin-top: 32px;
  position: static;
  top: 25%;
  left: 10%;
  right: 10%;
}

.tab-pane-tab-2 {
  position: static;
}

.heading-12 {
  color: #ecf0f1;
  margin-bottom: 40px;
}

.heading-12.phone-p {
  margin-top: 40px;
}

.heading-12.tablet.phone-l.phone-p {
  margin-top: 29px;
  margin-bottom: 41px;
}

.tabs-content, .tab-pane-tab-1, .tab-pane-tab-3 {
  position: static;
}

.tab-pane-tab-4 {
  position: relative;
  top: 0;
}

.body {
  background-color: #fff;
}

.container-29 {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.image-14 {
  clear: none;
  height: 50px;
  position: absolute;
  inset: auto auto auto 10px;
}

.container-30, .container-31 {
  position: fixed;
  inset: 0% 0% auto;
}

.image-15 {
  height: 65px;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: fixed;
  inset: auto auto auto 10px;
}

.modal-wrapper {
  z-index: 9999;
  text-align: center;
  background-color: #8e8e9c3d;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 80%;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-wrapper:active {
  display: block;
}

.services {
  background-color: #ecf0f1;
  width: 450px;
  min-height: 100%;
  margin: auto;
  padding: 20px;
}

.div-block-17 {
  background-color: #ecf0f1;
}

.services-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ecf0f1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 450px;
  max-width: 100%;
  margin: auto;
  padding: 20px;
  display: block;
}

.container-32 {
  background-image: linear-gradient(#ecf0f1, #ecf0f1);
  height: 450px;
}

.div-block-18 {
  background-image: linear-gradient(#fff, #fff);
  width: 450px;
  max-width: 10%;
  margin-right: auto;
  padding: 20px;
}

.div-block-19 {
  min-height: 750px;
}

.heading-13 {
  color: var(--mgg-text);
  font-size: 25px;
  font-weight: 600;
}

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

.slider-4 {
  z-index: 9999;
  background-color: var(--midnight-blue);
  color: #fff;
  border: 6px solid #ecf0f1;
  justify-content: center;
  align-items: center;
  min-width: auto;
  max-width: 605vw;
  height: auto;
  min-height: 350px;
  max-height: 400px;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 0;
  padding-bottom: 10px;
  display: block;
  position: fixed;
  inset: 200px;
  overflow: visible;
}

.slider-4.lit {
  display: block;
}

.heading-14 {
  color: #ecf0f1;
  text-align: center;
  letter-spacing: 4px;
  margin-left: 60px;
  margin-right: 60px;
  font-weight: 300;
}

.practice-area-text {
  text-align: justify;
  min-width: auto;
  min-height: auto;
  margin-top: 10px;
  margin-left: 60px;
  margin-right: 60px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  overflow: visible;
}

.practice-area-header {
  color: #ecf0f1;
  text-align: center;
  letter-spacing: 4px;
  margin-top: 20px;
  margin-left: 60px;
  margin-right: 60px;
  position: relative;
}

.exit-button {
  color: #ecf0f1;
  text-align: right;
  background-color: #0000;
  margin: 19px 31px 0 620px;
  padding-left: 0;
  font-family: Droid Sans, sans-serif;
  font-size: 25px;
  font-weight: 400;
  position: fixed;
  top: 146px;
  left: 200px;
  right: 162px;
}

.exit-button:hover {
  color: #49647b;
}

.mask-2 {
  min-width: auto;
  min-height: auto;
}

.div-block-21 {
  min-width: auto;
  min-height: auto;
  margin-top: 20px;
}

.link-2 {
  float: right;
  background-color: var(--midnight-blue);
  color: #f0f0f0;
  text-align: center;
  border: 4px solid #ecf0f1;
  width: 30px;
  margin-top: 35px;
  margin-left: 0;
  margin-right: -16px;
  font-family: Varela, sans-serif;
  font-size: 20px;
  line-height: 25px;
  text-decoration: none;
}

.link-2:hover {
  color: #49647b;
}

.div-block-22 {
  margin-left: 0;
  position: relative;
}

.div-block-23 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.div-block-24, .div-block-25, .div-block-26, .div-block-27, .div-block-28, .div-block-29 {
  display: flex;
}

.div-block-29.secondary-page {
  display: none;
}

.container-33 {
  z-index: 9999;
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
}

.navbar {
  background-color: #0000;
  width: 0;
  position: fixed;
  inset: 0% 0% auto;
}

.image-16 {
  opacity: 1;
  margin-top: 78px;
  transition: opacity .2s;
  position: static;
  inset: 1% auto auto;
}

.container-34 {
  margin-top: 15px;
  position: absolute;
  inset: 0% 0% auto;
}

.container-34.phone-l {
  margin-bottom: 0;
}

.modal-wrapper-2 {
  display: block;
}

.columns-6 {
  overflow: visible;
}

.div-block-30 {
  margin-bottom: 80px;
}

.link-3 {
  float: right;
  clear: none;
  color: var(--mgg-text);
  text-align: left;
  margin-bottom: 20px;
  margin-right: 60px;
  font-size: 16px;
}

.link-4 {
  float: left;
  color: var(--mgg-text);
  margin-bottom: 20px;
  margin-left: 60px;
}

.image-17, .container-35 {
  display: block;
}

.div-block-31 {
  flex: none;
  margin-top: 60px;
}

.link-block-4, .link-block-5, .link-block-6 {
  text-decoration: none;
}

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

.grid-associates {
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
}

.div-block-32 {
  height: 50px;
}

.link-5, .link-6 {
  color: var(--mgg-text);
  text-decoration: none;
}

.link-7 {
  color: var(--mgg-green);
  text-decoration: none;
}

.hero-heading-center {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

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

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

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

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

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

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

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

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

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

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

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

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

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

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

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

.text-block-16 {
  color: #217258;
  text-align: left;
  margin-top: -10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
}

.text-block-16.phone-p2 {
  font-family: Montserrat, sans-serif;
}

.image-18 {
  text-align: center;
  object-fit: fill;
}

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

._1 {
  outline-offset: 0px;
  color: #1c1f1e;
  text-align: justify;
  outline: 3px #1c1f1e;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.section-7 {
  background-color: var(--white-smoke-3);
  background-image: linear-gradient(#fff, #fff);
}

.heading-15 {
  color: #218f6e;
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.bold-text-4 {
  letter-spacing: normal;
  text-transform: none;
  margin-left: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}

.bold-text-5 {
  color: #1a8162;
  text-align: center;
}

.text-block-17 {
  color: #000;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.bold-text-6 {
  color: #1c8162;
  font-size: 14px;
}

.paragraph-10 {
  outline-offset: 0px;
  color: #1c1f1e;
  text-align: justify;
  letter-spacing: normal;
  outline: 1px #1c1f1e;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.bold-text-7 {
  color: #000;
}

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

.body-2 {
  background-color: #fff;
}

.link-8 {
  color: #329774;
}

.link-9 {
  color: #278b68;
}

.link-block-2-copy, .link-block-jyy {
  text-decoration: none;
}

.image-19 {
  float: none;
  clear: both;
  cursor: auto;
  padding-left: 200px;
  padding-right: 200px;
  position: relative;
}

.flex-block {
  z-index: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  mix-blend-mode: screen;
  flex-flow: column-reverse;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: -112px;
  margin-bottom: auto;
  display: block;
  position: static;
}

.link-block-7 {
  position: absolute;
}

.link-block-7.w--current {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
}

.image-20 {
  max-width: 500%;
}

.icon-3 {
  position: static;
}

.navbar-2 {
  align-self: auto;
}

.nav-menu {
  color: #003766;
}

.navbar-4 {
  z-index: 10;
  aspect-ratio: auto;
  color: #fff;
  object-fit: fill;
  background-color: #0000;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
}

.nav-link.w--current {
  color: #fff;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.nav-link-2 {
  color: #fff;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.nav-link-3 {
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.brand {
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  left: auto;
}

.nav-menu-2 {
  z-index: 99;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-text-fill-color: inherit;
  object-fit: contain;
  background-color: #00000026;
  background-clip: border-box;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.container-38 {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.section-9 {
  object-fit: contain;
  background-color: #00000017;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 80px;
  margin: 656px -250px auto;
  display: flex;
  position: sticky;
}

.image-21 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  position: static;
  left: 660px;
  right: auto;
}

.code {
  color: #fff;
}

.slider-6 {
  background-color: #000;
  height: 700px;
  margin-bottom: auto;
  margin-left: 100px;
  margin-right: 100px;
}

.slide-nav-2 {
  margin-top: -49px;
  position: static;
}

.section-12 {
  margin-top: auto;
}

.slide-4 {
  position: sticky;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  display: none;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

html.w-mod-js [data-ix="modal-rest"], html.w-mod-js [data-ix="modal-rest-2"] {
  opacity: 0;
  display: none;
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .section.contact.hero-section {
    padding-top: 100px;
  }

  .main.centered.careers.phone {
    background-color: #1f7056ab;
    background-image: linear-gradient(#060f0cd6, #060f0cd6), url('../images/zane-lee-joJvfijEc4s-unsplash.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    height: auto;
    min-height: 1300px;
    margin-top: -152px;
  }

  .section-heading.centered {
    font-family: Montserrat, sans-serif;
  }

  .section-heading.centered.white {
    font-family: Open Sans, sans-serif;
  }

  .section-heading.centered.green-main-heading {
    color: var(--mgg-green);
  }

  .footer.center {
    background-image: linear-gradient(223deg, #02150fc2 86%, #fff), url('../images/giammarco-boscaro-380907-unsplash.jpg');
    background-position: 0 0, 50%;
    background-size: auto, 750px;
  }

  .field-label, .columns {
    font-family: Montserrat, sans-serif;
  }

  .text-block-2 {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

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

  .text-block-3 {
    color: #217258;
    text-transform: none;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
  }

  .slide-nav.tablet {
    font-family: Montserrat, sans-serif;
  }

  .paragraph-3.phone-l {
    font-family: Open Sans, sans-serif;
  }

  .heading-6, .paragraph-7.phone-l, .tabs-menu {
    font-family: Montserrat, sans-serif;
  }

  .container-22 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    display: flex;
  }

  .text-block-9, .text-block-9.tablet, .text-block-10.phone-p {
    font-family: Montserrat, sans-serif;
  }

  .tab-link-tab-1-2.phone-p.w--current {
    margin-left: 10px;
  }

  .tabs-2.phone-p.phone-l {
    margin-top: 7px;
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 40px;
    position: static;
  }

  .heading-12.tablet.phone-l.phone-p {
    margin-top: 2px;
    margin-bottom: 8px;
  }

  .slider-4 {
    color: #fff;
  }

  .image-16 {
    margin-top: 250px;
  }

  .container-34.phone-l {
    margin-bottom: 200px;
    padding-bottom: 0;
  }

  .column-9, .column-10 {
    font-family: Montserrat, sans-serif;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .text-block-16 {
    font-family: Montserrat, sans-serif;
  }

  .nav-link {
    text-transform: uppercase;
    margin-left: 10px;
    margin-right: 10px;
  }

  .nav-link:active, .nav-link.w--current:active {
    color: #2ec295;
  }

  .nav-link-3:active {
    color: #42b696;
    -webkit-text-stroke-color: #2ec295;
  }

  .container-38 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    height: 80px;
    display: flex;
  }

  .section-8 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 220px;
    margin-bottom: -450px;
    display: flex;
    position: sticky;
  }

  .section-9 {
    z-index: 99;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: contain;
    background-color: #00000017;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 80px;
    margin-top: 660px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: fixed;
    inset: -2px 0% 0%;
  }

  .image-21 {
    vertical-align: bottom;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: block;
    top: 660px;
    left: 990px;
  }

  .code {
    font-family: Montserrat, sans-serif;
  }

  .image-22 {
    float: left;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    height: auto;
    max-height: 1000px;
    position: static;
    inset: 0%;
    overflow: clip;
  }

  .div-block-33 {
    flex: 0 auto;
    align-self: auto;
    margin-top: 0;
  }

  .container-39 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .slider-6 {
    width: auto;
    height: auto;
    margin-top: 20px;
    margin-bottom: auto;
    padding-top: 0;
    position: static;
  }

  .section-10 {
    height: auto;
    margin-bottom: auto;
  }

  .section-11 {
    justify-content: center;
    align-items: center;
    margin-bottom: -200px;
    display: flex;
  }

  .slide-nav-2 {
    color: #000;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    display: block;
    position: static;
    inset: 0 0% 0%;
  }

  .section-12 {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .div-block-34 {
    margin-top: auto;
    padding-top: 0;
  }

  .menu-button {
    background-color: #fff;
    position: static;
  }

  .div-block-35 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template: "Area"
                   "."
                   "."
                   "."
                   / 1fr;
    grid-auto-columns: 1fr;
    justify-items: stretch;
    margin-left: 100px;
    margin-right: 100px;
    display: grid;
  }

  .left-arrow-2 {
    position: absolute;
    top: 400px;
    left: 200px;
    overflow: visible;
  }

  .right-arrow-2 {
    top: 400px;
    right: 200px;
    overflow: visible;
  }
}

@media screen and (max-width: 991px) {
  .navigation-link {
    color: #ffffff85;
  }

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

  .navigation-link.page {
    display: block;
  }

  .navigation-bar {
    color: var(--medium-sea-green-2);
  }

  .navigation-bar:hover {
    color: #ecf0f1;
  }

  .hamburger-button.w--open {
    background-color: #217258b0;
  }

  .navigation-menu {
    background-color: #217258a6;
    flex: 0 auto;
    display: block;
  }

  .section.border {
    display: block;
  }

  .main.centered {
    height: 0;
    padding-top: 30vh;
    padding-bottom: 30vh;
  }

  .main.centered.careers.phone {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    height: auto;
    min-height: auto;
  }

  .section-heading.centered {
    color: var(--lighter);
    margin-top: -25px;
  }

  .section-heading.centered.green-main-heading {
    margin-top: 0;
  }

  .grid-image {
    width: 50%;
    padding: 15px;
  }

  .container {
    bottom: auto;
  }

  .grid-2, .grid-1 {
    display: flex;
  }

  .container-3 {
    justify-content: flex-start;
  }

  .textarea {
    padding-right: 70px;
  }

  .column-4 {
    padding-right: 75px;
  }

  .slider-3 {
    min-width: 0;
    min-height: 0;
  }

  .grid-6 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: .25fr minmax(143px, .25fr) .25fr .25fr;
    grid-template-areas: ".";
    grid-auto-flow: row;
    place-content: stretch;
    width: auto;
    padding-left: 60px;
    padding-right: 60px;
    overflow: auto;
  }

  .slide-nav.tablet {
    margin-top: auto;
  }

  .heading-6.phone-p {
    line-height: 30px;
  }

  .image-9 {
    margin-left: 0;
  }

  .image-9.phone-p {
    width: 100%;
    max-width: none;
  }

  .image-11.phone-p {
    margin-right: -50px;
  }

  .image-11.phone-l.phone-p.centered {
    margin-top: 112px;
  }

  .paragraph-8.phone-p {
    margin-left: 0;
    position: sticky;
    left: 20px;
    right: 20px;
    overflow: visible;
  }

  .paragraph-8.phone-l.phone-p {
    margin-left: 60px;
    margin-right: 60px;
    position: static;
  }

  .text-block-9 {
    font-size: 12px;
    line-height: 15px;
    display: block;
  }

  .text-block-9.tablet {
    padding-left: 20px;
  }

  .columns-4 {
    margin-bottom: 0;
  }

  .columns-4.tablet {
    height: auto;
    overflow: visible;
  }

  .tabs-menu-2.phone-l.phone-p {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 320px;
    margin-left: 128px;
    display: flex;
    position: relative;
    left: -10%;
    right: 20%;
  }

  .tabs-2.phone-p {
    margin-top: -16px;
  }

  .tabs-2.phone-p.phone-l {
    margin-top: -200px;
    display: block;
    position: static;
  }

  .heading-12.tablet {
    margin-top: 83px;
  }

  .tabs-content {
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .modal-wrapper, .modal-wrapper.tablet {
    display: none;
  }

  .slider-4 {
    min-height: auto;
    max-height: 700px;
    display: block;
    inset: 100px 100px 150px;
    overflow: hidden;
  }

  .slider-4.tablet {
    min-width: 600px;
    min-height: 600px;
  }

  .practice-area-text {
    font-size: 12px;
  }

  .practice-area-header {
    font-size: 15px;
    line-height: 20px;
  }

  .exit-button {
    margin-left: 220px;
    position: fixed;
    inset: 46px 8% auto 10px;
  }

  .div-block-23, .div-block-24, .div-block-25, .div-block-26, .div-block-27, .div-block-28, .div-block-29 {
    display: block;
  }

  .image-16 {
    margin-top: -200px;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

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

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .text-block-16.phone-p2 {
    margin-top: 0;
  }

  .navbar-3 {
    opacity: 0;
    color: var(--white-smoke-2);
    -webkit-text-fill-color: inherit;
    mix-blend-mode: normal;
    background-color: #0000;
    background-image: linear-gradient(#0000, #0000);
    background-clip: border-box;
  }

  .navbar-4 {
    background-color: #0000;
  }

  .container-38 {
    flex-flow: column;
    justify-content: flex-start;
  }

  .section-9 {
    margin-top: 656px;
    display: block;
  }

  .image-21 {
    vertical-align: middle;
    margin-top: 0;
    margin-left: auto;
    position: static;
    bottom: auto;
    left: 330px;
  }

  .image-22, .div-block-33 {
    overflow: auto;
  }

  .slider-6 {
    height: auto;
    margin-bottom: 0;
  }

  .section-10 {
    overflow: hidden;
  }

  .section-11 {
    margin-top: 128px;
  }

  .section-12 {
    margin-top: auto;
    overflow: auto;
  }

  .div-block-34 {
    margin-top: 0;
  }

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

  .menu-button.w--open {
    background-color: #c8c8c800;
    border-color: #fff0;
  }

  .icon-4 {
    background-color: var(--steel-blue);
    border: 0 #0000;
  }

  .mask-3 {
    position: static;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .button.full-width {
    margin-left: auto;
    margin-right: auto;
  }

  .button.tab {
    font-size: 12px;
  }

  .section.contact {
    background-image: linear-gradient(#217258b3, #217258b3), url('../images/wes-hicks-435957-unsplash.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    width: auto;
    height: auto;
    padding-top: 149px;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .section.border.clients {
    min-height: 20px;
    display: none;
  }

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

  .main.centered {
    padding-top: 30vh;
    padding-bottom: 30vh;
  }

  .main.centered.careers.phone {
    min-height: 800px;
    position: static;
  }

  .hero-heading {
    margin-bottom: 15px;
    font-size: 50px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .section-heading.centered.green-main-heading {
    margin-top: 20px;
  }

  .form-field.text-area {
    display: block;
  }

  .grid-image {
    width: 20%;
    padding: 20px;
  }

  .spc {
    margin-bottom: 30px;
  }

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

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

  .image-3 {
    flex: 1;
  }

  .submit-button {
    margin-left: 0;
  }

  .columns {
    margin-bottom: 0;
  }

  .div-block-2 {
    max-width: 100%;
    position: relative;
  }

  .textarea {
    margin-left: 0;
  }

  .column {
    min-height: 0;
  }

  .text-block-2 {
    font-size: 12px;
    line-height: 14px;
  }

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

  .image-7 {
    flex: 0 auto;
    max-width: 95%;
    max-height: 95%;
    margin-right: 0;
    padding-left: 0;
  }

  .column-4 {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
  }

  .column-5 {
    margin-top: 1px;
    padding-left: 0;
  }

  .container-13 {
    padding-left: 30px;
  }

  .column-6 {
    padding-top: 29px;
    padding-right: 48px;
  }

  .paragraph-3 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .paragraph-3.phone-l {
    margin-bottom: 40px;
  }

  .div-block-11.phone-l {
    margin-bottom: 300px;
  }

  .div-block-12.phone-p {
    height: 10px;
  }

  .div-block-12.phone-l {
    height: 20px;
  }

  .heading-6.phone-p {
    text-align: center;
    display: inline-block;
  }

  .heading-6.phone-l {
    text-align: center;
    margin-top: 140px;
  }

  .paragraph-7.phone-l {
    padding-right: 0;
  }

  .tabs-menu, .image-9 {
    display: inline-block;
  }

  .image-11 {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 0;
    display: inline-block;
  }

  .image-11.phone-l.phone-p {
    margin-top: -20px;
    margin-bottom: 0;
    margin-right: 0;
    padding-top: 40px;
  }

  .image-11.phone-l.phone-p.centered {
    margin-top: -29px;
  }

  .paragraph-8.phone-p {
    height: auto;
    margin: 23px 53px auto 59px;
    font-family: Montserrat, sans-serif;
    overflow: visible;
  }

  .paragraph-8.phone-l {
    margin-right: 20px;
  }

  .paragraph-8.phone-l.phone-p {
    height: 500px;
    margin-top: 20px;
  }

  .text-block-9.phone-l {
    display: flex;
  }

  .text-block-10 {
    display: inline-block;
  }

  .columns-4.tablet {
    display: flex;
  }

  .tab-link-tab-1-2.phone-p {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    position: sticky;
  }

  .tab-link-tab-1-2.phone-p.w--current {
    margin-right: 10px;
  }

  .tab-link-tab-1-2.phone-l {
    font-size: 14px;
  }

  .tabs-menu-2.phone-l {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    margin-top: 20px;
    margin-right: 10px;
    font-weight: 400;
    display: grid;
  }

  .tabs-menu-2.phone-l.phone-p {
    z-index: 9999;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center space-between;
    place-items: end stretch;
    margin-top: 15px;
    margin-left: auto;
    margin-right: 75px;
    display: grid;
    position: sticky;
    left: 0%;
    right: 25%;
  }

  .tabs-2 {
    margin-top: 0;
  }

  .tabs-2.phone-l {
    margin-top: -54px;
  }

  .tabs-2.phone-p.phone-l {
    margin-top: 35px;
    display: block;
    position: relative;
    top: 33%;
  }

  .heading-12 {
    margin-bottom: 0;
  }

  .heading-12.tablet.phone-l {
    margin-top: 175px;
  }

  .heading-12.phone-l {
    margin-top: 143px;
  }

  .bold-text-2 {
    display: inline-block;
  }

  .bold-text-3 {
    text-decoration: none;
    display: block;
  }

  .tabs-content {
    width: auto;
    margin-top: 0;
    margin-left: -50px;
    margin-right: 35px;
    overflow: visible;
  }

  .tab-pane-tab-3 {
    position: sticky;
  }

  .container-29.phone-l {
    margin-top: -51px;
  }

  .container-34.phone-l {
    margin-bottom: 0;
    top: 2%;
  }

  .div-block-30.phone-l {
    margin-bottom: 160px;
  }

  .column-9 {
    padding-right: 0;
  }

  .column-10 {
    padding-left: 0;
  }

  .columns-7 {
    display: flex;
  }

  .hero-heading-center, .team-circles {
    padding: 60px 15px;
  }

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

  .text-block-16 {
    text-align: center;
    margin-top: 0;
  }

  .text-block-16.phone-p2 {
    text-align: center;
    padding-left: 0;
    display: block;
  }

  .container-38 {
    justify-content: flex-start;
  }

  .section-9 {
    float: none;
    display: none;
  }

  .image-21 {
    margin-left: 0;
    position: static;
    inset: 660px 0 0% 220px;
  }

  .slider-6 {
    margin-bottom: auto;
  }

  .section-10 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
    position: static;
  }

  .section-11 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
    display: block;
    position: static;
  }

  .section-12 {
    margin-top: auto;
    overflow: visible;
  }

  .div-block-34 {
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 25px;
  }

  .section.contact {
    width: auto;
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.border {
    min-width: auto;
    min-height: 100px;
    overflow: visible;
  }

  .section.border.clients {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .main.centered {
    clear: none;
    background-attachment: scroll, fixed;
    flex-flow: wrap;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .main.centered.careers.phone-p {
    min-height: 1000px;
  }

  .main.centered.careers.phone {
    min-height: 1300px;
    margin-right: auto;
    position: static;
  }

  .section-heading.centered {
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
  }

  .section-subheading.center {
    text-align: center;
    margin-top: 0;
    line-height: 30px;
  }

  .grid-image {
    width: 35%;
  }

  .container {
    height: 300px;
    top: 19px;
  }

  .grid-2 {
    display: inline-block;
  }

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

  .image-3 {
    flex: none;
    align-self: auto;
    max-width: 140%;
    max-height: 90%;
  }

  .submit-button {
    margin-left: 0;
  }

  .heading-3.colored-character {
    text-align: center;
  }

  .textarea {
    margin-left: 0;
  }

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

  .text-block-2 {
    font-family: Montserrat, sans-serif;
  }

  .image-7 {
    flex: none;
    width: auto;
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .column-4 {
    padding-right: 40px;
    display: block;
  }

  .column-4.phone-p {
    margin-top: 29px;
    padding-right: 40px;
  }

  .container-13 {
    min-height: 600px;
    padding-left: 30px;
    display: block;
  }

  .section-4, .section-5 {
    display: none;
  }

  .grid-8 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-auto-flow: row dense;
    min-height: 700px;
    display: block;
    overflow: scroll;
  }

  .paragraph-3 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .container-15 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .container-16, .container-17, .container-18, .container-19, .container-20 {
    margin-bottom: 20px;
  }

  .div-block-12 {
    margin-bottom: 220px;
  }

  .div-block-12.phone-p {
    height: 0;
    margin-bottom: -20px;
  }

  .heading-6.phone-p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    line-height: 25px;
    display: inline-block;
  }

  .heading-6.phone-p.rsg {
    font-size: 18px;
  }

  .paragraph-7.phone-p {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
  }

  .tab-link-tab-1.phone-p {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 117.391vw;
    margin-right: -20px;
    display: block;
  }

  .text-block-6 {
    display: block;
  }

  .tabs-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: -7px;
    margin-bottom: 0;
    display: block;
  }

  .image-9 {
    max-width: none;
  }

  .image-9.phone-p {
    width: 100%;
    margin-top: 0;
    display: inline-block;
  }

  .image-11 {
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
  }

  .image-11.phone-p {
    margin-top: 0;
    padding-top: 0;
    display: inline-block;
  }

  .image-11.phone-l.phone-p {
    margin-top: -20px;
    margin-right: 0;
  }

  .image-11.phone-l.phone-p.centered {
    margin-top: 40px;
  }

  .paragraph-8 {
    margin-left: 30px;
    margin-right: 20px;
    display: block;
  }

  .paragraph-8.phon {
    width: 90vw;
    margin-left: 30px;
  }

  .paragraph-8.phone-p {
    height: auto;
    margin: 25px 10px 25px 2px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    overflow: visible;
  }

  .paragraph-8.phone-l.phone-p {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-10.phone-p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 13px;
  }

  .phone-p {
    margin-top: 0;
  }

  .tabs {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .tablet-p {
    width: 100%;
  }

  .container-24 {
    margin-top: -120px;
  }

  .image-12 {
    margin-top: 0;
  }

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

  .container-25, .container-26 {
    margin-bottom: 20px;
  }

  .tab-link-tab-1-2 {
    margin-top: 8px;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .tab-link-tab-1-2.phone-p {
    justify-content: center;
    align-items: center;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: static;
  }

  .tab-link-tab-1-2.phone-p.w--current {
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
  }

  .heading-11 {
    margin-top: -117px;
  }

  .tabs-menu-2 {
    display: block;
  }

  .tabs-menu-2.phone-l {
    margin-top: 280px;
  }

  .tabs-menu-2.phone-l.phone-p {
    margin-top: -137px;
    margin-left: 0;
    margin-right: 30px;
    display: block;
    position: static;
    left: -13%;
    right: 0;
  }

  .tabs-2 {
    margin-top: -60px;
  }

  .tabs-2.phone-p {
    margin-top: 0;
  }

  .tabs-2.phone-p.phone-l {
    margin-top: 38px;
    margin-left: 0;
    margin-right: 40px;
    top: 0%;
  }

  .tab-pane-tab-2 {
    height: auto;
  }

  .heading-12.phone-p {
    margin-top: 114px;
    margin-bottom: -250px;
    font-size: 32px;
  }

  .heading-12.tablet.phone-l.phone-p {
    margin-top: -142px;
    margin-bottom: 0;
    position: static;
  }

  .tabs-content {
    margin-top: 0;
    margin-left: 0;
    margin-right: 20px;
    position: relative;
  }

  .tab-pane-tab-3 {
    position: static;
  }

  .container-29.phone-p {
    margin-top: -41px;
  }

  .modal-wrapper, .slider-4 {
    display: none;
  }

  .image-16 {
    margin-top: -400px;
    position: static;
  }

  .container-34.phone-l {
    margin-bottom: 0;
    top: 5%;
  }

  .grid-associates {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-auto-flow: row dense;
    min-height: 700px;
    display: block;
    overflow: scroll;
  }

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

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

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

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

  .text-block-16.phone-p2 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    display: inline-block;
  }

  .column-11, .column-12 {
    object-fit: contain;
  }

  .container-38 {
    flex-flow: row;
    justify-content: center;
  }

  .section-9 {
    flex-flow: row;
  }

  .image-21 {
    box-sizing: border-box;
    object-fit: contain;
    margin-left: 0;
    position: static;
    inset: auto 0% 0%;
  }

  .div-block-33 {
    margin-top: 200px;
    position: static;
    inset: 0% 0% auto;
  }

  .slider-6 {
    display: none;
  }

  .section-12 {
    margin-top: auto;
  }

  .div-block-34 {
    margin-top: -550px;
  }

  .icon-4 {
    background-color: var(--steel-blue);
    color: #238d6b;
  }

  .div-block-35 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 14px;
    display: grid;
  }

  .mask-3 {
    margin-top: 0;
  }

  .container-40 {
    margin-top: -22px;
  }

  .icon-class-2 {
    color: var(--white-smoke-3);
  }

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

#w-node-fb2f68ee-6dec-f048-f876-2714bf516ba5-36738f82 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_1ed0e627-1f22-d09d-1430-55005c1d14f9-36738f82 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-da6027c0-e4de-1f53-21e3-eb9d9f6003c4-36738f82 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-b3991286-ebd2-12eb-1095-a8cb0b5cbd59-36738f82 {
  grid-area: 1 / 6 / 2 / 7;
}

#w-node-_50cb882b-6e4f-f71b-d394-fae5ed926260-36738f82 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_50cb882b-6e4f-f71b-d394-fae5ed926266-36738f82 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_1f5f2fcd-e0a7-da8e-c904-79c62f8d80b1-36738f82 {
  grid-area: 1 / 6 / 2 / 7;
}

#w-node-_5dcf92de-1b6b-a225-aa3b-a603a0d54755-36738f82 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_89a705c3-76ec-2445-ecea-3c0d79c603ab-36738f82 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_04325f40-3aad-56ed-6a70-226c7d77ee97-36738f82 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_704db192-d7c7-1711-f012-b91b0f55aeff-36738f82 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b165ae52-5fa8-1f3b-c2f8-4ed36b2d8b27-36738f82 {
  grid-area: 2 / 3 / 3 / 4;
}

@media screen and (min-width: 1440px) {
  #w-node-cf0fd8fd-b42b-103f-cd37-3d74237b0471-783a72a0 {
    grid-area: Area;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_50cb882b-6e4f-f71b-d394-fae5ed926260-36738f82 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_50cb882b-6e4f-f71b-d394-fae5ed926266-36738f82 {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-_1f5f2fcd-e0a7-da8e-c904-79c62f8d80b1-36738f82 {
    grid-area: 1 / 5 / 2 / 6;
  }

  #w-node-_6f967f8f-0dab-a41a-9ee5-a009176c2186-783a72a0 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_04325f40-3aad-56ed-6a70-226c7d77ee97-36738f82, #w-node-cf0fd8fd-b42b-103f-cd37-3d74237b0471-783a72a0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


