@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,800&family=Public+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Source Sans Pro",Arial,sans-serif;
  color: #333333; }

.body-padding {
  padding-top: 88px; }
  @media (max-width: 767.9px) {
    .body-padding {
      padding-top: 58px; } }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a.btn {
  height: 58px;
  border: 0;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  padding: 0 30px;
  display: inline-block;
  transition: all .3s ease-in-out;
  white-space: nowrap;
  min-width: 228px;
  background: #E8B227;
  border-radius: 36px;
  border: 2px solid #E8B227; }
  a.btn:visited {
    color: #FFFFFF; }
  @media (max-width: 767.9px) {
    a.btn {
      width: 100%; } }
  a.btn:hover {
    color: #FFFFFF;
    background-color: #DD9300;
    border: 2px solid #DD9300; }
  a.btn.clear {
    background: transparent;
    color: #E8B227;
    line-height: 56px; }
    a.btn.clear:hover {
      color: #FFFFFF;
      background-color: #D69F14;
      border: 2px solid #D69F14; }

a:not(.btn) {
  text-decoration: none;
  transition: all .3s ease-in-out; }
  a:not(.btn):hover {
    color: #DD9300;
    text-decoration: none; }

b {
  font-weight: 800; }

.nowrap {
  white-space: nowrap; }

.shake {
  animation: shake 10s ease infinite; }

@keyframes shake {
  0%, 100% {
    transform: translateY(0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translateY(-10px); }
  20%, 40%, 60%, 80% {
    transform: translateY(10px); } }
nav {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  transition: all .3s ease-in-out;
  z-index: 100;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  top: 0;
  opacity: 1; }
  nav.nav-fixed {
    position: fixed; }
  @media (max-width: 991.9px) {
    nav {
      box-shadow: none; } }
  nav .inner-nav {
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    @media (max-width: 1200px) {
      nav .inner-nav {
        max-width: 100%;
        padding: 13px 19px; } }
    @media (max-width: 991.9px) {
      nav .inner-nav {
        padding: 0 19px;
        height: 79px;
        max-width: 100%; } }
    nav .inner-nav ul.top-nav {
      display: flex;
      justify-content: space-between; }
      nav .inner-nav ul.top-nav .logo {
        align-self: center; }
        @media (max-width: 991.9px) {
          nav .inner-nav ul.top-nav .logo {
            width: 100%; } }
        nav .inner-nav ul.top-nav .logo a {
          display: block; }
          nav .inner-nav ul.top-nav .logo a img {
            max-width: 158px; }
            @media (max-width: 991.9px) {
              nav .inner-nav ul.top-nav .logo a img {
                max-width: 127px; } }
      nav .inner-nav ul.top-nav .nav-btn {
        display: flex;
        justify-content: end; }
        @media (max-width: 991.9px) {
          nav .inner-nav ul.top-nav .nav-btn {
            display: none; } }
        nav .inner-nav ul.top-nav .nav-btn ul {
          margin-right: 25px; }
          nav .inner-nav ul.top-nav .nav-btn ul li a {
            display: inline-block;
            font-family: 'IBM Plex Sans';
            font-style: normal;
            font-weight: 600;
            font-size: 17px;
            line-height: 28px;
            text-align: center;
            color: #2A363D;
            line-height: 58px;
            padding: 0 10px;
            margin-right: 15px;
            transition: all .3s ease-in-out; }
            nav .inner-nav ul.top-nav .nav-btn ul li a:hover {
              color: #E8B227; }
    nav .inner-nav .nav-links {
      flex-grow: 1; }
    nav .inner-nav .menu-toggle {
      display: none;
      font-size: 30px;
      font-weight: 300;
      letter-spacing: 0.65px;
      line-height: 79px;
      color: #333333;
      cursor: pointer; }
      nav .inner-nav .menu-toggle .fa-bars:before {
        font-weight: bold; }
      @media (max-width: 991.9px) {
        nav .inner-nav .menu-toggle {
          display: block; } }

.dropdownmenu-wrapper {
  width: 410px;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 26px;
  right: 0;
  z-index: 100;
  transition: all .3s ease-in-out;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08); }
  @media (max-width: 991.9px) {
    .dropdownmenu-wrapper {
      width: 380px; } }
  .dropdownmenu-wrapper.open {
    max-height: 529px; }
  .dropdownmenu-wrapper .dropdownmenu {
    padding: 72px 45px 45px;
    background: #FFFFFF;
    position: relative;
    border-bottom: 2px solid #F8A500; }
    @media (max-width: 991.9px) {
      .dropdownmenu-wrapper .dropdownmenu {
        padding: 25px 45px 45px; } }
    .dropdownmenu-wrapper .dropdownmenu .close-btn {
      cursor: pointer;
      position: absolute;
      top: 13px;
      right: 18px; }
      .dropdownmenu-wrapper .dropdownmenu .close-btn i {
        color: #333333;
        font-size: 30px;
        transition: all .3s ease-in-out; }
        .dropdownmenu-wrapper .dropdownmenu .close-btn i:hover {
          color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu .logo {
      margin-bottom: 41px;
      display: none; }
      @media (max-width: 991.9px) {
        .dropdownmenu-wrapper .dropdownmenu .logo {
          display: block; } }
      .dropdownmenu-wrapper .dropdownmenu .logo img {
        width: 127px; }
    .dropdownmenu-wrapper .dropdownmenu ul.links-list li {
      margin-bottom: 16px; }
      .dropdownmenu-wrapper .dropdownmenu ul.links-list li a {
        font-size: 19px;
        line-height: 31px;
        text-decoration: none;
        color: #333333;
        transition: all .3s ease-in-out; }
        .dropdownmenu-wrapper .dropdownmenu ul.links-list li a:hover {
          color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu ul.social-links {
      border-top: 1px solid #EBEBEB;
      display: flex;
      justify-content: start;
      padding-top: 33px;
      margin-bottom: 36px;
      flex-wrap: wrap; }
      .dropdownmenu-wrapper .dropdownmenu ul.social-links li {
        width: 50%;
        margin-bottom: 10px; }
        .dropdownmenu-wrapper .dropdownmenu ul.social-links li a {
          font-weight: 600;
          font-size: 15px;
          line-height: 29px;
          text-decoration: none;
          color: #333333;
          transition: all .3s ease-in-out; }
          .dropdownmenu-wrapper .dropdownmenu ul.social-links li a:hover {
            color: #DD9300; }
          .dropdownmenu-wrapper .dropdownmenu ul.social-links li a i {
            font-size: 24px;
            margin-right: 22px;
            line-height: 29px;
            vertical-align: middle; }
            .dropdownmenu-wrapper .dropdownmenu ul.social-links li a i:hover {
              color: #DD9300; }
    .dropdownmenu-wrapper .dropdownmenu .btn {
      font-size: 16px;
      min-width: 270px; }

.dots {
  position: absolute;
  border-radius: 100%;
  z-index: 1; }

.dots-gold {
  background: #E8B227; }

.dots-green {
  background: #A0B980; }

.dots-blue {
  background: #89A3AF; }

body .content-wrapper .fal, body .content-wrapper .far {
  font-family: "Font Awesome 5 Pro"; }
body .content-wrapper h1 {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 52px;
  text-align: center;
  color: #2A363D; }
  @media (max-width: 991.9px) {
    body .content-wrapper h1 {
      font-size: 32px;
      line-height: 36px;
      text-align: ; } }
body .content-wrapper h2 {
  color: #2A363D;
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 41px;
  line-height: 48px;
  padding-bottom: 0;
  margin-bottom: 0; }
  @media (max-width: 767.9px) {
    body .content-wrapper h2 {
      font-size: 30px;
      line-height: 36px; } }
body .content-wrapper h3 {
  color: #2A363D;
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 42px;
  padding-bottom: 0;
  margin-bottom: 0;
  letter-spacing: 0px; }
  @media (max-width: 767.9px) {
    body .content-wrapper h3 {
      font-size: 24px;
      line-height: 32px; } }
body .content-wrapper h4 {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #89A3AF; }
  @media (max-width: 991.9px) {
    body .content-wrapper h4 {
      font-size: 14px;
      line-height: 23px;
      text-align: center; } }
body .content-wrapper h5 {
  color: #2A363D;
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  padding-bottom: 0;
  margin-bottom: 0; }
  @media (max-width: 767.9px) {
    body .content-wrapper h5 {
      font-size: 17px;
      line-height: 22px; } }
body .content-wrapper p {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  color: #2A363D; }
  @media (max-width: 991.9px) {
    body .content-wrapper p {
      font-size: 18px;
      line-height: 28px;
      text-align: left; } }
body .content-wrapper b {
  font-weight: 800; }
body .content-wrapper .caption {
  color: #89A3AF;
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 0; }
  @media (max-width: 767.9px) {
    body .content-wrapper .caption {
      font-size: 14px;
      line-height: 18px; } }
body .content-wrapper a.bttn, body .content-wrapper .bttn {
  background: #E8B227;
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 48px;
  min-width: 206px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 48px;
  color: #FFFFFF;
  transition: all .3s ease-in-out;
  display: inline-block;
  padding: 0 32px;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  text-decoration: none; }
  body .content-wrapper a.bttn:hover, body .content-wrapper .bttn:hover {
    background: #D69F14; }
  body .content-wrapper a.bttn.disabled, body .content-wrapper .bttn.disabled {
    background: #D6D8DD;
    cursor: default; }
  body .content-wrapper a.bttn.light, body .content-wrapper .bttn.light {
    background: rgba(232, 178, 39, 0.16);
    color: #E8B227; }
    body .content-wrapper a.bttn.light:hover, body .content-wrapper .bttn.light:hover {
      color: #D69F14;
      background: rgba(232, 178, 39, 0.4); }
    body .content-wrapper a.bttn.light.disabled, body .content-wrapper .bttn.light.disabled {
      background: rgba(69, 71, 77, 0.08);
      color: #C8CAD0;
      cursor: default; }
  body .content-wrapper a.bttn.small, body .content-wrapper .bttn.small {
    line-height: 34px;
    height: 34px;
    min-width: 0;
    padding: 0 14px;
    text-transform: none; }
  body .content-wrapper a.bttn.round, body .content-wrapper .bttn.round {
    background: rgba(232, 178, 39, 0.16);
    color: #E8B227;
    width: 48px;
    height: 48px;
    border-radius: 36px;
    min-width: 48px; }
    body .content-wrapper a.bttn.round:hover, body .content-wrapper .bttn.round:hover {
      color: #D69F14;
      background: rgba(232, 178, 39, 0.4); }
    body .content-wrapper a.bttn.round.disabled, body .content-wrapper .bttn.round.disabled {
      background: rgba(69, 71, 77, 0.08);
      color: #C8CAD0;
      cursor: default; }
    body .content-wrapper a.bttn.round:before, body .content-wrapper .bttn.round:before {
      font-size: 14px;
      font-family: 'Font Awesome 6 Pro'; }
    body .content-wrapper a.bttn.round.left:before, body .content-wrapper .bttn.round.left:before {
      content: '\f053'; }
    body .content-wrapper a.bttn.round.right:before, body .content-wrapper .bttn.round.right:before {
      content: '\f054'; }
    body .content-wrapper a.bttn.round.down:before, body .content-wrapper .bttn.round.down:before {
      content: '\f078'; }
    body .content-wrapper a.bttn.round.up:before, body .content-wrapper .bttn.round.up:before {
      content: '\f077'; }
body .content-wrapper a.bttn-text, body .content-wrapper .bttn-text {
  color: #E8B227;
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.12em;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  text-decoration: none; }
  body .content-wrapper a.bttn-text:after, body .content-wrapper .bttn-text:after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f054';
    margin-left: 5px;
    font-size: 14px;
    transition: all .3s ease-in-out; }
  body .content-wrapper a.bttn-text:hover:after, body .content-wrapper .bttn-text:hover:after {
    margin-left: 10px; }
  body .content-wrapper a.bttn-text.arrow:after, body .content-wrapper .bttn-text.arrow:after {
    content: '\f061'; }
  body .content-wrapper a.bttn-text.disbled, body .content-wrapper .bttn-text.disbled {
    background: #D6D8DD;
    cursor: default; }
  body .content-wrapper a.bttn-text.none:after, body .content-wrapper .bttn-text.none:after {
    display: none; }
  body .content-wrapper a.bttn-text.download:after, body .content-wrapper .bttn-text.download:after {
    content: ''; }
  body .content-wrapper a.bttn-text.download:before, body .content-wrapper .bttn-text.download:before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f054';
    margin-right: 5px;
    content: '\e094';
    font-size: 14px;
    transition: all .3s ease-in-out; }
body .content-wrapper .gradient-text {
  background: -webkit-linear-gradient(0deg, #BF973D 0%, #BD866C 47.4%, #6E8695 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
body .content-wrapper .arch {
  position: relative; }
  body .content-wrapper .arch .container {
    position: relative;
    z-index: 2; }
  body .content-wrapper .arch:after {
    content: '';
    width: 100%;
    height: 100px;
    height: 36%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  body .content-wrapper .arch.flip:after {
    transform: rotate(180deg);
    top: 0; }
  body .content-wrapper .arch.night:after {
    background-image: url("../images/bg-arches/arch_core-night.png"); }
  body .content-wrapper .arch.day:after {
    background-image: url("../images/bg-arches/arch_day-light.png"); }
  body .content-wrapper .arch.light1:after {
    background-image: url("../images/bg-arches/arch_light-01.png"); }
  body .content-wrapper .arch.light2:after {
    background-image: url("../images/bg-arches/arch_light-02.png"); }
  body .content-wrapper .arch.light3:after {
    background-image: url("../images/bg-arches/arch_light-03.png"); }
  body .content-wrapper .arch.white:after {
    background-image: url("../images/bg-arches/arch_white.png"); }
body .content-wrapper .diag {
  position: relative; }
  body .content-wrapper .diag .container {
    position: relative;
    z-index: 2; }
  body .content-wrapper .diag:after {
    content: '';
    width: 100%;
    height: 100px;
    height: 36%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    right: 0; }
  body .content-wrapper .diag.bot-core-light:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-core-day-light.png"); }
  body .content-wrapper .diag.bot-core-night:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-core-night.png"); }
  body .content-wrapper .diag.bot-light1:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-light_01.png"); }
  body .content-wrapper .diag.bot-light2:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-light_02.png"); }
  body .content-wrapper .diag.bot-light3:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-light_03.png"); }
  body .content-wrapper .diag.bot-white:after {
    background-position: bottom center;
    bottom: 0;
    background-image: url("../images/bg-diagonals/diagonal-bottom-white.png"); }
  body .content-wrapper .diag.top-core-light:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-core-day-light.png"); }
  body .content-wrapper .diag.top-core-night:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-core-night.png"); }
  body .content-wrapper .diag.top-light1:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-light_01.png"); }
  body .content-wrapper .diag.top-light2:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-light_02.png"); }
  body .content-wrapper .diag.top-light3:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-light_03.png"); }
  body .content-wrapper .diag.top-white:after {
    background-position: top center;
    top: 0;
    background-image: url("../images/bg-diagonals/diagonal-top-white.png"); }
 body .content-wrapper footer {
  position: relative;
  z-index: 1; } 
body .content-wrapper .container {
  background-color: transparent !important; }
body .content-wrapper section#hero {
  padding: 50px 0 50px 0;
  background-color: #FCFAF7; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#hero {
      padding: 50px 0 0px 0; } }
  body .content-wrapper section#hero .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    width: 100%; }
  body .content-wrapper section#hero .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#hero .container {
      padding: 0; } }
  body .content-wrapper section#hero .left-content {
    text-align: left;
    padding-right: 50px;
    padding-top: 70px; }
    body .content-wrapper section#hero .left-content .img-wrapper {
      text-align: left;
      margin-bottom: 30px; }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .left-content .img-wrapper {
          text-align: center; } }
      body .content-wrapper section#hero .left-content .img-wrapper img {
        max-width: 373.77px;
        width: 100%; }
        @media (max-width: 767.9px) {
          body .content-wrapper section#hero .left-content .img-wrapper img {
            max-width: 258px; } }
    body .content-wrapper section#hero .left-content .caption {
      color: var(--Main-Blue, #89A3AF);
      font-feature-settings: 'clig' off, 'liga' off;
      font-family: IBM Plex Sans;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      letter-spacing: 1.92px;
      text-transform: uppercase;
      margin-bottom: 30px; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#hero .left-content {
        text-align: center;
        padding-top: 30px;
        padding-right: 0px;
        padding: 0 15px; } }
    body .content-wrapper section#hero .left-content h1 {
      margin-bottom: 30px;
      font-size: 72px;
      font-style: normal;
      font-weight: 400;
      line-height: 78px;
      color: #89A3AF;
      text-align: left; }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .left-content h1 {
          font-family: Public Sans;
          font-size: 50px;
          font-style: normal;
          line-height: 56px;
          text-align: center; } }
    body .content-wrapper section#hero .left-content p {
      margin-bottom: 30px;
      color: #384D56;
      font-family: "IBM Plex Sans";
      font-size: 23px;
      font-style: normal;
      font-weight: 700;
      line-height: 33px;
      text-align: left; }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .left-content p {
          text-align: center;
          font-family: IBM Plex Sans;
          font-size: 18px;
          font-style: normal;
          line-height: 28px; } }
      body .content-wrapper section#hero .left-content p span {
        color: var(--Main-Green, #A0B980);
        font-weight: 700; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#hero .left-content p {
          margin: 0 auto 23px; } }
    @media (max-width: 991.9px) {
      body .content-wrapper section#hero .left-content .btns-wrapper {
        display: block;
        text-align: center; } }
    body .content-wrapper section#hero .left-content .btns-wrapper a.bttn {
      display: inline-block;
      min-width: 206px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#hero .left-content .btns-wrapper a.bttn {
          margin-bottom: 21px;
          margin-left: 10px;
          margin-right: 10px; } }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .left-content .btns-wrapper a.bttn {
          min-width: 0; } }
      body .content-wrapper section#hero .left-content .btns-wrapper a.bttn.bttn1 {
        margin-right: 10px;
        margin-bottom: 20px; }
        @media (max-width: 767.9px) {
          body .content-wrapper section#hero .left-content .btns-wrapper a.bttn.bttn1 {
            margin-right: 0; } }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .left-content .btns-wrapper a.bttn.bttn2 {
          margin-left: 0; } }
  body .content-wrapper section#hero .right-content {
    align-self: center; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#hero .right-content {
        margin-top: 0px; } }
    body .content-wrapper section#hero .right-content img {
      height: auto;
      max-width: 100%; }
    body .content-wrapper section#hero .right-content .img-wrapper {
      position: relative;
      cursor: pointer; }
      body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper {
        position: absolute;
        bottom: 95px;
        left: 0px;
        right: 35px;
        width: 140px;
        height: 140px;
        margin: auto;
        cursor: pointer; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper {
            bottom: 25%;
            left: 0px;
            right: 0; } }
        @media (max-width: 767.9px) {
          body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper {
            width: 110.42px;
            height: 110.42px;
            bottom: 48px; } }
        body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper img {
          transition: all .3s ease-in-out;
          position: absolute;
          width: 140px; }
        body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper img.play {
          opacity: 1; }
        body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper img.play-hover {
          opacity: 0; }
        body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper:hover img.play {
          opacity: 0; }
        body .content-wrapper section#hero .right-content .img-wrapper .play-wrapper:hover img.play-hover {
          opacity: 1; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#hero .right-content .btns-wrapper {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 30px; } }
    body .content-wrapper section#hero .right-content .btns-wrapper a.bttn {
      display: inline-block;
      min-width: 206px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#hero .right-content .btns-wrapper a.bttn {
          margin-bottom: 21px;
          margin-left: 10px;
          margin-right: 10px; } }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .right-content .btns-wrapper a.bttn {
          min-width: 0;
          width: 258px; } }
      body .content-wrapper section#hero .right-content .btns-wrapper a.bttn.bttn1 {
        margin-right: 10px;
        margin-bottom: 20px; }
        @media (max-width: 767.9px) {
          body .content-wrapper section#hero .right-content .btns-wrapper a.bttn.bttn1 {
            margin-right: 0;
            margin-left: 0; } }
      @media (max-width: 767.9px) {
        body .content-wrapper section#hero .right-content .btns-wrapper a.bttn.bttn2 {
          margin-left: 0;
          margin-right: 0; } }
