/* ------------ MEDIA QUERIES ------------- */
/* ------------ SMALL ANIMATIONS ------------- */
@-webkit-keyframes up-down {
  0% {
    transform: translateY(6px); }
  100% {
    transform: translateY(-6px); } }

@keyframes up-down {
  0% {
    transform: translateY(6px); }
  100% {
    transform: translateY(-6px); } }

/* ------------ Reset font Size REM ------------- */
html {
  font-size: 62.5%; }

/* ------------ SCSS ------------- */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #3D6C82;
  background: #002E43; }

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 1px solid #3D6C82;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite; }

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #0B5273;
  transition: .25s; }
  .back-to-top:hover {
    background: #3D6C82; }
  .back-to-top .svg-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: all 0.4s;
    text-decoration: none;
    transform: rotate(90deg); }
    .back-to-top .svg-icon path, .back-to-top .svg-icon polygon, .back-to-top .svg-icon rect {
      fill: white; }
    .back-to-top .svg-icon circle {
      stroke: white;
      stroke-width: 1; }

:focus {
  outline: 0px; }

.container {
  max-width: 1300px; }

body {
  overflow-x: hidden; }

/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 1199.98px) {
    h1 {
      font-size: 58px;
      line-height: 68px; } }
  @media only screen and (max-width: 991.98px) {
    h1 {
      font-size: 49px;
      line-height: 53px; } }
  @media only screen and (max-width: 767.98px) {
    h1 {
      font-size: 30px;
      line-height: 38px; } }

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 1199.98px) {
    h2 {
      font-size: 38px; } }
  @media only screen and (max-width: 991.98px) {
    h2 {
      font-size: 35px; } }
  @media only screen and (max-width: 767.98px) {
    h2 {
      font-size: 32px; } }

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .03em; }

h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: .03em;
  margin-bottom: 2rem; }

p {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 27px;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 1199.98px) {
    p {
      font-size: 21px; } }
  @media only screen and (max-width: 991.98px) {
    p {
      font-size: 19px;
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767.98px) {
    p {
      font-size: 18px; } }

a {
  font-size: 23px;
  font-weight: 400;
  text-decoration: underline;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 1199.98px) {
    a {
      font-size: 21px; } }
  @media only screen and (max-width: 991.98px) {
    a {
      font-size: 19px; } }
  @media only screen and (max-width: 767.98px) {
    a {
      font-size: 18px; } }

.light-bg h1, .light-bg h2, .light-bg h3, .light-bg h4, .light-bg h5, .light-bg h6, .light-bg a {
  color: #0B5273; }

.light-bg p {
  color: #3D6C82; }

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p {
  color: #ffffff; }

strong {
  font-weight: 400; }

.btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 7px;
  border: 0;
  margin: 0;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn.btn-white {
    background: white;
    color: #0B5273; }
  .btn.btn-blue {
    background: #0B5273;
    color: #ffffff;
    border: 2px solid #0B5273; }
    .btn.btn-blue:hover {
      background-color: #3D6C82; }
  .btn:focus {
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0); }

/*--------------------------------------------------------------
# NAV
--------------------------------------------------------------*/
#header {
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  transition: all 0.5s;
  z-index: 997;
  background: white;
  /* Desktop Navigation */ }
  #header .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    #header .nav-menu ul li a {
      display: block;
      position: relative;
      transition: 0.3s;
      color: #000000;
      font-size: 16px;
      line-height: 20px;
      text-transform: uppercase;
      font-weight: 700;
      text-align: center;
      letter-spacing: .03em; }
      #header .nav-menu ul li a:hover {
        color: #FF4F90;
        text-decoration: none; }
  #header .nav-menu > ul {
    display: flex; }
  #header .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 0px 0 0px 28px; }
  #header .language-switcher {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    text-align: right;
    z-index: 1000;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ffffff;
    color: #002E43; }
    #header .language-switcher a {
      background: #ffffff;
      color: #002E43;
      padding: 2rem;
      display: inline-block;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      font-size: 1.6rem;
      line-height: 2rem;
      text-decoration: none;
      transition: .25s;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        #header .language-switcher a {
          padding: 1.7rem;
          font-size: 1.6rem;
          line-height: 2rem; } }
      #header .language-switcher a:hover {
        background: #002E43;
        color: white; }

