@charset "UTF-8";

@media (min-width: 768px) {
  .pt-md-6 {
    padding-top: 6rem;
  }
}

.jarallax {
  position: relative;
  z-index: 0;
}

:root {
  --section-padding-bottom: 70px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: shade-color(#00919e, 10%);
  background-color: tint-color(#007bff, 90%);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='%23fff'%3e%3cpath d='M15,30A15,15,0,1,0,0,15,15,15,0,0,0,15,30Z' style='fill:%2300b5de'/%3e%3cpolyline points='22 14 8 14 8 16 22 16' style='fill:%23fff'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='%23fff'%3e%3cpath d='M15,30A15,15,0,1,0,0,15,15,15,0,0,0,15,30Z' style='fill:%2300b5de'/%3e%3cpath d='M14,8V22h2V8Zm8,6H8v2H22Z' style='fill:%23ff'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: transparent;
  border: 0 solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1rem;
}


:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #00919e;
  --secondary: #b93789;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --yellow-500: #ffd600;
  --green-500: #33ff33;
  --pink-500: #ff0066;
  --white-100: #f5f5f5;
  --grey-50: #a4a6a8;
  --grey-100: #e5e5e5;
  --grey-400: #b2b5b8;
  --grey-900: #343434;
  --blue-100: #e6f1f6;
  --blue-300: #33ccff;
  --blue-500: #0575a8;
  --blue-600: #0075a8;
  --blue-700: #002d5b;
  --blue-800: #002e5c;
  --blue-900: #001f3d;
  --cyan-100: #d9f4fa;
  --cyan-500: #00B5DE;
  --cyan-900: #051c26;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

figcaption,
figure,
footer,
main,
nav {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul ul {
  margin-bottom: 0;
}

b {
  font-weight: bolder;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}


code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}


button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

button,
[type=button] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

h2,
h3,
h4,
.h2,
.h3,
.h4 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 2rem;
}

@media (max-width: 1200px) {

  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}

h3,
.h3 {
  font-size: 1.75rem;
}

@media (max-width: 1200px) {

  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}

h4,
.h4 {
  font-size: 1.5rem;
}

@media (max-width: 1200px) {

  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.figure {
  display: inline-block;
}

.figure-caption {
  font-size: 90%;
  color: unset;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-8,
.col-lg-4,
.col-md-12,
.col-md-10,
.col-md-8,
.col-md-4,
.col-md-6,
.col-md-1,
.col,
.col-12,
.col-10,
.col-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media (min-width: 768px) {

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-4 {
    flex: 0 0 33.333333333%;
    max-width: 33.333333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }
}

@media (min-width: 992px) {

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-3 {
    order: 3;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn.more{
  margin: 0px 10px 0 0;
      padding: 2px 12px;
      background: url(../imgs/btn-learn-more.svg);
      background-size: contain;
      background-repeat: no-repeat;
      border: none;
      text-indent: -10000px;
      width: 212px;
      height: 37px;
}
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-tabs {
  border-bottom: 0 solid 0;
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0 solid transparent;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #17a2b8;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg>.container {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg>.container {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }


  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1199px) {}


.navbar-dark .navbar-brand {
  color: #fff;
  min-height: 110px;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  fill: #fff;
}

.accordion {
  overflow-anchor: none;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.media {
  display: flex;
  align-items: flex-start;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.bg-grey-100 {
  background-color: #e5e5e5 !important;
}

a.bg-grey-100:hover,
a.bg-grey-100:focus,
button.bg-grey-100:hover,
button.bg-grey-100:focus {
  background-color: #cccccc !important;
}

.bg-grey-400 {
  background-color: #b2b5b8 !important;
}

.bg-blue-dark {
  background-color: #011128 !important;
}

a.bg-grey-400:hover,
a.bg-grey-400:focus,
button.bg-grey-400:hover,
button.bg-grey-400:focus {
  background-color: #979ca0 !important;
}

.bg-blue-100 {
  background-color: #d9eaf2 !important;
}

a.bg-blue-100:hover,
a.bg-blue-100:focus,
button.bg-blue-100:hover,
button.bg-blue-100:focus {
  background-color: #c1dce9 !important;
}

.bg-blue-500 {
  background-color: #0575a8 !important;
}

a.bg-blue-500:hover,
a.bg-blue-500:focus,
button.bg-blue-500:hover,
button.bg-blue-500:focus {
  background-color: #045376 !important;
}

.bg-blue-800 {
  background-color: #002e5c !important;
}

a.bg-blue-800:hover,
a.bg-blue-800:focus,
button.bg-blue-800:hover,
button.bg-blue-800:focus {
  background-color: #001529 !important;
}

.bg-blue-900 {
  background-color: #001f3d !important;
}

a.bg-blue-900:hover,
a.bg-blue-900:focus,
button.bg-blue-900:hover,
button.bg-blue-900:focus {
  background-color: #00050a !important;
}

.bg-cyan-100 {
  background-color: #d9eaf2 !important;
}

a.bg-cyan-100:hover,
a.bg-cyan-100:focus,
button.bg-cyan-100:hover,
button.bg-cyan-100:focus {
  background-color: #ace7f4 !important;
}

.bg-cyan-500 {
  background-color: #00B5DE !important;
}

a.bg-cyan-500:hover,
a.bg-cyan-500:focus,
button.bg-cyan-500:hover,
button.bg-cyan-500:focus {
  background-color: #008bab !important;
}

.bg-white {
  background-color: #fff !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
}

.position-relative {
  position: relative !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  /* right: 0; */
  left: 0;
  z-index: 1030;
  min-height: 110px;
  width: 100%;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}


.mx-3 {
  margin-right: 1rem !important;
}


.my-3 {
  margin-bottom: 1rem !important;
}


.mx-3 {
  margin-left: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}


.px-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}


.px-0 {
  padding-left: 0 !important;
}


.py-1 {
  padding-top: 0.25rem !important;
}


.py-1 {
  padding-bottom: 0.25rem !important;
}

.py-3 {
  padding-top: 1rem;
}

.py-3 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 3rem;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}


.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}


.py-5 {
  padding-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.d-hidden{
  display:none;
}

@media (min-width: 768px) {

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .mr-md-n5 {
    margin-right: -3rem !important;
  }

  .ml-md-n5 {
    margin-left: -3rem !important;
  }

  .d-md-hidden {
    display:none;
  }
  .d-md-block {
    display:block;
  }
}

@media (min-width: 992px) {

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1700px) {
  .ml-xl-auto {
    margin-left: auto !important;
  }
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-white {
  color: #fff !important;
}

.text-red-500 {
  color: #b12e6a !important;
}

a.text-yellow-500:hover,
a.text-yellow-500:focus {
  color: #b39600 !important;
}

.text-blue-800 {
  color: #002e5c !important;
}

a.text-blue-800:hover,
a.text-blue-800:focus {
  color: #000810 !important;
}

.text-blue-900 {
  color: #001f3d !important;
}

a.text-blue-900:hover,
a.text-blue-900:focus {
  color: black !important;
}

.text-cyan-500 {
  color: #00B5DE !important;
}

a.text-cyan-500:hover,
a.text-cyan-500:focus {
  color: #007792 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

@media print {

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }


  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }
}


@font-face {
  font-family: "Slate Pro";
  src: url("../fonts/Slate-Regular.woff2") format("woff2"), url("../fonts/Slate-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Slate Pro";
  src: url("../fonts/Slate-Bold.woff2") format("woff2"), url("../fonts/Slate-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Slate Pro";
  src: url("../fonts/Slate-Medium.woff2") format("woff2"), url("../fonts/Slate-Mediumwoff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  min-height: 75rem;
  padding-top: 72px;
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
}

@media (min-width: 768px) {
  body {
    padding-top: 105px;
  }
}

.mr-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

h2 {
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 2.5rem;
  margin: 0;
  color: #002e5c;
}

h2 span {
  color: #081952;
  display: block;
}

h3 {
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #002e5c;
}

p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.25;
}

.font-slate-pro {
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

a {
  color: #55b2da;
}

.navbar-dark .navbar-nav .nav-link {
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
  color: white;
  font-size: 20px;
  font-weight: normal;
  padding: 0 26px;
}

.espanol .navbar-dark .navbar-nav .nav-link {
  font-family: "Slate Pro", Arial, Helvetica, sans-serif;
  color: white;
  font-size: 16px;
  font-weight: normal;
  padding: 0 9px 0 9px;
}

.navbar-nav {
  margin-top: 43px;
}

.nav-link {
  text-decoration: none;
}

.lang-switch {
  position: absolute;
  right: 15px;
  top: 0;
}

.lang-switch a {
  padding: 7px 14px;
  color: #fff;
  font-size: 14px;
  display: inline-block;
}

.lang-switch a:hover {
  text-decoration: none;
}

.lang-switch a.lang-english {
  background: #0076a8;
  border-bottom-left-radius: 5px;
}

.lang-switch a.lang-espanol {
  background: #011128;
  border-bottom-right-radius: 5px;
}

.espanol .lang-switch a.lang-espanol {
  background: #0076a8;
}

.espanol .lang-switch a.lang-english {
  background: #011128;
}

.navbar-brand {
  max-width: 140px;
}

@media (min-width: 768px) {
  .navbar-brand {
    max-width: 230px;
  }
}

a.navbar-brand img {
  width: 100%;
  max-width: 230px;
  margin: 20px 0 0;
}

.navbar-dark .navbar-toggler {
  border: none !important;
  color: white;
}

.navbar-toggler {
  right: 0;
}

@media (min-width: 768px) {
  .navbar-toggler {
    margin-top: 43px;
  }
}

button:focus {
  outline: none !important;
}
#industry-resources-animation svg{
  height: 600px !important;
}

@media (max-width: 991px) {
#industry-resources-animation svg{
  height: 100% !important;
}
}

.loz {
  background: url(../imgs/loz.png) left center no-repeat;
  width: 60px;
  height: 15px;
  background-size: contain;
  margin-block: 1.5rem;
}

.loz-dark {
  background: url(../imgs/loz-dark.svg) left center no-repeat;
}

.loz.center {
  display: block;
  margin-inline: auto;
}

a.start {
  background: url(../imgs/arrow-right-blued.png) right center no-repeat;
  background-size: auto 75%;
  font-size: 22px;
  padding-right: 20px;
  margin-top: 44px;
}

.espanol a.start {
  background: url(../imgs/arrow-right-blued.png) right center no-repeat;
  background-size: auto 75%;
  font-size: 16px;
  padding-right: 20px;
  margin-top: 44px;
}

a.start:hover {
  background: #002e5c url(../imgs/arrow-right-blued.png) right center no-repeat;
  background-size: auto 75%;
  text-decoration: none;
  opacity: 75%;
}

.intro-text h3 {
  line-height: 1;
  font-size: 33px;
  margin-bottom: 20px;
}

.intro-text p {
  line-height: 1.25;
  font-size: 17px;
}

.footSocial {
  text-align: right;
}

@media (min-width: 768px) {
  a.start {}
}

.d-block{
  display: block;
  min-height:250px;
  background: url(../imgs/download.jpg) center top no-repeat;
  background-size: cover;
  position: relative;
  box-shadow: -1px -1px 21px -3px rgba(0,0,0,0.5);
  -webkit-box-shadow: -1px -1px 21px -3px rgba(0,0,0,0.5);
  -moz-box-shadow: -1px -1px 21px -3px rgba(0,0,0,0.5);
  overflow: hidden;
}
.d-block .title-block{
  position: absolute;
  bottom:-33px;
  background: #002e5c;
  width: 100%;
  padding: 15px 20px;
  display: block;
  transition: all 0.5s ease;
  height:95px;
}
.d-block .title-block h3{
  color: #fff !important;
  margin: 0;
  font-size: 24px !important;
  margin-block-end: 0 !important;
}
.d-block p{
 color: #fff !important;
 margin: 10px 0 0;
 font-size: 18px !important;
 margin-block-end: 0 !important;
 font-weight: 400;
 background: url(../imgs/arrowRight.svg) right center no-repeat;
 background-size: auto 100%;
 display: inline-block;
 padding-right: 26px;
 padding-left:20px;
 position: absolute;
 bottom: 18px;
 opacity: 0;
 transition: all 0.5s ease;
 
}
.download-block a:hover p{
  opacity: 100%;
}
.download-block a:hover .title-block{
  bottom: 0px;
}
.pr-md-2 {
    padding-right: 25px;
}
.pl-md-2 {
    padding-left: 25px;
}
.px-md-2 {
    padding: 0 25px;
}
@media only screen and (max-width:767px){
.pr-md-2 {
    padding-right: 15px;
}
.pl-md-2 {
    padding-left: 15px;
}
.px-md-2 {
    padding:0 15px;
}
}
a.insights {
  background: url(../imgs/arrow.svg) right center no-repeat #00B5DE;
  background-size: auto 100%;
  color: #fff;
  font-size: 15px;
  display: inline-block;
}

a.insights:hover {}

.footer {
  padding: 20px 0 20px;
}

.footer ul {
  padding: 0;
  margin: 0;
  padding-top: 6px;
}

.footer ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.footer ul li a {
  color: #fff;
  font-size: 14px;
}

.footer {
  padding: 10px 0 10px;
  background: #001f3e;
}

.footer p {
  padding: 7px 0 20px;
  font-size: 14px;
  margin: 0;
}

.centered {
  text-align: center;
}

.rfr-resources {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow-y: hidden;
}

.svg__rfr-resources {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-nav {
    margin: 0px 0 15px;
  }
}

a.iconLinkedin {
  background: url(../imgs/linkedin.svg) center center no-repeat;
  background-size: contain;
  height: 35px;
  width: 35px;
  text-indent: 8000px;
  display: inline-block;
}

a.iconTwitter {
  background: url(../imgs/twitter.svg) center center no-repeat;
  background-size: contain;
  height: 35px;
  width: 35px;
  text-indent: 8000px;
  display: inline-block;
}

@media (min-width: 768px) {
  .rounded-right-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }
}

@media (min-width: 768px) {
  .rounded-left-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }
}

.blue-gradient {
  background: linear-gradient(#001f3d, #002d5b);
}

.d-grid {
  display: grid;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 2rem !important;
}
#insights{
  padding-left:0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .gap-2 {
    gap: 0.5rem;
  }
}

.grid-cols-graph-tabs {
  grid-template-columns: repeat(6, minmax(50px, 130px));
}

.grid-cols-currencies {
  grid-template-columns: repeat(3, minmax(50px, 130px));
}

@media (min-width: 768px) {
  .grid-cols-currencies {
    grid-template-columns: repeat(6, minmax(50px, 130px));
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {

  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {

  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



@media (min-width: 768px) {
  .pt-md-6 {
    padding-top: 6rem;
  }
}


.text-2_0 {
  font-size: 2rem;
}

.text-2_5 {
  font-size: 2.5rem;
}

.text-4_5 {
  font-size: 4.5rem;
}

.accordion-item {
  margin-bottom: 0.3rem;
}

.accordion-header {
  background-color: #0c6197;
  border-radius: 500px;
}

.accordion-button {
  padding-left: 1rem;
}

.accordion-button::after {
  background-color: #17a2b8;
  border-radius: 500px;
  position: relative;
  right: 0;
  height: 1.8rem;
  width: 1.8rem;
  background-position: center;
  background-size: 30px;
}

.accordion-button:focus {
  outline-color: #A75000;
}

.accordion-body {
  color: white;
}

.banner-video{
  width:100%;
  aspect-ratio: 16/9;
  margin-block-end: 22px;
}

h3.banner-video-title{
	margin-bottom: 50px;
	font-weight: 600;
	color: #fff;
	font-size: 18px;
	line-height: 1.25;
}

.jw-svg-icon-play path {	
  display: none;
}
.jw-state-idle .jw-controls {
  background: rgba(0,0,0,0) !important;
}
.jw-breakpoint-1 .jw-display .jw-icon, .jw-breakpoint-1 .jw-display .jw-svg-icon{
  height:90px !important;
  width:auto  !important;
}
.jw-breakpoint-2 .jw-display .jw-icon, .jw-breakpoint-2 .jw-display .jw-svg-icon{
  height:130px !important;
  width:auto  !important;
}
.jw-breakpoint-3 .jw-display .jw-icon, .jw-breakpoint-3 .jw-display .jw-svg-icon{
  height:170px;
  width:auto;
}
.jw-breakpoint-4 .jw-display .jw-icon, .jw-breakpoint-4 .jw-display .jw-svg-icon{
  height:190px !important;
  width:auto  !important;
}

.jw-svg-icon-play {
  background-image: url('../imgs/play-icon.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  filter: opacity(0.5);
}


.timeline-wrapper {
  -ms-overflow-style: none;

  scrollbar-width: none;

  overflow-x: scroll;
}

.timeline-wrapper::-webkit-scrollbar {
  display: none;

}

#transition h2 {
  color: #002e5c;
}

#background,#clearing{
  padding-block-start: 5.1rem;
  padding-block-end: 3.1rem;
}

#background h2, #background h3, #clearing h2, #clearing h3{
  /* margin-top: 60px;
  margin-bottom: 25px; */
  margin-block-end: .6rem;
  font-weight: 600;
  color: #0076a8;
  font-size: 34px;
}
#clearing h3{
  font-size: 28px;
}

#timeline h2 {
  margin-top: 70px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0076a8;
  font-size: 32px;
}

#resources h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
  font-size: 32px;
}

#resources h3 {
  margin-top: 21px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #f2ba47;
  font-size: 23px;
}

#resources ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

#resources ul li {
  padding-left: 20px;
  background: url(../imgs/arrow-right-blued.png) left top no-repeat;
  background-size: auto 17px;
  margin-bottom: 4px;
  background-position-y: 4px;
  font-size: 17px;
}

#resources ul li a {
  color: #fff;
}