body .content-wrapper section#together {
  background: url("../images/desktop/03_arch.png"), linear-gradient(180deg, #715F58 2.88%, #1A3E53 43.78%, #233137 90.13%);
  padding: 90px 0 72px;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat; }
  @media (max-width: 767.9px) {
    body .content-wrapper section#together {
      padding: 45px 0 55px; } }
  body .content-wrapper section#together .container > p {
    max-width: 751px;
    margin-left: auto;
    margin-right: auto; }
  body .content-wrapper section#together h3 {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 23px;
    line-height: 33px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 58px;
    max-width: 724px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#together h3 {
        margin-bottom: 40px; } }
    body .content-wrapper section#together h3 b {
      font-weight: 700; }
  body .content-wrapper section#together .box {
    padding: 0 25px 0 0;
    text-align: center; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#together .box {
        padding: 0 10px; } }
    @media (max-width: 767.9px) {
      body .content-wrapper section#together .box {
        padding: 0;
        margin-bottom: 28px; } }
    body .content-wrapper section#together .box img {
      max-width: 84px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#together .box img {
          max-width: 80px;
          display: inline-block;
          vertical-align: top; } }
    body .content-wrapper section#together .box b {
      padding-bottom: 7px;
      margin-bottom: 0;
      padding-left: 18px;
      border-left: 2px solid #FFFFFF99;
      display: block;
      color: #FFF;
      font-family: "IBM Plex Sans";
      font-size: 23px;
      font-style: normal;
      font-weight: 700;
      line-height: 33px;
      /* 143.478% */
      text-transform: uppercase;
      text-align: left; }
    body .content-wrapper section#together .box p {
      color: #FFF;
      font-family: "IBM Plex Sans";
      font-size: 19px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px;
      padding-left: 18px;
      text-align: left;
      border-left: 2px solid #FFFFFF33; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#together .box p {
          display: inline-block;
          width: calc(100% - 90px);
          text-align: left;
          padding-left: 25px;
          margin-top: 0;
          margin-bottom: 0; } }
  @media (max-width: 991.9px) and (max-width: 767.9px) {
    body .content-wrapper section#together .box p {
      width: 100%; } }

