* {
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 10px;
  line-height: 1.2;
}
html.fixed-header {
  overflow: hidden;
}
@media (min-width: 992px) {
  html.fixed-header {
    overflow: auto !important;
  }
}

body {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-size: 1.6rem;
  color: #000;
  background-color: #F2F7FC;
  overflow-x: hidden;
}
body.fixed-header {
  overflow: hidden;
}
@media (min-width: 992px) {
  body.fixed-header {
    overflow: auto !important;
  }
}

main {
  margin-top: 8rem;
}
@media (min-width: 400px) {
  main {
    margin-top: 8.63rem;
  }
}
@media (min-width: 992px) {
  main {
    margin-top: 0 !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

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

p {
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

a {
  color: #00498E;
  text-decoration: none;
}

figure {
  margin-bottom: 0;
}

.img-placeholder {
  position: relative;
  display: block;
}
.img-placeholder:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.img-placeholder img, .img-placeholder video, .img-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 79, 60, 0.6);
  z-index: 10000;
  display: none;
}
.modal .modal-wrapper {
  width: 100%;
  height: 100%;
}
.modal .modal-wrapper .modal-inner {
  background-color: #fff;
  flex: 0 0 500px;
  width: 500px;
  max-width: 90%;
  border-radius: 20px;
}
.modal .modal-wrapper .modal-inner .modal-header {
  padding: 10px 20px;
}
.modal .modal-wrapper .modal-inner .modal-header .modal-title {
  font-size: 24px;
  line-height: 1.2;
}
.modal .modal-wrapper .modal-inner .modal-body {
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-control {
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-group {
    margin-bottom: 1rem;
  }
}
.modal .modal-wrapper .modal-inner .modal-footer {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}
.modal .modal-wrapper .modal-inner .fake-input {
  line-height: 4rem;
  border: 2px solid #d9d9d9;
  font-size: 1.4rem;
  padding: 0 2.5rem;
  border-radius: 9px;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .fake-input {
    font-size: 1.6rem;
  }
}
.modal .modal-wrapper .modal-inner button {
  border: none;
  cursor: pointer;
}
.modal .modal-wrapper .modal-inner .modal-close {
  cursor: pointer;
}
.modal .modal-wrapper .modal-inner .modal-close path {
  stroke: #000;
}
.modal .thankyou-icon, .modal .error-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.modal .thankyou-icon svg, .modal .error-icon svg {
  fill: #fff;
}
.modal .thankyou-icon {
  background-color: #1f4f3c;
}
.modal .error-icon {
  background-color: red;
}

.banner,
.bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-wrapper,
.bnr-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.banner-wrapper:after,
.bnr-wrapper:after {
  content: "Oglas";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fefefe;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.banner-wrapper .banner-inner,
.banner-wrapper .bnr-inner,
.bnr-wrapper .banner-inner,
.bnr-wrapper .bnr-inner {
  position: relative;
  z-index: 2;
}

.branding-left,
.branding-right {
  display: none !important;
}

.adrotate_widgets .widget-title {
  display: none;
}

.adrotate_widgets {
  margin-bottom: 2rem;
}

/*
@media (min-width: 992px) {
    .branding-left,
    .branding-right {
        position: fixed;
        top: 11.86rem;
        display: block !important;
        z-index: 1;
        //height: 100vh;
        min-width: 375px;
        //width: 100%;
        //background-color: lightblue;
    }
    .branding-left {
        right: calc(100vw - (100vw - 960px) / 2);
    }
    .branding-right {
        left: calc(100vw - (100vw - 960px) / 2);
    }
}
@media (min-width: 1265px) {
    .branding-left {
        right: calc(100vw - (100vw - 1260px) / 2);
    }
    .branding-right {
        left: calc(100vw - (100vw - 1260px) / 2);
    }
}
@media (min-width: 1400px) {
    .branding-left {
        right: calc(100vw - (100vw - 1390px) / 2);
    }
    .branding-right {
        left: calc(100vw - (100vw - 1390px) / 2);
    }
}
*/
@media (min-width: 992px) {
  .layout {
    display: flex;
    column-gap: 2rem;
    flex-wrap: wrap;
  }
}
@media (min-width: 1265px) {
  .layout {
    column-gap: 3.8rem;
  }
}
@media (min-width: 992px) {
  .layout .main-content {
    flex: 0 0 calc(100% - 28rem);
  }
}
@media (min-width: 1265px) {
  .layout .main-content {
    flex: 0 0 calc(100% - 29.8rem);
  }
}
.layout .sidebar {
  flex: 0 0 300px;
  width: 300px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .layout .sidebar {
    padding-top: 13.5rem;
    flex: 0 0 26rem;
    width: 26rem;
    margin-left: auto;
    margin-right: 0;
  }
}
.layout .sidebar .bnr {
  margin-bottom: 2rem;
}
.layout .sidebar .bnr img {
  display: block;
  width: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader .page-loader-heartbeat {
  display: block;
  width: min(200px, 60vw);
  height: auto;
  overflow: visible;
}
.page-loader .page-loader-heartbeat-base,
.page-loader .page-loader-heartbeat-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.page-loader .page-loader-heartbeat-base {
  stroke: rgba(213, 24, 32, 0.16);
}
.page-loader .page-loader-heartbeat-line {
  stroke: #d51820;
  stroke-dasharray: 52 260;
  stroke-dashoffset: 312;
  animation: page-loader-heartbeat 1.35s linear infinite;
}

body.page-loading {
  overflow: hidden;
}

@keyframes page-loader-heartbeat {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader .page-loader-heartbeat-line {
    stroke-dasharray: none;
    animation: none;
  }
}
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.position-relative {
  position: relative;
}

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

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

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-static {
  position: static;
}

.position-fixed {
  position: fixed;
}

.btn, .btn-secondary, .btn-light, .btn-dark, .btn-white, .btn-info, .btn-warning-light, .btn-warning, .btn-danger, .btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.2s linear;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  border-radius: 10rem;
  padding: 1.6rem 2.4rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background-color: #000;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: black;
  color: #fff !important;
}

.bg-primary {
  background-color: #000;
}

.text-primary {
  color: #000 !important;
}

.btn-danger {
  background-color: #FF4B51;
  color: #fff !important;
}
.btn-danger:hover {
  background-color: #ff1820;
  color: #fff !important;
}

.bg-danger {
  background-color: #FF4B51;
}

.text-danger {
  color: #FF4B51 !important;
}

.btn-warning {
  background-color: #FD7944;
  color: #000 !important;
}
.btn-warning:hover {
  background-color: #fc5512;
  color: #fff !important;
}

.bg-warning {
  background-color: #FD7944;
}

.text-warning {
  color: #FD7944 !important;
}

.btn-warning-light {
  background-color: #FFD77F;
  color: #000 !important;
}
.btn-warning-light:hover {
  background-color: #ffc74c;
  color: #000 !important;
}

.bg-warning-light {
  background-color: #FFD77F;
}

.text-warning-light {
  color: #FFD77F !important;
}

.btn-info {
  background-color: #00498E;
  color: #fff !important;
}
.btn-info:hover {
  background-color: #002f5b;
  color: #fff !important;
}

.bg-info {
  background-color: #00498E;
}

.text-info {
  color: #00498E !important;
}

.btn-white {
  background-color: #fff;
  color: #000 !important;
}
.btn-white:hover {
  background-color: #e6e6e6;
  color: #000 !important;
}

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

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

.btn-dark {
  background-color: #000;
  color: #fff !important;
}
.btn-dark:hover {
  background-color: black;
  color: #fff !important;
}

.bg-dark {
  background-color: #000;
}

.text-dark {
  color: #000 !important;
}

.btn-light {
  background-color: #D8D8D8;
  color: #000 !important;
}
.btn-light:hover {
  background-color: #bfbfbf;
  color: #000 !important;
}

.bg-light {
  background-color: #D8D8D8;
}

.text-light {
  color: #D8D8D8 !important;
}

.btn-secondary {
  background-color: #0B2A4D;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #051220;
  color: #fff !important;
}

.bg-secondary {
  background-color: #0B2A4D;
}

.text-secondary {
  color: #0B2A4D !important;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row > [class*=col-] {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.row.no-gutters {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.row.no-gutters > [class*=col-] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

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

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

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

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

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

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

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

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

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

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

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

.align-items-end {
  align-items: flex-end;
}

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

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

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

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

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

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

.justify-content-around {
  justify-content: space-around;
}

@media (min-width: 450px) {
  .col-xm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-xm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

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

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

  .col-xm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-xm-none {
    display: none !important;
  }

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

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

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

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

  .flex-xm-wrap {
    flex-wrap: wrap;
  }

  .flex-xm-nowrap {
    flex-wrap: nowrap;
  }

  .flex-xm-row {
    flex-direction: row;
  }

  .flex-xm-column {
    flex-direction: column;
  }

  .align-items-xm-start {
    align-items: flex-start;
  }

  .align-items-xm-end {
    align-items: flex-end;
  }

  .align-items-xm-center {
    align-items: center;
  }

  .align-items-xm-stretch {
    align-items: stretch;
  }

  .align-content-xm-start {
    align-content: flex-start;
  }

  .align-content-xm-end {
    align-content: flex-end;
  }

  .align-content-xm-center {
    align-content: center;
  }

  .align-content-xm-stretch {
    align-content: stretch;
  }

  .align-content-xm-between {
    align-content: space-between;
  }

  .justify-content-xm-start {
    justify-content: flex-start;
  }

  .justify-content-xm-end {
    justify-content: flex-end;
  }

  .justify-content-xm-center {
    justify-content: center;
  }

  .justify-content-xm-between {
    justify-content: space-between;
  }

  .justify-content-xm-around {
    justify-content: space-around;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

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

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

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-sm-none {
    display: none !important;
  }

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

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

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

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

  .flex-sm-wrap {
    flex-wrap: wrap;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }

  .flex-sm-row {
    flex-direction: row;
  }

  .flex-sm-column {
    flex-direction: column;
  }

  .align-items-sm-start {
    align-items: flex-start;
  }

  .align-items-sm-end {
    align-items: flex-end;
  }

  .align-items-sm-center {
    align-items: center;
  }

  .align-items-sm-stretch {
    align-items: stretch;
  }

  .align-content-sm-start {
    align-content: flex-start;
  }

  .align-content-sm-end {
    align-content: flex-end;
  }

  .align-content-sm-center {
    align-content: center;
  }

  .align-content-sm-stretch {
    align-content: stretch;
  }

  .align-content-sm-between {
    align-content: space-between;
  }

  .justify-content-sm-start {
    justify-content: flex-start;
  }

  .justify-content-sm-end {
    justify-content: flex-end;
  }

  .justify-content-sm-center {
    justify-content: center;
  }

  .justify-content-sm-between {
    justify-content: space-between;
  }

  .justify-content-sm-around {
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }

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

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .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-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-md-none {
    display: none !important;
  }

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

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

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

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

  .flex-md-wrap {
    flex-wrap: wrap;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap;
  }

  .flex-md-row {
    flex-direction: row;
  }

  .flex-md-column {
    flex-direction: column;
  }

  .align-items-md-start {
    align-items: flex-start;
  }

  .align-items-md-end {
    align-items: flex-end;
  }

  .align-items-md-center {
    align-items: center;
  }

  .align-items-md-stretch {
    align-items: stretch;
  }

  .align-content-md-start {
    align-content: flex-start;
  }

  .align-content-md-end {
    align-content: flex-end;
  }

  .align-content-md-center {
    align-content: center;
  }

  .align-content-md-stretch {
    align-content: stretch;
  }

  .align-content-md-between {
    align-content: space-between;
  }

  .justify-content-md-start {
    justify-content: flex-start;
  }

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

  .justify-content-md-center {
    justify-content: center;
  }

  .justify-content-md-between {
    justify-content: space-between;
  }

  .justify-content-md-around {
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

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

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

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

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

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-lg-none {
    display: none !important;
  }

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

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

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

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

  .flex-lg-wrap {
    flex-wrap: wrap;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }

  .flex-lg-row {
    flex-direction: row;
  }

  .flex-lg-column {
    flex-direction: column;
  }

  .align-items-lg-start {
    align-items: flex-start;
  }

  .align-items-lg-end {
    align-items: flex-end;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .align-items-lg-stretch {
    align-items: stretch;
  }

  .align-content-lg-start {
    align-content: flex-start;
  }

  .align-content-lg-end {
    align-content: flex-end;
  }

  .align-content-lg-center {
    align-content: center;
  }

  .align-content-lg-stretch {
    align-content: stretch;
  }

  .align-content-lg-between {
    align-content: space-between;
  }

  .justify-content-lg-start {
    justify-content: flex-start;
  }

  .justify-content-lg-end {
    justify-content: flex-end;
  }

  .justify-content-lg-center {
    justify-content: center;
  }

  .justify-content-lg-between {
    justify-content: space-between;
  }

  .justify-content-lg-around {
    justify-content: space-around;
  }
}
@media (min-width: 1265px) {
  .container {
    max-width: 1260px;
  }

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

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

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

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

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-xl-none {
    display: none !important;
  }

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

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

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

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

  .flex-xl-wrap {
    flex-wrap: wrap;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }

  .flex-xl-row {
    flex-direction: row;
  }

  .flex-xl-column {
    flex-direction: column;
  }

  .align-items-xl-start {
    align-items: flex-start;
  }

  .align-items-xl-end {
    align-items: flex-end;
  }

  .align-items-xl-center {
    align-items: center;
  }

  .align-items-xl-stretch {
    align-items: stretch;
  }

  .align-content-xl-start {
    align-content: flex-start;
  }

  .align-content-xl-end {
    align-content: flex-end;
  }

  .align-content-xl-center {
    align-content: center;
  }

  .align-content-xl-stretch {
    align-content: stretch;
  }

  .align-content-xl-between {
    align-content: space-between;
  }

  .justify-content-xl-start {
    justify-content: flex-start;
  }

  .justify-content-xl-end {
    justify-content: flex-end;
  }

  .justify-content-xl-center {
    justify-content: center;
  }

  .justify-content-xl-between {
    justify-content: space-between;
  }

  .justify-content-xl-around {
    justify-content: space-around;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1310px;
  }

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

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

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

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

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

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

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .d-xxl-none {
    display: none !important;
  }

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

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

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

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

  .flex-xxl-wrap {
    flex-wrap: wrap;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }

  .flex-xxl-row {
    flex-direction: row;
  }

  .flex-xxl-column {
    flex-direction: column;
  }

  .align-items-xxl-start {
    align-items: flex-start;
  }

  .align-items-xxl-end {
    align-items: flex-end;
  }

  .align-items-xxl-center {
    align-items: center;
  }

  .align-items-xxl-stretch {
    align-items: stretch;
  }

  .align-content-xxl-start {
    align-content: flex-start;
  }

  .align-content-xxl-end {
    align-content: flex-end;
  }

  .align-content-xxl-center {
    align-content: center;
  }

  .align-content-xxl-stretch {
    align-content: stretch;
  }

  .align-content-xxl-between {
    align-content: space-between;
  }

  .justify-content-xxl-start {
    justify-content: flex-start;
  }

  .justify-content-xxl-end {
    justify-content: flex-end;
  }

  .justify-content-xxl-center {
    justify-content: center;
  }

  .justify-content-xxl-between {
    justify-content: space-between;
  }

  .justify-content-xxl-around {
    justify-content: space-around;
  }
}
.form-group {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .form-group {
    margin-bottom: 3rem;
  }
}

.input-group {
  display: flex;
  width: 100%;
  min-width: 1px;
}
.input-group input {
  border-right: none !important;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  flex: 0 1 100%;
  min-width: 1px;
}
.input-group .input-group-append .btn, .input-group .input-group-append .btn-primary, .input-group .input-group-append .btn-danger, .input-group .input-group-append .btn-warning, .input-group .input-group-append .btn-warning-light, .input-group .input-group-append .btn-info, .input-group .input-group-append .btn-white, .input-group .input-group-append .btn-dark, .input-group .input-group-append .btn-light, .input-group .input-group-append .btn-secondary {
  height: 100%;
  border-radius: 0;
  font-size: 1.3rem;
}
.input-group .input-group-append .text {
  height: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border: 2px solid #d9d9d9;
  border-left: none;
  border-radius: 0 9px 9px 0;
  padding: 0 1rem;
  font-size: 1.4rem;
  color: #a6a6a6;
}
.input-group .input-group-append .text:before {
  content: "";
  width: 1px;
  height: 60%;
  top: 20%;
  background-color: #a6a6a6;
  left: 0;
  position: absolute;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-control {
  height: auto;
  line-height: 4.5rem;
  transition: 0.2s linear;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  display: block;
  font-size: 1.4rem;
  border: none;
  border-radius: 9px;
  padding: 0 15px;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  font-weight: 600;
  color: #000;
}
@media (min-width: 768px) {
  .form-control {
    line-height: 5rem;
    padding: 0 2.5rem;
    font-size: 1.6rem;
  }
}
.form-control::placeholder {
  opacity: 1;
  color: #a6a6a6;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .form-control::placeholder {
    font-size: 1.6rem;
  }
}
.form-control[type=number] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
@media (min-width: 768px) {
  .form-control[type=number] {
    text-align: right;
  }
}
.form-control::-webkit-outer-spin-button, .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-control.is-invalid {
  border: 1px solid #c92327;
  box-shadow: 0 0 3px #c92327;
}
.form-control.is-valid {
  border: 1px solid #04d967;
  box-shadow: 0 0 3px #04d967;
}
.form-control:focus {
  outline: none;
}

.invalid-feedback {
  padding: 1rem 0 0;
  color: #c92327;
}

.error {
  color: #c92327;
  font-size: 1.4rem;
  font-style: italic;
}

input[type=radio],
input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
}

.label-text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.26px;
  color: #a6a6a6;
}
@media (min-width: 768px) {
  .label-text {
    font-size: 1.6rem;
  }
}

.fake-radio,
.fake-checkbox {
  width: 22px;
  flex: 0 0 22px;
  height: 22px;
  border-radius: 60%;
  margin-right: 1rem;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00498E;
  cursor: pointer;
}

.fake-checkbox {
  border-radius: 2px !important;
}

.radio-label {
  cursor: pointer;
  margin-bottom: 0;
}

input[type=checkbox]:checked ~ .fake-checkbox {
  background-color: #00498E;
}

input[type=radio]:checked ~ .fake-radio::after {
  background-color: #00498E;
}

input[type=checkbox]:checked ~ .checkbox-text {
  color: #000 !important;
}

input[type=radio]:checked ~ .radio-text {
  color: #000 !important;
}

header {
  background-color: #fff;
  min-height: 8rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: inset 0 -4px 4px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 400px) {
  header {
    min-height: 8.628rem;
  }
}
@media (min-width: 992px) {
  header {
    position: static !important;
  }
}
@media (min-width: 992px) {
  .fixed-header header {
    position: static !important;
  }
}
header .top-menu {
  margin-inline: -1.5rem;
}
@media (min-width: 992px) {
  header .top-menu {
    margin-inline: 0;
  }
}
header .top-menu a {
  display: block;
  padding: 1.8rem 1.5rem;
  color: #00498E;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  background: #F2F7FC;
  border-bottom: 1px solid #E6E6E6;
}
@media (min-width: 992px) {
  header .top-menu a {
    background: transparent;
    font-size: 1.4rem;
    line-height: normal;
    padding: 0 2.8rem;
    border-bottom: none;
    border-right: 1px solid #E6E6E6;
  }
}
header .language-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 5rem;
}
header .language-wrapper .current-language {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  padding: 1.1rem 0.8rem;
  gap: 4px;
}
header .language-wrapper .current-language .text {
  font-size: 1.4rem;
  font-weight: 700;
}
header .language-wrapper .language-list {
  border-radius: 4px;
  background: #F2F7FC;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
}
header .language-wrapper .language-list a {
  display: block;
  padding: 11px 8px 11px 14px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(11, 42, 77, 0.4);
}
header .language-wrapper .language-list a.active {
  font-weight: 700;
  color: #00498E;
}

.header-top {
  padding: 1.5rem 0;
}
.header-top .top-nav-wrapper {
  display: flex;
  align-items: center;
}
.header-top .logo,
.header-top .custom-logo-link {
  display: block;
  max-width: 16rem;
}
@media (min-width: 400px) {
  .header-top .logo,
.header-top .custom-logo-link {
    max-width: 18rem;
  }
}
@media (min-width: 1265px) {
  .header-top .logo,
.header-top .custom-logo-link {
    max-width: 20rem;
  }
}
.header-top .logo img,
.header-top .custom-logo-link img {
  display: block;
}
.header-top .flag {
  margin-left: auto;
  height: 3.5rem;
  width: 5.2rem;
  flex: 0 0 5.2rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header-top .flag {
    order: 4;
    margin-left: 2.8rem;
  }
}
.header-top .flag img {
  display: block;
}
@media (min-width: 992px) {
  .header-top .top-menu-wrapper {
    display: flex;
    position: relative;
    margin-left: auto;
    align-items: center;
  }
}
.header-top .top-menu-wrapper .top-menu {
  display: none;
}
@media (min-width: 992px) {
  .header-top .top-menu-wrapper .top-menu {
    display: flex;
    align-items: center;
  }
}
.header-top .search-wrapper {
  margin-left: 1.1rem;
}
.header-top .search-wrapper .search-form {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 5;
}
.header-top .search-wrapper .search-form .form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0;
  height: 100%;
  padding: 1rem;
}
.header-top .search-wrapper .search-form .form-inner {
  width: 100%;
  position: relative;
}
.header-top .search-wrapper .search-form .form-inner .form-control {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding-right: 4rem;
  font-weight: 400;
}
.header-top .search-wrapper .search-form .form-inner button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
}
.header-top .search-wrapper .toggle-search {
  width: 4.1rem;
  flex: 0 0 4.1rem;
  height: 4.1rem;
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header-top .search-wrapper .toggle-search {
    margin-left: 1.9rem;
    width: 5.6rem;
    flex: 0 0 5.6rem;
    border: none;
  }
}
.header-top .search-wrapper .close-search {
  cursor: pointer;
}
.header-top .language-wrapper {
  display: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header-top .language-wrapper {
    display: block;
    margin-bottom: 0;
    margin-left: 2.8rem;
  }
}
@media (min-width: 992px) {
  .header-top .language-wrapper .language-list {
    z-index: 200;
  }
}
.header-top .toggle-menu {
  flex: 0 0 4.1rem;
  width: 4.1rem;
  height: 4.1rem;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  margin-left: 1.1rem;
  cursor: pointer;
  position: relative;
}
@media (min-width: 992px) {
  .header-top .toggle-menu {
    display: none !important;
  }
}
.header-top .toggle-menu .closed {
  transition: 0.1s linear;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  opacity: 0;
  transform: rotate(90deg);
}
.header-top .toggle-menu .closed.active {
  opacity: 1;
  transform: rotate(0);
  transition: 0.3s linear;
}
.header-top .toggle-menu .closed svg {
  display: block;
}
.header-top .toggle-menu .opened {
  transition: 0.1s linear;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  opacity: 0;
  transform: rotate(-90deg);
}
.header-top .toggle-menu .opened.active {
  opacity: 1;
  transform: rotate(0);
  transition: 0.3s linear;
}
.header-top .toggle-menu .opened svg {
  display: block;
}

.header-bottom {
  display: block;
  position: absolute;
  left: -100%;
  height: calc(100dvh - 8rem);
  overflow-y: auto;
  transition: 0.1s linear;
  top: 8rem;
  z-index: 99;
  background-color: #fff;
  width: 100%;
}
.header-bottom.open {
  left: 0;
}
@media (min-width: 400px) {
  .header-bottom {
    height: calc(100dvh - 8.63rem);
    top: 8.63rem;
  }
}
@media (min-width: 992px) {
  .header-bottom {
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    overflow-y: visible !important;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
  }
}
@media (min-width: 992px) {
  .header-bottom .nav-menu .top-menu {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .header-bottom .nav-menu .language-wrapper {
    display: none !important;
  }
}

header .main-menu {
  margin-inline: -15px;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  header .main-menu {
    display: flex;
    margin-bottom: 0 !important;
    margin-inline: 0 !important;
    gap: 0.4rem;
  }
}
@media (min-width: 1265px) {
  header .main-menu {
    gap: 1.9rem;
  }
}
@media (min-width: 992px) {
  header .main-menu > .menu-item:hover .submenu {
    display: block !important;
  }
}
@media (min-width: 992px) {
  header .main-menu > .menu-item.column-2 .submenu {
    column-count: 2;
    padding-right: 400px;
  }
}
@media (min-width: 1265px) {
  header .main-menu > .menu-item.column-2 .submenu {
    padding-right: 600px;
  }
}
@media (min-width: 1400px) {
  header .main-menu > .menu-item.column-2 .submenu {
    padding-right: 700px;
  }
}
header .main-menu > .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E6E6E6;
}
@media (min-width: 992px) {
  header .main-menu > .menu-item > a {
    border-bottom: none !important;
    padding: 0 7px;
    gap: 4px;
  }
  header .main-menu > .menu-item > a:hover, header .main-menu > .menu-item > a.active {
    background-color: #F2F7FC;
  }
}
header .main-menu > .menu-item > a .text {
  display: block;
  padding: 1.8rem 1.5rem;
  color: #00498E;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  flex: 1;
  white-space: nowrap;
}
@media (min-width: 992px) {
  header .main-menu > .menu-item > a .text {
    color: #000 !important;
    padding: 2rem 0rem;
    font-weight: 600 !important;
  }
}
@media (min-width: 1265px) {
  header .main-menu > .menu-item > a .text {
    color: #000 !important;
    padding: 2rem 0.5rem;
  }
}
header .main-menu > .menu-item > a .toggle-submenu {
  width: 5.4rem;
  height: 5.4rem;
  flex: 0 0 5.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s linear;
}
header .main-menu > .menu-item > a .toggle-submenu:hover {
  background-color: #F2F7FC;
}
@media (min-width: 992px) {
  header .main-menu > .menu-item > a .toggle-submenu {
    width: auto !important;
    flex: 0 0 auto;
    height: auto !important;
    transform: rotate(90deg);
    pointer-events: none;
  }
}
header .submenu {
  position: fixed;
  background-color: #fff;
  bottom: 0;
  left: 100%;
  top: 8rem;
  overflow-y: auto;
  width: 100%;
  z-index: 100;
  transition: 0.3s linear;
  list-style: none;
  padding: 0rem 1.5rem;
}
@media (min-width: 992px) {
  header .submenu {
    position: absolute;
    display: none !important;
    top: 100% !important;
    left: 0 !important;
    overflow: visible !important;
    z-index: 0;
    bottom: unset !important;
    border-top: 1px solid #e6e6e6;
    padding-inline: calc((100vw - 920px) / 2);
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    column-count: 4;
    column-gap: 4rem;
    column-rule: 1px solid #E6E6E6;
  }
}
@media (min-width: 1265px) {
  header .submenu {
    padding-inline: calc((100vw - 1230px) / 2);
    column-gap: 6rem;
  }
}
@media (min-width: 1400px) {
  header .submenu {
    padding-inline: calc((100vw - 1270px) / 2);
  }
}
header .submenu.open {
  left: 0;
}
@media (min-width: 400px) {
  header .submenu {
    top: 8.63rem;
  }
}
header .submenu .submenu-header {
  border-bottom: 1px solid rgba(55, 52, 53, 0.1);
  padding: 2rem 0;
  margin-bottom: 2rem;
  margin-inline: -15px;
  cursor: pointer;
  position: sticky;
  top: 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  header .submenu .submenu-header {
    display: none !important;
  }
}
header .submenu .submenu-header .back {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
header .submenu .submenu-header .text {
  color: #00498E;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.18px;
  display: block;
}
@media (min-width: 992px) {
  header .submenu .submenu-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }
}
header .submenu .submenu-item .submenu-text {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.6rem;
  color: #00498E;
}
header .submenu .submenu-item > a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.32px;
  margin-bottom: 2.3rem;
  display: block;
}
@media (min-width: 992px) {
  header .submenu .submenu-item > a {
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: -0.28px;
    margin-bottom: 1.6rem;
  }
  header .submenu .submenu-item > a:hover {
    color: #00498E;
    text-decoration: underline;
  }
}
header .subsubmenu {
  padding-bottom: 2rem;
  list-style: none;
  padding-left: 0;
}
header .subsubmenu .subsubmenu-item {
  margin-bottom: 2.3rem;
}
@media (min-width: 992px) {
  header .subsubmenu .subsubmenu-item {
    margin-bottom: 1.6rem;
  }
}
header .subsubmenu .subsubmenu-item a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  /* 125% */
  letter-spacing: -0.32px;
}
@media (min-width: 992px) {
  header .subsubmenu .subsubmenu-item a {
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: -0.28px;
  }
  header .subsubmenu .subsubmenu-item a:hover {
    color: #00498E;
    text-decoration: underline;
  }
}

