a {
  color: #335B74;
}
a:hover {
  color: #03BFD7;
}

body {
  color: #26282F;
  font-family: "CenturyGothic", "Century Gothic", Arial, Helvetica, sans-serif;
}

.btn-primary {
  background-color: #335B74;
  border: 2px solid #03BFD7;
}
.btn-primary:active {
  background-color: #5891b5 !important;
  border: 2px solid #03BFD7 !important;
}
.btn-primary:focus {
  background-color: #335B74;
  border: 2px solid #03BFD7;
}
.btn-primary:hover {
  background-color: #233f51;
  border: 2px solid #03BFD7;
}

.pill-date {
  background-color: #335B74;
  color: #fff;
  padding: 6px 12px;
}

#topBtn {
  border-radius: 0;
  display: none;
  font-size: 18px;
  padding: 20px;
  width: 100%;
}
@media (min-width: 576px) {
  #topBtn {
    border-radius: 12px;
    bottom: 220px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    position: fixed;
    right: -10px;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 9999;
  }
}

.btn-outline-secondary {
  border: 1px solid #495A5D;
}
.btn-outline-secondary:active {
  background-color: #5891b5;
  border: 1px solid #03BFD7;
}
.btn-outline-secondary:focus {
  background-color: #335B74;
  border: 1px solid #03BFD7;
}
.btn-outline-secondary:hover {
  background-color: #233f51;
  border: 1px solid #03BFD7;
}

:not(.btn-check) + .btn:active {
  background-color: #5891b5;
  border: 2px solid #03BFD7;
}

.h1 {
  color: dark;
  font-weight: 700;
}

.h3 {
  color: #335B74;
  font-weight: 700;
}