body .content-wrapper section#solutions {
  background-color: #fff;
  padding: 141px 0 111px; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#solutions {
      padding: 45px 0 55px; } }
  body .content-wrapper section#solutions .container > p {
    max-width: 944px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 63px; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#solutions .container > p {
        margin-bottom: 38px; } }
  @media (max-width: 991.9px) {
    body .content-wrapper section#solutions .box {
      margin-bottom: 37px; } }
  body .content-wrapper section#solutions .box .img-wrapper {
    padding-bottom: 17px;
    padding-left: 30px;
    border-left: 2px solid #EFF4F6; }
    body .content-wrapper section#solutions .box .img-wrapper img {
      max-width: 72px;
      width: 100%; }
  body .content-wrapper section#solutions .box .text {
    border-left: 2px solid #C9DCB2;
    padding-left: 30px;
    padding-right: 65px; }
    body .content-wrapper section#solutions .box .text .title {
      font-family: 'Public Sans';
      font-style: normal;
      font-weight: 600;
      font-size: 23px;
      line-height: 31px;
      color: #374D56;
      margin-bottom: 12px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#solutions .box .text .title {
          font-size: 20px;
          line-height: 24px; } }
    body .content-wrapper section#solutions .box .text p {
      font-family: 'IBM Plex Sans';
      font-style: normal;
      font-weight: 400;
      font-size: 17px;
      line-height: 28px;
      color: #333333;
      text-align: left; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#solutions .box .text p {
          font-size: 16px;
          line-height: 27px; } }