#resources ul li a:hover {}

#resources ul li a:hover {
  text-decoration: none;
  opacity: 75%;
  color: #55b2da;

}

#insights h2 {
  margin-top: 10px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #0076a8;
  font-size: 32px;
}

#insights p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #002144;
  font-size: 18px;
  line-height: 1.25;
}

#insights a:hover {
  text-decoration: none;
}

#insights a:hover p {
  color: #0076a8 !important;
}

#awards h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0076a8;
  font-size: 32px;
}

#background ul, #clearing ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 50px;
}

#background ul li,#clearing ul li {
  padding-left: 20px;
  background: url(../imgs/arrow-right-blued.png) left top no-repeat;
  background-size: auto 17px;
  margin-bottom: 4px;
  background-position-y: 4px;
  font-size: 17px;
  line-height: 1.25;
}

#get-in-touch h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
  font-size: 32px;
}

#switch img {
  width: 100%;
  height: auto;
}

#switch h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #0076a8;
  font-size: 32px;
}
.g-recaptcha {
    margin: 21px 7px;
}
.rotate-180 {
  transform: rotate(180deg);
}

.border-capsule {
  border-radius: 500px;
}

a.hover-bg-blue-700:hover {
  background-color: #002d5b !important;
}

a.active.active-bg-cyan-500 {
  background-color: #00B5DE !important;
}