/* Mobile Navigation */
.logo-mobile {
  position: absolute;
  padding-left: 15px;
  left: 0px;
  top: 16px;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (min-width: 767.98px) and (max-width: 991.98px) {
    .logo-mobile {
      top: 17px; } }
  .logo-mobile svg {
    width: 180px; }

.mobile-nav-toggle {
  position: fixed;
  top: 13px;
  right: 13px;
  border: 0;
  background: none;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  .mobile-nav-toggle .svg-icon {
    width: 30px;
    height: 30px;
    color: #f80057;
    transition: all 0.4s;
    text-decoration: none;
    transform: rotate(90deg); }
    .mobile-nav-toggle .svg-icon path, .mobile-nav-toggle .svg-icon polygon, .mobile-nav-toggle .svg-icon rect {
      fill: #f80057; }
  @media only screen and (max-width: 767.98px) {
    .mobile-nav-toggle {
      top: 10px; } }

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: #f80057;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0; }
  .mobile-nav * {
    padding: 0;
    list-style: none;
    margin: auto;
    text-align: center;
    padding-top: 30px; }
    .mobile-nav *:first-child {
      padding-top: 30px; }
  .mobile-nav a {
    transition: 0.3s;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 36px;
    line-height: 57px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: .03em; }
    .mobile-nav a:hover {
      color: #ca141f;
      text-decoration: none; }

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s; }

.svg-close {
  display: none; }

.mobile-nav-close .svg-close {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  top: 5px;
  left: 5px; }
  .mobile-nav-close .svg-close path, .mobile-nav-close .svg-close polygon, .mobile-nav-close .svg-close rect {
    fill: white; }

.mobile-nav-close .svg-open {
  display: none; }

.mobile-nav-active {
  overflow: hidden; }

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible; }

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff; }

/*--------------------------------------------------------------
# SECTION 01
--------------------------------------------------------------*/
.section01 {
  background: #042F41;
  height: 100vh;
  color: white;
  background-size: cover;
  background-position: top center; }
  .section01 .container {
    height: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 40px;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 767.98px) {
      .section01 .container {
        align-items: center; } }
    .section01 .container .row {
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        .section01 .container .row {
          transform: translateY(20px); } }
    .section01 .container .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 700rem;
      margin-bottom: 50px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        .section01 .container .logo {
          margin-bottom: 25px; } }
      .section01 .container .logo svg {
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 991.98px) {
          .section01 .container .logo svg {
            max-width: 90%; } }
    .section01 .container h1 {
      margin-bottom: 40px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        .section01 .container h1 {
          margin-bottom: 25px; } }
    .section01 .container p {
      max-width: 800px;
      margin: auto;
      margin-bottom: 20px; }
    .section01 .container .link-btn {
      margin-top: 90px;
      display: inline-block;
      font-size: 14px;
      color: white;
      text-transform: uppercase;
      text-decoration: none;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        .section01 .container .link-btn {
          margin-top: 20px; } }
      .section01 .container .link-btn .arrow {
        margin-top: 15px;
        animation: arrowmove 5s infinite;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 767.98px) {
          .section01 .container .link-btn .arrow {
            width: 60px;
            margin-left: auto;
            margin-right: auto; } }

@keyframes arrowmove {
  0% {
    transform: translateY(-15px);
    opacity: 20%; }
  40% {
    transform: translateY(10px);
    opacity: 100%; }
  100% {
    transform: translateY(10px);
    opacity: 100%; } }

/*--------------------------------------------------------------
# SECTION 02 - IMAGE TEXT + SECTION 03 - TEXT IMAGE
--------------------------------------------------------------*/
.section02 {
  padding: 80px 0;
  background-position: bottom center;
  background-size: cover;
  transform: translateY(-2px);
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 767.98px) {
    .section02 {
      padding-top: 0; } }
  .section02 .row {
    align-items: center; }
  .section02 .txt {
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 991.98px) {
      .section02 .txt {
        padding-top: 15px;
        padding-bottom: 40px; } }
  .section02 .image {
    color: white;
    position: relative; }
    .section02 .image video {
      max-width: 100%; }
    .section02 .image .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        .section02 .image .play-icon {
          display: none; } }