body .content-wrapper section#market {
  background: linear-gradient(180deg, #715F58 2.88%, #1A3E53 43.78%, #233137 90.13%);
  padding: 80px 0 146px;
  overflow: hidden;
  position: relative; }
  @media (max-width: 1200px) {
    body .content-wrapper section#market {
      padding: 80px 0 0px; } }
  @media (max-width: 991.9px) {
    body .content-wrapper section#market {
      padding: 80px 0 0px; } }
  @media (max-width: 767.9px) {
    body .content-wrapper section#market {
      padding: 57px 0 0;
      margin-bottom: -2px; } }
  body .content-wrapper section#market:after {
    content: '';
    position: absolute;
    background-image: url("../images/desktop/06_arch.png");
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    height: 93px; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#market:after {
        height: 27px; } }
  @media (max-width: 767.9px) {
    body .content-wrapper section#market {
      padding: 80px 0px; } }
  body .content-wrapper section#market .left-content {
    padding-top: 60px; }
    @media (max-width: 1200px) {
      body .content-wrapper section#market .left-content {
        padding-bottom: 120px; } }
    @media (max-width: 991.9px) {
      body .content-wrapper section#market .left-content {
        padding-top: 0;
        margin-bottom: 100px; } }
    @media (max-width: 767.9px) {
      body .content-wrapper section#market .left-content {
        margin-bottom: 0;
        padding-bottom: 0; } }
    body .content-wrapper section#market .left-content h2 {
      font-family: 'Public Sans';
      font-style: normal;
      font-weight: 400;
      font-size: 36px;
      line-height: 45px;
      color: #F8F9F9;
      margin-bottom: 49px; }
    body .content-wrapper section#market .left-content .text {
      margin-bottom: 42px;
      border-left: 2px solid #A0B980;
      margin-left: 40px;
      padding-left: 30px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#market .left-content .text {
          margin-left: 0px;
          padding-left: 18px;
          margin-bottom: 20px; } }
      body .content-wrapper section#market .left-content .text .title {
        font-family: 'Public Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 23px;
        line-height: 31px;
        color: #DFEBF0;
        margin-bottom: 12px; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#market .left-content .text .title {
            font-size: 20px;
            line-height: 24px; } }
      body .content-wrapper section#market .left-content .text p {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 28px;
        color: #F8F9F9;
        text-align: left;
        max-width: 330px; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#market .left-content .text p {
            font-size: 16px;
            line-height: 27px; } }
  body .content-wrapper section#market .cta {
    padding-top: 12px;
    color: #F8F9F9;
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.12em;
    text-transform: uppercase; }
    body .content-wrapper section#market .cta a {
      display: inline-block;
      color: #E8B227; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#market .cta a {
          font-size: 16px;
          line-height: 29px; } }
      body .content-wrapper section#market .cta a i {
        font-size: 22px;
        margin-left: 8px;
        transition: all .3s ease-in-out;
        top: 2px;
        position: relative; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#market .cta a i {
            margin-left: 5px; } }
      body .content-wrapper section#market .cta a:hover {
        color: #D69F14; }
        body .content-wrapper section#market .cta a:hover i {
          transform: translateX(10px); }
  body .content-wrapper section#market .right-content {
    position: relative; }
    body .content-wrapper section#market .right-content .img-wrapper {
      position: absolute;
      left: 0;
      width: 870.41px; }
      @media (max-width: 1200px) {
        body .content-wrapper section#market .right-content .img-wrapper {
          width: 750.41px;
          bottom: 0; } }
      @media (max-width: 991.9px) {
        body .content-wrapper section#market .right-content .img-wrapper {
          width: 581.41px;
          bottom: 0; } }
      @media (max-width: 767.9px) {
        body .content-wrapper section#market .right-content .img-wrapper {
          position: relative;
          width: 100%;
          margin-bottom: -70px;
          max-width: 100%; } }
      body .content-wrapper section#market .right-content .img-wrapper img {
        width: 100%; }
        @media (max-width: 767.9px) {
          body .content-wrapper section#market .right-content .img-wrapper img {
            right: -20px;
            position: relative; } }
