/* 
 * These breakpoint are designed to be used from a top-down development perspective,
 * meaning, the default styles coded up will be for an XL screen size, and with each
 * breakpoint, the styles trickle down to lg, md, sm and finally to xs.
 * The breakpoints used here, are based on the grid system in Bootstrap 4.1.
 */
/* -- Breakpoint -- */
body,
html {
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0px !important;
  padding: 0px !important;
  width: 100%;
  background-color: #fcfcfc;
  color: #222222; }

div.container {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 991px;
  /* The classic favourite of 1140px is too wide. */
  height: 100%; }
  @media (max-width: 1199px) {
    div.container {
      padding-left: 15px;
      padding-right: 15px; } }

div.grecaptcha-badge {
  z-index: 99999 !important; }

:root {
  --color-white: #ffffff;
  --color-almost-white: #fcfcfc;
  --color-super-light-gray: #f6f6f6;
  --color-very-light-gray: #e8e8e8;
  --color-light-gray: #dddddd;
  --color-medium-light-gray: #cccccc;
  --color-gray: #999999;
  --color-medium-gray: #666666;
  --color-dark-gray: #333333;
  --color-very-dark-gray: #222222;
  --color-black: #000000;
  --color-primary: #d63f0d;
  --color-secondary: #3366cc;
  --color-primary-bg: var(--color-white);
  --color-secondary-bg: var(--color-super-light-gray);
  --color-gradient-button-text: var(--color-white);
  --color-menu-text: var(--color-white);
  --color-menu-link: var(--color-white);
  --color-menu-backdrop: var(--color-black);
  --color-link: var(--color-primary);
  --color-testimonial-dot: var(--color-gray);
  --color-testimonial-dot-active: var(--color-primary); }

*,
input {
  font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

.title {
  font-family: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; }

a, a:hover, a:active, a:visited {
  cursor: pointer; }

strong, b {
  font-weight: 700; }

.black {
  font-weight: 900; }

.bold {
  font-weight: 700; }

.semibold {
  font-weight: 600; }

.medium {
  font-weight: 500; }

.regular {
  font-weight: 400; }

.light {
  font-weight: 300; }

.thin {
  font-weight: 100; }

em, .italic {
  font-style: italic; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  font-weight: 400; }

h1 {
  font-size: 2.5rem;
  line-height: 3rem; }

h2 {
  font-size: 2rem;
  line-height: 2.5rem; }

h3 {
  font-size: 1.75rem;
  line-height: 2.25rem; }

h4 {
  font-size: 1.5rem;
  line-height: 2rem; }

h5 {
  font-size: 1.25rem;
  line-height: 1.75rem; }

h6 {
  font-size: 1rem;
  line-height: 1.5rem; }

body.no-scroll {
  height: 100vh;
  overflow: hidden; }

header {
  width: 100%;
  height: 120px;
  position: absolute;
  z-index: 9998; }
  header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%; }
  header .left {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    header .left a.logo {
      display: block;
      height: 100%;
      width: auto;
      margin: -6px 30px 15px 0; }
    header .left .logo-block {
      background-color: var(--color-primary);
      border-radius: 0 0 9px 9px;
      height: 100%;
      width: 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      padding-left: 18px;
      padding-bottom: 15px; }
      header .left .logo-block img {
        width: 60px; }
    header .left .text-section {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: 100%;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      font-weight: 800;
      font-size: 18px; }
      @media (max-width: 575px) {
        header .left .text-section {
          display: none; } }
  header .social-section {
    height: 100%; }
    header .social-section .social-links {
      height: 100%;
      padding: 0;
      margin: 0 30px 0 0;
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; }
      header .social-section .social-links li {
        margin-left: 12px;
        margin-bottom: 9px; }
        header .social-section .social-links li img {
          display: block;
          width: 30px; }
  header .menu-button {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
    header .menu-button a#menu-button {
      display: block;
      margin-bottom: 9px; }
      header .menu-button a#menu-button img {
        width: 30px;
        margin-bottom: -5px; }

.nav-system {
  background-color: var(--color-primary);
  position: fixed;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 50vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 90px 60px 60px;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: left 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  -o-transition: left 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  transition: left 0.3s cubic-bezier(0.9, 0, 0.1, 1); }
  @media (max-width: 767px) {
    .nav-system {
      padding: 30px; } }
  @media (max-width: 575px) {
    .nav-system {
      width: 100vw; } }
  .nav-system.show {
    left: 50%; }
    @media (max-width: 575px) {
      .nav-system.show {
        left: 0; } }
  .nav-system .logo {
    width: 80px;
    margin-bottom: 45px; }
    @media (max-width: 767px) {
      .nav-system .logo {
        width: 60px; } }
    .nav-system .logo a {
      display: inline-block;
      width: 100%; }
      .nav-system .logo a img {
        display: block;
        width: 100%; }
  .nav-system .cta-button {
    text-decoration: none;
    display: inline-block;
    padding: 11px 18px 9px;
    margin-bottom: 45px;
    border-radius: 9px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    background: #ed731e;
    background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
    background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
    @media (max-width: 767px) {
      .nav-system .cta-button {
        margin-bottom: 45px; } }
    .nav-system .cta-button span.label {
      color: var(--color-gradient-button-text);
      font-size: 24px;
      font-weight: 500;
      margin-right: 21px; }
    .nav-system .cta-button img {
      display: inline-block;
      margin-bottom: -1px;
      width: 15px; }
  .nav-system .close-menu-button {
    display: block;
    position: absolute;
    top: 45px;
    right: 60px;
    font-size: 32px;
    font-weight: 100;
    color: var(--color-menu-link);
    cursor: pointer;
    -webkit-transition: opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1);
    transition: opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1); }
    @media (max-width: 767px) {
      .nav-system .close-menu-button {
        top: 27px;
        right: 30px;
        font-size: 24px; } }
    .nav-system .close-menu-button:hover {
      opacity: .6; }
  .nav-system nav.navigation {
    width: 100%;
    overflow-y: scroll; }
    @media (max-width: 767px) {
      .nav-system nav.navigation {
        height: calc(100% - 184px); } }
    .nav-system nav.navigation ul {
      margin: 0;
      padding: 0;
      width: 100%;
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .nav-system nav.navigation ul li {
        display: block;
        margin-bottom: 27px; }
        .nav-system nav.navigation ul li a {
          font-size: 24px;
          font-weight: 500;
          text-decoration: none;
          color: var(--color-menu-link); }

.backdrop {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 9999;
  -webkit-transition: opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1), -webkit-backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  transition: opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1), -webkit-backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  -o-transition: backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  transition: backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  transition: backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.9, 0, 0.1, 1), -webkit-backdrop-filter 0.3s cubic-bezier(0.9, 0, 0.1, 1); }
  .backdrop.show {
    pointer-events: auto;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px); }
    @media (max-width: 575px) {
      .backdrop.show {
        -webkit-backdrop-filter: none;
        backdrop-filter: none; } }

