/*
Theme Name: Go TSI
Author: One of a Kind Solutions
Description: A custom theme for TSI.
Version: 1.0
*/

:root {
  --default-brand-color: $light-bg;
  --light-brand-color: $highlight-color;
  --dark-brand-color: $dark-bg; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

body {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 0.85em;
  font-variant-ligatures: no-common-ligatures;
  position: relative;
  background-color: #001e41; }

h2 {
  font-size: 32px;
  color: #144258;
  font-weight: 500;
  line-height: 1.2em;
  margin: 1.3em 0 0.6em; }

h3 {
  font-size: 28px;
  color: #144258;
  font-weight: 300;
  line-height: 1.2em; }

p {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0.9em 0 1em; }

pre {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #144258;
  font-weight: 400;
  line-height: 1.5em; }

a {
  text-decoration: none; }

ul {
  list-style: none;
  margin: 0.9em 0 1em;
  padding: 0px; }
  ul li {
    margin: 0.5em 0; }

iframe,
img,
figure {
  border: 0px;
  margin: 0px; }

header .mobile img{height:50px;width:50px;border:8px solid #4396f6;border-radius:50%;}

.page-area {
  position: relative;
  left: 0px;
  right: 0px;
  transition: left 0.1s ease-in-out, right 0.1s ease-in-out; }
  .page-area.shrink header {
    transition: height 0.1s ease-in-out; }
    .page-area.shrink header .inner-wrapper {
      min-height: 50px;
      transition: min-height 0.1s ease-in-out; }
      .page-area.shrink header .inner-wrapper .nav-wrapper h1 {
        height: 60px;
        transition: height 0.1s ease-in-out; }
        .page-area.shrink header .inner-wrapper .nav-wrapper h1 img {
          max-height: 60px;
          transition: max-height 0.1s ease-in-out; }
      .page-area.shrink header .inner-wrapper .nav-wrapper #page-links li.nav-quicklinks.active .dropdown:before {
        height: 28px; }
  .page-area .page-heading {
    height: 143px;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #001e41;
    background-size: cover; }
    .page-area .page-heading .page-title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .page-area .page-heading .page-title h1 {
        font-size: 55px;
        color: #fff;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase; }
        .page-area .page-heading .page-title h1:before, .page-area .page-heading .page-title h1:after {
          display: none; }

.links-visible .page-area {
  position: relative;
  left: -300px;
  right: 250px; }
  .links-visible .page-area #page-links {
    display: flex; }

.profile-visible .page-area {
  position: relative;
  right: -250px;
  left: 270px; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 58px;
  min-width: 219px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  padding: 0px 20px; }
  .button.accent {
    background-color: #f1a14b;
    color: #001e41; }
    .button.accent:hover {
      opacity: 0.8; }
  .button.dark {
    background-color: #001e41;
    color: #fff; }
    .button.dark:hover {
      opacity: 0.8; }
  .button.outline {
    background-color: transparent;
    border: 1px solid #001e41;
    color: #001e41; }
    .button.outline:hover {
      background-color: #001e41;
      color: #fff; }

@media (max-width: 1023px) {
  body.industries header .inner-wrapper #page-links #industries-dropdown {
    display: flex; } }

@media (max-width: 1023px) {
  body.agent-about header .inner-wrapper #page-links #about-dropdown {
    display: flex;
    width: 250px; } }

header {
  position: sticky;
  background: #001e41;
  border-top: 11px solid #4396f6;
  height: 100px;
  top: 0;
  z-index: 90;
  opacity: 1;
  transition: left 0.2s ease-in-out, right 0.2s ease-in-out, height 0.1s ease-in-out; }
  header .inner-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px; }
    header .inner-wrapper h1 {
      margin: 0px 40px 0px 0px;
      padding: 0px;
      width: 150px;
      transition: height 0.1s ease-in-out; }
      @media (max-width: 1023px) {
        header .inner-wrapper h1 {
          width: 125px;
          top: calc(50% - 22px);
          position: absolute;
          width: 100px;
          left: calc(50% - calc(125px / 2)); } }
      header .inner-wrapper h1 img {
        height: auto;
        width: 100%;
        transition: max-height 0.1s ease-in-out; }
    header .inner-wrapper #page-links {
      width: 100%; }
      @media (max-width: 1023px) {
        header .inner-wrapper #page-links {
          display: none;
          width: 270px;
          position: absolute;
          padding-left: 20px;
          box-sizing: border-box;
          right: -270px;
          top: 10px; } }
      header .inner-wrapper #page-links ul {
        display: flex;
        align-items: center;
        justify-content: flex-end; }
        @media (max-width: 1023px) {
          header .inner-wrapper #page-links ul {
            flex-direction: column;
            align-items: baseline; } }
      header .inner-wrapper #page-links li {
        display: flex; }
        header .inner-wrapper #page-links li.active > a:first-of-type {
          border-bottom: 2px solid #4396f6; }
        header .inner-wrapper #page-links li a {
          margin: 0px 8px;
          padding: 23px 10px;
          font-size: 16px;
          color: #fff;
          font-weight: 400;
          line-height: 1;
          text-decoration: none;
          text-align: center;
          text-transform: uppercase;
          transition: color 0.3s ease;
          border-bottom: 2px solid transparent; }
          @media (max-width: 1023px) {
            header .inner-wrapper #page-links li a {
              padding: 10px 0px;
              margin: 0px;
              text-align: left; } }
          header .inner-wrapper #page-links li a:hover {
            color: #1585cc;
            transition: color 0.3s ease; }
        header .inner-wrapper #page-links li.last a {
          padding-right: 0px;
          margin-right: 0px; }
      header .inner-wrapper #page-links .dropdown {
        position: relative;
        border: none;
        background: #001e41; }
        @media (max-width: 1023px) {
          header .inner-wrapper #page-links .dropdown {
            display: flex;
            flex-direction: column;
            align-items: baseline; } }
        header .inner-wrapper #page-links .dropdown button {
          border: 0;
          clip: rect(0 0 0 0);
          height: 1px;
          margin: -1px;
          overflow: hidden;
          padding: 0;
          position: absolute;
          width: 1px;
          white-space: nowrap; }
        header .inner-wrapper #page-links .dropdown ul {
          display: none;
          width: 290px;
          flex-direction: column;
          align-items: baseline;
          position: absolute;
          padding: 10px;
          box-sizing: border-box;
          top: 40px;
          background: #001e41; }
          @media (min-width: 1025px) {
            header .inner-wrapper #page-links .dropdown ul[aria-expanded="true"] {
              display: flex; } }
          @media (max-width: 1023px) {
            header .inner-wrapper #page-links .dropdown ul {
              padding-left: 20px;
              position: relative;
              width: auto;
              top: 0;
              padding: 0px 0px 0px 10px;
              margin: 0px; } }
          header .inner-wrapper #page-links .dropdown ul li {
            padding: 0px; }
            header .inner-wrapper #page-links .dropdown ul li a {
              line-height: 1.5em;
              font-size: 12px;
              padding: 0px; }
      header .inner-wrapper #page-links .nav-quicklinks {
        position: relative; }
        @media (max-width: 1023px) {
          header .inner-wrapper #page-links .nav-quicklinks .link-text {
            display: none; } }
        header .inner-wrapper #page-links .nav-quicklinks .dropdown {
          display: none; }
          @media (max-width: 1023px) {
            header .inner-wrapper #page-links .nav-quicklinks .dropdown {
              display: flex;
              flex-direction: column;
              align-items: baseline; } }
          header .inner-wrapper #page-links .nav-quicklinks .dropdown a {
            font-size: 12px; }
            @media (max-width: 1023px) {
              header .inner-wrapper #page-links .nav-quicklinks .dropdown a {
                font-size: 16px;
                color: #fff;
                font-weight: 400;
                line-height: 1;
                margin-left: 0px; } }
        header .inner-wrapper #page-links .nav-quicklinks a {
          position: relative;
          margin-left: 4px;
          cursor: pointer; }
          header .inner-wrapper #page-links .nav-quicklinks a svg {
            margin-bottom: 2px;
            margin-left: 5px;
            transform: rotate(180deg);
            transition: transform 0.1s ease-in-out; }
        @media (min-width: 1025px) {
          header .inner-wrapper #page-links .nav-quicklinks.active .dropdown {
            display: flex;
            background: #001e41;
            padding: 15px 10px;
            flex-direction: column;
            position: absolute;
            left: 0;
            min-width: 180px;
            max-width: 199px; }
            header .inner-wrapper #page-links .nav-quicklinks.active .dropdown a {
              text-align: left;
              padding: 5px 0px;
              cursor: pointer; }
          header .inner-wrapper #page-links .nav-quicklinks.active svg {
            transform: rotate(0deg);
            transition: transform 0.1s ease-in-out; } }
    header .inner-wrapper .mobile {
      display: none;
      width: 100%;
      align-items: center; }
      @media (max-width: 1023px) {
        header .inner-wrapper .mobile {
          display: flex;
          justify-content: space-between; } }
      header .inner-wrapper .mobile .links svg {
        color: #4396f6; }
      header .inner-wrapper .mobile .header-pic {
        height: 50px;
        width: 50px;
        border: 8px solid #4396f6;
        border-radius: 50%; }

.intro {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.85), rgba(0, 30, 65, 0.85)), url("/wp-content/themes/go-tsi/img/hero_img.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative; }
  .intro .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0px;
    box-sizing: border-box;
    z-index: 31; }
    .intro .container .profile-container {
      width: auto; }
      .intro .container .profile-container .profile {
        position: relative;
        top: auto; }
        .intro .container .profile-container .profile .content div a svg {
          height: 29px;
          padding-top: 7px;
          box-sizing: border-box; }
    .intro .container .text-block {
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0px 40px; }
      @media (max-width: 767px) {
        .intro .container .text-block {
          padding: 0 20px; } }
      .intro .container .text-block h2 {
        color: #fff;
        font-size: 46px;
        line-height: 1.2em;
        margin: 0px;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          .intro .container .text-block h2 {
            font-size: 36px; } }
        @media (max-width: 414px) {
          .intro .container .text-block h2 {
            font-size: 30px; } }
      .intro .container .text-block p {
        color: #fff;
        font-size: 27px;
        line-height: 1.2em;
        padding: 0px 50px; }
        @media (max-width: 767px) {
          .intro .container .text-block p {
            font-size: 24px;
            padding: 0px; } }
      .intro .container .text-block a {
        display: none; }