body .content-wrapper section#data {
  padding: 73px 0 0px;
  background-color: #fff;
  position: relative; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#data {
      padding: 58px 0 40px; } }
  body .content-wrapper section#data:after {
    content: '';
    background: url("../images/desktop/07_diagonal.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #F8F9F9;
    height: 265px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%; }
  @media (max-width: 767.9px) {
    body .content-wrapper section#data {
      padding: 70px 0 44px; } }
  body .content-wrapper section#data p {
    max-width: 944px;
    margin: 0 auto 69px; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#data .special-container {
      padding: 0;
      max-width: 100%; } }
  body .content-wrapper section#data .slider-wrapper {
    background: #EFF4F6;
    border-radius: 24px;
    padding: 64px 21px 21px;
    position: relative;
    overflow: hidden;
    z-index: 1; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#data .slider-wrapper {
        border-radius: 0;
        padding: 64px 0 21px; } }
    body .content-wrapper section#data .slider-wrapper:after {
      content: '';
      position: absolute;
      bottom: -13%;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 0;
      height: 56%;
      transform: skewY(-8deg);
      background: #F1DBB2; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#data .slider-wrapper:after {
          height: 26%; } }
    body .content-wrapper section#data .slider-wrapper .slider-nav {
      display: flex;
      justify-content: center;
      margin-bottom: 42px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#data .slider-wrapper .slider-nav {
          overflow: auto;
          flex-wrap: nowrap;
          padding-left: 15px;
          padding-bottom: 28px;
          justify-content: start;
          padding-right: 15px;
          margin-bottom: 0px; } }
      body .content-wrapper section#data .slider-wrapper .slider-nav .slide-nav-item {
        padding: 8px 0;
        transition: all .3s ease-in-out;
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 17px;
        line-height: 22px;
        text-align: center;
        color: #374D56;
        width: 139.07px;
        margin-right: 26px;
        border-radius: 10px;
        background: #FFFFFF;
        cursor: pointer; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#data .slider-wrapper .slider-nav .slide-nav-item {
            width: 140px;
            margin-right: 26px;
            border-radius: 10px;
            background: #FFFFFF;
            cursor: pointer;
            min-width: 140px; } }
        body .content-wrapper section#data .slider-wrapper .slider-nav .slide-nav-item:hover {
          background: #BED4EA; }
        body .content-wrapper section#data .slider-wrapper .slider-nav .slide-nav-item.active {
          background: #A0B980 !important;
          color: #FFFFFF; }
        body .content-wrapper section#data .slider-wrapper .slider-nav .slide-nav-item:last-of-type {
          margin-right: 0px; }
    body .content-wrapper section#data .slider-wrapper .slide-controls {
      margin-bottom: 21px;
      display: flex;
      justify-content: space-between; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#data .slider-wrapper .slide-controls {
          padding: 0 15px; } }
      body .content-wrapper section#data .slider-wrapper .slide-controls .left-control {
        background: #DFEBF0;
        border-radius: 10px;
        width: 78px;
        height: 76px;
        text-align: center;
        line-height: 76px;
        color: #89A3AF;
        font-size: 14px;
        transition: all .3s ease-in-out;
        cursor: pointer; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#data .slider-wrapper .slide-controls .left-control {
            display: none; } }
        body .content-wrapper section#data .slider-wrapper .slide-controls .left-control:hover {
          background: #BED4EA; }
      body .content-wrapper section#data .slider-wrapper .slide-controls .right-control {
        background: #DFEBF0;
        border-radius: 10px;
        width: 78px;
        height: 76px;
        text-align: center;
        line-height: 76px;
        color: #89A3AF;
        transition: all .3s ease-in-out;
        font-size: 14px;
        cursor: pointer; }
        @media (max-width: 991.9px) {
          body .content-wrapper section#data .slider-wrapper .slide-controls .right-control {
            display: none; } }
        body .content-wrapper section#data .slider-wrapper .slide-controls .right-control:hover {
          background: #BED4EA; }
      body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder {
        flex-grow: 1; }
        body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title {
          transition: all .3s ease-in-out;
          display: none;
          height: 76px;
          flex-direction: column;
          align-items: center;
          align-content: center;
          align-self: center;
          justify-content: center; }
          body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title.active {
            display: flex; }
          body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title b {
            font-family: 'Public Sans';
            font-style: normal;
            font-weight: 600;
            font-size: 23px;
            line-height: 31px;
            text-align: center;
            color: #374D56;
            display: block; }
            @media (max-width: 991.9px) {
              body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title b {
                font-size: 20px;
                line-height: 24px; } }
          body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title p {
            font-family: 'IBM Plex Sans';
            font-style: normal;
            font-weight: 400;
            font-size: 17px;
            line-height: 28px;
            text-align: center;
            color: #333333;
            margin-bottom: 0; }
            @media (max-width: 991.9px) {
              body .content-wrapper section#data .slider-wrapper .slide-controls .title-holder .title p {
                font-size: 16px;
                line-height: 27px; } }
    body .content-wrapper section#data .slider-wrapper .slides-holder {
      position: relative;
      z-index: 2; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#data .slider-wrapper .slides-holder {
          padding: 0 15px; } }
      body .content-wrapper section#data .slider-wrapper .slides-holder .slide-holder {
        transition: all .3s ease-in-out;
        display: none; }
        body .content-wrapper section#data .slider-wrapper .slides-holder .slide-holder.active {
          display: block; }
        body .content-wrapper section#data .slider-wrapper .slides-holder .slide-holder img {
          width: 100%; }