footer {
  width: 100%;
  padding: 30px 0 0; }
  footer .row {
    border-left: 2px solid var(--color-primary);
    padding-left: 45px;
    padding-bottom: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media (max-width: 991px) {
      footer .row {
        padding-left: 30px; } }
  footer .social-icons ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    footer .social-icons ul li {
      margin-right: 15px; }
      @media (max-width: 991px) {
        footer .social-icons ul li {
          -webkit-transform-origin: top left;
          -ms-transform-origin: top left;
          transform-origin: top left;
          -webkit-transform: scale(0.8);
          -ms-transform: scale(0.8);
          transform: scale(0.8);
          margin-right: 9px; } }
      footer .social-icons ul li:last-child {
        margin-right: 0; }
  footer .line {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 24px; }
    @media (max-width: 991px) {
      footer .line {
        font-size: 14px;
        line-height: 22px; } }
    footer .line a {
      color: var(--color-link); }

.hero {
  position: relative;
  width: 100vw;
  height: auto;
  background-color: var(--color-secondary-bg); }
  .hero .hero-image {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50vw; }
    @media (max-width: 767px) {
      .hero .hero-image {
        height: 90vw; } }
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 1; }
    .hero .overlay .secondary-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
      transform-origin: top center;
      -webkit-transform: rotate(50deg) scale(2) translateY(8%);
      -ms-transform: rotate(50deg) scale(2) translateY(8%);
      transform: rotate(50deg) scale(2) translateY(8%);
      background-color: rgba(255, 255, 255, 0.6); }
  .hero .hero-text {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1; }
    @media (max-width: 767px) {
      .hero .hero-text {
        position: relative; } }
  .hero .container {
    position: relative;
    top: -50vw;
    height: 100%;
    z-index: 1; }
    @media (max-width: 767px) {
      .hero .container {
        top: 0; } }
    .hero .container .row {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      @media (max-width: 575px) {
        .hero .container .row {
          height: auto; } }
      .hero .container .row h1 {
        font-size: 72px;
        font-weight: 700;
        line-height: 74px;
        width: 60%;
        letter-spacing: -2px;
        margin-bottom: 9px; }
        @media (max-width: 1199px) {
          .hero .container .row h1 {
            font-size: 70px;
            line-height: 68px; } }
        @media (max-width: 991px) {
          .hero .container .row h1 {
            font-size: 60px;
            line-height: 56px;
            width: 50%;
            letter-spacing: -1px;
            margin-top: 30px; } }
        @media (max-width: 767px) {
          .hero .container .row h1 {
            font-size: 42px;
            line-height: 40px;
            width: 100%;
            letter-spacing: 0;
            margin-top: 30px; } }
      .hero .container .row h2 {
        font-size: 42px;
        font-weight: 500;
        line-height: 51px;
        width: 70%;
        letter-spacing: -.5px;
        margin-bottom: 45px; }
        @media (max-width: 1199px) {
          .hero .container .row h2 {
            font-size: 33px;
            line-height: 41px; } }
        @media (max-width: 991px) {
          .hero .container .row h2 {
            font-size: 24px;
            line-height: 32px;
            margin-bottom: 30px; } }
        @media (max-width: 767px) {
          .hero .container .row h2 {
            width: 100%; } }

.page-body {
  background-color: var(--color-secondary-bg);
  padding: 60px 0; }
  @media (max-width: 1199px) {
    .page-body {
      padding: 30px 0; } }
  @media (max-width: 767px) {
    .page-body {
      padding: 15px 0; } }
  .page-body .preamble {
    padding-bottom: 30px; }
    @media (max-width: 1199px) {
      .page-body .preamble {
        padding-bottom: 15px; } }
    .page-body .preamble p {
      font-size: 28px;
      line-height: 42px;
      margin: 0 0 30px; }
      @media (max-width: 991px) {
        .page-body .preamble p {
          font-size: 24px;
          line-height: 36px; } }
      @media (max-width: 767px) {
        .page-body .preamble p {
          font-size: 18px;
          line-height: 28px; } }
  .page-body .cta {
    width: 100%;
    height: 359px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px; }
    @media (max-width: 991px) {
      .page-body .cta {
        height: 300px; } }
    @media (max-width: 767px) {
      .page-body .cta {
        margin-bottom: 75px; } }
    @media (max-width: 575px) {
      .page-body .cta {
        height: 180px; } }
    .page-body .cta a {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      height: 100%;
      width: 100%; }
      .page-body .cta a .left {
        width: 50%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 15px 0 0 15px; }
        @media (max-width: 575px) {
          .page-body .cta a .left {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
            border-radius: 0 9px 9px 0; } }
      .page-body .cta a .right {
        width: 50%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 0 15px 15px 0; }
        @media (max-width: 575px) {
          .page-body .cta a .right {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
            border-radius: 9px 0 0 9px;
            background-position: center left; } }
      .page-body .cta a .button {
        position: absolute;
        bottom: -27px;
        right: 5%;
        padding: 11px 18px 9px;
        border-radius: 9px;
        -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
        background: #ed731e;
        background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
        background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
        background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
        background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
        background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
        @media (max-width: 767px) {
          .page-body .cta a .button {
            bottom: -75px;
            right: 0;
            width: 100%;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }
        .page-body .cta a .button span.label {
          color: var(--color-gradient-button-text);
          font-size: 28px;
          font-weight: 500;
          margin-right: 30px; }
          @media (max-width: 767px) {
            .page-body .cta a .button span.label {
              font-size: 18px;
              margin-right: 18px; } }
        .page-body .cta a .button img {
          display: inline-block;
          margin-bottom: -1px; }
          @media (max-width: 767px) {
            .page-body .cta a .button img {
              width: 13px; } }
  .page-body .body {
    padding: 30px 0; }
    @media (max-width: 991px) {
      .page-body .body {
        padding: 15px 0; } }
    .page-body .body p {
      font-size: 28px;
      line-height: 42px;
      margin-bottom: 42px; }
      @media (max-width: 991px) {
        .page-body .body p {
          font-size: 24px;
          line-height: 36px;
          margin-bottom: 36px; } }
      @media (max-width: 767px) {
        .page-body .body p {
          font-size: 18px;
          line-height: 28px;
          margin-bottom: 28px; } }
  .page-body .testimonials {
    position: relative;
    padding: 30px;
    margin-bottom: 60px;
    background-color: var(--color-primary-bg);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center; }
    @media (max-width: 767px) {
      .page-body .testimonials {
        padding: 15px; } }
    .page-body .testimonials .swiper-pagination {
      position: relative;
      bottom: -12px; }
      .page-body .testimonials .swiper-pagination .swiper-pagination-bullet {
        margin-left: 9px;
        background-color: var(--color-testimonial-dot);
        -webkit-transition: background-color 0.3s cubic-bezier(0.9, 0, 0.1, 1);
        -o-transition: background-color 0.3s cubic-bezier(0.9, 0, 0.1, 1);
        transition: background-color 0.3s cubic-bezier(0.9, 0, 0.1, 1); }
        .page-body .testimonials .swiper-pagination .swiper-pagination-bullet:first-child {
          margin-left: 0; }
        .page-body .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
          background-color: var(--color-testimonial-dot-active); }
    .page-body .testimonials .quote {
      position: absolute;
      height: 30px;
      width: 41px;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center; }
      @media (max-width: 767px) {
        .page-body .testimonials .quote {
          height: 15px;
          width: 21px; } }
      .page-body .testimonials .quote.open-quote {
        top: 30px;
        left: 30px; }
        @media (max-width: 767px) {
          .page-body .testimonials .quote.open-quote {
            top: 15px;
            left: 15px; } }
      .page-body .testimonials .quote.close-quote {
        bottom: 60px;
        right: 30px; }
        @media (max-width: 991px) {
          .page-body .testimonials .quote.close-quote {
            bottom: 63px; } }
        @media (max-width: 767px) {
          .page-body .testimonials .quote.close-quote {
            bottom: 105px;
            right: 15px; } }
    .page-body .testimonials .testimonial-slider {
      width: 100%; }
    .page-body .testimonials .slider {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 2; }
    .page-body .testimonials .testimonial {
      width: 100%;
      height: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 9px 60px; }
      @media (max-width: 767px) {
        .page-body .testimonials .testimonial {
          padding: 18px 30px; } }
      .page-body .testimonials .testimonial p {
        font-size: 28px;
        line-height: 42px;
        margin: 0 0 15px; }
        @media (max-width: 991px) {
          .page-body .testimonials .testimonial p {
            font-size: 24px;
            line-height: 36px; } }
        @media (max-width: 767px) {
          .page-body .testimonials .testimonial p {
            font-size: 16px;
            line-height: 22px; } }
    .page-body .testimonials .author {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      margin-right: 60px; }
      @media (max-width: 767px) {
        .page-body .testimonials .author {
          margin-right: 0;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start; } }
      .page-body .testimonials .author .image {
        width: 51px;
        height: 51px;
        border-radius: 50%;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin-right: 6px; }
        @media (max-width: 767px) {
          .page-body .testimonials .author .image {
            width: 42px;
            height: 42px; } }
      .page-body .testimonials .author .name {
        font-size: 20px;
        line-height: 24px; }
        @media (max-width: 991px) {
          .page-body .testimonials .author .name {
            font-size: 16px;
            line-height: 20px; } }
        @media (max-width: 767px) {
          .page-body .testimonials .author .name {
            font-size: 14px;
            line-height: 18px; } }
  .page-body .logo-row {
    padding: 0 0 60px; }
    @media (max-width: 991px) {
      .page-body .logo-row {
        padding: 0 0 45px; } }
    @media (max-width: 767px) {
      .page-body .logo-row {
        padding: 0 0 15px; } }
    .page-body .logo-row .title {
      position: relative;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 30px; }
      .page-body .logo-row .title:after {
        position: absolute;
        content: '';
        bottom: -3px;
        left: 0;
        width: 120px;
        height: 2px;
        background-color: var(--color-primary); }
        @media (max-width: 767px) {
          .page-body .logo-row .title:after {
            width: 100%;
            bottom: -9px; } }
    .page-body .logo-row ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .page-body .logo-row ul li {
        margin-right: 45px;
        margin-bottom: 15px; }
        @media (max-width: 991px) {
          .page-body .logo-row ul li {
            margin-right: 15px;
            -webkit-transform-origin: top left;
            -ms-transform-origin: top left;
            transform-origin: top left;
            -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
            transform: scale(0.8); } }
        .page-body .logo-row ul li:last-child {
          margin-right: 0; }

.hero.fit-lab .hero-text .container {
  top: calc(-50vw - 75px); }
  @media (max-width: 1199px) {
    .hero.fit-lab .hero-text .container {
      top: -50vw; } }
  @media (max-width: 767px) {
    .hero.fit-lab .hero-text .container {
      top: 0; } }

.page-body.fit-lab {
  background-color: var(--color-secondary-bg);
  padding: 60px 0;
  margin-top: -135px; }
  @media (max-width: 1199px) {
    .page-body.fit-lab {
      padding: 30px 0;
      margin-top: 0; } }
  @media (max-width: 767px) {
    .page-body.fit-lab {
      padding: 0 0 15px; } }
  .page-body.fit-lab .container {
    position: relative;
    z-index: 3; }
  .page-body.fit-lab .fit-lab-card {
    width: 100%;
    margin-bottom: 90px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px; }
    @media (max-width: 767px) {
      .page-body.fit-lab .fit-lab-card {
        margin-bottom: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .page-body.fit-lab .fit-lab-card .left {
      width: 50%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      border-radius: 15px 0 0 15px;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media (max-width: 991px) {
        .page-body.fit-lab .fit-lab-card .left {
          width: 30%; } }
      @media (max-width: 767px) {
        .page-body.fit-lab .fit-lab-card .left {
          display: none;
          width: 100%;
          height: 210px;
          -webkit-box-flex: unset;
          -ms-flex: unset;
          flex: unset;
          border-radius: 9px 9px 0 0; } }
    .page-body.fit-lab .fit-lab-card .right {
      width: 50%;
      height: 100%;
      background-color: var(--color-secondary-bg);
      overflow: hidden;
      border-radius: 0 15px 15px 0;
      padding: 30px 30px 60px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media (max-width: 991px) {
        .page-body.fit-lab .fit-lab-card .right {
          width: 70%;
          padding-bottom: 75px; } }
      @media (max-width: 767px) {
        .page-body.fit-lab .fit-lab-card .right {
          border-radius: 9px;
          padding: 15px 15px 45px;
          width: 100%; } }
      .page-body.fit-lab .fit-lab-card .right .title {
        font-size: 28px;
        font-weight: 700;
        position: relative; }
        .page-body.fit-lab .fit-lab-card .right .title:after {
          display: block;
          position: relative;
          content: '';
          width: 100%;
          height: 3px;
          bottom: -12px;
          margin-bottom: 30px;
          left: 0;
          background-color: var(--color-primary); }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .right .title {
            font-size: 22px;
            font-weight: 500; } }
      .page-body.fit-lab .fit-lab-card .right .copy p {
        font-size: 22px;
        line-height: 34px;
        margin: 0 0 30px; }
        @media (max-width: 991px) {
          .page-body.fit-lab .fit-lab-card .right .copy p {
            font-size: 20px;
            line-height: 30px; } }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .right .copy p {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 15px; } }
      .page-body.fit-lab .fit-lab-card .right .price {
        font-size: 28px;
        font-weight: 500;
        width: 100%;
        text-align: right; }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .right .price {
            font-size: 22px;
            text-align: left; } }
      .page-body.fit-lab .fit-lab-card .right .options {
        display: none; }
    .page-body.fit-lab .fit-lab-card .button {
      position: absolute;
      bottom: -27px;
      right: 10%;
      padding: 11px 18px 9px;
      border-radius: 9px;
      -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      background: #ed731e;
      background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
      background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
      @media (max-width: 991px) {
        .page-body.fit-lab .fit-lab-card .button {
          right: 30px; } }
      @media (max-width: 767px) {
        .page-body.fit-lab .fit-lab-card .button {
          bottom: -21px;
          right: 15%;
          width: 70%;
          margin: 0 auto;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; } }
      .page-body.fit-lab .fit-lab-card .button a {
        text-decoration: none; }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .button a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }
      .page-body.fit-lab .fit-lab-card .button span.label {
        color: var(--color-gradient-button-text);
        font-size: 28px;
        font-weight: 500;
        margin-right: 30px; }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .button span.label {
            font-size: 18px;
            margin-right: 18px; } }
      .page-body.fit-lab .fit-lab-card .button img {
        display: inline-block;
        margin-bottom: -1px; }
        @media (max-width: 767px) {
          .page-body.fit-lab .fit-lab-card .button img {
            width: 13px; } }
  .page-body.fit-lab .brochure {
    display: block;
    border-radius: 9px;
    margin-bottom: 75px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    background: #ed731e;
    background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
    background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
    @media (max-width: 767px) {
      .page-body.fit-lab .brochure {
        margin-bottom: 60px; } }
    .page-body.fit-lab .brochure a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 30px 30px 26px;
      text-decoration: none; }
      @media (max-width: 767px) {
        .page-body.fit-lab .brochure a {
          padding: 15px 15px 11px; } }
      .page-body.fit-lab .brochure a .icon {
        margin-right: 45px; }
        @media (max-width: 767px) {
          .page-body.fit-lab .brochure a .icon {
            margin-right: 15px; } }
        @media (max-width: 767px) {
          .page-body.fit-lab .brochure a .icon img {
            width: 48px; } }
        @media (max-width: 575px) {
          .page-body.fit-lab .brochure a .icon img {
            width: 32px; } }
      .page-body.fit-lab .brochure a .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; }
        .page-body.fit-lab .brochure a .text .title {
          font-size: 36px;
          font-weight: 700;
          color: var(--color-gradient-button-text); }
          @media (max-width: 767px) {
            .page-body.fit-lab .brochure a .text .title {
              font-size: 20px; } }
        .page-body.fit-lab .brochure a .text .subtitle {
          display: block; }
          .page-body.fit-lab .brochure a .text .subtitle span.label {
            color: var(--color-gradient-button-text);
            font-size: 28px;
            font-weight: 500;
            margin-right: 15px; }
            @media (max-width: 767px) {
              .page-body.fit-lab .brochure a .text .subtitle span.label {
                font-size: 16px;
                margin-right: 3px; } }
          .page-body.fit-lab .brochure a .text .subtitle img {
            display: inline-block;
            margin-bottom: -1px; }
            @media (max-width: 767px) {
              .page-body.fit-lab .brochure a .text .subtitle img {
                width: 11px; } }

.page-body.about .heading {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px; }
  @media (max-width: 991px) {
    .page-body.about .heading {
      font-size: 24px;
      line-height: 32px; } }
  .page-body.about .heading:after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: var(--color-primary); }
    @media (max-width: 767px) {
      .page-body.about .heading:after {
        width: 100%;
        bottom: -9px; } }