.slick-slider {
  width: 100%;
}

.slick-slider h4 {
  margin-top: 15px;
}

.slick-slider h4 span {
  display: block;
  font-weight: normal;
  text-transform: none;
  margin-top: 10px;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 33px !important;
  height: 33px !important;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: url(../imgs/arrow-blue-800.svg) no-repeat !important;
  background-size: contain !important;
  text-indent: -2000px;
  z-index: 200;
  transition: all 0.5s ease;
}

.slick-next {
  transform: translate(0, -50%);
}

.slick-prev {
  transform: translate(0, -50%) rotate(180deg) !important;
}

.slick-next:hover {
  background: url(../imgs/arrow-blue-800.svg) no-repeat !important;
}

.slick-prev:hover {
  background: url(../imgs/arrow-blue-800.svg) no-repeat !important;
}

.slick-prev:before,
.slick-next:before {
  content: '' !important;
}

.inter {
  padding: 10px 5px;
}

.inter img {
  width: 100%;
  height: auto;
}

iframe {
  height: 650px;
}

.navbar-nav a.start {
  display: none;
}

.bg-blue-900 {
  position: relative;
}

.bg-blue-900::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 31, 61, 0.6);
  /* Adjust transparency here */
  z-index: 1;
  display: none;
  /* Hide by default */
}