body .content-wrapper section#growth {
  padding: 128px 0 222px;
  background: #F8F9F9;
  background-image: url("../images/desktop/08_circle_bg.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: 120% 100%; }
  @media (max-width: 1200px) {
    body .content-wrapper section#growth {
      padding-bottom: 125px; } }
  @media (max-width: 991.9px) {
    body .content-wrapper section#growth {
      padding: 0; } }
  body .content-wrapper section#growth .container > p {
    margin-bottom: 73px; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#growth .container > p {
        margin-bottom: 28px; } }
  body .content-wrapper section#growth .left-content {
    text-align: right; }
    body .content-wrapper section#growth .left-content .img-wrapper {
      padding-right: 60px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#growth .left-content .img-wrapper {
          padding-right: 0;
          position: relative;
          right: -15px; } }
      body .content-wrapper section#growth .left-content .img-wrapper img {
        max-width: 428px;
        width: 100%; }
  body .content-wrapper section#growth .right-content .subbox {
    text-align: left;
    margin-bottom: 40px; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#growth .right-content .subbox {
        margin-bottom: 30px; } }
    body .content-wrapper section#growth .right-content .subbox .title {
      font-family: 'Public Sans';
      font-style: normal;
      font-weight: 600;
      font-size: 23px;
      line-height: 31px;
      color: #374D56;
      margin-bottom: 19px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#growth .right-content .subbox .title {
          margin-bottom: 12px; } }
    body .content-wrapper section#growth .right-content .subbox p {
      padding-left: 36px;
      text-align: left;
      margin-bottom: 12px;
      text-indent: -16px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#growth .right-content .subbox p {
          text-indent: -16px;
          padding-left: 46px; } }
      body .content-wrapper section#growth .right-content .subbox p i {
        color: #A0B980;
        margin-right: 15px;
        font-size: 20px;
        margin-bottom: 6px; }