.page-body.about .partnerships .shadow-container {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
  border-radius: 15px; }
  @media (max-width: 767px) {
    .page-body.about .partnerships .shadow-container {
      border-radius: 9px; } }

.page-body.about .partnerships .listing {
  margin-top: 60px;
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 15px 15px 0 0; }
  @media (max-width: 767px) {
    .page-body.about .partnerships .listing {
      border-radius: 9px 9px 0 0; } }
  .page-body.about .partnerships .listing .entry {
    display: block;
    margin: 0 60px 45px; }
    @media (max-width: 991px) {
      .page-body.about .partnerships .listing .entry {
        margin: 0 45px 30px; } }
    @media (max-width: 767px) {
      .page-body.about .partnerships .listing .entry {
        margin: 0 9px 30px;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75); } }

.page-body.about .feature-image {
  width: 100%;
  border-radius: 0 0 15px 15px;
  margin-bottom: 60px;
  overflow: hidden; }
  @media (max-width: 767px) {
    .page-body.about .feature-image {
      border-radius: 0 0 9px 9px; } }
  .page-body.about .feature-image img {
    display: block;
    width: 100%; }

.page-body.about .feature-body {
  margin-bottom: 60px; }
  .page-body.about .feature-body .copy p {
    margin: 0 0 30px;
    font-size: 28px;
    font-weight: 400;
    line-height: 42px; }
    @media (max-width: 991px) {
      .page-body.about .feature-body .copy p {
        font-size: 24px;
        line-height: 36px; } }
    @media (max-width: 767px) {
      .page-body.about .feature-body .copy p {
        font-size: 18px;
        line-height: 28px; } }

