:root {
  --medium-sea-green: #30ad64;
  --dark-khaki: #a8d069;
  --light-sea-green-2: #20ac99;
  --black: #192024;
  --pale-turquoise: #bfe0ff;
  --white-smoke-2: #f0f0f0;
  --steel-blue: #3b99d9;
  --steel-blue-2: #2e80b6;
  --light-sea-green: #25ccbf;
  --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;
  --white-smoke-3: #edeff2;
  --cadet-blue: #668cad;
  --light-sky-blue: #69b9ff;
  --dodger-blue: #2e9dff;
  --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;
}

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

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

h2 {
  color: #676770;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  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;
}

.button.red {
  background-color: var(--medium-sea-green);
}

.button.red:hover {
  background-color: var(--dark-khaki);
}

.navigation-link {
  color: #676770;
  transition: all .3s ease-in-out;
}

.navigation-link:hover {
  color: #2e9dff;
}

.navigation-bar {
  background-color: #fff;
}

.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: 80px 10px;
  position: relative;
}

.section.accent {
  background-color: #192024;
}

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

.white-box.transparent {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.hero-section {
  padding-top: 242px;
  padding-bottom: 242px;
}

.hero-section.centered {
  text-align: center;
  background-image: url('../images/photo-1416359658663-73a3834895eb.jpg'), linear-gradient(rgba(46, 157, 255, .5), rgba(46, 157, 255, .22));
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  border-bottom: 4px solid #69b9ff;
  align-items: flex-start;
  max-height: 500px;
  padding-top: 195px;
  padding-bottom: 195px;
  display: block;
}

.hero-section.centered.move-to-top {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero-section.centered.services-section {
  background-image: linear-gradient(rgba(46, 157, 255, .5), rgba(46, 157, 255, .22));
  padding-top: 45px;
  padding-bottom: 41px;
}

.hero-section.centered.elgin {
  padding-top: 60px;
  padding-bottom: 20px;
}

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

.hero-heading.services-header {
  color: var(--light-sea-green-2);
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 100px;
  padding-bottom: 40px;
  font-weight: 300;
  text-decoration: none;
}

.hero-heading.black-centered {
  color: var(--black);
  text-align: center;
}

.hero-subheading {
  color: var(--pale-turquoise);
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 300;
  line-height: 35px;
}

.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: #676770;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
}

.section-heading.centered.white {
  color: #fff;
}

.section-subheading.center {
  color: #8e8e9c;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
}

.section-subheading.center.off-white {
  color: #e8e8e8;
  padding-bottom: 0;
}

.section-title-group {
  margin-bottom: 20px;
}

.form-field {
  border: 0 solid #000;
  border-radius: 20px;
  max-width: 300px;
  height: 45px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px rgba(64, 64, 71, .3);
}

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

.form-wrapper {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer {
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  text-align: center;
  background-color: #383838;
  border-top: 1px solid #dbdbdb;
  max-height: 50px;
  padding-top: 10px;
}

.footer-text {
  color: #9e9e9e;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.grid-image {
  object-fit: fill;
  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;
}

.grid-image.elgin {
  object-fit: fill;
  border-width: 5px;
  border-radius: 20%;
  width: 50%;
  min-width: 80px;
  max-width: 100%;
  box-shadow: inset 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: rgba(0, 140, 255, .84);
}

.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;
  text-align: left;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.spc {
  text-align: left;
}

.spc.spc2 {
  object-fit: fill;
  background-image: url('../images/interestcorp_logo.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  min-height: 125px;
  display: block;
  overflow: visible;
}

.grid {
  grid-column-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}

.container {
  align-items: center;
  display: flex;
}

.container.logo-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.heading, .heading-2 {
  font-size: 14px;
}

.heading-3 {
  margin-top: 40px;
  font-size: 14px;
  line-height: 30px;
}

.image {
  filter: invert();
}

.image-2 {
  max-width: 268px;
}

.team-photo {
  max-width: 200px;
}

.hero {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.flex-container {
  flex-direction: row;
  flex: 1;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  flex: 0 .5 auto;
  width: 100%;
  height: 100%;
}

.feature-section {
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 100px;
  display: flex;
}

.feature-image-mask {
  width: 100%;
  margin-right: 40px;
}

.feature-image {
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.schedule-call {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.schedule-call.fixed-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block {
  background-color: var(--white-smoke-2);
  opacity: 1;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.smaller {
  max-width: 60%;
  margin: 20px -80px -17px;
  padding-right: 0;
}

.image-3 {
  text-align: center;
  display: inline;
}

.columns {
  text-align: left;
}

.spc2 {
  background-image: url('../images/interestcorp_logo.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  min-width: 100%;
  min-height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.logoimage {
  max-width: 50%;
}

.html-embed {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .button.red:hover {
    font-weight: 400;
  }

  .navigation-link {
    color: rgba(255, 255, 255, .52);
  }

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

  .hamburger-button.w--open, .navigation-menu {
    background-color: #3b99d9;
  }

  .hero-section.centered {
    padding-top: 144px;
    padding-bottom: 144px;
  }

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

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

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

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

  .hero-section.centered {
    padding-top: 119px;
    padding-bottom: 119px;
  }

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

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

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

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

  .spc {
    margin-bottom: 30px;
  }

  .hero {
    padding: 40px 20px;
  }

  .flex-container {
    flex-direction: column;
  }

  .hero-image-mask {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-section {
    padding: 40px 20px;
  }

  .feature-image-mask {
    margin-right: 0;
  }

  .feature-image {
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .hero-section.centered {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .hero-subheading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-subheading.center {
    line-height: 30px;
  }

  .grid-image {
    width: 35%;
  }
}

#w-node-_007858f5-eeb4-bd35-e20c-36ef53d57295-076c0984 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1c8b98a6-d86a-e857-1436-e9d2d1f620ad-076c0984, #w-node-_3c87cfe9-5367-64ca-a30d-ef3d415108bc-076c0984, #w-node-_7730227f-df77-4c65-1af4-cfe2d14a93f1-076c0984, #w-node-_63cf5209-617f-c5cd-25fc-fecca3aa3655-076c0984 {
  align-self: center;
}