.profile-container {
  width: 1200px;
  position: relative;
  z-index: 33;
  margin: 0px auto; }
  .profile-container .profile {
    box-sizing: border-box;
    width: 270px;
    position: absolute;
    top: 250px;
    left: 0px;
    padding: 20px;
    color: #fff;
    background-color: #001e41; }
    .profile-container .profile .content {
      position: relative;
      width: 100%; }
      .profile-container .profile .content figure, .profile-container .profile .content img {
        box-sizing: border-box;
        background-color: #fff;
        margin: 0px 0px 20px;
        border-top: 12px solid #4396f6; }
        .profile-container .profile .content figure img {
          width: 100%;
          display: block; }
      .profile-container .profile .content h2 {
        font-size: 20px;
        color: #fff;
        font-weight: 500;
        line-height: 1em;
        margin: 0px;
        text-transform: uppercase; }
      .profile-container .profile .content .job-title {
        font-size: 16px;
        color: #fff;
        font-weight: 300;
        line-height: 1.2em;
        margin: 7px 0px; }
      .profile-container .profile .content .address {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        line-height: 1.5em; }
      .profile-container .profile .content div a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        line-height: 1.5em;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 3px 0px; }
        .profile-container .profile .content div a svg {
          width: 26px;
          height: 29px;
          padding-top: 7px;
          box-sizing: border-box;
          margin-right: 8px; }
      .profile-container .profile .content .button {
        color: #fff;
        font-weight: 500;
        border: 2px solid #fff;
        margin-top: 10px;
        transition: all 0.3s ease; }
        .profile-container .profile .content .button:hover {
          background: #fff;
          color: #001e41;
          transition: all 0.3s ease; }
      .profile-container .profile .content .social-media-icons {
        display: flex;
        align-items: center;
        padding-bottom: 10px; }
        .profile-container .profile .content .social-media-icons li {
          background: #fff;
          height: 25px;
          width: 25px;
          padding: 5px;
          border-radius: 50%;
          box-sizing: border-box;
          margin: 0 5px; }
          .profile-container .profile .content .social-media-icons li:first-child {
            margin-left: 0; }
          .profile-container .profile .content .social-media-icons li:last-child {
            margin-right: 0; }
          .profile-container .profile .content .social-media-icons li a {
            display: flex;
            align-items: center; }
            .profile-container .profile .content .social-media-icons li a svg {
              fill: #001e41; }

@media only screen and (max-width: 1023px) {
  .profile-container {
    opacity: 0;
    position: fixed;
    top: 0px;
    left: auto;
    right: 100%;
    bottom: 0px;
    margin: 0px;
    width: 250px;
    transition: opacity 0.2s ease-in-out 0.2s; }
    .profile-container .profile {
      position: static;
      height: 100%; }
      .profile-container .profile .content {
        padding-top: 0px; }
      .profile-container .profile figure {
        box-sizing: border-box;
        position: static;
        margin-bottom: 24px; }
  .profile-visible .profile-container {
    opacity: 1;
    left: 0px;
    right: auto; } }

#request-consultation {
  text-align: center;
  padding: 45px 25px; }
  #request-consultation h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3em;
    margin: 0px;
    text-transform: uppercase; }
    #request-consultation h2 span {
      display: block;
      text-transform: none;
      font-size: 30px;
      font-weight: 300;
      margin-bottom: 10px; }
  #request-consultation div {
    padding-top: 15px;
    display: flex;
    justify-content: center; }
    #request-consultation div a {
      margin-top: 15px; }
    #request-consultation div .email-availability,
    #request-consultation div .check-schedule {
      background-color: #4396f6;
      color: #001e41;
      transition: all 0.3s ease;
      width: 275px;
      margin-left: 7px; }
      #request-consultation div .email-availability:hover,
      #request-consultation div .check-schedule:hover {
        color: #fff;
        background: #001e41;
        transition: all 0.3s ease; }
  #request-consultation.light-bg {
    background: #fff; }
    #request-consultation.light-bg h2 {
      color: #001e41; }
    #request-consultation.light-bg h3 {
      color: #001e41; }
  #request-consultation.dark-bg {
    background: #001e41; }
    #request-consultation.dark-bg h2 {
      color: #fff; }
    #request-consultation.dark-bg h3 {
      color: #fff; }
    #request-consultation.dark-bg .email-availability:hover,
    #request-consultation.dark-bg .check-schedule:hover {
      background: #fff;
      color: #001e41; }