@media (max-width: 991px) {
  .bg-blue-900::before {
    display: block;
    /* Show overlay on mobile */
  }
}

.bg-blue-900>.container {
  position: relative;
  z-index: 2;
  /* Ensure text is above the overlay */
}

.header-box {
  position: relative;
  overflow-y: hidden;
  min-height: 410px;
}

.header-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 17, 40, 0.45);
  /* Adjust transparency here */
  z-index: 1;
  display: none;
  /* Hide by default */
}

@media (max-width: 991px) {
  .header-box::before {
    display: block;
    /* Show overlay on mobile */
  }
}

.header-box>.container {
  position: relative;
  z-index: 2;
  /* Ensure text is above the overlay */
}

@media (min-width: 768px) {
  iframe {
    height: 480px;
  }
}

@media (min-width: 992px) {

}

@media (max-width: 1199px) {
  a.navbar-brand img {
    margin: 34px 0 1px;
  }



}

@media (max-width: 991px) {
  a.navbar-brand img {
    margin: 21px 0 1px;
  }
}
@media only screen and (max-width:1020px){

}
@media (max-width: 768px) {
  a.navbar-brand img {
    margin: 42px 0 1px;
  }

  a.start {
    margin-top: 40px;
  }

  .title-resp {
    padding-top: 130px !important;
    padding-bottom: 100px !important;
  }

  
  .header-box {
      min-height: unset;
  }

  .title-resp h2 {
    font-size: 3.5rem !important;
  }

  .navbar-dark .navbar-toggler-icon {
    margin-top: 38px;
  }

  .intro-sub {
    font-size: 28px;
  }

  .header-box {
    background-size: cover !important;
  }

  .footSocial {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .hide-git {
    display: none;
  }

  .navbar-nav a.start {
    display: block;
    padding-right: 20px;
    margin-top: 20px;
    max-width: 150px;
    margin-bottom: 20px;
    float: left;
    margin-left: 15px !important;
  }
}

.time-stack {
  position: relative;
  width: 100%;
  height: auto;
  margin-block-end: 100px;
}

.time-stack img {
  width: 100%;
  height: auto;
}

.time-stamps {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
}

.time-stamps div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  border: 1px solid green;
}