nav {
  background: #fff;
  box-shadow: 3px 0px 12px rgba(0, 0, 0, 0.3764705882);
}
nav .navbar-brand:focus, nav .navbar-brand:focus-visible {
  outline: 2px solid #335B74 !important;
}
nav .navbar-brand .logo {
  max-width: 175px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  nav .navbar-brand .logo {
    max-width: 190px;
  }
}
@media (min-width: 992px) {
  nav .navbar-brand .logo {
    max-width: 255px;
  }
}
nav .navbar-toggler {
  border: 0;
}
nav .navbar-toggler:focus, nav .navbar-toggler:focus-visible {
  box-shadow: none;
  outline: 2px solid #335B74 !important;
}
nav .nav {
  display: block;
}
@media (min-width: 768px) {
  nav .nav {
    display: inline-flex;
  }
}
nav .nav .nav-item {
  font-weight: 700;
  margin: 5px;
}
@media (max-width: 767px) {
  nav .nav .nav-item:first-child {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  nav .nav .nav-item {
    margin: 0 0 5px;
  }
}
@media (min-width: 992px) {
  nav .nav .nav-item {
    margin: 5px 0 5px 10px;
  }
}
nav .nav .nav-item a {
  border-radius: 10px;
  display: flex;
  padding: 10px;
  text-decoration: none;
}
nav .nav .nav-item a:hover {
  background: #335B74;
  color: #fff;
}
nav .nav .nav-item a:focus, nav .nav .nav-item a:focus-visible {
  outline: 2px solid #335B74;
}
@media (max-width: 767px) {
  nav .nav .nav-item a {
    font-size: 18px;
  }
}

header {
  background: #26282F;
  background-position: right bottom;
  padding: 140px 0 60px;
  position: relative;
}
header .container {
  position: relative;
  z-index: 1;
}
header .bg-image {
  background: url(../img/main-img.webp) no-repeat;
  background-size: contain;
  background-position: right;
  display: none;
  height: 35vh;
  opacity: 0.2;
  position: absolute;
  top: 25vw;
  width: 100%;
  z-index: 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  header .bg-image {
    background: url(../img/main-img-2x.webp) no-repeat;
    background-size: contain;
    background-position: right;
    display: none;
    height: 35vh;
    opacity: 0.2;
    position: absolute;
    top: 25vw;
    z-index: 0;
  }
}
header .bg-image.error404 {
  background: url(../img/404-img.jpg) no-repeat;
  background-size: contain;
  background-position: right;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .bg-image {
    display: block;
    height: 420px;
    opacity: 1;
    top: 140px;
  }
}
@media (min-width: 1200px) {
  header .bg-image {
    display: block;
    height: 500px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    top: 115px;
    max-width: 1500px;
  }
}
header h1 {
  color: #03BFD7;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header h1 {
    font-size: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header h1 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  header h1 {
    font-size: 70px;
  }
}
header p {
  color: #fff;
  font-size: 1.1em;
}
@media (min-width: 768px) {
  header p {
    font-size: 1.2em;
  }
}

section .section-title {
  margin: 0 0 40px;
}
section .section-title.center {
  margin: 20px auto;
  text-align: center;
}
@media (min-width: 768px) {
  section .section-title.center {
    margin: 40px auto;
  }
}
@media (min-width: 992px) {
  section .section-title {
    max-width: 500px;
  }
}
section.news {
  border-bottom: 2px solid #EDEFF0;
  padding-bottom: 40px;
  width: 100%;
}
section.news .news-title {
  width: 100%;
}
section.news .news-title h1 {
  border-bottom: 2px solid #03BFD7;
  color: dark;
  display: inline-block;
  font-size: 20px;
  padding: 0.75rem 4rem;
  margin-bottom: 20px;
}
section.method {
  background-image: url(../img/bg-squares.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 400px;
  margin: 40px 0 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  section.method {
    background-position: bottom;
    background-size: 592px 200px;
  }
}
@media (min-width: 992px) {
  section.method {
    background-position: center right;
    background-size: 480px 400px;
  }
}
@media (min-width: 1200px) {
  section.method {
    background-size: 592px;
  }
}
section.method .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) and (max-width: 991px) {
  section.method .features {
    grid-template-columns: repeat(4, 1fr);
  }
}
section.method .features .feature-item {
  display: flex;
  padding: 10px;
}
section.method .feature {
  background: rgba(255, 255, 255, 0.5843137255);
  border: 2px solid #03BFD7;
  border-radius: 16px;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.1882352941);
  color: #495A5D;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.2em;
  padding: 30px 30px 15px 30px;
  text-align: center;
  width: 100%;
}
section.method .feature .feature-icon {
  height: 60px;
}
section.method .feature p {
  margin: 10px auto 0;
  max-width: 120px;
}
section.capabilities {
  background: #F3F7FA;
  border-radius: 24px;
  margin: 10px;
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  section.capabilities {
    padding: 10px 40px 40px 40px;
  }
}
@media (min-width: 992px) {
  section.capabilities {
    padding: 10px 60px 40px 60px;
  }
}
section.capabilities .capability {
  align-items: flex-start;
  display: flex;
  padding: 20px;
}
section.capabilities .capability .capability-icon {
  background: #03BFD7;
  border-radius: 40px;
  margin-right: 15px;
  padding: 10px;
}
section.capabilities .capability .capability-icon img {
  width: 30px;
}
section.capabilities .capability .capability-text h3 {
  color: #26282F;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3em;
}
section.capabilities .capability .capability-text p {
  margin-bottom: 0;
}

.modal-header {
  align-items: normal;
}
.modal-header h5 {
  width: 95%;
}

.customer-accordion {
  margin: 40px auto;
  max-width: 800px;
}
.customer-accordion .accordion-item:first-of-type,
.customer-accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 12px 12px 0 0;
}
.customer-accordion .accordion-item:last-of-type,
.customer-accordion .accordion-item:last-of-type .accordion-button:is(.collapsed) {
  border-radius: 0 0 12px 12px;
}
.customer-accordion .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23335B74'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.customer-accordion button {
  color: #335B74;
  font-size: 0.7em;
  font-weight: 700;
}
.customer-accordion button:not(.collapsed) {
  background: #e5eef4;
  color: #335B74;
}
.customer-accordion button:focus, .customer-accordion button:focus-visible {
  box-shadow: none;
  outline: 2px solid #335B74 !important;
}
.customer-accordion li {
  margin: 10px;
}

footer {
  background: #26282F;
  color: #fff;
  font-size: 0.95em;
  line-height: 1.75em;
  margin-top: 100px;
}
footer .footer-accent {
  margin-top: -36px;
  width: 100%;
}
footer a {
  color: #03BFD7;
}