body .content-wrapper section#offer {
  height: 0;
  position: relative;
  z-index: 2; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#offer {
      height: auto; } }
  body .content-wrapper section#offer .offer-wrapper {
    filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.07));
    background: #FFFFFF;
    border-radius: 3px;
    background-image: url("../images/desktop/09_cta_bg_right.png"), url("../images/desktop/09_cta_bg_left.png");
    background-position: bottom right, top left;
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding: 40px 60px 40px 120px;
    margin-bottom: 60px;
    text-align: center;
    transform: translateY(-50%); }
    @media (max-width: 991.9px) {
      body .content-wrapper section#offer .offer-wrapper {
        background-image: url("../images/mobile/09_mobile_cta_bg_bottom.png"), url("../images/mobile/09_mobile_cta_bg_top.png");
        background-position: bottom right, top left;
        padding: 55px 30px 55px 30px;
        background-size: 100% auto;
        transform: translateY(-10%);
        margin-bottom: -40px; } }
    @media (max-width: 767.9px) {
      body .content-wrapper section#offer .offer-wrapper {
        margin-bottom: -70px; } }
    body .content-wrapper section#offer .offer-wrapper h1 {
      text-align: center; }
    body .content-wrapper section#offer .offer-wrapper p {
      font-family: 'IBM Plex Sans';
      font-style: normal;
      font-weight: 400;
      font-size: 17px;
      line-height: 28px;
      text-align: center;
      color: #2A363D;
      margin-bottom: 21px; }
body .content-wrapper section#trusted {
  background-image: url("../images/desktop/06_arch_dark.png");
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 194px 0 170px;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
  text-align: center; }
  @media (max-width: 991.9px) {
    body .content-wrapper section#trusted {
      padding: 67px 0 80px; } }
  body .content-wrapper section#trusted h4 {
    margin-bottom: 15px; }
  body .content-wrapper section#trusted h1 {
    margin-bottom: 15px; }
  body .content-wrapper section#trusted p {
    margin-bottom: 48px; }
  body .content-wrapper section#trusted img {
    max-width: 681px;
    width: 100%; }
body .content-wrapper section#cta {
  background-color: #2A363D;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-align: center;
  padding: 140px 0 111px;
  position: relative; }
  @media (max-width: 1200px) {
    body .content-wrapper section#cta {
      padding: 95px 0 111px; } }
  @media (max-width: 991.9px) {
    body .content-wrapper section#cta {
      padding: 70px 0 70px; } }
  body .content-wrapper section#cta .dot1 {
    width: 36px;
    height: 36px;
    bottom: 22%;
    left: 17%; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#cta .dot1 {
        display: none; } }
  body .content-wrapper section#cta .dot2 {
    width: 20px;
    height: 20px;
    left: 3%;
    bottom: 150px; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#cta .dot2 {
        display: none; } }
  body .content-wrapper section#cta .dot3 {
    width: 22px;
    height: 22px;
    right: 19%;
    bottom: 19%; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#cta .dot3 {
        display: none; } }
  body .content-wrapper section#cta .dot4 {
    width: 16px;
    height: 16px;
    top: 24%;
    right: 27%; }
    @media (max-width: 767.9px) {
      body .content-wrapper section#cta .dot4 {
        display: none; } }
  body .content-wrapper section#cta .container {
    z-index: 2;
    position: relative; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#cta .container {
        max-width: 60%; } }
    @media (max-width: 767.9px) {
      body .content-wrapper section#cta .container {
        max-width: 100%; } }
    body .content-wrapper section#cta .container .floating-arrow {
      text-align: center;
      margin-bottom: 44px; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#cta .container .floating-arrow {
          margin-bottom: 26px; } }
      body .content-wrapper section#cta .container .floating-arrow img {
        width: 16px; }
      body .content-wrapper section#cta .container .floating-arrow.second {
        margin-bottom: 0; }
    body .content-wrapper section#cta .container h2 {
      font-family: 'Public Sans';
      font-style: normal;
      font-weight: 400;
      font-size: 50px;
      line-height: 56px;
      text-align: center;
      color: #F8F9F9;
      margin: 0 auto 15px;
      max-width: 800px; }
      body .content-wrapper section#cta .container h2 b {
        font-weight: 800; }
      @media (max-width: 991.9px) {
        body .content-wrapper section#cta .container h2 {
          font-size: 32px;
          line-height: 36px; } }
    body .content-wrapper section#cta .container p {
      text-align: center;
      margin-bottom: 48px;
      color: #F8F9F9; }
  body .content-wrapper section#cta .fields {
    position: relative;
    z-index: 2; }
  body .content-wrapper section#cta label {
    font-size: 17px;
    line-height: 28px;
    max-width: 255px;
    margin: 0 auto 8px;
    display: block; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#cta label {
        font-size: 17px;
        line-height: 29px;
        max-width: 100%;
        text-indent: -30px;
        padding-left: 30px; } }
    body .content-wrapper section#cta label input {
      margin-right: 15px;
      vertical-align: middle; }
  body .content-wrapper section#cta input[type="text"], body .content-wrapper section#cta input[type="email"], body .content-wrapper section#cta select {
    background: #FFFFFF;
    border: 1px solid #D6D8DD;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 20px;
    line-height: 56px;
    height: 56px;
    color: #7D828C;
    padding: 0 19px;
    width: calc(100% - 8px);
    margin: 0 0 20px; }
    @media (max-width: 991.9px) {
      body .content-wrapper section#cta input[type="text"], body .content-wrapper section#cta input[type="email"], body .content-wrapper section#cta select {
        width: 100%;
        margin: 0 0 10px; } }
  body .content-wrapper section#cta select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: ''; }
  body .content-wrapper section#cta .select-wrapper {
    position: relative; }
    body .content-wrapper section#cta .select-wrapper:after {
      content: '\f078';
      position: absolute;
      right: 15px;
      line-height: 56px;
      font-family: 'Font Awesome 5 Pro'; }
  body .content-wrapper section#cta input.error {
    border: 3px solid #E3A7A7 !important; }
  body .content-wrapper section#cta .error-notice {
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    color: #E3A7A7;
    margin-bottom: 8px;
    font-weight: bold; }
body .content-wrapper .scrollTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #E8B227;
  opacity: .7;
  transition: all .3s ease-in-out;
  z-index: 10;
  color: #fff;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  cursor: pointer; }
  body .content-wrapper .scrollTop:hover {
    opacity: 1; }
  @media (max-width: 767.9px) {
    body .content-wrapper .scrollTop {
      bottom: 20px;
      right: 20px; } }