@media only screen and (max-width: 664px) {
  #request-consultation h2 {
    font-size: 28px; }
  #request-consultation h3 {
    font-size: 24px; }
  #request-consultation .consultation-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto; }
    #request-consultation .consultation-buttons .email-availability {
      margin-right: 0px;
      align-self: center; }
    #request-consultation .consultation-buttons .check-schedule {
      margin-left: 0px;
      align-self: center; } }

.two-ways {
  padding: 60px 20px 80px;
  box-sizing: border-box;
  background-color: #ebecee; }
  .two-ways .two-column-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box; }
    @media (max-width: 1023px) {
      .two-ways .two-column-block {
        flex-direction: column;
        align-items: center; } }
    .two-ways .two-column-block .col {
      max-width: 580px; }
      @media (max-width: 1023px) {
        .two-ways .two-column-block .col {
          max-width: 80%; } }
      @media (max-width: 768px) {
        .two-ways .two-column-block .col {
          max-width: 100%; } }
      .two-ways .two-column-block .col:first-child {
        margin-right: 10px; }
        @media (max-width: 1023px) {
          .two-ways .two-column-block .col:first-child {
            margin-right: 0px; } }
      .two-ways .two-column-block .col:last-child {
        margin-left: 10px; }
        @media (max-width: 1023px) {
          .two-ways .two-column-block .col:last-child {
            margin-top: 60px;
            margin-left: 0px; } }
        .two-ways .two-column-block .col:last-child a {
          display: none; }
    .two-ways .two-column-block figure {
      width: 100%; }
      .two-ways .two-column-block figure img {
        border-top: 11px solid #f1a14b;
        width: 100%;
        height: auto; }
    .two-ways .two-column-block h3 {
      font-size: 28px;
      color: #144258;
      font-weight: 500;
      padding: 30px 0 0;
      margin: 0px;
      text-transform: uppercase; }
      @media (max-width: 414px) {
        .two-ways .two-column-block h3 {
          font-size: 22px; } }
    .two-ways .two-column-block p {
      font-size: 20px;
      font-weight: normal;
      line-height: 1.4em; }
      .two-ways .two-column-block p span {
        display: block; }
    .two-ways .two-column-block a {
      color: #144258;
      font-weight: 500;
      line-height: 1em;
      text-transform: uppercase;
      display: flex;
      align-items: center; }
      .two-ways .two-column-block a svg {
        padding-left: 10px; }

.steps {
  padding: 70px 20px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .steps h2 {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    max-width: 922px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 767px) {
      .steps h2 {
        font-size: 22px; } }
    .steps h2 span {
      display: block;
      font-size: 28px;
      font-weight: 300;
      text-transform: none;
      margin-top: 20px; }
      @media (max-width: 767px) {
        .steps h2 span {
          font-size: 22px; } }
  .steps .three-column-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 1023px) {
      .steps .three-column-block {
        flex-direction: column; } }
    .steps .three-column-block .col {
      max-width: 362px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0px 15px; }
      @media (max-width: 1023px) {
        .steps .three-column-block .col {
          max-width: 70%;
          margin: 0 auto;
          padding: 30px 0px; }
          .steps .three-column-block .col:first-child {
            padding-top: 0px; } }
      @media (max-width: 767px) {
        .steps .three-column-block .col {
          max-width: 100%;
          margin-bottom: 20px; } }
      .steps .three-column-block .col h3 {
        font-size: 24px;
        color: #144258;
        font-weight: 500;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          .steps .three-column-block .col h3 {
            font-size: 22px; } }
      .steps .three-column-block .col p {
        margin: 0px 0px 30px;
        text-align: center; }
      .steps .three-column-block .col a {
        max-width: 241px;
        display: none; }

section.contact {
  background-color: #fff;
  padding: 0px; }
  section.contact .wrapper {
    position: relative;
    width: 100%;
    min-height: 635px;
    max-height: 635px;
    margin: 0 auto;
    display: flex;
    overflow: hidden; }
    @media (max-width: 1023px) {
      section.contact .wrapper {
        min-height: auto;
        max-height: 100%; } }
    section.contact .wrapper figure {
      width: 50%; }
      @media (max-width: 1023px) {
        section.contact .wrapper figure {
          display: none; } }
      section.contact .wrapper figure img {
        width: 141%; }
    section.contact .wrapper .text-block {
      width: 50%;
      border-top: 11px solid #f1a14b;
      background-color: #ebecee;
      padding: 40px 20px 40px 60px;
      box-sizing: border-box; }
      @media (max-width: 1023px) {
        section.contact .wrapper .text-block {
          width: 100%;
          padding: 40px 20px; } }
      @media (max-width: 768px) {
        section.contact .wrapper .text-block {
          min-width: 100%;
          max-width: 100%; } }
      section.contact .wrapper .text-block .text {
        max-width: 504px; }
        @media (max-width: 1023px) {
          section.contact .wrapper .text-block .text {
            margin: 0 auto;
            text-align: center; } }
        section.contact .wrapper .text-block .text p {
          font-size: 20px;
          color: #144258;
          font-weight: 400; }
          section.contact .wrapper .text-block .text p span,
          section.contact .wrapper .text-block .text p a {
            font-size: 18px;
            color: inherit;
            font-weight: 500;
            line-height: 1.3em;
            text-transform: uppercase;
            margin-top: 20px;
            display: block; }
          section.contact .wrapper .text-block .text p a {
            max-width: auto; }
      section.contact .wrapper .text-block .contact-buttons {
        display: flex;
        padding-top: 10px; }
        @media (max-width: 1023px) {
          section.contact .wrapper .text-block .contact-buttons {
            justify-content: center; } }
        @media (max-width: 767px) {
          section.contact .wrapper .text-block .contact-buttons {
            flex-direction: column;
            align-items: center; } }
        section.contact .wrapper .text-block .contact-buttons a {
          max-width: 219px;
          width: 100%;
          min-width: auto;
          margin-right: 20px;
          margin-bottom: 15px; }
          @media (max-width: 767px) {
            section.contact .wrapper .text-block .contact-buttons a:first-child {
              margin-right: 0px; } }
          section.contact .wrapper .text-block .contact-buttons a:last-child {
            margin-right: 0px; }