.page-body.about .feature-achievements {
  margin-bottom: 60px; }
  .page-body.about .feature-achievements ul.accreditations {
    list-style: none;
    margin: 0 0 45px;
    padding: 0; }
    .page-body.about .feature-achievements ul.accreditations li {
      font-size: 28px;
      font-weight: 400;
      line-height: 42px;
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .page-body.about .feature-achievements ul.accreditations li {
          font-size: 24px;
          line-height: 36px;
          margin-bottom: 9px; } }
      @media (max-width: 767px) {
        .page-body.about .feature-achievements ul.accreditations li {
          font-size: 18px;
          line-height: 28px; } }
      .page-body.about .feature-achievements ul.accreditations li span.name {
        display: inline-block;
        font-weight: 800; }
      .page-body.about .feature-achievements ul.accreditations li span.title {
        display: inline-block; }
  .page-body.about .feature-achievements ul.milestones {
    list-style: none;
    margin: 0 0 60px;
    padding: 0; }
    .page-body.about .feature-achievements ul.milestones li {
      font-size: 28px;
      font-weight: 400;
      line-height: 42px;
      margin-bottom: 30px; }
      @media (max-width: 991px) {
        .page-body.about .feature-achievements ul.milestones li {
          font-size: 24px;
          line-height: 36px;
          margin-bottom: 21px; } }
      @media (max-width: 767px) {
        .page-body.about .feature-achievements ul.milestones li {
          font-size: 18px;
          line-height: 28px; } }
      .page-body.about .feature-achievements ul.milestones li .year {
        font-weight: 800;
        margin-bottom: 9px; }
        @media (max-width: 991px) {
          .page-body.about .feature-achievements ul.milestones li .year {
            margin-bottom: 6px; } }
      .page-body.about .feature-achievements ul.milestones li .milestone {
        font-weight: 400;
        margin-bottom: 9px; }
        @media (max-width: 991px) {
          .page-body.about .feature-achievements ul.milestones li .milestone {
            margin-bottom: 6px; } }