body #formModal .modal-header {
  background: #2A363D;
  padding: 32px 40px 26px; }
  body #formModal .modal-header img {
    max-width: 140.24px; }
  body #formModal .modal-header a {
    color: #E8B227;
    text-decoration: none;
    transition: all .3s ease-in-out; }
    body #formModal .modal-header a:hover {
      color: #D69F14; }
    body #formModal .modal-header a i {
      font-size: 40px; }
body #formModal .modal-body {
  background-image: url("../images/desktop/contact-us-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 0;
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem; }
  body #formModal .modal-body.thanks {
    background-image: none; }
body #formModal .form-wrapper {
  padding: 45px 67px 53px;
  border-radius: 10px;
  position: relative;
  z-index: 2; }
  @media (max-width: 991.9px) {
    body #formModal .form-wrapper {
      padding: 60px 10px 53px; } }
  body #formModal .form-wrapper h2 {
    font-weight: bold;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
    color: #333333;
    margin-bottom: 36px;
    position: relative;
    z-index: 2; }
    @media (max-width: 991.9px) {
      body #formModal .form-wrapper h2 {
        font-size: 36px;
        line-height: 36px;
        margin: 0 auto 31px; } }
    @media (max-width: 335px) {
      body #formModal .form-wrapper h2 {
        font-size: 34px; } }
  body #formModal .form-wrapper .fields {
    position: relative;
    z-index: 2; }
  body #formModal .form-wrapper p {
    font-weight: 400;
    font-size: 23px;
    line-height: 31px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 33px; }
    @media (max-width: 991.9px) {
      body #formModal .form-wrapper p {
        font-size: 17px;
        line-height: 29px;
        margin-bottom: 22px;
        text-align: left; } }
  body #formModal .form-wrapper label {
    font-size: 17px;
    line-height: 28px;
    max-width: 255px;
    margin: 0 auto 8px;
    display: block; }
    @media (max-width: 991.9px) {
      body #formModal .form-wrapper label {
        font-size: 17px;
        line-height: 29px;
        max-width: 100%;
        text-indent: -30px;
        padding-left: 30px; } }
    body #formModal .form-wrapper label input {
      margin-right: 15px;
      vertical-align: middle; }
  body #formModal .form-wrapper input[type="text"], body #formModal .form-wrapper input[type="email"], body #formModal .form-wrapper select {
    background: #FFFFFF;
    border: 1px solid #D6D8DD;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 20px;
    line-height: 56px;
    height: 56px;
    color: #7D828C;
    padding: 0 19px;
    width: calc(100% - 8px);
    margin: 0 0 20px; }
    @media (max-width: 991.9px) {
      body #formModal .form-wrapper input[type="text"], body #formModal .form-wrapper input[type="email"], body #formModal .form-wrapper select {
        width: 100%;
        margin: 0 0 10px; } }
  body #formModal .form-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: ''; }
  body #formModal .form-wrapper .select-wrapper {
    position: relative; }
    body #formModal .form-wrapper .select-wrapper:after {
      content: '\f078';
      position: absolute;
      right: 15px;
      line-height: 56px;
      font-family: 'Font Awesome 5 Pro'; }
  body #formModal .form-wrapper input.error {
    border: 1px solid red !important; }
  body #formModal .form-wrapper .error-notice {
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    color: red;
    margin-bottom: 8px;
    font-weight: bold;
    margin-top: -20px; }
  body #formModal .form-wrapper .btn-wrapper {
    text-align: center;
    margin-top: 28px; }
body #formModal .confirmation {
  font-size: 23px;
  line-height: 31px;
  text-align: center; }
  body #formModal .confirmation p {
    font-weight: 400; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
 footer .footnav {
  background: #272B35;
  padding: 50px 0; }
  footer .footnav h2 {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9); }
    @media (max-width: 991.9px) {
      footer .footnav h2 {
        font-size: 20px;
        line-height: 31px;
        margin-bottom: 20px; } }
  footer .footnav .left-content ul {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3; }
    @media (max-width: 767.9px) {
      footer .footnav .left-content ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1; } }
    @media (max-width: 991.9px) {
      footer .footnav .left-content ul li {
        margin-top: 10px; }
        footer .footnav .left-content ul li.social1 {
          margin-top: 40px; } }
    footer .footnav .left-content ul li a {
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: 600;
      font-size: 15px;
      line-height: 29px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all .3s ease-in-out; }
      footer .footnav .left-content ul li a:hover {
        color: white; }
      footer .footnav .left-content ul li a i {
        font-size: 20px;
        margin-right: 23px;
        color: white; }
  @media (max-width: 991.9px) {
    footer .footnav .right-content {
      margin-top: 44px; } }
  footer .footnav .right-content .text-wrapper {
    display: flex;
    justify-content: start; }
    @media (max-width: 767.9px) {
      footer .footnav .right-content .text-wrapper {
        flex-direction: column;
        margin-top: 16px; } }
    footer .footnav .right-content .text-wrapper p {
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      line-height: 29px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 0;
      padding-right: 15px; }
      @media (max-width: 991.9px) {
        footer .footnav .right-content .text-wrapper p {
          margin-bottom: 24px; } }
    footer .footnav .right-content .text-wrapper a.btnblk {
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-sizing: border-box;
      border-radius: 36px;
      height: 48px;
      line-height: 48px;
      font-family: Source Sans Pro;
      font-style: normal;
      font-weight: bold;
      font-size: 15px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #FFFFFF;
      transition: all .3s ease-in-out;
      min-width: 217px;
      text-align: center;
      text-decoration: none; }
      @media (max-width: 767.9px) {
        footer .footnav .right-content .text-wrapper a.btnblk {
          width: 100%; } }
      footer .footnav .right-content .text-wrapper a.btnblk:hover {
        background: #FFFFFF;
        color: #272B35; }
footer .copyright {
  background: #343945;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 29px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 13px 0; }
  footer .copyright a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); }
    footer .copyright a:hover {
      color: white; } 

/*# sourceMappingURL=style.css.map */