#quote-block {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("/wp-content/themes/go-tsi/img/quote-block-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 282px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box; }
  #quote-block p {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    line-height: 1.7em;
    text-transform: uppercase;
    max-width: 1200px;
    text-align: center; }
    @media (max-width: 767px) {
      #quote-block p {
        font-size: 20px; } }
  #quote-block div {
    text-align: center; }
    #quote-block div img {
      margin: 25px; }
    #quote-block div p span {
      color: #f1a14b; }
    #quote-block div p.by {
      display: block;
      font-size: 18px;
      color: #fff;
      font-weight: 400;
      line-height: 1.2em; }

body.agent-bio .page-area-wrapper .page-area .page-heading {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("header-bg.jpg"); }

#biography {
  padding: 40px 0px;
  background-color: #ebecee; }
  #biography .bio-container {
    max-width: 1200px;
    display: flex;
    margin: 0 auto; }
    #biography .bio-container .profile-block .profile-container {
      width: auto; }
      #biography .bio-container .profile-block .profile-container .profile {
        top: auto;
        position: relative; }
    #biography .bio-container .bio-article {
      width: 100%;
      padding: 0px 65px;
      min-width: 0; }
      @media (max-width: 767px) {
        #biography .bio-container .bio-article {
          padding: 0px 25px; } }
      #biography .bio-container .bio-article h2 {
        font-size: 40px;
        color: #001e41;
        font-weight: 500;
        line-height: 1.3em;
        text-transform: none;
        margin: 15px 0px 30px; }
        @media (max-width: 767px) {
          #biography .bio-container .bio-article h2 {
            font-size: 22px; } }
      #biography .bio-container .bio-article pre {
        font-size: 20px;
        color: #144258;
        font-weight: 400;
        line-height: 1.5em;
        white-space: pre-wrap; }

#quote-slider {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("slider-bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 20px;
  box-sizing: border-box; }
  #quote-slider .slider-container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column; }
    #quote-slider .slider-container .slide figure {
      display: flex;
      justify-content: center; }
    #quote-slider .slider-container .slide p {
      font-size: 35px;
      color: #fff;
      font-weight: 500;
      line-height: 1.2em;
      max-width: 1200px;
      margin: 20px auto; }
      @media (max-width: 767px) {
        #quote-slider .slider-container .slide p {
          font-size: 20px;
          line-height: 1.5em; } }
      #quote-slider .slider-container .slide p span {
        display: block;
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px; }
    #quote-slider .slider-container .slick-arrow {
      display: none !important; }
    #quote-slider .slider-container .pagination {
      display: inherit;
      flex-direction: row;
      justify-content: center;
      margin-bottom: 40px; }
      #quote-slider .slider-container .pagination li {
        margin: 0px 8px;
        height: 15px;
        width: 15px;
        background-color: #ebecee;
        opacity: 0.6;
        cursor: pointer;
        transition: opacity 0.2s ease; }
        #quote-slider .slider-container .pagination li:hover {
          opacity: 0.8;
          transition: all 0.2s ease; }
        #quote-slider .slider-container .pagination li.slick-active {
          background-color: #f1a14b;
          opacity: 1; }
        #quote-slider .slider-container .pagination li button {
          display: none; }
  #quote-slider .button {
    display: none;
    position: relative;
    z-index: 3;
    max-width: 230px;
    margin: 0 auto; }

body.agent-about .page-area-wrapper .page-area .page-heading {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("header-bg.jpg.1"); }

#about {
  background-color: #fff;
  padding: 40px 0px 80px;
  position: relative; }
  @media (max-width: 1023px) {
    #about {
      padding-top: 0px; } }
  @media (max-width: 767px) {
    #about {
      padding-bottom: 0px; } }
  #about .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 1023px) {
      #about .container {
        display: block; } }
    #about .container .profile-block {
      margin-right: 20px; }
      #about .container .profile-block .profile-container {
        width: auto; }
        #about .container .profile-block .profile-container .profile {
          position: relative;
          top: auto; }
  #about .about-container {
    padding: 720px 0px 0px 0px;
    max-width: 856px;
    width: 100%;
    box-sizing: border-box; }
    @media (max-width: 1023px) {
      #about .about-container {
        padding: 0px;
        margin: 0 auto;
        max-width: 100%; } }
    #about .about-container h3 {
      font-size: 28px;
      color: #001e41;
      font-weight: 500;
      line-height: 1.3em;
      text-transform: uppercase;
      margin-top: 0px; }
    #about .about-container h4 {
      font-size: 20px;
      color: #001e41;
      font-weight: 500;
      line-height: 1.5em;
      margin: 20px 0px 10px; }
    #about .about-container .about-intro {
      background-color: #ebecee;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      padding: 50px 0px 40px 0px;
      box-sizing: border-box; }
      @media (max-width: 1023px) {
        #about .about-container .about-intro {
          position: relative;
          padding: 40px 20px; } }
      #about .about-container .about-intro div {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 307px;
        box-sizing: border-box; }
        @media (max-width: 1023px) {
          #about .about-container .about-intro div {
            padding-left: 0px; } }
        #about .about-container .about-intro div p {
          font-size: 20px;
          color: #144258;
          font-weight: 400;
          position: relative;
          box-sizing: border-box;
          max-width: 815px; }
          @media (max-width: 1023px) {
            #about .about-container .about-intro div p {
              max-width: 100%; } }
          #about .about-container .about-intro div p.lede {
            font-size: 28px;
            color: #144258;
            font-weight: 500;
            line-height: 1.3em;
            text-transform: uppercase;
            margin-top: 0px; }
            @media (max-width: 767px) {
              #about .about-container .about-intro div p.lede {
                font-size: 20px; } }
    #about .about-container .by-the-numbers {
      width: 100%;
      position: relative;
      background: none;
      padding: 0px;
      margin-top: 0px; }
      @media (max-width: 1023px) {
        #about .about-container .by-the-numbers {
          margin-top: 60px; }
          #about .about-container .by-the-numbers h3 {
            text-align: center; } }
      #about .about-container .by-the-numbers .grid {
        display: flex;
        flex-wrap: wrap; }
        #about .about-container .by-the-numbers .grid div {
          width: 50%;
          height: 423px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          @media (max-width: 767px) {
            #about .about-container .by-the-numbers .grid div {
              width: 100%; } }
          #about .about-container .by-the-numbers .grid div figure {
            margin: 0px 0px 40px;
            min-height: 153px;
            display: flex;
            align-items: center; }
          #about .about-container .by-the-numbers .grid div p {
            font-size: 22px;
            color: #001e41;
            font-weight: 400;
            line-height: 1.5em;
            margin: 0px;
            text-align: center; }
            #about .about-container .by-the-numbers .grid div p b {
              font-size: 65px;
              color: #001e41;
              font-weight: 500;
              line-height: 1;
              display: block; }
              @media (max-width: 767px) {
                #about .about-container .by-the-numbers .grid div p b {
                  font-size: 60px; } }
          #about .about-container .by-the-numbers .grid div.locations {
            background: #f1a14b; }
          #about .about-container .by-the-numbers .grid div.employees, #about .about-container .by-the-numbers .grid div.founded, #about .about-container .by-the-numbers .grid div.portfolio {
            background: #f5f3f3; }
          @media (max-width: 767px) {
            #about .about-container .by-the-numbers .grid div.founded {
              background: #fff; } }
          #about .about-container .by-the-numbers .grid div.licensed {
            background: #c0c2c6; }
          #about .about-container .by-the-numbers .grid div.accounts {
            background: #4396f6; }
    #about .about-container article {
      background: #f5f3f3;
      padding: 60px;
      box-sizing: border-box;
      margin-top: 80px;
      position: relative; }
      @media (max-width: 1023px) {
        #about .about-container article {
          padding: 40px 30px; } }
      @media (max-width: 767px) {
        #about .about-container article {
          margin-top: 0px; } }
      #about .about-container article .anchor {
        position: absolute;
        top: -140px; }
      #about .about-container article section {
        display: flex;
        justify-content: space-between;
        padding: 30px 0px;
        box-sizing: border-box; }
        @media (max-width: 767px) {
          #about .about-container article section {
            flex-direction: column; } }
        #about .about-container article section figure {
          width: 191px;
          margin-right: 20px;
          box-sizing: border-box; }
        #about .about-container article section div {
          max-width: 446px;
          width: 100%; }
          @media (max-width: 767px) {
            #about .about-container article section div {
              padding-top: 30px;
              max-width: 100%; } }
          #about .about-container article section div h4 {
            margin-top: 0px; }
      #about .about-container article p {
        font-size: 20px;
        color: #001e41;
        font-weight: 300; }
      #about .about-container article ul {
        margin: 0px 0px 30px; }
        #about .about-container article ul li {
          display: flex;
          padding: 7px 0px;
          font-size: 20px;
          color: #001e41;
          font-weight: 300;
          line-height: 1.5em; }
          #about .about-container article ul li:before {
            content: url("/wp-content/themes/go-tsi/img/square-bullet.svg");
            margin-right: 20px;
            height: 18px;
            width: 18px; }