.page-header {
  padding: 20rem 0 3.2rem;
  position: relative;
}
@media (min-width: 992px) {
  .page-header {
    padding: 26.3rem 0 3.2rem;
  }
}
.page-header .overlay {
  position: absolute;
  inset: 0;
}
.page-header .lead-img {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.page-header .lead-img:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(203deg, rgba(0, 37, 66, 0.4) 15.71%, #002542 84.73%);
}
.page-header .lead-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header .page-header-wrapper {
  max-width: 720px;
  position: relative;
  z-index: 5;
}
.page-header nav .breadcrumb {
  list-style: none;
  position: relative;
  z-index: 3;
  display: flex;
  padding: 0;
  margin-bottom: 3.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.page-header nav .breadcrumb li {
  display: flex !important;
  align-items: center !important;
}
.page-header nav .breadcrumb li:after {
  display: none !important;
}
.page-header nav .breadcrumb li a,
.page-header nav .breadcrumb li span {
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.14px;
  white-space: nowrap;
  color: #A2D2FF;
}
.page-header nav .breadcrumb li a span,
.page-header nav .breadcrumb li span span {
  white-space: nowrap;
  color: #A2D2FF;
}
.page-header nav .breadcrumb li span {
  white-space: nowrap;
  color: #fff;
}
.page-header nav .breadcrumb li + li:before {
  content: "";
  color: #fff;
  display: block;
  width: 30px;
  height: 18px;
  background: url("assets/arrow-right.svg") no-repeat center;
  background-size: 10px auto;
}
.page-header .page-title {
  color: #fff;
  font-size: 3.2rem;
  line-height: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media (min-width: 992px) {
  .page-header .page-title {
    font-size: 4.8rem;
    line-height: 5.6rem;
  }
}
.page-header .page-description {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 992px) {
  .page-header .page-description {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.single-institution {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .single-institution {
    padding: 5.4rem 0;
  }
}

.single-institution-wrapper {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .single-institution-wrapper {
    display: flex;
    margin-bottom: 5rem;
  }
}

.single-institution-subpages {
  position: relative;
}
@media (min-width: 768px) {
  .single-institution-subpages {
    flex: 0 0 26rem;
    margin-right: 2rem;
  }
}
@media (min-width: 992px) {
  .single-institution-subpages {
    flex: 0 0 22rem;
  }
}
@media (min-width: 1265px) {
  .single-institution-subpages {
    flex: 0 0 26rem;
    margin-right: 3.8rem;
  }
}
.single-institution-subpages .single-institution-selected-subpage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  margin-bottom: 3rem;
  background-color: #00498E;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .single-institution-subpages .single-institution-selected-subpage {
    display: none;
  }
}
.single-institution-subpages .single-institution-selected-subpage .text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: -0.16px;
  font-weight: 700;
}
.single-institution-subpages .single-institution-selected-subpage .icon svg {
  display: block;
}
.single-institution-subpages .single-institution-subpages-list {
  background-color: #fff;
  border-radius: 1.2rem;
  border: 1px solid #E6E6E6;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
}
@media (min-width: 768px) {
  .single-institution-subpages .single-institution-subpages-list {
    display: block !important;
    position: sticky;
    top: 0;
  }
}
.single-institution-subpages .single-institution-subpages-list a {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid #f5f5f5;
  color: #00498E;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.2rem;
  letter-spacing: -0.16px;
  display: block;
  transition: 0.2s linear;
}
@media (min-width: 992px) {
  .single-institution-subpages .single-institution-subpages-list a {
    font-size: 1.4rem;
    padding: 1.4rem 1rem;
  }
}
@media (min-width: 1265px) {
  .single-institution-subpages .single-institution-subpages-list a {
    font-size: 1.6rem;
    padding: 1.4rem 1.8rem;
  }
}
.single-institution-subpages .single-institution-subpages-list a.active, .single-institution-subpages .single-institution-subpages-list a:hover {
  background-color: #00498E;
  color: #fff;
  border-bottom-color: #00498E;
}
.single-institution-subpages .single-institution-subpages-list a:last-of-type {
  border-bottom: none;
}

.single-institution-data {
  color: #0B2A4D;
}
@media (min-width: 768px) {
  .single-institution-data {
    flex: 1;
    max-width: 890px;
  }
}
.single-institution-data .source {
  color: #00498E;
  font-size: 1.4rem;
  line-height: 2rem;
  display: block;
  font-style: italic;
  margin-top: 1rem;
}
.single-institution-data img {
  display: block;
  width: 100%;
}
.single-institution-data .image-paragraph {
  margin-bottom: 2.4rem;
}
.single-institution-data .image-paragraph .image-wrapper {
  overflow: hidden;
  border-radius: 1.2rem;
  display: block;
}
.single-institution-data .block-title {
  background-color: #fff;
  padding: 1.6rem 2rem;
  color: #00498E;
  font-size: 1.8rem;
  line-height: 2.6rem;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  border-radius: 6px;
  border-left: 4px solid #D93943;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-title {
    padding: 1.6rem 2.8rem;
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.2px;
    border-radius: 6px 12px 12px 6px;
  }
}
.single-institution-data .block-text {
  margin-bottom: 5.4rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-text {
    margin-bottom: 2.4rem;
  }
}
.single-institution-data .block-text strong {
  font-weight: 700;
}
.single-institution-data .block-text p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 2.4rem;
}
.single-institution-data .block-text h2 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  letter-spacing: -0.22px;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-text h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    letter-spacing: -0.28px;
  }
}
.single-institution-data .block-text h3 {
  color: #00498E;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.2px;
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-text h3 {
    margin-bottom: 2.4rem;
  }
}
.single-institution-data .block-text h4 {
  color: #00498E;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.2px;
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-text h4 {
    margin-bottom: 2.4rem;
  }
}
.single-institution-data .block-text a {
  color: #00498E;
  font-weight: 700;
}
.single-institution-data .block-text a:hover {
  text-decoration: underline;
}
.single-institution-data .block-text img {
  display: block;
}
.single-institution-data .block-text ul,
.single-institution-data .block-text ol {
  margin-bottom: 2.4rem;
}
.single-institution-data .block-text ul ul, .single-institution-data .block-text ul ol,
.single-institution-data .block-text ol ul,
.single-institution-data .block-text ol ol {
  margin-bottom: 0;
}
.single-institution-data .block-text ul li,
.single-institution-data .block-text ol li {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.single-institution-data .block-docs {
  position: relative;
  z-index: 1;
  margin-bottom: 3.2rem;
}
@media (min-width: 992px) {
  .single-institution-data .block-docs {
    margin-bottom: 5.4rem;
  }
}
.single-institution-data .block-docs .section-title {
  font-size: 2.2rem;
  line-height: 2.6rem;
  letter-spacing: -0.22px;
  margin-bottom: 2rem;
  margin-top: 3.6rem;
  color: #00498E;
}
@media (min-width: 992px) {
  .single-institution-data .block-docs .section-title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: -0.24px;
    margin-top: 5.4rem;
  }
}
.single-institution-data .block-docs .document-item {
  padding: 2.4rem;
  border-radius: 1.6rem;
  border: 1px solid #E6E6E6;
  background: #FFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  justify-content: space-between;
}
.single-institution-data .block-docs .document-item:last-of-type {
  margin-bottom: 0;
}
.single-institution-data .block-docs .document-item .document-item-data {
  flex: 0 0 calc(100% - 7.4rem);
}
.single-institution-data .block-docs .document-item .document-item-data .document-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: -0.018rem;
  margin-bottom: 1.4rem;
  color: #0B2A4D;
}
@media (min-width: 992px) {
  .single-institution-data .block-docs .document-item .document-item-data .document-item-title {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.02rem;
  }
}
.single-institution-data .block-docs .document-item .document-item-data .document-info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.single-institution-data .block-docs .document-item .document-item-data .document-info .document-item-date {
  font-size: 1.4rem;
  color: #0B2A4D;
}
.single-institution-data .block-docs .document-item .document-item-data .document-info .document-item-clinic {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00498E;
  padding-right: 0.9rem;
}
.single-institution-data .block-docs .document-item .document-item-data .document-info .document-item-date {
  font-size: 1.4rem;
  color: #0B2A4D;
  padding-left: 0.9rem;
}
.single-institution-data .block-docs .document-item .document-icon {
  flex: 0 0 4.2rem;
}
.single-institution-data .block-docs .document-item .document-icon .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 4.2rem;
  height: 4.2rem;
  border-radius: 0.525rem;
  border: 1px solid #E6E6E6;
  background: rgba(247, 247, 249, 0.1);
  cursor: pointer;
}
.single-institution-data .block-docs .document-item .document-icon .icon:hover {
  border: 1px solid #00498E;
}
.single-institution-data .block-docs .document-item .document-icon .icon svg path {
  stroke: #00498E;
}
.single-institution-data .map-block {
  margin-bottom: 2.4rem;
}
.single-institution-data .map-block .map {
  border-radius: 1.2rem;
  overflow: hidden;
}
.single-institution-data .map-block .map:after {
  padding-top: 66%;
}
.single-institution-data .embed-block {
  margin-bottom: 2.4rem;
}
.single-institution-data .embed-block .img-placeholder {
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.single-institution-data .embed-block .img-placeholder:after {
  padding-top: 66%;
}
.single-institution-data .block-two-images {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .single-institution-data .block-two-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
.single-institution-data .block-two-images figure .img-placeholder {
  overflow: hidden;
  border-radius: 1.2rem;
}
.single-institution-data .block-two-images figure .img-placeholder:after {
  padding-top: 120%;
}
.single-institution-data .block-two-images figure img {
  width: 100%;
  display: block;
}
.single-institution-data table {
  border: 1px solid #e6e6e6;
  border-radius: 1.2rem;
  overflow: hidden;
  width: 100% !important;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
}
.single-institution-data table td, .single-institution-data table th {
  border-radius: 1.2rem;
  padding: 1rem;
  color: #0B2A4D;
  font-size: 1.4rem;
  line-height: 1.8rem;
  border: 1px solid #e6e6e6;
  letter-spacing: -0.16px;
}
.single-institution-data table td p, .single-institution-data table th p {
  margin-bottom: 0 !important;
  line-height: 1 !important;
}
@media (min-width: 1265px) {
  .single-institution-data table td, .single-institution-data table th {
    padding: 1.4rem 1.8rem;
  }
}
.single-institution-data table td strong, .single-institution-data table td b, .single-institution-data table th strong, .single-institution-data table th b {
  color: #00498E !important;
  font-weight: 600;
}
.single-institution-data table th {
  color: #00498E !important;
  font-weight: 600;
}

.home-banner {
  margin-bottom: 5rem;
  margin-top: 5rem;
}
@media (min-width: 992px) {
  .home-banner {
    margin-bottom: 10rem;
    margin-top: 10rem;
  }
}

.sidebar {
  padding-top: 0 !important;
}

footer {
  background: #0B2A4D;
}

.footer-top {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .footer-top {
    padding: 6.4rem 0;
  }
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.footer-top .footer-top-wrapper .footer-info {
  margin-bottom: 3.2rem;
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-info {
    flex: 0 0 30%;
  }
}
.footer-top .footer-top-wrapper .footer-info .footer-logo,
.footer-top .footer-top-wrapper .footer-info .custom-logo-link {
  display: block;
  margin-bottom: 2.8rem;
  max-width: 16rem;
}
@media (min-width: 400px) {
  .footer-top .footer-top-wrapper .footer-info .footer-logo,
.footer-top .footer-top-wrapper .footer-info .custom-logo-link {
    max-width: 18rem;
  }
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-info .footer-logo,
.footer-top .footer-top-wrapper .footer-info .custom-logo-link {
    margin-bottom: 4.4rem;
  }
}
@media (min-width: 1265px) {
  .footer-top .footer-top-wrapper .footer-info .footer-logo,
.footer-top .footer-top-wrapper .footer-info .custom-logo-link {
    max-width: 20rem;
  }
}
.footer-top .footer-top-wrapper .footer-info .footer-logo img,
.footer-top .footer-top-wrapper .footer-info .custom-logo-link img {
  display: block;
}
.footer-top .footer-top-wrapper .footer-info .footer-info-data {
  margin-bottom: 2.8rem;
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-info .footer-info-data {
    margin-bottom: 4.4rem;
  }
}
.footer-top .footer-top-wrapper .footer-info .footer-info-data p,
.footer-top .footer-top-wrapper .footer-info .footer-info-data a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 0;
}
.footer-top .footer-top-wrapper .footer-info .footer-info-data a:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-info .footer-info-data a[href^="tel:"] {
    cursor: text;
    pointer-events: none;
  }
}
.footer-top .footer-top-wrapper .footer-info .social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-info .social {
    margin-bottom: 0;
  }
}
.footer-top .footer-top-wrapper .footer-info .social a {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2375rem 1.1688rem 1.1rem 1.1688rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.3s linear;
}
.footer-top .footer-top-wrapper .footer-info .social a:hover {
  background-color: #D93943;
}
.footer-top .footer-top-wrapper .footer-info .social a svg {
  display: block;
  fill: #fff;
  transition: 0.3s linear;
}
@media (min-width: 992px) {
  .footer-top .footer-top-wrapper .footer-nav {
    flex: 0 0 65%;
  }
}
@media (min-width: 1265px) {
  .footer-top .footer-top-wrapper .footer-nav {
    flex: 0 0 70%;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu {
    display: flex;
    gap: 20px;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu li {
    border: none;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu li.open .menu-title .toggle-footer-menu {
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu li {
    flex: 0 0 calc(25% - 15px);
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: -0.015rem;
  padding: 2.5rem 0;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu .menu-title {
    cursor: default;
    pointer-events: none;
    padding: 5px 0;
    margin-bottom: 2.2rem;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .menu-title .toggle-footer-menu {
  transition: 0.3s linear;
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu .menu-title .toggle-footer-menu {
    display: none !important;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu {
  margin-bottom: 2rem;
  display: none;
}
@media (min-width: 768px) {
  .footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu {
    display: block !important;
  }
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu .menu-item {
  display: block;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: -0.015rem;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s linear;
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu .menu-item:hover, .footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu .menu-item.active {
  color: #fff;
  text-decoration: underline;
}
.footer-top .footer-top-wrapper .footer-nav .footer-menu .submenu .menu-item:not(:last-of-type) {
  margin-bottom: 2.2rem;
}

.footer-bottom {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4.4rem 0;
  }
}
@media (min-width: 768px) {
  .footer-bottom .footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom .footer-bottom-wrapper .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .footer-bottom .footer-bottom-wrapper .copyright {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
}
.footer-bottom .footer-bottom-wrapper .static-nav {
  display: flex;
  align-items: center;
}
.footer-bottom .footer-bottom-wrapper .static-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin-right: 2.4rem;
}
.footer-bottom .footer-bottom-wrapper .static-nav a:hover, .footer-bottom .footer-bottom-wrapper .static-nav a.active {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom .footer-bottom-wrapper .static-nav a:last-of-type {
  margin-right: 0;
}

/*# sourceMappingURL=single-institution.css.map */