/*--------------------------------------------------------------
# SECTION 03 - IMAGE + TXT and TXT + IMG INVERSED
--------------------------------------------------------------*/
section.section03.about {
  padding: 90px 0;
  overflow-x: hidden;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 991.98px) {
    section.section03.about {
      padding-top: 90px;
      padding-bottom: 60px; } }
  @media only screen and (max-width: 767.98px) {
    section.section03.about {
      padding: 30px 0; } }
  section.section03.about hr {
    width: 185px;
    border-top: 3px solid #0B5273;
    margin-top: 35px;
    margin-bottom: 80px;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 991.98px) {
      section.section03.about hr {
        margin-top: 25px;
        margin-bottom: 60px; } }
    @media only screen and (max-width: 991.98px) {
      section.section03.about hr {
        margin-top: 15px;
        margin-bottom: 40px; } }
  section.section03.about .row {
    margin-bottom: 80px;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 991.98px) {
      section.section03.about .row {
        margin-bottom: 60px; } }
    @media only screen and (max-width: 991.98px) {
      section.section03.about .row {
        margin-bottom: 30px; } }
    section.section03.about .row.row1 .text {
      padding-left: 70px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 1199.98px) {
        section.section03.about .row.row1 .text {
          padding-left: 0; } }
    section.section03.about .row.row2 .text {
      padding-right: 70px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 1199.98px) {
        section.section03.about .row.row2 .text {
          padding-right: 0; } }
  section.section03.about .text {
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 1199.98px) {
      section.section03.about .text {
        padding-top: 20px; } }
    @media only screen and (max-width: 767.98px) {
      section.section03.about .text {
        padding-top: 10px; } }
    section.section03.about .text h2 {
      font-size: 40px;
      margin-bottom: 20px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 991.98px) {
        section.section03.about .text h2 {
          font-size: 35px; } }
      @media only screen and (max-width: 767.98px) {
        section.section03.about .text h2 {
          font-size: 24px; } }
  section.section03.about .image img {
    width: 100%; }
  section.section03.about .image video {
    max-width: 100%; }

/*--------------------------------------------------------------
# SECTION 04 - TEXT ON LEFT + BG IMAGE BANNER
--------------------------------------------------------------*/
.section04 {
  background-size: cover;
  padding-bottom: 46%;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 1600px) {
    .section04 {
      background-position-x: 0;
      height: 730px;
      padding-bottom: 0; } }
  @media only screen and (max-width: 1199.98px) {
    .section04 {
      height: 600px; } }
  @media only screen and (max-width: 991.98px) {
    .section04 {
      height: 460px; } }
  .section04 .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%; }
    .section04 .container .textbox {
      color: white;
      font-weight: 400;
      text-align: center;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 1600px) {
        .section04 .container .textbox {
          padding-left: 80px; } }
      @media only screen and (max-width: 1199.98px) {
        .section04 .container .textbox {
          width: 100%;
          padding-left: 0; } }
      .section04 .container .textbox h2 {
        margin-bottom: 40px;
        text-transform: uppercase;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 1600px) {
          .section04 .container .textbox h2 {
            font-size: 35px;
            margin-bottom: 30px; } }
        @media only screen and (max-width: 1199.98px) {
          .section04 .container .textbox h2 {
            font-size: 30px;
            margin-bottom: 20px; } }
        @media only screen and (max-width: 767.98px) {
          .section04 .container .textbox h2 {
            font-size: 25px;
            margin-bottom: 14px; } }
      .section04 .container .textbox h4 {
        font-size: 26px;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 1600px) {
          .section04 .container .textbox h4 {
            font-size: 22px; } }
        @media only screen and (max-width: 767.98px) {
          .section04 .container .textbox h4 {
            font-size: 18px; } }
      .section04 .container .textbox > * {
        font-weight: 400; }
      .section04 .container .textbox .number {
        font-size: 110px;
        font-weight: 700;
        line-height: 0.8em;
        margin-bottom: 40px;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 1600px) {
          .section04 .container .textbox .number {
            font-size: 90px;
            margin-bottom: 30px; } }
        @media only screen and (max-width: 1199.98px) {
          .section04 .container .textbox .number {
            font-size: 80px;
            margin-bottom: 20px; } }
        @media only screen and (max-width: 767.98px) {
          .section04 .container .textbox .number {
            font-size: 50px;
            margin-bottom: 14px; } }
      .section04 .container .textbox .logo-holder {
        margin: 0 auto;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 1600px) {
          .section04 .container .textbox .logo-holder {
            width: 400px; } }
        @media only screen and (max-width: 1199.98px) {
          .section04 .container .textbox .logo-holder {
            width: 340px; } }
        @media only screen and (max-width: 767.98px) {
          .section04 .container .textbox .logo-holder {
            width: 300px; } }
        .section04 .container .textbox .logo-holder svg {
          max-width: 100%; }