body.agent-services .page-area-wrapper .page-area .page-heading {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("header-bg.jpg.2"); }

#services {
  background-color: #fff;
  padding: 40px 0px;
  position: relative; }
  @media (max-width: 1023px) {
    #services {
      padding-top: 0px; } }
  @media (max-width: 767px) {
    #services {
      padding-bottom: 0px; } }
  #services .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px; }
    @media (max-width: 1023px) {
      #services .container {
        padding: 0px;
        display: block; } }
    #services .container .profile-block {
      margin-right: 20px; }
      #services .container .profile-block .profile-container {
        width: auto; }
        #services .container .profile-block .profile-container .profile {
          position: relative;
          top: auto; }
  #services .services-list {
    padding: 530px 0px 0px 0px;
    max-width: 857px; }
    @media (max-width: 1023px) {
      #services .services-list {
        max-width: 100%;
        padding: 0px;
        margin: 0 auto; } }
    #services .services-list .services-intro {
      background-color: #ebecee;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      padding: 50px 0px 40px 0px;
      box-sizing: border-box; }
      @media (max-width: 1023px) {
        #services .services-list .services-intro {
          position: relative;
          padding: 40px 30px; } }
      #services .services-list .services-intro div {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 307px;
        box-sizing: border-box; }
        @media (max-width: 1023px) {
          #services .services-list .services-intro div {
            padding-left: 0px; } }
        #services .services-list .services-intro div h2 {
          font-size: 28px;
          color: #144258;
          font-weight: 500;
          line-height: 1.2em;
          margin-top: 0px;
          padding-right: 30px;
          text-transform: uppercase; }
        #services .services-list .services-intro div p {
          font-size: 20px;
          color: #144258;
          font-weight: 400;
          padding: 0px 10px 0px 0px; }
          #services .services-list .services-intro div p:last-child {
            margin-bottom: 0px; }
          @media (max-width: 1023px) {
            #services .services-list .services-intro div p {
              max-width: 100%;
              padding: 0px; } }
    #services .services-list .jumplink-buttons {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 1023px) {
        #services .services-list .jumplink-buttons {
          padding: 50px 30px 0px;
          box-sizing: border-box; } }
      @media (max-width: 767px) {
        #services .services-list .jumplink-buttons {
          display: none; } }
      #services .services-list .jumplink-buttons a {
        width: 33%;
        background: #4396f6;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        line-height: 1.2em;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0px 60px;
        height: 58px;
        position: relative;
        z-index: 1; }
        @media (max-width: 1023px) {
          #services .services-list .jumplink-buttons a {
            padding: 0px 40px; } }
        #services .services-list .jumplink-buttons a:nth-child(2) {
          margin: 0px 20px; }
        #services .services-list .jumplink-buttons a:after {
          content: "";
          display: block;
          position: absolute;
          left: 50%;
          bottom: -12px;
          margin-left: -24px;
          width: 0;
          height: 0;
          border-left: 24px solid transparent;
          border-right: 24px solid transparent;
          border-top: 24px solid #4396f6;
          transition: bottom 0.2s ease; }
        #services .services-list .jumplink-buttons a:hover:after {
          bottom: -16px;
          transition: bottom 0.2s ease; }
    #services .services-list article {
      padding: 0px;
      margin: 50px 0px;
      box-sizing: border-box;
      background: #f5f3f3;
      position: relative; }
      @media (max-width: 767px) {
        #services .services-list article {
          margin: 0px; } }
      #services .services-list article .anchor {
        position: absolute;
        top: -140px; }
      #services .services-list article .wrapper {
        padding: 50px; }
        @media (max-width: 1023px) {
          #services .services-list article .wrapper {
            padding: 50px 30px; } }
      #services .services-list article figure {
        border-top: 11px solid #f1a14b; }
        #services .services-list article figure img {
          width: 100%;
          height: auto; }
      #services .services-list article h2 {
        font-size: 28px;
        color: #144258;
        font-weight: 500;
        line-height: 1.2em;
        text-transform: uppercase;
        margin: 0px; }
      #services .services-list article p {
        margin: 20px 0px;
        color: #144258; }
      #services .services-list article .blurb {
        font-size: 28px;
        color: #144258;
        font-weight: 300;
        line-height: 1.3em; }
      #services .services-list article h3 {
        font-size: 20px;
        color: #144258;
        font-weight: 500;
        line-height: 1.5em;
        margin-bottom: 0px; }
        #services .services-list article h3 span {
          font-weight: 500; }
        @media (max-width: 767px) {
          #services .services-list article h3.questions {
            text-align: center; } }
      #services .services-list article ul {
        margin: 0px 0px 50px; }
        #services .services-list article ul li {
          padding: 7px 0px;
          color: #144258;
          line-height: 1.5em;
          display: flex; }
          #services .services-list article ul li:before {
            content: url("square-bullet.svg");
            margin-right: 20px;
            height: 18px;
            width: 18px; }
      #services .services-list article .contact-buttons {
        display: flex;
        justify-content: space-between;
        padding-top: 20px; }
        @media (max-width: 767px) {
          #services .services-list article .contact-buttons {
            flex-direction: column;
            align-items: center; } }
        #services .services-list article .contact-buttons a {
          font-size: 16px;
          color: #144258;
          font-weight: 500;
          line-height: 1;
          flex: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #e4e4e4;
          height: 66px;
          transition: background-color 0.3s ease;
          margin: 0px 5px; }
          @media (max-width: 767px) {
            #services .services-list article .contact-buttons a {
              flex: auto;
              max-width: 300px;
              width: 100%;
              margin: 5px 0px; } }
          #services .services-list article .contact-buttons a:first-child {
            margin-left: 0px; }
            @media (max-width: 767px) {
              #services .services-list article .contact-buttons a:first-child {
                margin-top: 0px; } }
          #services .services-list article .contact-buttons a:last-child {
            margin-right: 0px; }
          #services .services-list article .contact-buttons a:hover {
            background-color: #cfcece;
            transition: background-color 0.3s ease; }
          #services .services-list article .contact-buttons a svg {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
            max-width: 30px;
            margin-right: 15px; }
          #services .services-list article .contact-buttons a.phone svg {
            margin-right: 8px; }