.chart {
  border: 2px solid #335B74;
  border-radius: 24px;
  margin: 0 auto 60px;
  max-width: 1000px;
}
.chart .chart-header {
  background-color: #335B74;
  border-radius: 20px 20px 0 0;
  color: #fff;
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .chart .chart-header {
    padding: 30px 0;
  }
}
.chart .chart-header h1 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}
.chart .chart-header h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.chart .chart-header .stream {
  margin: 0 auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (min-width: 768px) {
  .chart .chart-header .stream {
    align-items: center;
    display: flex;
  }
}
.chart .chart-header .stream .sub-header {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .chart .chart-header .stream .sub-header:last-child {
    margin-left: 15px;
  }
}
.chart .chart-header .stream .sub-header .title-label {
  font-size: 18px;
  width: 170px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .chart .chart-header .stream .sub-header .title-label {
    width: 90px;
  }
}
.chart .chart-header .stream .arrows {
  align-items: center;
  display: flex;
  margin: 10px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .chart .chart-header .stream .arrows {
    margin: 10px 20px;
  }
}
.chart .chart-header .stream .arrows .arrowBg {
  filter: drop-shadow(1px 0px 0px #ffffff) drop-shadow(-1px 0px 0px #ffffff) drop-shadow(0px 1px 0px #ffffff) drop-shadow(0px -1px 0px #ffffff) drop-shadow(1px 1px 0px #ffffff) drop-shadow(-1px -1px 0px #ffffff) drop-shadow(-1px 1px 0px #ffffff) drop-shadow(1px -1px 0px #ffffff);
  margin-right: -10px;
  position: relative;
}
.chart .chart-header .stream .arrows .arrowBg:nth-child(1) {
  z-index: 3;
}
.chart .chart-header .stream .arrows .arrowBg:nth-child(1) .arrow {
  padding: 6px 18px 6px 10px;
}
@media (min-width: 768px) {
  .chart .chart-header .stream .arrows .arrowBg:nth-child(1) .arrow {
    padding: 8px 25px 8px 15px;
  }
}
.chart .chart-header .stream .arrows .arrowBg:nth-child(2) {
  z-index: 2;
}
.chart .chart-header .stream .arrows .arrowBg:nth-child(3) {
  z-index: 1;
}
.chart .chart-header .stream .arrows .arrowBg .arrow {
  border-radius: 6px;
  background: #213F52;
  -webkit-clip-path: polygon(calc(100% - 20px) 0%, 0 0, 0 100%, calc(100% - 20px) 100%, 100% 50%);
          clip-path: polygon(calc(100% - 20px) 0%, 0 0, 0 100%, calc(100% - 20px) 100%, 100% 50%);
  font-size: 14px;
  padding: 6px 18px 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 991px) {
  .chart .chart-header .stream .arrows .arrowBg .arrow {
    font-size: 15px;
    padding: 8px 25px 8px;
  }
}
@media (min-width: 992px) {
  .chart .chart-header .stream .arrows .arrowBg .arrow {
    font-size: 17px;
    padding: 8px 25px 8px;
  }
}
.chart .chart-content .method {
  margin: 10px;
}
@media (min-width: 768px) {
  .chart .chart-content .method {
    margin: 20px;
  }
}
.chart .chart-content .method .title {
  background: #335B74;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.chart .chart-content .method .title h3 {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.chart .chart-content .method .icon-set {
  margin: 0 auto;
  max-width: 400px;
  padding: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .chart .chart-content .method .icon-set {
    max-width: 768px;
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .chart .chart-content .method .icon-set {
    max-width: 768px;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .chart .chart-content .method .icon-set {
    max-width: 768px;
    padding: 40px;
  }
}
.chart .chart-footer {
  background-color: #335B74;
  border-radius: 0 0 20px 20px;
  color: #fff;
  padding: 20px 20px 15px;
  text-align: center;
}
.chart .chart-footer h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.chart .chart-footer .icon-set {
  font-size: 14px;
  margin: 0 auto;
  max-width: 800px;
  text-transform: uppercase;
}
.chart .chart-footer .icon-set .labelled-icon {
  font-weight: 700;
  margin-bottom: 20px;
}
.chart .chart-footer .icon-set .labelled-icon img {
  margin-bottom: 10px;
  max-width: 45px;
  width: 100%;
}/*# sourceMappingURL=styles.css.map */