.page-body.contact .contact-card {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
  border-radius: 15px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .page-body.contact .contact-card {
      margin-bottom: 120px;
      border-radius: 9px; } }
  .page-body.contact .contact-card .top {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 21px 30px; }
    @media (max-width: 767px) {
      .page-body.contact .contact-card .top {
        padding: 15px 18px; } }
    .page-body.contact .contact-card .top .details .company-name {
      font-size: 28px;
      font-weight: 800;
      line-height: 42px; }
      @media (max-width: 991px) {
        .page-body.contact .contact-card .top .details .company-name {
          font-size: 24px;
          line-height: 36px; } }
      @media (max-width: 767px) {
        .page-body.contact .contact-card .top .details .company-name {
          font-size: 18px;
          line-height: 28px; } }
    .page-body.contact .contact-card .top .details .address {
      font-size: 28px;
      font-weight: 500;
      line-height: 42px; }
      @media (max-width: 991px) {
        .page-body.contact .contact-card .top .details .address {
          font-size: 24px;
          line-height: 36px; } }
      @media (max-width: 767px) {
        .page-body.contact .contact-card .top .details .address {
          font-size: 18px;
          line-height: 28px; } }
      .page-body.contact .contact-card .top .details .address a {
        color: inherit;
        text-decoration: underline; }
  .page-body.contact .contact-card .bottom {
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 15px 15px; }
    @media (max-width: 767px) {
      .page-body.contact .contact-card .bottom {
        border-radius: 0 0 9px 9px; } }
    .page-body.contact .contact-card .bottom .google-maps {
      width: 100%;
      height: 500px; }
      .page-body.contact .contact-card .bottom .google-maps iframe {
        width: 100%;
        height: 100%; }
  .page-body.contact .contact-card .cta-button {
    position: absolute;
    bottom: -27px;
    right: 5%;
    padding: 11px 18px 9px;
    border-radius: 9px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    background: #ed731e;
    background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
    background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
    @media (max-width: 767px) {
      .page-body.contact .contact-card .cta-button {
        bottom: -75px;
        right: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    .page-body.contact .contact-card .cta-button a {
      text-decoration: none; }
      @media (max-width: 767px) {
        .page-body.contact .contact-card .cta-button a {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
    .page-body.contact .contact-card .cta-button span.label {
      color: var(--color-gradient-button-text);
      font-size: 28px;
      font-weight: 500;
      margin-right: 30px; }
      @media (max-width: 767px) {
        .page-body.contact .contact-card .cta-button span.label {
          font-size: 18px;
          margin-right: 18px; } }
    .page-body.contact .contact-card .cta-button img {
      display: inline-block;
      margin-bottom: -1px; }
      @media (max-width: 767px) {
        .page-body.contact .contact-card .cta-button img {
          width: 13px; } }

.hero.shop .hero-text .container {
  top: calc(-50vw - 75px); }
  @media (max-width: 1199px) {
    .hero.shop .hero-text .container {
      top: -50vw; } }
  @media (max-width: 767px) {
    .hero.shop .hero-text .container {
      top: 0; } }

.page-body.shop {
  background-color: var(--color-secondary-bg);
  padding: 60px 0;
  margin-top: -135px; }
  @media (max-width: 1199px) {
    .page-body.shop {
      padding: 30px 0;
      margin-top: 0; } }
  @media (max-width: 767px) {
    .page-body.shop {
      padding: 0 0 15px; } }
  .page-body.shop .container {
    position: relative;
    z-index: 3; }
  .page-body.shop .shop-card {
    width: 100%;
    margin-bottom: 90px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px; }
    @media (max-width: 767px) {
      .page-body.shop .shop-card {
        margin-bottom: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .page-body.shop .shop-card .left {
      width: 50%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      border-radius: 15px 0 0 15px;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media (max-width: 991px) {
        .page-body.shop .shop-card .left {
          width: 30%; } }
      @media (max-width: 767px) {
        .page-body.shop .shop-card .left {
          display: none;
          width: 100%;
          height: 210px;
          -webkit-box-flex: unset;
          -ms-flex: unset;
          flex: unset;
          border-radius: 9px 9px 0 0; } }
    .page-body.shop .shop-card .right {
      width: 50%;
      height: 100%;
      background-color: var(--color-secondary-bg);
      overflow: hidden;
      border-radius: 0 15px 15px 0;
      padding: 30px 30px 45px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media (max-width: 991px) {
        .page-body.shop .shop-card .right {
          width: 70%;
          padding-bottom: 75px; } }
      @media (max-width: 767px) {
        .page-body.shop .shop-card .right {
          border-radius: 9px;
          padding: 15px 15px 45px;
          width: 100%; } }
      .page-body.shop .shop-card .right .title {
        font-size: 28px;
        font-weight: 700;
        position: relative; }
        .page-body.shop .shop-card .right .title:after {
          display: block;
          position: relative;
          content: '';
          width: 100%;
          height: 3px;
          bottom: -12px;
          margin-bottom: 30px;
          left: 0;
          background-color: var(--color-primary); }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .right .title {
            font-size: 22px;
            font-weight: 500; } }
      .page-body.shop .shop-card .right .copy p {
        font-size: 22px;
        line-height: 34px;
        margin: 0 0 30px; }
        @media (max-width: 991px) {
          .page-body.shop .shop-card .right .copy p {
            font-size: 20px;
            line-height: 30px; } }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .right .copy p {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 15px; } }
      .page-body.shop .shop-card .right .price {
        font-size: 28px;
        font-weight: 500;
        width: 100%;
        text-align: right; }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .right .price {
            font-size: 22px;
            text-align: left; } }
      .page-body.shop .shop-card .right .options {
        display: none; }
    .page-body.shop .shop-card .button {
      position: absolute;
      bottom: -27px;
      right: 10%;
      padding: 11px 18px 9px;
      border-radius: 9px;
      -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      background: #ed731e;
      background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
      background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
      @media (max-width: 991px) {
        .page-body.shop .shop-card .button {
          right: 30px; } }
      @media (max-width: 767px) {
        .page-body.shop .shop-card .button {
          bottom: -21px;
          right: 15%;
          width: 70%;
          margin: 0 auto;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; } }
      .page-body.shop .shop-card .button a {
        text-decoration: none; }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .button a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }
      .page-body.shop .shop-card .button span.label {
        color: var(--color-gradient-button-text);
        font-size: 28px;
        font-weight: 500;
        margin-right: 30px; }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .button span.label {
            font-size: 18px;
            margin-right: 18px; } }
      .page-body.shop .shop-card .button img {
        display: inline-block;
        margin-bottom: -1px; }
        @media (max-width: 767px) {
          .page-body.shop .shop-card .button img {
            width: 13px; } }
  .page-body.shop .brochure {
    display: block;
    border-radius: 9px;
    margin-bottom: 75px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    background: #ed731e;
    background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
    background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
    background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
    @media (max-width: 767px) {
      .page-body.shop .brochure {
        margin-bottom: 60px; } }
    .page-body.shop .brochure a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 30px 30px 26px;
      text-decoration: none; }
      @media (max-width: 767px) {
        .page-body.shop .brochure a {
          padding: 15px 15px 11px; } }
      .page-body.shop .brochure a .icon {
        margin-right: 45px; }
        @media (max-width: 767px) {
          .page-body.shop .brochure a .icon {
            margin-right: 15px; } }
        @media (max-width: 767px) {
          .page-body.shop .brochure a .icon img {
            width: 48px; } }
        @media (max-width: 575px) {
          .page-body.shop .brochure a .icon img {
            width: 32px; } }
      .page-body.shop .brochure a .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; }
        .page-body.shop .brochure a .text .title {
          font-size: 36px;
          font-weight: 700;
          color: var(--color-gradient-button-text); }
          @media (max-width: 767px) {
            .page-body.shop .brochure a .text .title {
              font-size: 20px; } }
        .page-body.shop .brochure a .text .subtitle {
          display: block; }
          .page-body.shop .brochure a .text .subtitle span.label {
            color: var(--color-gradient-button-text);
            font-size: 28px;
            font-weight: 500;
            margin-right: 15px; }
            @media (max-width: 767px) {
              .page-body.shop .brochure a .text .subtitle span.label {
                font-size: 16px;
                margin-right: 3px; } }
          .page-body.shop .brochure a .text .subtitle img {
            display: inline-block;
            margin-bottom: -1px; }
            @media (max-width: 767px) {
              .page-body.shop .brochure a .text .subtitle img {
                width: 11px; } }

.hero.product {
  height: 900px; }
  @media (max-width: 767px) {
    .hero.product {
      margin-bottom: 0;
      height: 900px; } }
  .hero.product .overlay {
    background-color: rgba(255, 255, 255, 0); }
    .hero.product .overlay .secondary-overlay {
      background-color: white; }

.page-body.product {
  margin-top: -900px;
  padding-top: 250px; }
  @media (max-width: 767px) {
    .page-body.product {
      margin-top: -900px;
      padding-top: 150px; } }
  .page-body.product .container {
    position: relative;
    z-index: 3; }
  .page-body.product .product-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 78px;
    margin-bottom: 60px;
    width: 80%; }
    @media (max-width: 767px) {
      .page-body.product .product-title {
        font-size: 44px;
        line-height: 48px;
        margin-bottom: 30px; } }
  .page-body.product .product-details {
    width: 100%;
    margin-bottom: 150px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px; }
    @media (max-width: 767px) {
      .page-body.product .product-details {
        margin-bottom: 75px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 9px; } }
    .page-body.product .product-details .left {
      width: 66%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      border-radius: 15px 0 0 15px;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media (max-width: 991px) {
        .page-body.product .product-details .left {
          width: 50%; } }
      @media (max-width: 767px) {
        .page-body.product .product-details .left {
          width: 100%;
          height: 210px;
          -webkit-box-flex: unset;
          -ms-flex: unset;
          flex: unset;
          border-radius: 9px 9px 0 0; } }
    .page-body.product .product-details .right {
      width: 34%;
      height: 100%;
      background-color: var(--color-secondary-bg);
      overflow: hidden;
      border-radius: 0 15px 15px 0;
      padding: 45px 30px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media (max-width: 991px) {
        .page-body.product .product-details .right {
          width: 50%;
          padding-bottom: 90px; } }
      @media (max-width: 767px) {
        .page-body.product .product-details .right {
          border-radius: 0 0 9px 9px;
          padding: 15px;
          width: 100%; } }
      .page-body.product .product-details .right .content .preamble {
        font-size: 28px;
        font-weight: 700;
        line-height: 36px;
        position: relative; }
        @media (max-width: 767px) {
          .page-body.product .product-details .right .content .preamble {
            font-size: 22px; } }
      .page-body.product .product-details .right .content .description p {
        font-size: 22px;
        line-height: 32px;
        margin: 0 0 30px; }
        @media (max-width: 991px) {
          .page-body.product .product-details .right .content .description p {
            font-size: 20px;
            line-height: 28px; } }
        @media (max-width: 767px) {
          .page-body.product .product-details .right .content .description p {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 15px; } }
    .page-body.product .product-details .button {
      position: absolute;
      bottom: -27px;
      right: 7%;
      padding: 11px 18px 9px;
      border-radius: 9px;
      -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      background: #ed731e;
      background: -moz-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: -webkit-gradient(linear, left top, right top, from(#ed731e), to(#d63f0d));
      background: -o-linear-gradient(left, #ed731e 0%, #d63f0d 100%);
      background: linear-gradient(to right, #ed731e 0%, #d63f0d 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed731e', endColorstr='#d63f0d',GradientType=1 ); }
      @media (max-width: 991px) {
        .page-body.product .product-details .button {
          right: 30px; } }
      @media (max-width: 767px) {
        .page-body.product .product-details .button {
          bottom: -21px;
          right: 15%;
          width: 70%;
          margin: 0 auto;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; } }
      .page-body.product .product-details .button a {
        text-decoration: none; }
        @media (max-width: 767px) {
          .page-body.product .product-details .button a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }
      .page-body.product .product-details .button span.label {
        color: var(--color-gradient-button-text);
        font-size: 28px;
        font-weight: 500;
        margin-right: 30px; }
        @media (max-width: 767px) {
          .page-body.product .product-details .button span.label {
            font-size: 18px;
            margin-right: 18px; } }
      .page-body.product .product-details .button img {
        display: inline-block;
        margin-bottom: -1px; }
        @media (max-width: 767px) {
          .page-body.product .product-details .button img {
            width: 13px; } }
  .page-body.product .related {
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 767px) {
      .page-body.product .related {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 3px; } }
    .page-body.product .related .left {
      width: 40%;
      padding-right: 30px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media (max-width: 767px) {
        .page-body.product .related .left {
          width: 100%;
          padding-right: 0;
          margin-bottom: 21px; } }
      .page-body.product .related .left p {
        display: block;
        font-size: 28px;
        font-weight: 400;
        line-height: 36px;
        margin: 0 0 15px; }
        @media (max-width: 767px) {
          .page-body.product .related .left p {
            font-size: 18px;
            line-height: 28px;
            text-align: center;
            margin: 0 0 9px; } }
      .page-body.product .related .left .product-name a {
        font-size: 28px;
        font-weight: 800px;
        line-height: 36px;
        text-decoration: none;
        color: var(--color-primary); }
        @media (max-width: 767px) {
          .page-body.product .related .left .product-name a {
            display: block;
            text-align: center;
            font-size: 22px;
            line-height: 36px; } }
    .page-body.product .related .right {
      width: 60%;
      border-radius: 15px;
      height: 300px;
      overflow: hidden;
      -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.36); }
      @media (max-width: 767px) {
        .page-body.product .related .right {
          width: 100%;
          height: 240px;
          border-radius: 9px; } }
      .page-body.product .related .right a {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }

.hero.experience {
  height: 900px; }
  @media (max-width: 767px) {
    .hero.experience {
      margin-bottom: 0;
      height: 900px; } }
  .hero.experience .overlay {
    background-color: rgba(255, 255, 255, 0); }
    .hero.experience .overlay .secondary-overlay {
      background-color: white; }

.page-body.experience {
  margin-top: -900px;
  padding-top: 250px; }
  @media (max-width: 767px) {
    .page-body.experience {
      margin-top: -900px;
      padding-top: 150px; } }
  .page-body.experience .container {
    position: relative;
    z-index: 3; }
  .page-body.experience .experience-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 78px;
    margin-bottom: 45px;
    width: 80%; }
    @media (max-width: 767px) {
      .page-body.experience .experience-title {
        font-size: 44px;
        line-height: 48px;
        margin-bottom: 30px; } }
  .page-body.experience .experience-image {
    width: 100%;
    height: 600px;
    margin-bottom: 60px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--color-white);
    background-position: center;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px; }
    @media (max-width: 767px) {
      .page-body.experience .experience-image {
        height: 300px;
        margin-bottom: 45px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 9px; } }
  .page-body.experience .experience-content p {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    margin: 0 0 30px; }
    @media (max-width: 767px) {
      .page-body.experience .experience-content p {
        font-size: 22px;
        line-height: 34px; } }
  .page-body.experience .experience-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    padding-bottom: 3px;
    border-bottom: 3px solid var(--color-primary);
    margin: 15px 0 45px;
    display: inline-block; }
    @media (max-width: 767px) {
      .page-body.experience .experience-content h3 {
        font-size: 22px;
        line-height: 34px;
        margin: 15px 0 30px; } }
  .page-body.experience .experience-content blockquote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    clear: both;
    margin: 0 0 30px; }
    @media (max-width: 767px) {
      .page-body.experience .experience-content blockquote {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .page-body.experience .experience-content blockquote .alignright {
      float: right;
      margin-left: 30px; }
      @media (max-width: 767px) {
        .page-body.experience .experience-content blockquote .alignright {
          float: none;
          margin-left: 0;
          margin-top: 15px;
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2; } }
    .page-body.experience .experience-content blockquote .alignleft {
      float: left;
      margin-right: 30px; }
      @media (max-width: 767px) {
        .page-body.experience .experience-content blockquote .alignleft {
          float: none;
          margin-right: 0;
          margin-bottom: 15px;
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1; } }
    .page-body.experience .experience-content blockquote p {
      font-size: 36px;
      line-height: 50px;
      font-weight: 700;
      font-style: italic;
      margin-bottom: 0; }
      @media (max-width: 767px) {
        .page-body.experience .experience-content blockquote p {
          font-size: 28px;
          line-height: 38px; } }
    .page-body.experience .experience-content blockquote img {
      max-width: 50%;
      height: auto !important;
      width: auto !important; }
      @media (max-width: 767px) {
        .page-body.experience .experience-content blockquote img {
          max-width: 100%; } }

.hero.shop .hero-text .container {
  top: calc(-50vw - 75px); }
  @media (max-width: 1199px) {
    .hero.shop .hero-text .container {
      top: -50vw; } }
  @media (max-width: 767px) {
    .hero.shop .hero-text .container {
      top: 0; } }

.page-body.experience-page {
  background-color: var(--color-secondary-bg);
  padding: 60px 0; }
  @media (max-width: 1199px) {
    .page-body.experience-page {
      padding: 30px 0;
      margin-top: 0; } }
  @media (max-width: 767px) {
    .page-body.experience-page {
      padding: 0 0 15px; } }
  .page-body.experience-page .container {
    position: relative;
    z-index: 3; }
  .page-body.experience-page .experience-collective {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .page-body.experience-page .experience-card {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 60px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.36);
    border-radius: 15px;
    overflow: hidden; }
    @media (max-width: 767px) {
      .page-body.experience-page .experience-card {
        width: 100%;
        margin-right: 0; } }
    .page-body.experience-page .experience-card:nth-child(even) {
      margin-right: 0; }
    .page-body.experience-page .experience-card a {
      text-decoration: none;
      outline: none; }
    .page-body.experience-page .experience-card .top {
      background-color: var(--color-very-light-gray);
      padding: 12px 24px; }
      @media (max-width: 991px) {
        .page-body.experience-page .experience-card .top {
          padding: 12px 18px; } }
      .page-body.experience-page .experience-card .top .title {
        font-size: 28px;
        font-weight: 400;
        line-height: 34px;
        position: relative;
        color: var(--color-medium-gray); }
        @media (max-width: 991px) {
          .page-body.experience-page .experience-card .top .title {
            font-size: 22px;
            line-height: 28px;
            font-weight: 400; } }
    .page-body.experience-page .experience-card .bottom {
      background-repeat: no-repeat;
      background-size: cover;
      background-color: var(--color-very-light-gray);
      background-position: center;
      width: 100%;
      height: 300px; }