:root {
  --footer-logo-width: 65px; }

footer {
  background-color: #69778b; }
  footer section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box; }
  footer section:first-child .container {
    display: flex;
    justify-content: space-between; }
    footer section:first-child .container .profile {
      display: flex;
      min-width: 375px;
      margin-right: 20px; }
      @media (max-width: 767px) {
        footer section:first-child .container .profile {
          min-width: auto; } }
      @media (max-width: 414px) {
        footer section:first-child .container .profile {
          min-width: 50%;
          max-width: 65%;
          margin-right: 0px; } }
      footer section:first-child .container .profile figure {
        width: 194px;
        margin-right: 20px; }
        @media (max-width: 767px) {
          footer section:first-child .container .profile img {
            display: none; } }
        footer section:first-child .container .profile figure img {
          width: 100%;
          height: auto;
          box-sizing: border-box;
          border-radius: 50%; }
      footer section:first-child .container .profile div {
        padding-top: 20px; }
        footer section:first-child .container .profile div h4 {
          font-size: 18px;
          color: #fff;
          font-weight: 500;
          line-height: 1;
          text-transform: uppercase;
          margin: 0px; }
        footer section:first-child .container .profile div a {
          font-size: 14px;
          color: #fff;
          font-weight: 400;
          line-height: 1.2em;
          display: block; }
          footer section:first-child .container .profile div a.email {
            margin-top: 5px; }
          footer section:first-child .container .profile div a:hover {
            opacity: 0.8; }
        footer section:first-child .container .profile div p {
          font-size: 14px;
          color: #fff;
          font-weight: 400;
          line-height: 1.2em; }
        footer section:first-child .container .profile div .job-title {
          margin-top: 5px; }
    footer section:first-child .container nav {
      width: 100%;
      max-width: 400px; }
      @media (max-width: 767px) {
        footer section:first-child .container nav {
          width: 50%; } }
      footer section:first-child .container nav ul {
        display: flex;
        justify-content: space-between; }
        @media (max-width: 1023px) {
          footer section:first-child .container nav ul {
            flex-direction: column;
            align-items: flex-end; } }
        footer section:first-child .container nav ul li a {
          font-size: 13px;
          color: #fff;
          font-weight: 500;
          line-height: 1; }
          footer section:first-child .container nav ul li a:hover {
            opacity: 0.8; }
      footer section:first-child .container nav .social-media-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center; }
        @media (max-width: 1023px) {
          footer section:first-child .container nav .social-media-icons {
            align-items: flex-end;
            flex-direction: row;
            flex-wrap: wrap; } }
        footer section:first-child .container nav .social-media-icons li {
          background: #fff;
          height: 25px;
          width: 25px;
          padding: 5px;
          border-radius: 50%;
          box-sizing: border-box;
          margin: 0 5px; }
          footer section:first-child .container nav .social-media-icons li:first-child {
            margin-left: 0; }
          footer section:first-child .container nav .social-media-icons li:last-child {
            margin-right: 0; }
          @media (max-width: 1023px) {
            footer section:first-child .container nav .social-media-icons li {
              margin: 0 8px; } }
          footer section:first-child .container nav .social-media-icons li a {
            display: flex;
            align-items: center; }
            footer section:first-child .container nav .social-media-icons li a svg {
              fill: #69778b; }
  footer section:last-child {
    background-color: #374a64;
    position: relative; }
    footer section:last-child .container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      footer section:last-child .container figure.company-logo {
        width: var(--footer-logo-width);
        position: absolute;
        top: -47px;
        left: calc(50% - calc(var(--footer-logo-width) / 2)); }
        footer section:last-child .container figure.company-logo img {
          width: 100%;
          height: auto; }
      footer section:last-child .container p {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        line-height: 1.3em;
        text-align: center; }
      footer section:last-child .container .compliance-logos {
        width: 100%;
        max-width: 835px;
        display: flex;
        justify-content: space-between;
        margin: 40px 0px;
        box-sizing: border-box; }
        footer section:last-child .container .compliance-logos figure {
          max-width: 150px;
          width: 100%; }
          footer section:last-child .container .compliance-logos figure img {
            width: 100%;
            height: auto; }

body.industries .page-area-wrapper .page-area .page-heading {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("header-bg.jpg.3"); }

#industries {
  background-color: #fff;
  padding: 40px 0px;
  position: relative; }
  @media (max-width: 1023px) {
    #industries {
      padding-top: 0px; } }
  #industries .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px; }
    @media (max-width: 1023px) {
      #industries .container {
        display: block;
        padding: 0px; } }
    #industries .container .profile-block {
      margin-right: 20px; }
      #industries .container .profile-block .profile-container {
        width: auto; }
        #industries .container .profile-block .profile-container .profile {
          position: relative;
          top: auto; }
  #industries .industries-list {
    padding: 300px 0px 0px 0px; }
    @media (max-width: 1023px) {
      #industries .industries-list {
        padding: 0px;
        margin: 0 auto; } }
    #industries .industries-list .industries-intro {
      background-color: #ebecee;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      padding: 50px 0px 40px 0px;
      box-sizing: border-box; }
      @media (max-width: 1023px) {
        #industries .industries-list .industries-intro {
          position: relative;
          padding: 40px 0px; } }
      #industries .industries-list .industries-intro div {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 287px;
        box-sizing: border-box; }
        @media (max-width: 1023px) {
          #industries .industries-list .industries-intro div {
            padding-left: 0px; } }
        #industries .industries-list .industries-intro div p {
          font-size: 20px;
          color: #144258;
          font-weight: 400;
          padding: 0px 30px;
          position: relative;
          box-sizing: border-box;
          max-width: 815px; }
          @media (max-width: 1023px) {
            #industries .industries-list .industries-intro div p {
              max-width: 100%; } }
    #industries .industries-list .industry-card {
      display: flex;
      max-width: 887px;
      padding: 30px;
      box-sizing: border-box; }
      @media (max-width: 1023px) {
        #industries .industries-list .industry-card {
          margin: 0px 20px;
          max-width: 100%; } }
      #industries .industries-list .industry-card:nth-child(odd) {
        background-color: #ebecee; }
      #industries .industries-list .industry-card figure {
        min-width: 274px;
        max-width: 274px; }
        @media (max-width: 767px) {
          #industries .industries-list .industry-card figure {
            display: none; } }
        #industries .industries-list .industry-card figure img {
          width: 100%;
          height: auto;
          border-top: 11px solid #f1a14b; }
      #industries .industries-list .industry-card div {
        margin-left: 20px; }
        @media (max-width: 767px) {
          #industries .industries-list .industry-card div {
            margin-left: 0px; } }
        #industries .industries-list .industry-card div a {
          line-height: 1; }
        #industries .industries-list .industry-card div h3 {
          margin: 0;
          font-size: 24px;
          color: #144258;
          font-weight: 500;
          line-height: 1;
          text-transform: uppercase;
          width: auto;
          display: inline-block; }
        #industries .industries-list .industry-card div p {
          font-size: 16px;
          color: #4a4a4a;
          font-weight: 400;
          line-height: 1.7em; }
        #industries .industries-list .industry-card div a.more-details {
          display: inline-block;
          font-size: 15px;
          color: #144258;
          font-weight: 500;
          line-height: 1;
          text-transform: uppercase; }
          #industries .industries-list .industry-card div a.more-details svg {
            padding-left: 15px;
            height: 10px; }
  #industries .industry .industry-intro {
    background-color: #ebecee;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 40px 0px 40px 0px;
    box-sizing: border-box; }
    @media (max-width: 1023px) {
      #industries .industry .industry-intro {
        position: relative;
        padding: 40px 0px 20px; } }
    #industries .industry .industry-intro .container {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 287px;
      box-sizing: border-box;
      flex-direction: column; }
      @media (max-width: 1023px) {
        #industries .industry .industry-intro .container {
          padding-left: 0px; } }
      #industries .industry .industry-intro .container figure {
        width: 100%;
        height: 266px;
        overflow: hidden;
        position: relative;
        border-top: 11px solid #f1a14b; }
        #industries .industry .industry-intro .container figure img {
          width: 100%;
          height: auto;
          position: absolute;
          top: -100px; }
          @media (max-width: 767px) {
            #industries .industry .industry-intro .container figure img {
              top: 0; } }
    #industries .industry .industry-intro .breadcrumbs {
      display: flex;
      align-items: center;
      padding-left: 20px; }
      #industries .industry .industry-intro .breadcrumbs a {
        font-size: 20px;
        color: #144258;
        font-weight: 400;
        text-decoration: underline; }
      #industries .industry .industry-intro .breadcrumbs svg {
        margin: 0px 10px;
        height: 10px; }
      #industries .industry .industry-intro .breadcrumbs p {
        font-size: 20px;
        color: #144258;
        font-weight: 400; }
  #industries .industry .industry-body {
    padding: 380px 20px 0px;
    box-sizing: border-box; }
    @media (max-width: 1023px) {
      #industries .industry .industry-body {
        padding-top: 0px; } }
    #industries .industry .industry-body h2 {
      text-transform: uppercase; }
    #industries .industry .industry-body h4 {
      font-size: 20px;
      color: #144258;
      font-weight: 700;
      line-height: 1.4em; }
    #industries .industry .industry-body .body-content {
      border-top: 2px solid #ebecee;
      padding-top: 40px; }
      #industries .industry .industry-body .body-content p {
        font-size: 20px;
        color: #144258;
        font-weight: 400;
        line-height: 1.4em;
        margin-top: 0px; }
        #industries .industry .industry-body .body-content p span {
          font-weight: bold; }
      #industries .industry .industry-body .body-content ul {
        margin-left: 20px;
        box-sizing: border-box; }
        #industries .industry .industry-body .body-content ul li {
          font-size: 20px;
          color: #144258;
          font-weight: 400;
          line-height: 1.4em;
          list-style: square inside;
          padding: 10px 0px 10px 20px; }
      #industries .industry .industry-body .body-content a {
        font-size: 17px;
        color: #144258;
        font-weight: 400;
        line-height: 1; }
      #industries .industry .industry-body .body-content .footnote {
        font-size: 14px;
        font-style: italic; }