/*--------------------------------------------------------------
# SECTION 05 - TEXT 1 column
--------------------------------------------------------------*/
section.section05 {
  padding: 90px 0;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 991.98px) {
    section.section05 {
      padding: 60px 0; } }
  @media only screen and (max-width: 767.98px) {
    section.section05 {
      padding: 40px 0; } }
  section.section05 h2 {
    margin-bottom: 25px; }

/*--------------------------------------------------------------
# SECTION 06 - CARDS
--------------------------------------------------------------*/
section.section06 {
  padding-bottom: 150px;
  position: relative;
  overflow-x: hidden;
  /* ------- NEW BREAKPOINTS --------- */
  /* -- @include break(xs) << 480px -- */ }
  @media only screen and (max-width: 767.98px) {
    section.section06 {
      padding-top: 80px; } }
  section.section06 .bg-graphic {
    position: absolute;
    width: 100%;
    background-size: cover;
    height: 80%;
    bottom: 0;
    left: 0;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 767.98px) {
      section.section06 .bg-graphic {
        height: 100%; } }
  section.section06 .row {
    align-items: center;
    position: relative;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
  section.section06 .col-md-4 {
    padding-left: 28px;
    padding-right: 28px; }
  section.section06 .card-item {
    background-color: #0B5273;
    background-size: cover;
    border-radius: 10px;
    background-position: top center;
    border: none;
    text-align: center;
    max-width: 400px;
    position: relative;
    /* ------- NEW BREAKPOINTS --------- */
    /* -- @include break(xs) << 480px -- */ }
    @media only screen and (max-width: 1199.98px) {
      section.section06 .card-item {
        margin-left: auto;
        margin-right: auto; } }
    section.section06 .card-item img {
      max-width: 100%; }
    section.section06 .card-item a.link:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    section.section06 .card-item a.btn {
      position: relative;
      cursor: pointer;
      border: 2px solid transparent; }
      section.section06 .card-item a.btn:hover {
        background: #3D6C82;
        color: white;
        border-color: #0B5273; }
    section.section06 .card-item h3 {
      font-weight: 600;
      text-transform: uppercase; }
    section.section06 .card-item h3, section.section06 .card-item p {
      margin-bottom: 80px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item h3, section.section06 .card-item p {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item h3, section.section06 .card-item p {
          margin-bottom: 20px; } }
    section.section06 .card-item.small {
      padding: 120px 48px 140px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item.small {
          padding: 80px 48px; } }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item.small {
          padding: 40px 30px; } }
    section.section06 .card-item.large {
      padding: 83px 20px 61px;
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */
      /* ------- NEW BREAKPOINTS --------- */
      /* -- @include break(xs) << 480px -- */ }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item.large {
          padding: 80px 48px; } }
      @media only screen and (max-width: 767.98px) {
        section.section06 .card-item.large {
          padding: 40px 30px; } }
      section.section06 .card-item.large p {
        margin-bottom: 30px;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 767.98px) {
          section.section06 .card-item.large p {
            margin-bottom: 20px; } }
      section.section06 .card-item.large .img-wrapper {
        margin-bottom: 60px;
        /* ------- NEW BREAKPOINTS --------- */
        /* -- @include break(xs) << 480px -- */ }
        @media only screen and (max-width: 767.98px) {
          section.section06 .card-item.large .img-wrapper {
            margin-bottom: 40px; } }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: white;
  border-top: 1px solid rgba(47, 61, 72, 0.2);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px; }