#switch svg {
  max-height: 274px;
}

@media only screen and (max-width:1199px){
  #switch svg {
    max-height: 228px;
  }
}
@media only screen and (max-width:991px){
  #switch svg {
    max-height: 168px;
  }
}
.switch-lozenge{
  height:200px;
}
.reference-rate-switch-animation-wrapper, .central-counterparty-switch-animation-wrapper{
  margin-top:-200px;
}
@media (min-width: 768px) {
  .switch-lozenge{
    height:200px;
  }
  .reference-rate-switch-animation-wrapper, .central-counterparty-switch-animation-wrapper{
    margin-top:-180px;
  }
}
@media (min-width: 992px) {
  .switch-lozenge{
    height:240px;
  }
  .reference-rate-switch-animation-wrapper, .central-counterparty-switch-animation-wrapper{
    margin-top:-240px;
  }
}
@media (min-width: 1200px) {
  .switch-lozenge{
    height:300px;
  }
  .reference-rate-switch-animation-wrapper, .central-counterparty-switch-animation-wrapper{
    margin-top:-300px;
  }
}


#timeline-for-transition-animation{
  display:flex;
  flex-wrap: wrap;
}

#timeline-for-transition-animation div{
  flex: 1 auto;
}

.expand-inline-margin{
  margin-inline: -13px;
}
.card-body{
  margin-bottom: 40px;
}
.card-body h5{
  color: #002d5b;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.card-body h4{
  color: #0076a8;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px;
}
.card-img-top{
  margin-bottom:20px;
}

#banner-animation{
  width: 100%;
  height: 190% !important;
  transform: translate3d(0px, -350px, 0px) !important;
}
@media only screen and (max-width:767px){
  #banner-animation {
    width: 100%;
    height: 190% !important;
    transform: translate3d(0px, -210px, 0px) !important;
}
}