body.results .page-area-wrapper .page-area .page-heading {
  background-image: linear-gradient(to bottom, rgba(0, 30, 65, 0.5), rgba(0, 30, 65, 0.5)), url("header-bg.jpg.4"); }

#results {
  background-color: #fff;
  padding: 40px 0px;
  position: relative; }
  @media (max-width: 1023px) {
    #results {
      padding-top: 0px; } }
  #results .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px; }
    @media (max-width: 1023px) {
      #results .container {
        display: block;
        padding: 0px; } }
    #results .container .profile-block {
      margin-right: 20px; }
      #results .container .profile-block .profile-container {
        width: auto; }
        #results .container .profile-block .profile-container .profile {
          position: relative;
          top: auto; }
    #results .container .results-list {
      padding: 620px 0px 0px 0px; }
      @media (max-width: 1023px) {
        #results .container .results-list {
          padding: 0px;
          margin: 0 auto; } }
      #results .container .results-list .results-intro {
        background-color: #ebecee;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        padding: 50px 0px 0px 0px;
        box-sizing: border-box; }
        @media (max-width: 1023px) {
          #results .container .results-list .results-intro {
            position: relative;
            padding: 40px 20px 0px; } }
        #results .container .results-list .results-intro .content {
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 287px;
          box-sizing: border-box; }
          @media (max-width: 1023px) {
            #results .container .results-list .results-intro .content {
              padding-left: 0px; } }
          #results .container .results-list .results-intro .content p {
            font-size: 20px;
            color: #144258;
            font-weight: 400;
            line-height: 1.5em;
            padding: 0px 20px 0px 30px;
            position: relative;
            box-sizing: border-box; }
            @media (max-width: 1023px) {
              #results .container .results-list .results-intro .content p {
                max-width: 100%;
                padding: 0px; } }
        #results .container .results-list .results-intro .case-studies-list {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          padding-left: 317px;
          box-sizing: border-box;
          justify-content: space-between; }
          @media (max-width: 1023px) {
            #results .container .results-list .results-intro .case-studies-list {
              padding-left: 0px; } }
          @media (max-width: 767px) {
            #results .container .results-list .results-intro .case-studies-list {
              flex-direction: column; } }
          #results .container .results-list .results-intro .case-studies-list a {
            max-width: 267px;
            min-height: 330px;
            box-sizing: border-box;
            border-bottom: 11px solid;
            border-color: transparent;
            transition: border-color 0.3s ease; }
            #results .container .results-list .results-intro .case-studies-list a:hover {
              border-color: #f1a14b;
              transition: border-color 0.3s ease; }
              @media (max-width: 1023px) {
                #results .container .results-list .results-intro .case-studies-list a:hover {
                  border-bottom: none;
                  min-height: 100%; } }
            #results .container .results-list .results-intro .case-studies-list a.active {
              border-bottom: 11px solid #f1a14b; }
              @media (max-width: 767px) {
                #results .container .results-list .results-intro .case-studies-list a.active {
                  border-bottom: none; } }
            @media (max-width: 767px) {
              #results .container .results-list .results-intro .case-studies-list a {
                max-width: 100%; } }
            @media (max-width: 414px) {
              #results .container .results-list .results-intro .case-studies-list a {
                display: flex;
                flex-direction: column; } }
            #results .container .results-list .results-intro .case-studies-list a:nth-child(even) {
              margin: 0px 10px; }
              @media (max-width: 767px) {
                #results .container .results-list .results-intro .case-studies-list a:nth-child(even) {
                  margin: 0px; } }
            #results .container .results-list .results-intro .case-studies-list a figure img {
              width: 100%;
              height: auto; }
              @media (max-width: 767px) {
                #results .container .results-list .results-intro .case-studies-list a figure img {
                  width: 80%; } }
              @media (max-width: 414px) {
                #results .container .results-list .results-intro .case-studies-list a figure img {
                  width: 100%; } }
            #results .container .results-list .results-intro .case-studies-list a p {
              font-size: 14px;
              color: #144258;
              font-weight: 400;
              line-height: 1;
              text-transform: uppercase; }
            #results .container .results-list .results-intro .case-studies-list a h3 {
              font-size: 20px;
              color: #144258;
              font-weight: 500;
              line-height: 1.2em; }
              #results .container .results-list .results-intro .case-studies-list a h3 span {
                font-weight: 300;
                font-size: 18px; }
      #results .container .results-list .case-study {
        max-width: 845px;
        box-sizing: border-box; }
        @media (max-width: 1023px) {
          #results .container .results-list .case-study {
            padding: 50px 20px;
            margin: 0 auto; } }
        #results .container .results-list .case-study .case-study-count {
          width: 162px;
          height: 46px;
          display: flex; }
          #results .container .results-list .case-study .case-study-count p {
            text-transform: uppercase;
            color: #fff;
            height: 100%;
            padding: 0px;
            margin: 0px;
            display: flex;
            justify-content: center;
            align-items: center; }
            #results .container .results-list .case-study .case-study-count p:first-child {
              flex: 1;
              background-color: #f1a14b;
              font-size: 13px;
              font-weight: 500;
              line-height: 1.5em; }
            #results .container .results-list .case-study .case-study-count p:last-child {
              background-color: #144258;
              width: 46px;
              font-size: 24px;
              font-weight: 500;
              line-height: 1.5em; }
        #results .container .results-list .case-study h3 {
          font-size: 28px;
          color: #144258;
          font-weight: 500;
          line-height: 1.2em;
          text-transform: uppercase; }
          @media (max-width: 767px) {
            #results .container .results-list .case-study h3 {
              font-size: 20px; } }
        #results .container .results-list .case-study .case-study-grid {
          max-width: 887px;
          width: 100%;
          display: flex;
          flex-wrap: wrap; }
          #results .container .results-list .case-study .case-study-grid .grid-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 40px;
            box-sizing: border-box; }
            #results .container .results-list .case-study .case-study-grid .grid-item h4 {
              font-size: 22px;
              color: #fff;
              font-weight: 500;
              line-height: 1;
              text-transform: uppercase;
              display: flex;
              align-items: center;
              justify-content: center;
              height: 87px;
              width: 100%;
              margin: 0px 0px 40px;
              position: relative; }
              #results .container .results-list .case-study .case-study-grid .grid-item h4:after {
                transition: bottom 0.1s ease;
                left: 50%;
                margin-left: -44px; }
            #results .container .results-list .case-study .case-study-grid .grid-item figure {
              min-height: 158px;
              display: flex;
              align-items: center; }
            #results .container .results-list .case-study .case-study-grid .grid-item p {
              text-align: center;
              padding: 0px 30px;
              margin: 30px 0px 0px; }
              #results .container .results-list .case-study .case-study-grid .grid-item p:last-child() {
                margin: 0px; }
              #results .container .results-list .case-study .case-study-grid .grid-item p.primary {
                font-size: 22px;
                color: #144258;
                font-weight: 500;
                line-height: 1.5em; }
                #results .container .results-list .case-study .case-study-grid .grid-item p.primary span {
                  display: block; }
              #results .container .results-list .case-study .case-study-grid .grid-item p.secondary {
                font-size: 16px;
                color: "";
                font-weight: 400;
                line-height: 1.5em; }
            #results .container .results-list .case-study .case-study-grid .grid-item.light h4 {
              background: #e7e7e7;
              color: #144258; }
              #results .container .results-list .case-study .case-study-grid .grid-item.light h4:after {
                content: url("/wp-content/themes/go-tsi/img/down-triangle-light.svg");
                display: block;
                position: absolute;
                bottom: -20px; }
            #results .container .results-list .case-study .case-study-grid .grid-item.dark {
              background: #f5f3f3; }
              #results .container .results-list .case-study .case-study-grid .grid-item.dark h4 {
                background: #144258; }
                #results .container .results-list .case-study .case-study-grid .grid-item.dark h4:after {
                  content: url("/wp-content/themes/go-tsi/img/down-triangle-dark.svg");
                  display: block;
                  position: absolute;
                  bottom: -20px; }
            #results .container .results-list .case-study .case-study-grid .grid-item.accent {
              background: #f5f3f3; }
              #results .container .results-list .case-study .case-study-grid .grid-item.accent h4 {
                background: #f1a14b; }
                #results .container .results-list .case-study .case-study-grid .grid-item.accent h4:after {
                  content: url("/wp-content/themes/go-tsi/img/down-triangle-accent.svg");
                  display: block;
                  position: absolute;
                  bottom: -20px; }
            #results .container .results-list .case-study .case-study-grid .grid-item.one-column {
              width: 100%; }
            #results .container .results-list .case-study .case-study-grid .grid-item.two-column {
              width: 50%; }
              @media (max-width: 767px) {
                #results .container .results-list .case-study .case-study-grid .grid-item.two-column {
                  width: 100%; } }
            #results .container .results-list .case-study .case-study-grid .grid-item .metrics {
              display: flex;
              justify-content: center; }
              #results .container .results-list .case-study .case-study-grid .grid-item .metrics.one-column .metric {
                display: flex;
                flex-direction: column;
                align-items: center; }
              #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column {
                width: 100%;
                justify-content: space-between; }
                @media (max-width: 767px) {
                  #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column {
                    flex-direction: column;
                    align-items: center; } }
                #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric {
                  max-width: 33%;
                  min-width: 33%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  padding: 0px 20px;
                  box-sizing: border-box; }
                  @media (max-width: 767px) {
                    #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric {
                      max-width: 100%; } }
                  #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric figure {
                    min-height: 128px;
                    display: flex;
                    align-items: center; }
                  #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric p {
                    padding: 5px 0px; }
                    #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric p.primary {
                      font-size: 30px;
                      color: #144258;
                      font-weight: 500;
                      line-height: 1;
                      margin-top: 0; }
                    #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric p.secondary {
                      font-size: 18px;
                      font-weight: 400;
                      line-height: 1.2em; }
                  #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric:last-of-type p.primary {
                    margin-top: revert; }
                  #results .container .results-list .case-study .case-study-grid .grid-item .metrics.three-column .metric:last-of-type p.secondary {
                    margin-top: 0; }
            #results .container .results-list .case-study .case-study-grid .grid-item .footnote {
              padding-top: 40px; }
            #results .container .results-list .case-study .case-study-grid .grid-item:hover h4:after {
              bottom: -25px;
              transition: bottom 0.1s ease; }


/*# sourceMappingURL=app.css.map*/