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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

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

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

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

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

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

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*#000 60%*/
/*#000 80%*/
/*#0054A4 + #000000CC + #FFFFFF33*/
/*#E6E9EB + #FFF 80% */
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Lexend Regular"), local("Lexend Regular"), url(/themes/custom/sprep_theme/dist/fonts/Lexend-Regular.6da6431a.ttf) format("truetype");
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Lexend Medium"), local("Lexend Medium"), url(/themes/custom/sprep_theme/dist/fonts/Lexend-Medium.fe610661.ttf) format("truetype");
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Lexend SemiBold"), local("Lexend SemiBold"), url(/themes/custom/sprep_theme/dist/fonts/Lexend-SemiBold.5ffdb1c1.ttf) format("truetype");
}
@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lexend Bold"), local("Lexend Bold"), url(/themes/custom/sprep_theme/dist/fonts/Lexend-Bold.db264efc.ttf) format("truetype");
}
* {
  font-family: inherit;
}

body {
  font-family: "Lexend", sans-serif;
  background: #EFF0F4;
  font-size: 1rem;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.8);
}

p,
.ct-text-regular,
.ct-link,
.ct-textfield,
.ct-button--regular,
.ct-label.ct-label--regular,
.ct-breadcrumb,
.ct-select,
.ct-field-description {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

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

span {
  display: block;
}

a {
  text-decoration: none;
  font-weight: 600;
  color: #018081;
  word-break: break-word;
}
a:hover, a:focus {
  text-decoration: none;
}

button:hover {
  cursor: pointer;
}

p {
  margin-bottom: 24px;
}

pre {
  overflow: auto;
}

h1,
.style-heading1 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
}

h2,
.style-heading2 {
  font-size: 39px;
  line-height: 48px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

h3,
.style-heading3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

h4,
.style-heading4 {
  font-size: 25px;
  line-height: 31px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
}

h5,
.style-heading5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
}

h6,
.style-heading6 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

iframe {
  max-width: 100%;
}

#top,
#banner,
#main-content {
  display: block;
  position: absolute;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 0;
  visibility: hidden;
}

table {
  width: 100%;
}

legend {
  float: none;
  border: none;
}

input {
  width: 100%;
}
input[type=checkbox], input.form-checkbox {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin: 0 12px 0 0;
}
input[type=checkbox]:before, input[type=checkbox]:after, input.form-checkbox:before, input.form-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #E6E9EB;
  background-position: center;
}
input[type=checkbox]:hover:after, input.form-checkbox:hover:after {
  cursor: pointer;
  border-width: 2px;
  border-color: #16335f;
}
input[type=checkbox]:focus:before, input.form-checkbox:focus:before {
  width: 18px;
  height: 18px;
  outline: 2px solid #8B5CD7;
}
input[type=checkbox]:checked:before, input.form-checkbox:checked:before {
  width: 18px;
  height: 18px;
  outline: 2px solid #8B5CD7;
}
input[type=checkbox]:checked:after, input.form-checkbox:checked:after {
  border-color: #018081;
  border-width: 2px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-checked.3c4aff59.svg);
  background-repeat: no-repeat;
  background-size: 16px;
}
input[type=checkbox]:active:after, input.form-checkbox:active:after {
  border-color: #393d49;
  border-width: 2px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-checked-active.7d399bdf.svg);
}
input[type=checkbox]:invalid:after, input.form-checkbox:invalid:after {
  border-color: #CE3836;
  border-width: 2px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-checked-invalid.5145ac8c.svg);
}
input[type=text] {
  display: block;
  padding: 9px 15px;
  border-radius: 4px;
  border: 1px solid #E6E9EB;
  background: #fdfdfd;
  font-size: inherit;
  line-height: 28px;
  color: #393d49;
}
@media (max-width: 575px) {
  input[type=text] {
    line-height: 26px;
  }
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:active, input[type=text]:invalid, input[type=text]:focus-visible {
  border-width: 2px;
  padding: 8px 14px;
  outline: none;
}
input[type=text]:hover {
  cursor: pointer;
  border-color: #0054A4;
}
input[type=text]:focus, input[type=text]:active, input[type=text]:focus-visible {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.24);
  border-color: #018081;
}
input[type=text]:invalid {
  border-color: #CE3836;
}

.ct-checkbox:checked::before {
  transform: translate(-50%, -50%);
  animation: unset;
  margin: 0;
  mask-image: unset;
}

.ct-field .ct-item-list__item {
  display: flex;
  align-items: center;
}
.ct-field .ct-item-list__item label {
  margin-bottom: 0;
}

.container {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1441px) {
  .container {
    max-width: 1480px;
  }
}

.row {
  margin: 0;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .content-main {
  padding: 0;
}

.ct-link {
  padding: 0;
}

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

.splide .splide__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.splide .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.splide .splide__arrows .splide__arrow {
  float: none;
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  list-style: none;
  inset: unset;
  transform: unset;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: #018081;
  font-weight: 600;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid #018081;
  opacity: 1;
}
.splide .splide__arrows .splide__arrow:disabled {
  opacity: 0.4;
}
.splide .splide__arrows .splide__arrow:before, .splide .splide__arrows .splide__arrow:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 24px;
  vertical-align: bottom;
  background-repeat: no-repeat;
}
.splide .splide__arrows .splide__arrow svg {
  display: none;
}
.splide .splide__arrows .splide__arrow--prev:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-arrow-left.b1bb908d.svg);
}
.splide .splide__arrows .splide__arrow--prev:after {
  content: unset;
}
.splide .splide__arrows .splide__arrow--next:before {
  content: unset;
}
.splide .splide__arrows .splide__arrow--next:after {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-arrow-right.87e04f6c.svg);
}
.splide .splide__pagination {
  position: unset;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #606060;
  font-weight: 500;
}
.splide .splide__pagination li {
  display: none;
}

.splide:not(.splide-banner, .member-profile-tabs) .splide__track--draggable {
  border-radius: 4px;
}
@media (max-width: 575px) {
  .splide:not(.splide-banner, .member-profile-tabs) .splide__track--draggable {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.toolbar-icon-9 .block-local-tasks-block .tabs {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}
@media (min-width: 1441px) {
  .toolbar-icon-9 .block-local-tasks-block .tabs {
    max-width: 1480px;
  }
}
.toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 24px;
}
.toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs li {
  display: inline-block;
}
.toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs li a {
  display: block;
  padding: 10px;
  color: #555;
  white-space: nowrap;
}
.toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs li a:hover, .toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs li a.is-active {
  color: #018081;
}
.toolbar-icon-9 .block-local-tasks-block .tabs ul.tabs li a.is-active {
  font-weight: bold;
}

.splide:not(.component-wrapper--type-slider) .sprep-splide__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow {
  float: none;
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  list-style: none;
  inset: unset;
  transform: unset;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow:hover {
  cursor: pointer;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow[disabled=disabled] {
  opacity: 0.4;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow:before, .splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 24px;
  vertical-align: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow:before, .splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow:after {
    width: 16px;
    height: 16px;
    background-size: 16px;
  }
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow svg {
  display: none;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow--prev:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-arrow-left-white.abe289dd.svg);
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow--prev:after {
  content: unset;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow--next:before {
  content: unset;
}
.splide:not(.component-wrapper--type-slider) .sprep-splide__arrows .sprep-splide__arrow--next:after {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-arrow-right-white.70778e57.svg);
}
.splide:not(.component-wrapper--type-slider) .splide-banner-pagination,
.splide:not(.component-wrapper--type-slider) .splide-latest-news--pagination {
  display: block;
  text-align: right;
  flex: 1;
  color: #fafbfb;
}

.btn-success {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 12px 40px;
  background-color: #018081;
  border: 2px solid #018081;
  color: #fff;
  height: 48px;
}
.btn-success:hover, .btn-success:focus {
  color: #018081;
  border: 2px solid #018081;
  background-color: #fff;
}

.ct-message.ct-theme-light.ct-message--error {
  display: none;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.ct-layout__main-inner {
  position: relative;
}

.navbar-toggle {
  display: none;
}

.nav-tabs, hr {
  border: none;
}

.form-text, .form-search {
  display: block;
  padding: 9px 15px;
  border-radius: 4px;
  border: 1px solid #E6E9EB;
  background: #fdfdfd;
  font-size: inherit;
  line-height: 28px;
  color: #393d49;
}
@media (max-width: 575px) {
  .form-text, .form-search {
    line-height: 26px;
  }
}
.form-text:hover, .form-text:focus, .form-text:active, .form-text:invalid, .form-text:focus-visible, .form-search:hover, .form-search:focus, .form-search:active, .form-search:invalid, .form-search:focus-visible {
  border-width: 2px;
  padding: 8px 14px;
  outline: none;
}
.form-text:hover, .form-search:hover {
  cursor: pointer;
  border-color: #0054A4;
}
.form-text:focus, .form-text:active, .form-text:focus-visible, .form-search:focus, .form-search:active, .form-search:focus-visible {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.24);
  border-color: #018081;
}
.form-text:invalid, .form-search:invalid {
  border-color: #CE3836;
}

.ct-select.ct-theme-light {
  display: block;
  padding: 9px 15px;
  border-radius: 4px;
  border: 1px solid #E6E9EB;
  background-color: #fdfdfd;
  font-size: inherit;
  line-height: 28px;
  height: auto;
  color: #393d49;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-select.9a77f59e.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: calc(100% - 12px);
  min-width: 74px;
}
@media (max-width: 575px) {
  .ct-select.ct-theme-light {
    line-height: 26px;
  }
}
.ct-select.ct-theme-light:hover, .ct-select.ct-theme-light:focus, .ct-select.ct-theme-light:active, .ct-select.ct-theme-light:invalid, .ct-select.ct-theme-light:focus-visible {
  border-width: 2px;
  padding: 8px 15px;
  outline: none;
  box-shadow: none;
}
.ct-select.ct-theme-light:hover {
  cursor: pointer;
  border-color: #0054A4;
}
.ct-select.ct-theme-light:focus, .ct-select.ct-theme-light:active, .ct-select.ct-theme-light:focus-visible {
  border-color: #018081;
}
.ct-select.ct-theme-light:invalid {
  border-color: #CE3836;
}

.nav-tabs li, .nav-tabs a {
  display: inline-block;
}

.SM-tab .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.SM-tab .nav-tabs .nav-item > a {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  height: 44px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  height: auto;
  padding: 12px 24px;
}
.SM-tab .nav-tabs .nav-item > a:hover, .SM-tab .nav-tabs .nav-item > a:focus {
  color: #fff;
  border: 2px solid #0054A4;
  background-color: #0054A4;
}
.SM-tab .nav-tabs .nav-item > a:hover, .SM-tab .nav-tabs .nav-item > a:focus {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}
.SM-tab .nav-tabs .nav-item.active .nav-link, .SM-tab .nav-tabs .nav-item.active > a {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}
.SM-tab .nav-tabs .nav-link {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  height: 44px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  height: auto;
  padding: 12px 24px;
}
.SM-tab .nav-tabs .nav-link:hover, .SM-tab .nav-tabs .nav-link:focus {
  color: #fff;
  border: 2px solid #0054A4;
  background-color: #0054A4;
}
.SM-tab .nav-tabs .nav-link:hover, .SM-tab .nav-tabs .nav-link:focus {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}
.SM-tab .tab-pane {
  display: none;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.SM-tab .tab-pane > h4:first-child {
  display: none;
}
.SM-tab .tab-pane.active {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.ckeditor-accordion-container {
  border-radius: 4px;
}
.ckeditor-accordion-container > .styled > dt > a {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
  .ckeditor-accordion-container > .styled > dt > a {
    font-size: 16px;
    line-height: 24px;
  }
}
.ckeditor-accordion-container > .styled dd .ckeditor-accordion-container > .styled > dt > a {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #002242;
}
@media (max-width: 767px) {
  .ckeditor-accordion-container > .styled dd .ckeditor-accordion-container > .styled > dt > a {
    font-size: 16px;
    line-height: 26px;
  }
}
.ckeditor-accordion-container > dl {
  padding: 0;
  position: relative;
  border: none;
  border-radius: 4px;
  margin-bottom: 0;
}
.ckeditor-accordion-container > dl:before {
  content: unset;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ckeditor-accordion-container > dl dt:last-of-type > a {
  border-bottom: 1px solid #e6e9eb;
}
.ckeditor-accordion-container > dl dt > a {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #e6e9eb;
  color: #002242;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 8px;
  position: relative;
  transition: unset;
  -webkit-transition: unset;
}
.ckeditor-accordion-container > dl dt > a:after {
  content: "";
  flex: 0 0 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down-black.4f013561.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: all 0.25s linear;
}
.ckeditor-accordion-container > dl dt > a:hover {
  color: transparent;
  background-color: transparent;
  background-image: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
}
.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle {
  display: none;
}
.ckeditor-accordion-container > dl dt.active::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
  border-top-left-radius: 4px;
}
.ckeditor-accordion-container > dl dt.active a {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
  background-color: #fff;
  color: inherit;
  margin-bottom: 0;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left: none;
}
.ckeditor-accordion-container > dl dt.active > a:after {
  transform: rotate(-180deg);
}
.ckeditor-accordion-container > dl dd.active {
  padding: 0px 24px 24px 28px;
  border-bottom: 1px solid #e6e9eb;
  border-right: 1px solid #e6e9eb;
  border-bottom-right-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}
.ckeditor-accordion-container > dl dd.active::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
  border-bottom-left-radius: 4px;
}
.ckeditor-accordion-container > dl dd.active dl {
  padding: 0;
}
.ckeditor-accordion-container > dl dd.active p strong {
  font-weight: 400;
}
.ckeditor-accordion-container > dl dd.active p > strong > a,
.ckeditor-accordion-container > dl dd.active p > a {
  font-weight: 400;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 25px;
  color: #018081;
  font-weight: 400;
}
.ckeditor-accordion-container > dl dd.active p > strong > a::before,
.ckeditor-accordion-container > dl dd.active p > a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-table-pdf.deb17841.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 4px;
  transform: translateY(3px);
}
.ckeditor-accordion-container > dl dd.active em {
  font-style: normal;
}
.ckeditor-accordion-container > dl dd.active strong {
  font-weight: 400;
}
.ckeditor-accordion-container .ckeditor-accordion-container > dl {
  border: none;
}
.ckeditor-accordion-container .ckeditor-accordion-container > dl > dd {
  margin-bottom: 8px;
  padding: 0px 28px 24px;
}
.ckeditor-accordion-container .ckeditor-accordion-container > dl:before {
  display: none;
}

.ct-list__filters .ct-form-element--items_per_page, .ct-list__filters .form-item-items-per-page {
  display: none;
}

.sprep-theme-filters-footer .ct-form-element:not(.ct-form-element--items_per_page) {
  display: none;
}
.sprep-theme-filters-footer .ct-form-element select {
  min-width: 5rem;
  margin-left: 8px;
}
.sprep-theme-filters-footer .ct-form-element--items_per_page {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sprep-theme-filters-footer .ct-form-element--items_per_page .form--inline {
  margin: 0;
}
.sprep-theme-filters-footer .ct-form-element--items_per_page .ct-label {
  font-weight: 500;
  color: #002242;
  white-space: nowrap;
  margin: 0;
}
.sprep-theme-filters-footer .ct-form-element--items_per_page .ct-select {
  flex: 0 0 5rem;
}

.ct-logo .ct-logo__image {
  max-height: unset;
}

.ct-layout__inner {
  display: block;
}

.ct-page.ct-theme-light {
  background-color: transparent;
}

.ct-item-grid__item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contextual > ul.ct-menu {
  display: flex;
}

a#banner {
  display: none;
}

nav.contextual-region {
  position: static;
}

.ct-select,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: calc(100% - 48px) center;
}
.ct-select::-ms-expand,
select::-ms-expand {
  display: none;
}

.color-gradient {
  margin-bottom: 8px;
  font-weight: 700;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.background-style1 {
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
}

.background-style2 {
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}

.background-style3 {
  background: linear-gradient(123.88deg, #B5538E 0%, #003B73 100%);
}

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

.link-color {
  color: #008081;
  font-weight: 400;
}

.list-dot {
  padding-left: 10px;
}
.list-dot li {
  position: relative;
  padding-left: 24px;
}
.list-dot li::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #008081;
}
.list-dot .color-link {
  color: #008081;
  font-weight: 400;
}

.content-report-fraund .content-header > * {
  margin-bottom: 24px;
}
.content-report-fraund .content-items {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 28px;
}
.content-report-fraund .content-items:last-child {
  margin-bottom: 0;
}
.content-report-fraund .content-items p {
  margin-bottom: 0;
}
.content-report-fraund .link-color {
  text-decoration: underline;
}

.content-background-column {
  margin-top: 48px;
}
.content-background-column .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.content-background-column .column {
  flex: 1;
  margin: 0 12px 24px;
  padding: 24px 24px;
  border-radius: 4px;
  color: #fff;
}
.content-background-column .sub-title {
  margin-bottom: 16px;
}
.content-background-column p {
  margin-bottom: 0;
}
.content-background-column p a {
  font-weight: 400;
  color: #018081;
  text-decoration: underline;
}
.content-background-column p ~ p {
  margin-top: 16px;
}

.content-nonebg-column .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.content-nonebg-column .column {
  flex: 1;
  margin: 0px 12px 30px;
  padding: 24px 24px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #E6E9EB;
  position: relative;
}
.content-nonebg-column .column:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: inline-block;
  width: 100%;
  height: 6px;
  left: 0;
  top: -6px;
}

.content-year .years {
  border-bottom: 1px solid #EFF0F4;
  position: relative;
  padding-left: 76px;
  margin-bottom: 32px;
}
.content-year p {
  margin-bottom: 24px;
}
.content-year .number {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
  display: flex;
  width: max-content;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  margin-bottom: 0;
  border-radius: 4px;
}

.field-attachment--item {
  display: block;
  clear: both;
  min-width: 308px;
  margin-bottom: 8px;
}
.field-attachment--item span:first-child {
  float: left;
  padding-right: 4px;
}
.field-attachment--item span:first-child a {
  padding: 0;
  font-size: 14px;
  line-height: 25px;
  color: #018081;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.field-attachment--item span:first-child a:hover {
  color: #018081;
  background-color: transparent;
  box-shadow: inset #018081 0 -1px 0;
}
.field-attachment--item span:first-child a::before {
  content: "";
  display: inline-block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url(/themes/custom/sprep_theme/dist/images/icon-table-pdf.deb17841.svg) no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
}

.content-ques-answ {
  margin-bottom: 32px;
}

header .ct-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
header .ct-menu > .ct-menu__item {
  margin: 0;
}
header .ct-menu .ct-menu__sub-menu__wrapper--level-1 {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  z-index: 5;
  padding: 30px 20px;
}
header .ct-menu .ct-menu__sub-menu__wrapper--level-1:hover, header .ct-menu .ct-menu__sub-menu__wrapper--level-1:focus {
  display: block;
}
header .ct-menu li.ct-menu__item--level-0:hover .ct-menu__sub-menu__wrapper--level-1, header .ct-menu li.ct-menu__item--level-0:focus .ct-menu__sub-menu__wrapper--level-1 {
  display: block;
}
header .ct-menu li.ct-menu__item--level-1.ct-menu__item--has-children > .ct-link {
  padding: 6px 0;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}
header .ct-menu.ct-menu--level-1 {
  gap: 0;
}
header .ct-menu.ct-menu--level-1 .ct-menu__item--level-1 {
  max-width: calc(33.33333% - 30px);
  flex: 0 0 calc(33.33333% - 30px);
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 16px;
}
header .ct-menu.ct-menu--level-2 {
  flex-direction: column;
}
header .ct-menu.ct-menu--level-2 .ct-menu__item--level-1 {
  max-width: 100%;
  flex: 0 0 100%;
}
header .ct-menu.ct-menu--level-3 .ct-link {
  position: relative;
}
header .ct-menu.ct-menu--level-3 .ct-link:before {
  content: "-";
  margin-left: 10px;
  margin-right: 10px;
}

.ct-link.ct-theme-light {
  color: #fff;
}

.component-wrapper {
  margin-bottom: 32px;
}
.component-wrapper tr {
  border: 1px solid #E6E9EB;
}
.component-wrapper td {
  padding: 10px 16px;
  word-break: break-word;
}
.component-wrapper td ~ td {
  border-left: 1px solid #E6E9EB;
}
.component-wrapper pre {
  overflow: unset;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  border-radius: 4px;
  text-align: center;
  font-size: 150%;
  font-weight: 700;
}
.component-wrapper--type-slider {
  position: relative;
}
.component-wrapper--type-slider img {
  width: 100%;
}
.component-wrapper--type-slider.splide .splide__arrows .splide__arrow {
  position: absolute;
  top: 30px;
  padding: 0;
  border: none;
}
.component-wrapper--type-slider.splide .splide__arrows .splide__arrow:before, .component-wrapper--type-slider.splide .splide__arrows .splide__arrow:after {
  content: unset;
}
.component-wrapper--type-slider.splide .splide__arrows .splide__arrow--prev {
  left: 50px;
}
.component-wrapper--type-slider.splide .splide__arrows .splide__arrow--next {
  right: 50px;
}
.component-wrapper--type-slider.splide .splide__arrows .splide__arrow svg {
  display: block;
  fill: #fff;
}
.component-wrapper--type-image_grid tr .field__label {
  display: none;
}
.component-wrapper--type-image_grid td {
  vertical-align: middle;
  text-align: center;
}
.component-wrapper--type-image_grid td img {
  max-width: 230px;
}
.component-wrapper--type-video iframe {
  width: 640px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  min-height: 480px;
}
.component-wrapper--type-video .component-wrapper--content {
  text-align: center;
}
.component-wrapper--type-video .field--name-field-title-video {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.component-wrapper--type-video .field--name-field-iframe-url {
  max-height: 480px;
}
.component-wrapper--type-spotlights td ~ td {
  border-left: 1px solid #E6E9EB;
}
.component-wrapper--type-spotlights td {
  line-height: 24px;
}
.component-wrapper--type-spotlights td a {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}
.component-wrapper--type-spotlights td:nth-child(1), .component-wrapper--type-spotlights td:nth-child(2) {
  min-width: 200px;
  vertical-align: top;
  text-align: left;
}
.component-wrapper--type-image_power tr {
  display: flex;
  flex-wrap: wrap;
}
.component-wrapper--type-image_power td {
  max-width: 35%;
  flex: 0 0 35%;
  vertical-align: middle;
  text-align: center;
}
.component-wrapper--type-image_power td:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.component-wrapper--type-image_power td:nth-child(1) img {
  max-width: 280px;
}
.component-wrapper--type-image_power td:nth-child(1) a {
  margin-bottom: 24px;
}
.component-wrapper--type-image_power td:nth-child(2) {
  max-width: 65%;
  flex: 0 0 65%;
}
.component-wrapper--type-image_power td iframe {
  width: 100%;
}
.component-wrapper--type-service .field--name-field-title-service {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}
.component-wrapper--type-service .field--name-field-body {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 25px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: 32px;
  font-style: italic;
}

article > div > time {
  display: inline-block;
  margin-bottom: 24px;
}
article div ul li, article div ol li {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-weight: 400;
  margin-bottom: 8px;
}
article div ul li a, article div ol li a {
  color: #018081;
}
article div ul li a:hover, article div ul li a:focus, article div ol li a:hover, article div ol li a:focus {
  text-decoration: underline;
}
article div ul li em, article div ol li em {
  font-style: normal;
}
article .date-publication-detail {
  font-weight: 700;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  text-transform: uppercase;
}
article .date-publication-detail span {
  display: inline-block;
}
article .publication-dowload a {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  color: #018081;
}
article .publication-dowload a:hover {
  text-decoration: underline;
}
article .publication-dowload a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/themes/custom/sprep_theme/dist/images/icon-table-pdf.deb17841.svg) no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
}
article.node img {
  display: block;
  margin: 0 auto;
}

form:not(.user-login-form) .ct-form-element:not(.ct-form-element--items_per_page) label, form:not(.user-login-form) .ct-field--select:not(.ct-form-element--items_per_page) label {
  display: none;
}

.ct-list__filters {
  padding: 0 0;
  border: none;
}
.ct-list__filters:empty {
  display: none;
}
.ct-list__filters .form--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-left: -12px;
  margin-right: -12px;
}
@media (max-width: 575px) {
  .ct-list__filters .form--inline {
    margin: 0;
  }
}
.ct-list__filters .form--inline > .ct-form-element, .ct-list__filters .form--inline > .form-actions .ct-button {
  margin-bottom: 24px;
}
.ct-list__filters .ct-form-element, .ct-list__filters .ct-field--select, .ct-list__filters .ct-field--textfield {
  max-width: calc(25% - 24px);
  flex: 0 0 calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 0;
}
.ct-list__filters .ct-form-element .ct-input, .ct-list__filters .ct-field--select .ct-input, .ct-list__filters .ct-field--textfield .ct-input {
  margin-bottom: 0;
}
.ct-list__filters .ct-form-element .ct-select, .ct-list__filters .ct-field--select .ct-select, .ct-list__filters .ct-field--textfield .ct-select {
  min-width: 1px;
}
.ct-list__filters .ct-form-element .ct-button, .ct-list__filters .ct-field--select .ct-button, .ct-list__filters .ct-field--textfield .ct-button {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 14px 40px;
  background-color: #018081;
}
@media (max-width: 575px) {
  .ct-list__filters .ct-form-element .ct-button, .ct-list__filters .ct-field--select .ct-button, .ct-list__filters .ct-field--textfield .ct-button {
    padding: 12px 20px;
  }
}
.ct-list__filters .ct-form-element .ct-button:hover, .ct-list__filters .ct-form-element .ct-button:active, .ct-list__filters .ct-field--select .ct-button:hover, .ct-list__filters .ct-field--select .ct-button:active, .ct-list__filters .ct-field--textfield .ct-button:hover, .ct-list__filters .ct-field--textfield .ct-button:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.ct-list__filters .ct-form-element .ct-button:active, .ct-list__filters .ct-form-element .ct-button:focus, .ct-list__filters .ct-field--select .ct-button:active, .ct-list__filters .ct-field--select .ct-button:focus, .ct-list__filters .ct-field--textfield .ct-button:active, .ct-list__filters .ct-field--textfield .ct-button:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.ct-list__filters .ct-form-element .ct-button:hover, .ct-list__filters .ct-field--select .ct-button:hover, .ct-list__filters .ct-field--textfield .ct-button:hover {
  cursor: pointer;
}
.ct-list__filters .ct-form-element .ct-button:disabled, .ct-list__filters .ct-field--select .ct-button:disabled, .ct-list__filters .ct-field--textfield .ct-button:disabled {
  opacity: 0.4;
}
.ct-list__filters .ct-field--select, .ct-list__filters .ct-field--textfield {
  margin-bottom: 24px;
}
.ct-list__filters .form-wrapper {
  max-width: calc(25% - 24px);
  flex: 0 0 calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}
.ct-list__filters .form-wrapper .ct-form-element {
  max-width: 100%;
  flex: 0 0 100%;
  margin-left: 0;
  margin-right: 0;
}
.ct-list__filters .form-wrapper .ct-button {
  width: 100%;
}

.view-frontpage .slide-wrapper {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  column-gap: 24px;
  height: 100%;
}
.view-frontpage .sprep-slider-progress-bar {
  background: linear-gradient(108.37deg, #B5538E 0%, #EEB092 99.69%);
  transition: width 0ms ease;
  height: 5px;
  width: 0;
  border-radius: 2px;
}
.view-frontpage .splide__arrows {
  display: none;
}
.view-frontpage .views-field-field-image {
  grid-column: 1/10;
  max-width: calc(100% - 10px);
}
.view-frontpage .views-field-field-image .field-content {
  height: 100%;
}
.view-frontpage .views-field-field-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.view-frontpage .views-field-fieldset {
  grid-column: 10/15;
  max-width: calc(100% + 34px);
  margin-left: -34px;
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
}
.view-frontpage .views-field-fieldset > .field-content {
  height: 100%;
}
.view-frontpage .views-field-fieldset > .field-content > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.view-frontpage .views-field.views-field-nothing-1 {
  height: 100%;
}
.view-frontpage .views-field.views-field-nothing-1 > .field-content {
  height: 100%;
}
.view-frontpage .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.view-frontpage .views-field-title {
  display: block;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
  text-align: center;
}
.view-frontpage .views-field-body {
  font-size: 20px;
  line-height: 34px;
  color: #fafbfb;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  margin-bottom: 24px;
  text-align: center;
}
.view-frontpage .views-field-body:empty {
  margin: 0;
}
.view-frontpage .views-field-body h2 {
  font-size: inherit;
  line-height: inherit;
}
.view-frontpage .views-field-node {
  color: #fff;
}
.view-frontpage .views-field-node a {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 14px 40px;
  background-color: #018081;
}
@media (max-width: 575px) {
  .view-frontpage .views-field-node a {
    padding: 12px 20px;
  }
}
.view-frontpage .views-field-node a:hover, .view-frontpage .views-field-node a:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.view-frontpage .views-field-node a:active, .view-frontpage .views-field-node a:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.view-frontpage .views-field-node a:hover {
  cursor: pointer;
}
.view-frontpage .views-field-node a:disabled {
  opacity: 0.4;
}
.view-frontpage .views-field-nothing .field-content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  column-gap: 16px;
}

.view-upcoming-alert .group-upcoming-event {
  display: flex;
}
.view-upcoming-alert .title {
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  display: inline-block;
  flex: 0 0 180px;
}
.view-upcoming-alert .title:before {
  content: "";
  display: inline-block;
  background: url(/themes/custom/sprep_theme/dist/images/icon-calendar-black.396e939c.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.view-upcoming-alert .content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-height: 28px;
  color: #393d49;
  font-weight: 400;
  flex: 1;
  padding-left: 16px;
}
.view-upcoming-alert .content > * {
  display: inline;
}
.view-upcoming-alert .content a {
  font-weight: 400;
}
.view-upcoming-alert .content .btn-events {
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  padding-left: 8px;
}

.sprep-news-big-order .views-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin-bottom: 24px;
}
.sprep-news-big-order .views-field-field-lead-image {
  max-width: 100%;
  grid-column: 1/7;
}
.sprep-news-big-order .views-field-fieldset {
  max-width: calc(100% + 24px);
  grid-column: 7/13;
  margin-left: -24px;
}
.sprep-news-big-order .views-field-fieldset > .field-content {
  height: 100%;
}
.sprep-news-big-order .sprep-latest-news-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 80px 80px;
  background-color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.sprep-news-big-order .views-field-field-lead-image .field-content {
  height: 100%;
}
.sprep-news-big-order .views-field-field-lead-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.0069/1;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.sprep-news-big-order .views-field-field-topic {
  order: -5;
  display: flex;
  width: max-content;
  max-width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #018081;
  font-weight: 500;
  padding: 2px 8px;
  margin-bottom: 32px;
  border: 1px solid #018081;
  border-radius: 4px;
}
.sprep-news-big-order .views-field-title a {
  font-size: 32px;
  line-height: 40px;
  color: #002242;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sprep-news-big-order .views-field-title a {
    -webkit-line-clamp: 4;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: -0.35px;
  }
}
.sprep-news-big-order .views-field-created {
  font-size: 14px;
  line-height: 20px;
  color: #939393;
  font-weight: 500;
  margin-bottom: 24px;
}
.sprep-news-big-order .views-field-body {
  font-size: 16px;
  line-height: 28px;
  color: #393d49;
  font-weight: 400;
  margin-bottom: 32px;
}
.sprep-news-big-order .views-field-body span {
  font-size: inherit !important;
  line-height: inherit !important;
}
.sprep-news-big-order .views-field-view-node a {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 14px 40px;
  background-color: #018081;
}
@media (max-width: 575px) {
  .sprep-news-big-order .views-field-view-node a {
    padding: 12px 20px;
  }
}
.sprep-news-big-order .views-field-view-node a:hover, .sprep-news-big-order .views-field-view-node a:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.sprep-news-big-order .views-field-view-node a:active, .sprep-news-big-order .views-field-view-node a:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.sprep-news-big-order .views-field-view-node a:hover {
  cursor: pointer;
}
.sprep-news-big-order .views-field-view-node a:disabled {
  opacity: 0.4;
}

.sprep-slishow-news .slide-wrapper {
  border-radius: 4px;
}
.sprep-slishow-news .views-field-field-lead-image a {
  display: block;
}
.sprep-slishow-news .views-field-field-lead-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.sprep-slishow-news .sprep-latest-news-info {
  padding: 24px;
  background: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.sprep-slishow-news .content-wrapper {
  margin-bottom: 16px;
}
.sprep-slishow-news .views-field-created {
  font-size: 14px;
  color: #939393;
  font-weight: 500;
  letter-spacing: -0.1px;
  margin-bottom: 16px;
}
.sprep-slishow-news .views-field-title {
  margin-bottom: 8px;
}
.sprep-slishow-news .views-field-title a {
  font-size: 20px;
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.sprep-slishow-news .views-field-field-topic .field-content {
  display: inline-block;
}
.sprep-slishow-news .views-field-field-topic a {
  display: inline-block;
  padding: 2px 8px;
  border: 2px solid #018081;
  font-size: 14px;
  color: #018081;
  font-weight: 500;
  letter-spacing: -0.1px;
  border-radius: 4px;
}
.sprep-slishow-news .ct-list__footer {
  text-align: center;
  padding: 16px 0;
}
.sprep-slishow-news .link-header {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575px) {
  .sprep-slishow-news .link-header {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.sprep-slishow-news .link-header:hover, .sprep-slishow-news .link-header:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.sprep-slishow-news .link-header:active, .sprep-slishow-news .link-header:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.sprep-slishow-news .link-header:hover {
  cursor: pointer;
}
.sprep-slishow-news .link-header:disabled {
  opacity: 0.4;
}
@media (max-width: 575px) {
  .sprep-slishow-news .link-header {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.sprep-slishow-news .link-header:hover, .sprep-slishow-news .link-header:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.sprep-slishow-news .link-header:before, .sprep-slishow-news .link-header:after {
  content: "";
  display: inline-block;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .sprep-slishow-news .link-header:before, .sprep-slishow-news .link-header:after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
  }
}
.sprep-slishow-news .link-header:before {
  margin-right: 7px;
}
.sprep-slishow-news .link-header:after {
  content: unset;
}
.sprep-slishow-news .link-header:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-newspaper.3c149004.svg);
}
.sprep-slishow-news .link-header:active, .sprep-slishow-news .link-header:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.sprep-slishow-news .link-header:hover {
  cursor: pointer;
}
.sprep-slishow-news .link-header:disabled {
  opacity: 0.4;
}

.view-our-focus .ct-list__rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.view-our-focus .focus {
  text-align: center;
}
.view-our-focus .focus_image {
  position: relative;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 150px;
  max-height: 150px;
}
.view-our-focus .focus_image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.view-our-focus .focus_image:hover::before, .view-our-focus .focus_image:focus::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.view-our-focus .focus-title {
  line-height: 28px;
  color: #fafbfb;
  font-weight: 700;
  margin: 0;
}

.view-our-work .slide-wrapper {
  padding: 24px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-top: 6px;
  background: #fff;
  position: relative;
}
.view-our-work .slide-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  margin-top: -6px;
  background-image: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  border-radius: 4px;
}
.view-our-work .views-field-field-project-short-name a {
  font-size: 25px;
  line-height: 31px;
  color: #002242;
  font-weight: 700;
  margin-bottom: 16px;
}
.view-our-work .views-field-field-project-objective {
  line-height: 28px;
  color: #393d49;
  font-weight: 400;
}
.view-our-work .views-field-field-project-objective p {
  line-height: 28px;
  color: #393d49;
  font-weight: 400;
  margin: 0;
}

.view-publications-lastest .view-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 32px;
}
.view-publications-lastest .publications-wrapper {
  display: flex;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
}
.view-publications-lastest .publications-left img {
  max-width: 276px;
  max-height: 391.13px;
  aspect-ratio: 1/0.7075471698;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.view-publications-lastest .publications-right {
  padding: 24px 16px 24px 32px;
}
.view-publications-lastest .publications-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.view-publications-lastest .views-field-field-publication-title {
  font-size: 20px;
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  max-width: 90%;
}
.view-publications-lastest .views-field-field-publication-title a {
  display: block;
}
.view-publications-lastest .views-field-field-download-link {
  order: 2;
}
.view-publications-lastest .views-field-field-download-link a {
  display: block;
  overflow: hidden;
  text-indent: -999px;
  width: 20px;
  height: 20px;
  background: url(/themes/custom/sprep_theme/dist/images/icon-download.ab389583.svg) no-repeat;
  background-size: 20px;
}
.view-publications-lastest .views-field-field-publication-attachment {
  font-size: 14px;
  line-height: 25px;
  color: #018081;
  font-weight: 700;
  text-decoration: underline;
}
.view-publications-lastest .views-field-field-publication-attachment span:not(.file) {
  font-weight: 500;
}

.view-upcoming-events .container, .view-upcoming-events .row > * {
  padding: 0;
}
.view-upcoming-events .views-field-field-event-end-date {
  display: inline-flex;
  position: relative;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgb(1, 128, 129);
  font-size: 14px;
  line-height: 20px;
  color: rgb(1, 128, 129);
  font-weight: 600;
  margin-bottom: 16px;
}
.view-upcoming-events .views-field-field-event-end-date:before {
  content: "";
  display: inline-block;
  background: url(/themes/custom/sprep_theme/dist/images/icon-calendar-green.806d2305.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.view-upcoming-events .views-field-title {
  font-size: 20px;
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  margin-bottom: 16px;
}
.view-upcoming-events .views-field-field-venue {
  line-height: 28px;
  color: #33414D;
}
.view-upcoming-events .views-field-field-venue .field-content {
  display: flex;
  gap: 5px;
}
.view-upcoming-events .ct-list__rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.view-upcoming-events .views-field-fieldset {
  height: 100%;
}
.view-upcoming-events .views-field-fieldset .field-content {
  height: 100%;
}
.view-upcoming-events .views-field-fieldset .field-content > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 24px;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  flex: 0 0 100%;
  margin-top: 6px;
}
.view-upcoming-events .views-field-fieldset .field-content > div:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  margin-top: -6px;
  background-image: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  border-radius: 4px;
}
.view-upcoming-events .ct-list__footer {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.view-upcoming-events .link-header {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575px) {
  .view-upcoming-events .link-header {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.view-upcoming-events .link-header:hover, .view-upcoming-events .link-header:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.view-upcoming-events .link-header:active, .view-upcoming-events .link-header:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.view-upcoming-events .link-header:hover {
  cursor: pointer;
}
.view-upcoming-events .link-header:disabled {
  opacity: 0.4;
}
@media (max-width: 575px) {
  .view-upcoming-events .link-header {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.view-upcoming-events .link-header:hover, .view-upcoming-events .link-header:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.view-upcoming-events .link-header:before, .view-upcoming-events .link-header:after {
  content: "";
  display: inline-block;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .view-upcoming-events .link-header:before, .view-upcoming-events .link-header:after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
  }
}
.view-upcoming-events .link-header:before {
  margin-right: 7px;
}
.view-upcoming-events .link-header:after {
  content: unset;
}
.view-upcoming-events .link-header:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-calendar-white.5ed27f64.svg);
}
.view-upcoming-events .link-header:active, .view-upcoming-events .link-header:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.view-upcoming-events .link-header:hover {
  cursor: pointer;
}
.view-upcoming-events .link-header:disabled {
  opacity: 0.4;
}

.view-latest-publications {
  text-align: left;
}
.view-latest-publications .ct-list__rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.view-latest-publications .views-field-publication-thumbnail a {
  display: block;
}
.view-latest-publications .views-field-publication-thumbnail a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.view-latest-publications .views-row:hover {
  cursor: pointer;
}
.view-latest-publications .views-row:hover .publications-infor {
  top: 0;
  border-radius: 4px;
}
.view-latest-publications .views-row:hover .views-field-publication-title {
  display: block;
}
.view-latest-publications .views-row:hover .views-field-download {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.view-latest-publications .views-field-nothing {
  position: relative;
}
.view-latest-publications .publications-infor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: calc(100% - 132px);
  background: linear-gradient(90deg, rgba(181, 83, 142, 0.95) 0%, rgba(238, 176, 146, 0.95) 100%);
  padding: 24px 24px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: top 0.5s ease-in-out;
}
.view-latest-publications .views-field-publication-title {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.view-latest-publications .views-field-download {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.view-latest-publications .views-field-download a {
  display: inline-flex;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  position: relative;
  align-items: center;
}
.view-latest-publications .views-field-download a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-link.b7a3f5b8.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.view-latest-publications .ct-list__footer {
  text-align: center;
  margin-top: 32px;
  padding: 16px 0;
}
.view-latest-publications .link-footer {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575px) {
  .view-latest-publications .link-footer {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.view-latest-publications .link-footer:hover, .view-latest-publications .link-footer:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.view-latest-publications .link-footer:active, .view-latest-publications .link-footer:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.view-latest-publications .link-footer:hover {
  cursor: pointer;
}
.view-latest-publications .link-footer:disabled {
  opacity: 0.4;
}
@media (max-width: 575px) {
  .view-latest-publications .link-footer {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.view-latest-publications .link-footer:hover, .view-latest-publications .link-footer:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.view-latest-publications .link-footer:before, .view-latest-publications .link-footer:after {
  content: "";
  display: inline-block;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .view-latest-publications .link-footer:before, .view-latest-publications .link-footer:after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
  }
}
.view-latest-publications .link-footer:before {
  margin-right: 7px;
}
.view-latest-publications .link-footer:after {
  content: unset;
}
.view-latest-publications .link-footer:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-newspaper.3c149004.svg);
}
.view-latest-publications .link-footer:active, .view-latest-publications .link-footer:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.view-latest-publications .link-footer:hover {
  cursor: pointer;
}
.view-latest-publications .link-footer:disabled {
  opacity: 0.4;
}

.sprep-news:not(.new-latest-slider) .views-field-field-lead-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  aspect-ratio: 1.5/1;
}
.sprep-news:not(.new-latest-slider) .views-field-fieldset > .field-content > div {
  padding: 24px;
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.sprep-news:not(.new-latest-slider) .views-field-title a {
  line-height: 28px;
  color: #002242;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  margin-bottom: 8px;
}
.sprep-news:not(.new-latest-slider) .views-field-created {
  font-size: 14px;
  color: #939393;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.sprep-news:not(.new-latest-slider) .views-field-body {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.sprep-news:not(.new-latest-slider) .views-field-field-topic {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #018081;
  font-size: 14px;
  color: #018081;
  font-weight: 500;
  letter-spacing: -0.1px;
  border-radius: 4px;
  margin-top: 16px;
}
.sprep-news:not(.new-latest-slider) .views-field-field-topic .field-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.sprep-news:not(.new-latest-slider) .views-field-field-topic a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  font-weight: 500;
}

.sprep-news-list .ct-list__rows,
.sprep-popular-articles .ct-list__rows {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -12px;
}
@media (max-width: 575px) {
  .sprep-news-list .ct-list__rows,
  .sprep-popular-articles .ct-list__rows {
    margin: 0;
  }
}
.sprep-news-list .ct-list__rows > *,
.sprep-popular-articles .ct-list__rows > * {
  margin: 0 12px;
  flex: 0 0 calc(25% - 24px);
  max-width: calc(25% - 24px);
}
@media (max-width: 1280px) {
  .sprep-news-list .ct-list__rows > *,
  .sprep-popular-articles .ct-list__rows > * {
    flex: 0 0 calc(33.3333333333% - 24px);
    max-width: calc(33.3333333333% - 24px);
  }
}
@media (max-width: 991px) {
  .sprep-news-list .ct-list__rows > *,
  .sprep-popular-articles .ct-list__rows > * {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media (max-width: 575px) {
  .sprep-news-list .ct-list__rows > *,
  .sprep-popular-articles .ct-list__rows > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .sprep-news-list .ct-list__rows > *,
  .sprep-popular-articles .ct-list__rows > * {
    margin: 0;
  }
}

.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
  display: inline-flex;
  align-items: center;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  text-align: center;
  background-position: calc(100% - 65px);
}
@media (max-width: 575px) {
  .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:hover, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:active, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:hover, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:active, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:focus, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:active, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:hover, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:hover {
  cursor: pointer;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:disabled, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:disabled {
  opacity: 0.4;
}
@media (max-width: 575px) {
  .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:hover, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:active, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:hover, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:before, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:after, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:before, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:after {
  content: "";
  display: inline-block;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:before, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:after, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:before, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
  }
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:before, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:before {
  content: unset;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:after, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:after {
  margin-left: 7px;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:before, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:active, .sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:focus, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:active, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:hover, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:hover {
  cursor: pointer;
}
.sprep-news-list .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light:disabled, .sprep-news-list .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light:disabled {
  opacity: 0.4;
}

.new-latest-slider .slide-wrapper {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: 24px;
  width: 100%;
  height: 100%;
}
.new-latest-slider .views-field-fieldset {
  grid-column: 1/4;
  height: 100%;
}
.new-latest-slider .views-field-fieldset > .field-content {
  height: 100%;
}
.new-latest-slider .views-field-fieldset > .field-content > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(156.84deg, #B5538E 0%, #EEB092 100%);
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.new-latest-slider .content-wrapper > .views-field {
  margin-bottom: 16px;
}
.new-latest-slider .content-wrapper > .views-field:last-child {
  margin-bottom: 0;
}
.new-latest-slider .views-field-nothing-1 {
  flex: 1;
}
.new-latest-slider .views-field-field-lead-image {
  max-width: calc(100% + 24px);
  grid-column: 4/10;
  margin-left: -24px;
}
.new-latest-slider .views-field-field-lead-image .field-content {
  height: 100%;
}
.new-latest-slider .views-field-field-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.new-latest-slider .views-field-created {
  font-size: 14px;
  color: #fafbfb;
  font-weight: 500;
}
.new-latest-slider .views-field-title a {
  font-size: 25px;
  line-height: 31px;
  color: #fafbfb;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  letter-spacing: -0.4px;
}
.new-latest-slider .views-field-field-topic {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #fafbfb;
  font-size: 14px;
  color: #fafbfb;
  font-weight: 500;
  letter-spacing: -0.1px;
  border-radius: 4px;
}
.new-latest-slider .views-field-field-topic .field-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.new-latest-slider .splide .sprep-splide__arrows .sprep-splide__arrow {
  padding: 6px;
}
.new-latest-slider .splide .sprep-splide__arrows .sprep-splide__arrow:before, .new-latest-slider .splide .sprep-splide__arrows .sprep-splide__arrow:after {
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.sprep-category {
  height: 100%;
}
.sprep-category .ct-list__container {
  height: 100%;
}
.sprep-category .ct-list__rows {
  height: 100%;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #225ca9;
  border-radius: 4px;
}
.sprep-category .views-row {
  border-bottom: 1px solid #3563ad;
}
.sprep-category .views-row:last-child {
  border-bottom: none;
}
.sprep-category .views-field-name a {
  color: #fafbfb;
  font-weight: 500;
  letter-spacing: -0.1px;
  padding: 14px 16px 14px 32px;
  width: 100%;
}

.sprep-slishow-detail .views-row {
  margin-bottom: 24px;
}
.sprep-slishow-detail .views-row:last-child {
  margin-bottom: 0;
}

.view-pacwaste-news-and-media-breadcrumb .views-field-created {
  font-size: 14px;
  line-height: 25px;
  color: #fafbfb;
  text-align: center;
  margin-top: 16px;
}

.view-circulars .ct-list__rows {
  background-color: #fff;
}
.view-circulars .ct-list__rows h5 {
  margin: 0;
}
.view-circulars .ct-list__rows a {
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;
}
.view-circulars .views-row-even {
  background-color: #F5F5F5;
  border-top: 1px solid #E6E9EB;
  border-bottom: 1px solid #E6E9EB;
}
.view-circulars .views-row-odd,
.view-circulars .views-row-even {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 52px 24px 24px;
  position: relative;
}
.view-circulars .views-row-odd .views-field-view-node a,
.view-circulars .views-row-even .views-field-view-node a {
  position: absolute;
  right: 16px;
  top: 24px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/themes/custom/sprep_theme/dist/images/icon-arrow-right.87e04f6c.svg) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  font-size: 0;
}

.spreps-form-event .ct-list__rows {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -12px;
}
@media (max-width: 575px) {
  .spreps-form-event .ct-list__rows {
    margin: 0;
  }
}
.spreps-form-event .ct-list__rows > * {
  margin: 0 12px;
  flex: 0 0 calc(50% - 24px);
  max-width: calc(50% - 24px);
}
@media (max-width: 575px) {
  .spreps-form-event .ct-list__rows > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .spreps-form-event .ct-list__rows > * {
    margin: 0;
  }
}
.spreps-form-event.ct-list__has-pager .ct-list__rows {
  margin-bottom: 80px;
}
.spreps-form-event .views-field-fieldset {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 100%;
  padding: 24px 24px;
  position: relative;
  border-radius: 4px;
}
.spreps-form-event .views-field-fieldset:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  margin-top: -6px;
  background-image: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  border-radius: 4px;
}
.spreps-form-event .views-field-field-event-end-date {
  border: 1px solid #018081;
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-flex;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  color: #018081;
  font-weight: 500;
  letter-spacing: -0.1px;
  margin-bottom: 16px;
}
.spreps-form-event .views-field-field-event-end-date::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/themes/custom/sprep_theme/dist/images/icon-calendar-green.806d2305.svg) no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
}
.spreps-form-event .views-field-title a {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
}
.spreps-form-event .views-field-field-venue {
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  color: #606060;
  font-weight: 400;
}
.spreps-form-event .views-field-field-venue .field-content {
  width: 100%;
}
.spreps-form-event .views-field-field-venue span {
  margin-right: 5px;
  display: inline;
}

.sprep-view-job .container {
  padding: 0;
}
.sprep-view-job .col-xxs-12 {
  padding: 0;
  margin-bottom: 48px;
}
.sprep-view-job .ct-menu {
  gap: 8px;
  margin-bottom: 24px;
}
.sprep-view-job .ct-menu__item--active-trail .ct-link.ct-theme-light {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}

.our-team-tabs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.our-team-tabs .our-team-tab-item {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  height: 44px;
  border-radius: 50px;
  height: auto;
  padding: 12px 24px;
  border: none;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
}
.our-team-tabs .our-team-tab-item:hover, .our-team-tabs .our-team-tab-item:focus {
  color: #fff;
  border: 2px solid #0054A4;
  background-color: #0054A4;
}
.our-team-tabs .our-team-tab-item:hover, .our-team-tabs .our-team-tab-item:focus, .our-team-tabs .our-team-tab-item.active {
  cursor: pointer;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
}

.sprep-member-flag {
  margin-bottom: 30px;
}
.sprep-member-flag .views-field-nothing-1 {
  max-width: 50%;
}
.sprep-member-flag .views-field-nothing-1 img {
  max-width: 200px;
  max-height: 100px;
}
.sprep-member-flag .views-field-nothing-1 > .field-content {
  display: flex;
  gap: 16px;
}
.sprep-member-flag .group-country-text {
  font-size: 25px;
  line-height: 31px;
  color: #002242;
  font-weight: 700;
}
.sprep-member-flag .group-country-text p {
  font-size: 1rem;
}

.sprep-member-flag-detail {
  padding-top: 40px;
}
.sprep-member-flag-detail .nav-tabs {
  display: flex;
  align-items: center;
  border: none;
}
.sprep-member-flag-detail .nav-tabs li.active {
  background: #FFF3ED;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: none;
  position: relative;
}
.sprep-member-flag-detail .nav-tabs li.active a {
  border: none;
}
.sprep-member-flag-detail .nav-tabs li a {
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 20px;
  line-height: 30px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
  text-align: center;
  border: none;
}
.sprep-member-flag-detail .tab-content {
  background: #FFF3ED;
  padding: 20px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
.sprep-member-flag-detail .tab-pane {
  display: none;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.sprep-member-flag-detail .tab-pane.active {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.view-search-api {
  margin-top: 48px;
}
.view-search-api .ct-list__filters {
  display: none;
}
.view-search-api .ct-list__rows {
  display: flex;
  flex-wrap: wrap;
}
.view-search-api .views-row {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E6E9EB;
  width: 100%;
}
.view-search-api .views-field-title {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.view-search-api .views-field-title a:hover {
  text-decoration: underline;
}
.view-search-api .views-field-body {
  line-height: 28px;
  color: #fff;
}
.view-our-team.active {
  display: block;
}
.view-our-team .col-xxs-12 {
  padding: 0;
}
.view-our-team .team-heading, .view-our-team .block-title {
  color: #002242;
}
.view-our-team .team-heading {
  font-weight: 700;
  font-size: 39px;
  line-height: 48px;
  letter-spacing: -0.8px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .view-our-team .team-heading {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.5px;
  }
}
.view-our-team .block-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: -0.4px;
}
@media (max-width: 767px) {
  .view-our-team .block-title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.25px;
  }
}
.view-our-team .inv-grid-item {
  position: relative;
}
.view-our-team .inv-grid-item-inner:hover {
  cursor: pointer;
}
.view-our-team .inv-grid-item-inner:hover .wrapper-front {
  transform: rotateY(-180deg);
  transition: all 0.3s ease-in-out;
}
.view-our-team .inv-grid-item-inner:hover .wrapper-back {
  transform: rotateY(0deg);
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
.view-our-team .inv-grid-item-inner:hover .wrapper-back::-webkit-scrollbar-track {
  background: transparent;
}
.view-our-team .inv-grid-item-inner:hover .wrapper-back::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.view-our-team .inv-grid-item-inner:hover .wrapper-back::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
}
.view-our-team .views-field-fieldset-2 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 355px;
}
.view-our-team .wrapper-front,
.view-our-team .wrapper-back {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  border-radius: 8px;
  padding: 24px 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
}
.view-our-team .wrapper-front {
  transform: rotateY(0);
  transition: all 0.3s ease-in-out;
}
.view-our-team .wrapper-back {
  transform: rotateY(-180deg);
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.view-our-team .wrapper-back .views-field {
  display: none;
}
.view-our-team .wrapper-back .views-field-nothing {
  display: block;
  width: 100%;
}
.view-our-team .wrapper-back .team-position {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 28px;
}
.view-our-team .wrapper-back .team {
  font-size: 16px;
  line-height: 28px;
}
.view-our-team .wrapper-back .team-country {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.view-our-team .wrapper-back .team-country img {
  max-width: 32px;
}
.view-our-team .views-field-field-image {
  margin-bottom: 24px;
}
.view-our-team .views-field-field-image img {
  aspect-ratio: 1/1;
  max-width: 180px;
  height: 180px;
  border-radius: 8px;
  border: 5px solid #fff;
}
.view-our-team .views-field-title a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}
.view-our-team .views-field-field-team-position {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-align: center;
}
.view-blog.view-display-id-page_5 .ct-list__filters {
  margin-bottom: 48px;
}
.view-blog.view-display-id-page_5 .ct-list__filters .form--inline {
  display: block;
  text-align: center;
  margin: 0;
}
.view-blog.view-display-id-page_5 .ct-list__filters .ct-form-element--field_news_tags_new_target_id, .view-blog.view-display-id-page_5 .ct-list__filters .js-form-item-field-news-tags-new-target-id {
  display: inline-block;
  margin: 0;
  max-width: 209px;
  float: none;
}
.view-blog.view-display-id-page_5 .ct-list__filters .ct-form-element--field_news_tags_new_target_id .ct-select.ct-theme-light, .view-blog.view-display-id-page_5 .ct-list__filters .js-form-item-field-news-tags-new-target-id .ct-select.ct-theme-light {
  background-position: calc(100% - 16px);
}
.view-taxonomy-term .views-row {
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
}
.view-taxonomy-term .views-row .node > h2 {
  color: #002242;
}
.view-taxonomy-term .views-row .node .field--name-field-image {
  margin-bottom: 15px;
}
.view-taxonomy-term .views-row .node .field--name-field-team-position {
  margin-bottom: 15px;
}
.view-publications-page .container,
.view-publications-page .col-xxs-12, .view-publications-index .container,
.view-publications-index .col-xxs-12 {
  padding: 0;
}
.view-publications-page .form--inline, .view-publications-index .form--inline {
  margin-left: -12px;
  margin-right: -12px;
}
@media (max-width: 575px) {
  .view-publications-page .form--inline, .view-publications-index .form--inline {
    margin: 0;
  }
}
.view-publications-page.ct-list__has-pager .ct-list__rows, .view-publications-index.ct-list__has-pager .ct-list__rows {
  margin-bottom: 0;
}
.view-publications-page .ct-form-element, .view-publications-index .ct-form-element {
  flex: 1;
  max-width: unset;
}
.view-publications-page .inv-grid-item-inner, .view-publications-index .inv-grid-item-inner {
  position: relative;
  border-radius: 4px;
  min-height: 132px;
}
.view-publications-page .inv-grid-item-inner:hover, .view-publications-index .inv-grid-item-inner:hover {
  cursor: pointer;
}
.view-publications-page .inv-grid-item-inner:hover .publications-infor, .view-publications-index .inv-grid-item-inner:hover .publications-infor {
  top: 0;
  border-radius: 4px;
}
.view-publications-page .inv-grid-item-inner:hover .views-field-publication-title, .view-publications-index .inv-grid-item-inner:hover .views-field-publication-title {
  display: block;
}
.view-publications-page .inv-grid-item-inner:hover .views-field-download, .view-publications-index .inv-grid-item-inner:hover .views-field-download {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.view-publications-page .views-field-nothing img, .view-publications-index .views-field-nothing img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-publications-page .views-field-publication-thumbnail img, .view-publications-index .views-field-publication-thumbnail img {
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.view-publications-page .views-field-publication-thumbnail a, .view-publications-index .views-field-publication-thumbnail a {
  width: 100%;
}
.view-publications-page .views-field-publication-title, .view-publications-index .views-field-publication-title {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.view-publications-page .publications-infor, .view-publications-index .publications-infor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: calc(100% - 132px);
  background: linear-gradient(90deg, rgba(181, 83, 142, 0.95) 0%, rgba(238, 176, 146, 0.95) 100%);
  padding: 24px 24px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: top 0.5s ease-in-out;
}
.view-publications-page .views-field-download, .view-publications-index .views-field-download {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.view-publications-page .views-field-download a, .view-publications-index .views-field-download a {
  display: inline-flex;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  position: relative;
  align-items: center;
}
.view-publications-page .views-field-download a:after, .view-publications-index .views-field-download a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-link.b7a3f5b8.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.view-circulars .form--inline {
  margin-left: -12px;
  margin-right: -12px;
}
.view-circulars .ct-list__filters .ct-form-element, .view-circulars .ct-list__filters .ct-field--textfield {
  max-width: unset;
  flex: 1;
}
.view-circulars.ct-list__has-pager .ct-list__rows {
  margin-bottom: 24px;
}
.view-projects .ct-list__filters .container {
  padding: 0;
}
.view-projects .ct-list__filters .container > .row > .col-xxs-12 {
  padding: 0;
}
.view-job-vacancies-1 .ct-list__container > h4 {
  color: #002242;
  margin-bottom: 24px;
}
.view-job-vacancies-1 .ct-list__container > p:empty {
  display: none;
}
.view-job-vacancies-1 .ct-list__container > p a {
  color: #018081;
  font-weight: 400;
}
.view-job-vacancies-1 .ct-list__container .tab-container {
  margin-top: 48px;
}
.view-job-vacancies-1.ct-list__has-pager .ct-list__rows, .view-job-vacancies-1.ct-list__has-pager .ct-table {
  margin-bottom: 24px;
}
.view-award-of-contract .ct-list__rows-above > h3 {
  color: #002242;
  margin-bottom: 24px;
}
.view-award-of-contract p:empty {
  display: none;
}
.view-award-of-contract.ct-list__has-pager .ct-list__rows, .view-award-of-contract.ct-list__has-pager .ct-table {
  margin-bottom: 24px;
}

.ct-list .container {
  padding: 0;
}
.ct-list .ct-list__rows-above {
  margin: 0;
}
.ct-list a {
  display: inline-block;
  color: inherit;
}
.ct-list .ct-table {
  margin-bottom: 80px;
}

.view-tenders.ct-list__has-pager .ct-list__rows, .view-tenders.ct-list__has-pager .ct-table {
  margin-bottom: 24px;
}

.ct-list__has-pager .ct-list__rows {
  margin-bottom: 48px;
}

.menu--civictheme-secondary-navigation .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  gap: 24px;
  color: #fff;
}
.menu--civictheme-primary-navigation {
  flex: 1;
  padding: 10px 24px 10px 0;
  border-right: 1px solid #E6E9EB;
}
.menu--civictheme-primary-navigation > .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  gap: 32px;
  color: #fff;
}
.menu--civictheme-primary-navigation > .menu .menu-item.menu-item--expanded {
  position: relative;
}
.menu--civictheme-primary-navigation > .menu .menu-item.menu-item--expanded .menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.block-quicktabs .tabsbar .quicktabs-tabs {
  column-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  border: 0;
}
@media (max-width: 767px) {
  .block-quicktabs .tabsbar .quicktabs-tabs {
    flex-wrap: unset;
    overflow: auto;
    margin: 0;
    padding: 20px 0;
  }
}
.block-quicktabs .tabsbar .quicktabs-tabs li {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.block-quicktabs .tabsbar .quicktabs-tabs li.active a {
  background: linear-gradient(90deg, #b5538e, #eeb092);
  border: none;
  color: #fff;
  cursor: pointer;
}
.block-quicktabs .tabsbar .quicktabs-tabs li a {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.102);
  color: #000;
  font-weight: 600;
  height: auto;
  letter-spacing: -0.1px;
  padding: 12px 24px;
}
.block-quicktabs .tabsbar .quicktabs-tabs li a:hover {
  background: linear-gradient(90deg, #b5538e, #eeb092);
  border: none;
  color: #fff;
  cursor: pointer;
}
.block-quicktabs .tabsbar .quicktabs-main {
  padding: 0;
}
.block-search h2 {
  display: none;
}
.block-search form {
  display: none;
}
.block-icon--search {
  padding-left: 24px;
}
.block-icon--search .open-search {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
}
.block-icon--search .open-search .icon-search {
  display: none;
}
.block-icon--search .open-search .icon-search .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  vertical-align: bottom;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
.block-icon--search .open-search .icon-search.is_active {
  display: flex;
}
.block-icon--search .open-search .icon-search.opening .icon {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-search.5fa58e23.svg);
}
.block-footer-top-logo-social-media {
  width: 100%;
}
.block-our-focus-front h2 {
  text-align: center;
  color: #fafbfb;
}
.block-search--page-404 > form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 8px;
}
.block-search--page-404 .ct-form-element--search {
  margin: 0;
  max-width: 434px;
}
.block-search--page-404 .ct-label {
  display: none;
}
.block-search--page-404 .ct-input--search {
  margin: 0;
}
.block-search--page-404 .ct-input--search .ct-input__element.form-search {
  line-height: 28px;
  color: #939393;
  padding: 10px 16px;
  margin: 0;
  border: 1px solid #E6E9EB;
  border-radius: 4px;
}
.block-search--page-404 .ct-input--search .ct-input__element.form-search:focus {
  outline: none;
  box-shadow: none;
}
.block-search--page-404 .ct-form-element--submit input {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 14px 40px;
  background-color: #018081;
}
@media (max-width: 575px) {
  .block-search--page-404 .ct-form-element--submit input {
    padding: 12px 20px;
  }
}
.block-search--page-404 .ct-form-element--submit input:hover, .block-search--page-404 .ct-form-element--submit input:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.block-search--page-404 .ct-form-element--submit input:active, .block-search--page-404 .ct-form-element--submit input:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.block-search--page-404 .ct-form-element--submit input:hover {
  cursor: pointer;
}
.block-search--page-404 .ct-form-element--submit input:disabled {
  opacity: 0.4;
}
.block-views-blockblog-block-9 > h2 {
  color: #002242;
  margin-top: 32px;
}
.block-country-select-list {
  position: unset;
}
.block-country-select-list .country-select-list {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 400px;
}
.block-we-megamenu.contextual-region {
  position: static;
}
.block-field-blocknodepagefield-image-slider .splide__slide {
  background-color: #000;
}
.block-views-blockpublications-page-block-2 > h2 {
  text-align: center;
  color: #002242;
}

.ct-footer__bottom__content-bottom2 .group-left {
  text-align: right;
}

.page-404 {
  padding: 64px 20px 80px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 816px;
}
.page-404 .big-heading {
  position: relative;
}
.page-404 .big-heading h1 {
  display: inline-block;
  font-size: 13.75rem;
  line-height: 17.1875rem;
  font-weight: 700;
  background-image: url(/themes/custom/sprep_theme/dist/images/bg-layer.0fc36532.png), linear-gradient(90deg, #008081 0%, #0054A4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 48px;
  min-width: 463px;
}
.page-404 .title {
  color: #002242;
  margin-bottom: 24px;
}
.page-404 .text-body {
  line-height: 28px;
  color: #393d49;
}
.page-404 .text-body a {
  font-weight: inherit;
  color: #018081;
}
.page-404 .text-body a:hover, .page-404 .text-body a:focus {
  text-decoration: underline;
}
.page-404 .content-wrapper {
  margin-bottom: 48px;
}

.navbar-we-mega-menu {
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: static;
}

.navbar-we-mega-menu .we-mega-menu-group > .we-mega-menu-submenu li:first-child > a,
.navbar-we-mega-menu .we-mega-menu-group > .we-mega-menu-submenu li:first-child > span {
  padding-top: 12px;
}

.we-mega-menu-submenu li.we-mega-menu-li.active > .we-megamenu-nolink,
.we-mega-menu-submenu li.we-mega-menu-li.active > a,
.we-mega-menu-submenu li.we-mega-menu-li.active > a:focus,
.we-mega-menu-submenu li.we-mega-menu-li.active > a:hover {
  border-bottom-color: #f9fdff;
}

.we-mega-menu-ul {
  position: static;
}
.we-mega-menu-ul a, .we-mega-menu-ul span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: -0.1px;
}
.we-mega-menu-ul .dropdown-menu {
  position: static;
}
.we-mega-menu-ul .we-mega-menu-submenu {
  width: 100%;
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  padding: 40px 0px;
  display: none;
}
.we-mega-menu-ul .we-mega-menu-submenu .we-mega-menu-submenu {
  background: transparent;
}
.we-mega-menu-ul .we-mega-menu-submenu li.we-mega-menu-li a {
  font-family: "Lexend";
  padding-top: 12px;
}
.we-mega-menu-ul .we-mega-menu-submenu .dropdown-menu a:before, .we-mega-menu-ul .we-mega-menu-submenu .dropdown-menu a:after, .we-mega-menu-ul .we-mega-menu-submenu .dropdown-menu span:before, .we-mega-menu-ul .we-mega-menu-submenu .dropdown-menu span:after {
  display: none;
}
.we-mega-menu-ul .we-mega-menu-submenu li.we-mega-menu-li a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 12px;
}
.we-mega-menu-ul > .we-mega-menu-li {
  border: none;
}
.we-mega-menu-ul > .we-mega-menu-li > a, .we-mega-menu-ul > .we-mega-menu-li > span {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.1px;
  font-family: inherit;
  text-transform: capitalize;
}
.we-mega-menu-ul > .we-mega-menu-li > a:hover, .we-mega-menu-ul > .we-mega-menu-li > a:focus, .we-mega-menu-ul > .we-mega-menu-li > span:hover, .we-mega-menu-ul > .we-mega-menu-li > span:focus {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}
.we-mega-menu-ul > .we-mega-menu-li.active-trail > a {
  background-color: transparent;
  color: #fff;
}
.we-mega-menu-ul > .we-mega-menu-li.active-trail > a:hover, .we-mega-menu-ul > .we-mega-menu-li.active-trail > a:focus {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}
.we-mega-menu-ul > .we-mega-menu-li.active-trail > a:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  width: 20px;
  height: 20px;
  background-size: 20px;
  transform: translateY(-50%);
  margin: 0;
}
.we-mega-menu-ul .we-mega-menu-li[data-level="1"].dropdown-menu > .we-mega-menu-li {
  text-transform: uppercase;
}
.we-mega-menu-ul .we-mega-menu-li[data-level="1"].dropdown-menu > .we-mega-menu-li::before {
  position: absolute;
  content: "";
  top: 20px;
  right: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(0);
}
.we-mega-menu-ul .we-mega-menu-li[data-level="1"]:hover > .we-mega-menu-submenu {
  z-index: 100;
}
.we-mega-menu-ul .we-mega-menu-li[data-level="1"] > .we-mega-menu-submenu {
  background: transparent;
  padding: 0;
  position: relative;
  left: 0;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
}
.we-mega-menu-ul .we-mega-menu-li[data-level="3"] .we-mega-menu-li {
  padding-left: 20px;
}
.we-mega-menu-ul .we-mega-menu-submenu-inner {
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}
.we-mega-menu-ul .we-mega-menu-submenu-inner .we-mega-menu-submenu-inner {
  max-width: 1480px;
  padding: 0 0;
  padding-right: 0;
  margin: 0 auto;
}
.we-mega-menu-ul .we-mega-menu-row {
  padding: 0 0;
}
.we-mega-menu-ul > .dropdown-menu:focus > a, .we-mega-menu-ul > .dropdown-menu:focus > span, .we-mega-menu-ul > .dropdown-menu:hover > a, .we-mega-menu-ul > .dropdown-menu:hover > span {
  color: #fff;
}
.we-mega-menu-ul .dropdown-menu > a:before, .we-mega-menu-ul .dropdown-menu > span:before {
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  width: 20px;
  height: 20px;
  background-size: 20px;
  transform: translateY(-50%);
  margin: 0;
}

.we-mega-menu-submenu > .we-mega-menu-submenu-inner .we-mega-menu-submenu-inner {
  min-height: unset;
}

.ct-header__middle .row--no-wrap .col {
  flex: 1;
}
.ct-header__middle .row--no-wrap .col.col--no-grow {
  max-width: 200px;
}

.path-frontpage .we-mega-menu-ul > .dropdown-menu > a:before, .path-frontpage .we-mega-menu-ul > .dropdown-menu > span:before {
  width: 20px;
  height: 20px;
  background-size: 20px;
  transform: translateY(-50%);
  margin: 0;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down-blue.81e8c25e.svg);
}

.member-profile-table legend, .member-profile-table legend.ct-label.ct-label--large {
  font-size: 25px;
  line-height: 31px;
  color: #002242;
  font-weight: 700;
  margin-bottom: 16px;
}
.member-profile-table > .fieldset-wrapper, .member-profile-table .ct-fieldset__fields {
  display: flex;
  border-radius: 4px;
}
.member-profile-table > .fieldset-wrapper > .field, .member-profile-table .ct-fieldset__fields > .field {
  max-width: 25%;
  flex: 0 0 25%;
  border-right: 1px solid #EEB092;
  border-bottom: 1px solid #EEB092;
  border-top: 1px solid #EEB092;
}
.member-profile-table > .fieldset-wrapper > .field:first-child, .member-profile-table .ct-fieldset__fields > .field:first-child {
  border-left: 1px solid #EEB092;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.member-profile-table > .fieldset-wrapper > .field:first-child .field__label, .member-profile-table .ct-fieldset__fields > .field:first-child .field__label {
  border-top-left-radius: 4px;
}
.member-profile-table > .fieldset-wrapper > .field:last-child, .member-profile-table .ct-fieldset__fields > .field:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.member-profile-table > .fieldset-wrapper > .field:last-child .field__label, .member-profile-table .ct-fieldset__fields > .field:last-child .field__label {
  border-top-right-radius: 4px;
}
.member-profile-table > .fieldset-wrapper > .field .field__label, .member-profile-table .ct-fieldset__fields > .field .field__label {
  border-bottom: 1px solid #EEB092;
  padding: 10px 10px 10px 15px;
  background: #FFF3ED;
}
.member-profile-table > .fieldset-wrapper > .field .field__label .field__label--content, .member-profile-table .ct-fieldset__fields > .field .field__label .field__label--content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
}
.member-profile-table > .fieldset-wrapper > .field .field__item, .member-profile-table .ct-fieldset__fields > .field .field__item {
  padding: 15px;
  color: inherit;
}

.sharethis-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.ct-field--required .ct-label--required {
  display: flex;
}
.ct-field--required .ct-label--required .ct-label__required {
  font-size: 0;
}
.ct-field--required .ct-label--required .ct-label__required::before {
  content: "*";
  font-size: 16px;
}

.region-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.region-main-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.region-footer-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.region-footer-top .field--name-field-c-b-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.region-footer-top-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ct-header__content-top3 .ct-menu {
  justify-content: flex-end;
}

.ct-header.ct-theme-light .ct-header__top {
  background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
  color: #fff;
  padding: 8px 0;
}
.ct-header.ct-theme-light .ct-header__top .ct-link.ct-theme-light {
  color: #fff;
}
.ct-header.ct-theme-light .ct-header__top .col-m-7 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ct-header__content-top2,
.ct-header__content-top3 {
  margin: 0;
}

.ct-header__content-top3 .ct-menu li.ct-menu__item--level-0 > .ct-link {
  padding-top: 0;
  padding-bottom: 0;
}

.headerline-social-block ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.headerline-social-block ul li {
  margin: 0;
}
.headerline-social-block a {
  display: block;
  text-indent: -999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
  background-position: center;
}
.headerline-social-block a.facebook {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-facebook.720a7d0a.svg);
}
.headerline-social-block a.twitter {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-twitter.166b5060.svg);
}
.headerline-social-block a.linkedin {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-linkedin.7fba291c.svg);
}
.headerline-social-block a.youtube {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-youtube.e995f25a.svg);
}

.menu--headline {
  padding: 17px 0;
}

.main-menu--header {
  padding: 41.5px 0;
  background: rgb(0, 84, 164);
}

.section-banner {
  background: linear-gradient(91.54deg, #0054A4 17.19%, #00488D 48.44%, #0054A4 83.33%);
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 80px;
  position: relative;
}
@media (min-width: 1441px) {
  .section-banner {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-banner {
    margin-bottom: 48px;
  }
}
.section-banner > * {
  position: relative;
}
.section-banner .ct-heading {
  text-align: center;
  color: #fff;
  font-family: "Lexend";
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.section-banner .ct-link.ct-theme-light:visited, .section-banner .ct-link.ct-theme-light:hover, .section-banner .ct-link.ct-theme-light:visited:hover,
.section-banner .ct-breadcrumb.ct-theme-light .ct-breadcrumb__links__link--active {
  color: #5BC2A9;
}
.section-banner .sprep-news-list {
  margin-top: 16px;
}
.section-banner .sprep-news-list .views-row {
  box-shadow: none;
  margin: 0 0;
  justify-content: center;
}
.section-banner .sprep-news-list .ct-list__rows {
  margin: 0 0;
  justify-content: center;
}
.section-banner .sprep-news .views-field-created {
  line-height: 25px;
  color: #fff;
}

.ct-breadcrumb {
  padding: 0;
  margin-bottom: 16px;
}
.ct-breadcrumb ul {
  align-items: center;
}
.ct-breadcrumb ul li {
  margin: 0;
}

main.ct-layout {
  position: relative;
  z-index: 3;
}
main.ct-layout .spacing-top {
  padding-top: 0;
}
main.ct-layout .spacing-bottom {
  padding-bottom: 0;
}

.section-footer-top {
  padding: 40px 0;
}
.section-footer-top .group-left .field--name-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.section-footer-top .group-left .field--name-body:after {
  content: unset;
}
.section-footer-top .group-left .field--name-body .footer-logo {
  margin: 0;
}
.section-footer-top .group-left .field--name-body .footer-logo img {
  width: 114px;
  height: 40px;
}

.ct-footer__middle .ct-menu li.ct-menu__item--level-0 > .ct-link {
  padding-top: 0;
  padding-bottom: 0;
}

.section-footer-bottom {
  padding: 40px 0 56px 0;
}
.section-footer-bottom .group-left .field--name-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-footer-bottom .group-left .field--name-body:after {
  content: unset;
}
.section-footer-bottom .group-left .field--name-body p {
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.ct-layout__inner > .section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1441px) {
  .ct-layout__inner > .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .ct-layout__inner > .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.ct-layout__inner > .section .block-views h2 {
  font-weight: 700;
  font-size: 39px;
  line-height: 48px;
  letter-spacing: -0.8px;
  color: #002242;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .ct-layout__inner > .section .block-views h2 {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 767px) {
  .ct-layout__inner > .section .block-views h2 {
    margin-bottom: 20px;
  }
}
.ct-layout__inner .section-publications .block-views h2,
.ct-layout__inner .section-our-focus .block-views h2 {
  color: #fafbfb;
  text-align: left;
}
.ct-layout__inner .section-our-focus .block-views h2 {
  text-align: center;
}

.section-highlighted {
  background: #fff;
  padding: 20px 0;
}

.section-our-focus {
  background: linear-gradient(108.37deg, #B5538E 0%, #EEB092 99.69%);
  position: relative;
}
.section-our-focus:before {
  content: "";
  position: absolute;
  opacity: 0.3;
  inset: 0;
  background: url(/themes/custom/sprep_theme/dist/images/bg-layer.0fc36532.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.section-publications {
  background: linear-gradient(110.82deg, #018081 0%, #0154A4 100%);
  position: relative;
}
.section-publications:before {
  content: "";
  position: absolute;
  opacity: 0.3;
  inset: 0;
  background: url(/themes/custom/sprep_theme/dist/images/bg-layer.0fc36532.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.section-publications h2 {
  color: #f9fdff;
}

.section-content--bottom {
  background: linear-gradient(90deg, #56C8E1 0%, #0054A4 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1441px) {
  .section-content--bottom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-content--bottom {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.section-content--bottom h2 {
  color: #002242;
  margin-bottom: 48px;
}

.ct-footer {
  position: relative;
  background: linear-gradient(90deg, #018081 0%, #0154A4 100%);
}
.ct-footer:before {
  content: "";
  position: absolute;
  opacity: 0.3;
  inset: 0;
  background: url(/themes/custom/sprep_theme/dist/images/bg-layer.0fc36532.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.ct-footer a {
  color: #fff;
}
.ct-footer .ct-link.ct-theme-light:visited {
  color: #fff;
}
.ct-footer .ct-footer__top .row,
.ct-footer .ct-footer__middle .row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.ct-footer .ct-footer__top .col-xxs-12:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ct-footer .ct-footer__middle .group-left {
  padding: 0;
}
.ct-footer .ct-logo .ct-image {
  max-height: 40px;
  min-width: 114px;
}

.ct-layout__sidebar nav .ct-menu--level-0 {
  background-color: #225ca9;
  border-radius: 4px;
}
.ct-layout__sidebar nav .ct-menu--level-0.ct-menu--has-children {
  background-color: #153b70;
}
.ct-layout__sidebar nav .ct-menu--level-0.ct-menu--has-children .ct-menu__item.ct-menu__item--level-0 > .ct-menu__item__link {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.ct-layout__sidebar nav .ct-menu--level-0.ct-menu--has-children .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail.ct-menu__item--has-children > .ct-menu__item__link {
  color: #fff;
}
.ct-layout__sidebar nav .ct-menu--level-0.ct-menu--has-children .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail.ct-menu__item--has-children > .ct-menu__item__link:hover {
  color: #5BC2A9;
}
.ct-layout__sidebar nav .ct-menu__item__link {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-weight: 500;
}
.ct-layout__sidebar nav .ct-menu__sub-menu__wrapper--level-1 {
  display: grid;
  grid-template-rows: 0fr;
  background-color: #225ca9;
  transition: grid-template-rows 0.3s ease;
}
.ct-layout__sidebar nav .ct-menu__sub-menu__wrapper--level-1 > .ct-menu__sub-menu {
  overflow: hidden;
}
.ct-layout__sidebar nav .ct-menu__sub-menu__wrapper--level-1 .ct-menu__item__link {
  padding: 14px 16px 14px 32px;
}
.ct-layout__sidebar nav .ct-menu__item {
  border-bottom: 1px solid #3563ad;
  margin: 0;
}
.ct-layout__sidebar nav .ct-menu__item:last-child {
  border-bottom: none;
}
.ct-layout__sidebar nav .ct-menu__item .ct-link.ct-theme-light:visited {
  color: #fff;
}
.ct-layout__sidebar nav .ct-menu__item .ct-link.ct-theme-light:hover {
  color: #5BC2A9;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0 .ct-menu__item__link {
  border-left: 4px solid transparent;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail > .ct-menu__item__link {
  border-left-color: #5BC2A9;
  color: #5BC2A9;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail:first-child > .ct-menu__item__link {
  border-top-left-radius: 4px;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail:last-child > .ct-menu__item__link {
  border-bottom-left-radius: 4px;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail:last-child.is-active > .ct-menu__item__link {
  border-bottom-left-radius: 0;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail:last-child.is-active .ct-menu__sub-menu__wrapper--level-1 {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--level-0.ct-menu__item--active-trail .ct-menu__sub-menu__wrapper--level-1 .ct-menu--level-1 .ct-menu__item--level-1.ct-menu__item--active-trail .ct-menu__item__link {
  border-left-color: #5BC2A9;
  color: #5BC2A9;
}
.ct-layout__sidebar nav .ct-menu__item.ct-menu__item--has-children > .ct-menu__item__link:after {
  content: "";
  display: inline-block;
  flex: 0 0 16px;
  background: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg) no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}
.ct-layout__sidebar nav .ct-menu__item.is-active > .ct-menu__item__link:after {
  transform: rotate(180deg);
}
.ct-layout__sidebar nav .ct-menu__item.is-active .ct-menu__sub-menu__wrapper--level-1 {
  border-top: 1px solid #3563ad;
  grid-template-rows: 1fr;
}

.section-news-category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.section-news-category .block-views-blockblog-block-16 {
  grid-column: 1/4;
}
.section-news-category > .block-views-blockcategory-block-1 {
  height: 100%;
}
.section-news-category > .block-views-blockcategory-block-1 > div {
  height: 100%;
}

.path-login {
  background: #fdfdfd;
}
.path-login .section-banner {
  display: none;
}

.form-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 0;
}
.form-login .container {
  max-width: 100%;
  padding: 0;
}
.form-login .container-left img {
  display: block;
  margin: -16px;
}
.form-login .container-right {
  max-width: 376px;
}
.form-login .container-right > .form-wrapper {
  padding: 32px 24px;
  border-radius: 4px;
}
.form-login .back-home-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #393d49;
  font-weight: 500;
  letter-spacing: -0.1px;
  margin-bottom: 16px;
}
.form-login .back-home-btn:before {
  content: "";
  display: inline-block;
  background: url(/themes/custom/sprep_theme/dist/images/back-home.e6f7637f.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.form-login .title-login {
  font-size: 25px;
  line-height: 31px;
  color: #002242;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-login .sub-title-login {
  line-height: 28px;
  color: #393d49;
  margin-bottom: 16px;
}
.form-login .fa-eye-slash {
  display: none;
}
.form-login .ct-label--regular > label {
  display: flex;
  font-size: 14px;
  color: #002242;
  font-weight: 500;
}
.form-login .ct-label--regular > label:after {
  content: "";
  display: inline-block;
  background: url(/themes/custom/sprep_theme/dist/images/asterisk.89737610.svg) no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
}
.form-login .ct-textfield.ct-theme-light:invalid {
  border-color: #E6E9EB;
  box-shadow: 0 0 0 0.0625rem #E6E9EB;
}
.form-login .ct-input.ct-theme-light .ct-input__element {
  border-radius: 4px;
  line-height: 28px;
  color: #939393;
}
.form-login .item-container > .form-wrapper {
  display: flex;
  justify-content: space-between;
}
.form-login .ct-form-element--password {
  position: relative;
}
.form-login .ct-form-element--password .ct-form-element__description {
  text-indent: -999px;
  overflow: hidden;
  margin: 0;
}
.form-login .ct-form-element--password .toggle-input-password {
  position: absolute;
  top: calc(50% + 28px);
  right: 16px;
  transform: translateY(calc((50% + 14px) * -1));
  background-image: url(/themes/custom/sprep_theme/dist/images/eye.a117c02b.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.form-login .ct-form-element--password .toggle-input-password.show {
  background-image: url(/themes/custom/sprep_theme/dist/images/eye-green.bbecea92.svg);
  transition: all 0.3s linear;
}
.form-login .ct-form-element--password .toggle-input-password:hover {
  cursor: pointer;
  transform: translateY(calc((50% + 14px) * -1)) scale(1.1);
}
.form-login .ct-form-element--persistent_login {
  display: flex;
  align-items: center;
  width: auto;
}
.form-login .ct-form-element--persistent_login .ct-label--regular {
  margin: 0;
}
.form-login .ct-form-element--persistent_login .ct-label--regular > label {
  display: flex;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 0;
}
.form-login .ct-form-element--persistent_login .ct-label--regular > label:after {
  content: unset;
}
.form-login .ct-form-element--persistent_login .ct-label--regular > label:hover {
  cursor: pointer;
}
.form-login .ct-checkbox .ct-checkbox__element {
  width: 16px;
  height: 16px;
}
.form-login .ct-checkbox .ct-checkbox__element + .ct-checkbox__state::before {
  width: 16px;
  height: 16px;
  border-radius: 25%;
  margin: 0;
}
.form-login .ct-checkbox .ct-checkbox__element + .ct-checkbox__state:after {
  width: 16px;
  height: 16px;
  border-radius: 25%;
}
.form-login .ct-checkbox .ct-checkbox__element:checked + .ct-checkbox__state::before {
  width: 16px;
  height: 16px;
  border-radius: 25%;
  background: unset;
  border-color: #018081;
  box-shadow: none;
  margin: 0;
}
.form-login .ct-checkbox .ct-checkbox__element:checked + .ct-checkbox__state:after {
  content: "";
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-checked.9f6aab39.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 25%;
}
.form-login .ct-checkbox .ct-checkbox__element:active + .ct-checkbox__state::before, .form-login .ct-checkbox .ct-checkbox__element:focus + .ct-checkbox__state::before {
  background: unset;
  border-color: #018081;
  box-shadow: none;
  outline: none;
}
.form-login .reset-password-btn {
  font-size: 14px;
  line-height: 25px;
  color: #018081;
  font-weight: 400;
}
.form-login input[value="Log in"] {
  display: block;
  width: 100%;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 14px 40px;
  background-color: #018081;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .form-login input[value="Log in"] {
    padding: 12px 20px;
  }
}
.form-login input[value="Log in"]:hover, .form-login input[value="Log in"]:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.form-login input[value="Log in"]:active, .form-login input[value="Log in"]:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.form-login input[value="Log in"]:hover {
  cursor: pointer;
}
.form-login input[value="Log in"]:disabled {
  opacity: 0.4;
}
.form-login .login-with-sprep-account-btn {
  display: block;
  font-size: 14px;
  color: #018081;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.1px;
  padding: 8px 0;
}
.form-login .openid-connect-login-form .ct-button--primary.ct-theme-light {
  background: unset;
  border: none;
  font-size: 14px;
  color: #018081;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.1px;
  padding: 8px 0;
}

.ct-footer__bottom {
  font-size: 14px;
}

.ct-link.ct-theme-light:hover,
.ct-link.ct-theme-light:visited:hover {
  color: #fff;
}

.ct-tabs.ct-theme-light .ct-tabs__links {
  border-bottom: none;
}

.ct-back-to-top {
  z-index: 5;
}
.ct-back-to-top .ct-back-to-top__button {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-up-arrow.9218f0d1.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  background-color: #018081;
}
.ct-back-to-top .ct-back-to-top__button:visited {
  background-color: #018081;
}

.ct-vertical-spacing--top {
  margin-top: 30px;
}

.ct-header.ct-theme-light .ct-header__middle {
  background-color: #0054a4;
  position: relative;
  border: none;
}

.ct-header__middle {
  padding-top: 0;
  padding-bottom: 0;
}

.ct-navigation.ct-navigation--drawer.ct-theme-light .ct-navigation__items .ct-navigation__menu .ct-menu__item--level-0 {
  border-bottom: none;
}
.ct-navigation.ct-navigation--drawer.ct-theme-light .ct-navigation__items .ct-navigation__menu .ct-menu__item--level-0:hover {
  border-bottom: none;
}
.ct-navigation.ct-navigation--drawer.ct-theme-light .ct-navigation__items .ct-navigation__menu .ct-menu__item--level-0 > .ct-link {
  color: #fff;
}
.ct-navigation.ct-navigation--drawer.ct-theme-light .ct-navigation__items .ct-navigation__menu .ct-menu__item--level-0 > .ct-link:hover {
  color: #fff;
}

.ct-search.ct-theme-light > .ct-link {
  color: #fff;
  border-bottom: none;
}
.ct-search.ct-theme-light > .ct-link:hover {
  color: #fff;
  border-bottom: none;
}

.ct-footer {
  position: relative;
}
.ct-footer.ct-theme-dark .ct-footer__top .row,
.ct-footer.ct-theme-dark .ct-footer__middle .row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.ct-footer .ct-footer__top .col-xxs-12:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ct-table.ct-theme-light thead tr:last-child,
.ct-table.ct-theme-light tbody tr {
  border-bottom: 1px solid #e6e9eb;
}

table p {
  margin-bottom: 0;
}

table.ct-table {
  border-radius: 4px;
}
table.ct-table .ct-content-link {
  padding: 0;
}
table.ct-table .ct-content-link:hover,
table.ct-table .ct-content-link.ct-theme-light:hover {
  background-color: transparent;
  color: inherit;
}
table.ct-table thead {
  background: linear-gradient(90deg, #008081 0%, #0054a4 100%);
  border-bottom: none;
}
table.ct-table th {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  font-family: "Lexend";
  padding: 24px 24px;
}
table.ct-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
table.ct-table td {
  padding: 24px 24px;
  font-family: "Lexend";
}
table.ct-table span {
  font-size: 14px;
  line-height: 25px;
  color: #606060;
  font-weight: 400;
}
table.ct-table .views-field-title .ct-content-link,
table.ct-table .views-field-title .ct-content-link.ct-theme-light,
table.ct-table .views-field-field-title .ct-content-link,
table.ct-table .views-field-field-title .ct-content-link.ct-theme-light {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-weight: 700;
  font-family: "Lexend";
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
}
table.ct-table .views-field-title .ct-content-link:hover,
table.ct-table .views-field-title .ct-content-link.ct-theme-light:hover,
table.ct-table .views-field-field-title .ct-content-link:hover,
table.ct-table .views-field-field-title .ct-content-link.ct-theme-light:hover {
  background-color: transparent;
  color: #0054a4;
}
table.ct-table .views-field-field-due-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  line-height: 25px;
  color: #606060;
  font-weight: 400;
}
table.ct-table .views-field-field-due-date span {
  margin-right: 3px;
}
img {
  max-width: 100%;
  height: auto;
}

.ct-input.ct-theme-light .ct-input__element {
  border: 1px solid #e6e9eb;
}

.ct-list__results-below {
  background-color: transparent;
  margin-top: 0;
}
.ct-list__results-below .container {
  padding: 0;
}
.ct-list__results-below .col-xxs-12 {
  padding: 0;
}
.ct-list__results-below .ct-pager {
  border-top: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.ct-list__results-below .ct-pager .ct-pager__items_per_page {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ct-list__results-below .ct-pager .ct-pager__items_per_page select {
  width: auto;
}

.ct-list__pager {
  padding: 0 24px;
  gap: 8px;
}

.ct-pager {
  padding: 0;
  border: none;
  width: 100%;
  margin-bottom: 80px;
}
.ct-pager .ct-pager__items {
  justify-content: flex-start;
}

.ct-pager__items_per_page {
  order: 1;
}
.ct-pager__items_per_page .ct-label {
  font-weight: 500;
  color: #002242;
}

.ct-pager__items {
  order: 0;
  display: flex;
  flex: 1;
  justify-content: flex-start;
}
.ct-pager__items .ct-pager__item {
  display: flex;
  align-items: center;
}
.ct-pager__items .ct-pager__item.ct-pager__item--next {
  padding: 0 0 0 1rem;
}
.ct-pager__items .ct-pager__item.ct-pager__item--previous {
  padding: 0 1rem 0 0;
}
.ct-pager__items .ct-pager__item .ct-link {
  font-size: inherit;
  line-height: inherit;
  color: #018081;
  font-weight: 500;
  background: unset;
  box-shadow: none;
  height: auto;
  display: flex;
  gap: 4px;
  align-items: center;
}
.ct-pager__items .ct-pager__item .ct-link:hover, .ct-pager__items .ct-pager__item .ct-link:focus, .ct-pager__items .ct-pager__item .ct-link.ct-link--active {
  color: rgba(0, 0, 0, 0.8);
}
.ct-pager__items .ct-pager__item:not(.ct-pager__item--previous, .ct-pager__item--next) .ct-link {
  padding: 14px 12px;
}

.inv-animate .ct-theme-light.ct-list {
  margin-top: 32px;
}

.tab-pane p strong a,
.tab-pane p > a {
  font-size: 14px;
  line-height: 25px;
  color: #018081;
  font-weight: 400;
}
.tab-pane p strong a::before,
.tab-pane p > a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-table-pdf.deb17841.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 4px;
  transform: translateY(3px);
}
.tab-pane p strong a strong,
.tab-pane p > a strong {
  font-weight: 400;
}

.tab-container .tab-item {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  height: 44px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 24px;
  margin-right: 8px;
  text-decoration: none;
}
.tab-container .tab-item:hover, .tab-container .tab-item:focus {
  color: #fff;
  border: 2px solid #0054A4;
  background-color: #0054A4;
}
.tab-container .tab-item.active, .tab-container .tab-item:hover, .tab-container .tab-item:focus {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
}

.sprep-view-job .ct-menu {
  display: flex;
  flex-wrap: wrap;
}
.sprep-view-job .col-xxs-12 h4 {
  margin-bottom: 0;
}

.sprep-slideshow-detail img {
  aspect-ratio: 1.5/1;
}
.sprep-slideshow-detail .views-row {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
}
.sprep-slideshow-detail .ct-list__rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .sprep-slideshow-detail .ct-list__rows {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sprep-slideshow-detail .ct-list__rows {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sprep-news:not(.new-latest-slider) .views-field-uid {
  display: none;
}
.sprep-news:not(.new-latest-slider) .views-field-body {
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

.search-header-sticky.contextual-region {
  position: static;
}
.search-header-sticky.contextual-region > .contextual {
  position: static;
}

.sprep-search-icon--wrapper {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 24px;
  margin-left: 8px;
  border-left: 1px solid #E9EAEA;
}
.sprep-search-icon--wrapper .search-block--wrapper {
  display: none;
  padding: 0 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 40px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  width: 100%;
  min-height: 100vw;
  background: linear-gradient(90deg, #008081 0%, #0054a4 100%);
}
.sprep-search-icon--wrapper .search-block--wrapper.show {
  display: flex !important;
}
.sprep-search-icon--wrapper .search-block--wrapper-inner {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1441px) {
  .sprep-search-icon--wrapper .search-block--wrapper-inner {
    max-width: 1480px;
  }
}
.sprep-search-icon--wrapper .search-open-button {
  border: none;
  background: transparent;
  line-height: 20px;
  font-family: "Lexend";
  color: #fff;
  font-weight: 500;
  padding-right: 25px;
  position: relative;
  min-height: 20px;
}
.sprep-search-icon--wrapper .search-open-button:hover {
  cursor: pointer;
}
.sprep-search-icon--wrapper .search-open-button .pe-7s-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-search-white.34468989.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.sprep-search-icon--wrapper .search-close-button {
  background: transparent;
  box-shadow: none;
  border: 0;
  color: #fff;
  margin-right: 30px;
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
}
.sprep-search-icon--wrapper .search-close-button:before {
  content: "";
  display: inline-block;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  transform: rotate(90deg);
  width: 25px;
  height: 25px;
}
.sprep-search-icon--wrapper #search-result {
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 12px;
  color: #fff;
}
.sprep-search-icon--wrapper .ct-list__empty-results {
  font-size: 25px;
  line-height: 31px;
  font-weight: 700;
  color: #fff;
}
.sprep-search-icon--wrapper .ajax-progress {
  margin-top: 10px;
  color: #fff;
}
.sprep-search-icon--wrapper #sprep-search-form-id {
  flex: 1;
}
.sprep-search-icon--wrapper #sprep-search-form-id .ct-form-element {
  margin-bottom: 0;
}
.sprep-search-icon--wrapper #sprep-search-form-id .ct-form-element > .ct-form-element__label {
  display: none;
}
.sprep-search-icon--wrapper #sprep-search-form-id input {
  height: 48px;
  font-size: 1rem;
  padding-left: 64px;
  width: 100%;
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-search.5fa58e23.svg);
  background-repeat: no-repeat;
  background-position: 20px;
  border-radius: 1.5rem;
  border: 0;
  background-color: #fff;
  background-size: 30px;
}

#SM-button {
  margin-top: 32px;
}
#SM-button p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
#SM-button button:first-child {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 14px;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 8px 24px;
  background-color: #018081;
}
@media (max-width: 575px) {
  #SM-button button:first-child {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#SM-button button:first-child:hover, #SM-button button:first-child:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
#SM-button button:first-child:active, #SM-button button:first-child:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
#SM-button button:first-child:hover {
  cursor: pointer;
}
#SM-button button:first-child:disabled {
  opacity: 0.4;
}
#SM-button button:last-child {
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 14px;
  line-height: inherit;
  color: #fafbfb;
  font-weight: 500;
  padding: 8px 24px;
  color: #018081;
  border: 2px solid #018081;
  border: none;
  background: transparent;
}
@media (max-width: 575px) {
  #SM-button button:last-child {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#SM-button button:last-child:hover, #SM-button button:last-child:active {
  color: #16335f;
  border-color: #16335f;
}
#SM-button button:last-child:active, #SM-button button:last-child:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
#SM-button button:last-child:hover {
  cursor: pointer;
}
#SM-button button:last-child:disabled {
  opacity: 0.4;
}

nav.breadcrumb {
  background: linear-gradient(91.54deg, #0054a4 17.19%, #00488d 48.44%, #0054a4 83.33%);
  padding: 64px 30px;
}
nav.breadcrumb ol {
  padding: 0;
  margin: 0;
}

.block-layout-builder pre {
  overflow: unset;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
  border-radius: 4px;
  overflow: auto;
}
.block-field-blocknodepagebody table {
  width: 100% !important;
}
.block-field-blocknodepagebody table img {
  max-width: 250px;
}
.block-field-blocknodepagebody table th[scope=col] p {
  display: block;
  text-align: center;
}
.block-field-blocknodepagebody table th[scope=col] p a {
  width: 100%;
  text-align: center;
}
.block-field-blocknodepagebody table tr {
  border: 1px solid #e6e9eb;
}
.block-field-blocknodepagebody table tr th,
.block-field-blocknodepagebody table tr td {
  border-right: 1px solid #e6e9eb;
  padding: 10px 15px;
}
.block-field-blocknodepagebody table tr th:first-child,
.block-field-blocknodepagebody table tr td:first-child {
  min-width: 60px;
}
.block-field-blocknodepagebody table tr th:last-child,
.block-field-blocknodepagebody table tr td:last-child {
  border-right: none;
}
.block-field-blocknodepagebody blockquote {
  padding: 0 24px 0 28px;
  margin-bottom: 24px;
  position: relative;
}
.block-field-blocknodepagebody blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
}
.block-field-blocknodepagebody blockquote ul {
  margin-bottom: 0;
}
.block-sprep-base > .ct-form-element--select {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.block-sprep-base > .ct-form-element--select .ct-select {
  width: auto;
  min-width: 209px;
  height: auto;
  letter-spacing: -0.1px;
  border-radius: 4px;
  position: relative;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #fafbfb;
  font-weight: 600;
  padding: 16px 48px;
  background-color: #018081;
}
@media (max-width: 575px) {
  .block-sprep-base > .ct-form-element--select .ct-select {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 24px;
  }
}
.block-sprep-base > .ct-form-element--select .ct-select:hover, .block-sprep-base > .ct-form-element--select .ct-select:active {
  background-color: color-mix(in srgb, #0054A4, #000 40%);
}
.block-sprep-base > .ct-form-element--select .ct-select:active, .block-sprep-base > .ct-form-element--select .ct-select:focus {
  outline: 3px solid #8B5CD7;
  outline-offset: 2px;
}
.block-sprep-base > .ct-form-element--select .ct-select:hover {
  cursor: pointer;
}
.block-sprep-base > .ct-form-element--select .ct-select:disabled {
  opacity: 0.4;
}
.block-our-focus-front:before {
  background: linear-gradient(108.37deg, #b5538e 0%, #013b73 99.69%);
}

.ct-breadcrumb {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  padding-bottom: 6px;
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.ct-breadcrumb .ct-breadcrumb__links__link,
.ct-breadcrumb .ct-link {
  font-size: 16px;
  line-height: 20px;
  color: #5bc2a9;
  font-weight: 500;
  text-decoration: none;
}

.ct-breadcrumb.ct-theme-light .ct-breadcrumb__links__separator {
  color: rgba(255, 255, 255, 0.8);
  width: 20px;
  height: 20px;
  margin: 0 4px;
}

.ct-logo {
  display: block;
}

.ct-header__middle > .container {
  position: static;
}

.ct-header__content-middle3 {
  align-items: center;
}
.ct-header__content-middle3 .ct-menu--level-0 {
  align-items: center;
}
.ct-header__content-middle3 .ct-menu {
  gap: 0;
}
.ct-header__content-middle3 .ct-menu a {
  display: inline-block;
}
.ct-header__content-middle3 .ct-menu .ct-link.ct-theme-light:visited {
  color: #fff;
}
.ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0 > .ct-link {
  padding: 41.5px 12px;
  color: #fff;
}
.ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0.ct-menu__item--has-children > .ct-menu__item__link:after {
  content: "";
  display: inline-block;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0.ct-menu__item--has-children:hover .ct-menu__item__link:after, .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0.ct-menu__item--has-children:focus .ct-menu__item__link:after {
  transform: rotate(180deg);
  transition: all 0.25s linear;
}
.ct-header__content-middle3 .ct-menu li.ct-menu__item--level-2 > .ct-link {
  padding: 4px 0;
  margin-bottom: 10px;
}
.ct-header__content-middle3 .ct-menu li.ct-menu__item--level-3 > .ct-link {
  margin-bottom: 16px;
}

.ct-layout__main {
  padding: 0;
}

aside.col-m-3 .block-views > h2 {
  font-size: 25px;
  line-height: 31px;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.layout__region p {
  font-size: 16px;
  line-height: 28px;
}
.layout__region ul,
.layout__region ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.layout__region ul a,
.layout__region ol a {
  font-size: 16px;
  line-height: 28px;
  text-decoration: none;
}
.layout__region ul {
  list-style: inherit;
}
.layout__region ul.list-dot {
  list-style: none;
  padding-left: 0;
}

.region-header-middle-3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ct-search {
  position: relative;
  display: flex;
}
.ct-search:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: linear-gradient(0deg, #0054a4, #0054a4), linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.ct-search__link {
  padding: 10px 0 10px 24px;
}

.bs-region--main > img {
  width: 100%;
  aspect-ratio: 1.346/1;
  margin-bottom: 32px;
}

.ct-footer__middle nav > h2,
.ct-footer__middle .block > h2 {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-color: transparent;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.ct-footer__middle ul.ourservices li,
.ct-footer__middle ul.ct-menu li {
  margin-bottom: 16px;
}
.ct-footer__middle ul.ourservices li:last-child,
.ct-footer__middle ul.ct-menu li:last-child {
  margin-bottom: 0;
}
.ct-footer__middle ul.ourservices a,
.ct-footer__middle ul.ct-menu a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.1px;
}
.ct-footer__middle ul.ct-menu {
  flex-direction: column;
}
.ct-footer__middle .footer-info p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.ct-footer__middle .footer-info p:last-child {
  margin-bottom: 0;
}

.ct-tabs {
  margin-bottom: 3rem;
}
.ct-tabs .ct-link.ct-theme-light:visited,
.ct-tabs .ct-link.ct-theme-light:hover,
.ct-tabs .ct-link.ct-theme-light:visited:hover {
  color: #000;
}

.ct-tabs.ct-theme-light .ct-link {
  color: #000;
}

.ct-layout__main {
  flex: 1;
}
.ct-layout__main > nav > ul.ct-menu {
  margin-bottom: 24px;
}
.ct-layout__main > nav > ul.ct-menu .ct-link {
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.1px;
  padding: 10px 40px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  height: 44px;
  border-radius: 50px;
}
.ct-layout__main > nav > ul.ct-menu .ct-link:hover, .ct-layout__main > nav > ul.ct-menu .ct-link:focus {
  color: #fff;
  border: 2px solid #0054A4;
  background-color: #0054A4;
}
.ct-layout__main > nav > ul.ct-menu .ct-link:hover {
  color: #fff;
}
.ct-layout__main > nav > ul.ct-menu .ct-menu__item--active-trail .ct-link {
  color: #fff;
  border: 2px solid #0054a4;
  background-color: #0054a4;
}
.ct-layout__main #block-tendersmenutab .ct-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ct-layout__main #block-tendersmenutab .ct-link {
  border: none;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 30px;
  color: #000;
  margin-bottom: 24px;
}
.ct-layout__main #block-tendersmenutab .ct-link:hover,
.ct-layout__main #block-tendersmenutab .ct-link:focus,
.ct-layout__main #block-tendersmenutab .ct-menu__item--active-trail .ct-link {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
}

body.path-frontpage .we-mega-menu-ul > .we-mega-menu-li > a,
body.path-frontpage .we-mega-menu-ul > .we-mega-menu-li > span {
  color: #0054a4;
}
body.path-frontpage .ct-header.ct-theme-light .ct-header__middle {
  background-color: #fdfdfd;
}
body.path-frontpage .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0.ct-menu__item--has-children > .ct-menu__item__link:after {
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down-blue.81e8c25e.svg);
}
body.path-frontpage .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0 > .ct-link {
  color: #0054a4;
}
body.path-frontpage .sprep-search-icon--wrapper .search-open-button {
  color: #0054A4;
}
body.path-frontpage .sprep-search-icon--wrapper .search-open-button .pe-7s-search {
  background-image: url(/themes/custom/sprep_theme/dist/images/icon-search-blue.1324c663.svg);
}
body:not(.path-frontpage) .ct-image.show-l {
  display: none !important;
}
body:not(.path-frontpage) .ct-image.hide-l {
  display: block !important;
}
body:not(.path-frontpage) .section-banner:before {
  content: "";
  position: absolute;
  opacity: 0.3;
  inset: 0;
  background: url(/themes/custom/sprep_theme/dist/images/bg-layer.0fc36532.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
body:not(.path-frontpage) .section-banner:before {
  background-size: contain;
  background-position: calc(100% + 100px);
}
body.path-node .ct-layout__main {
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1441px) {
  body.path-node .ct-layout__main {
    max-width: 1480px;
  }
}
body.path-node .container .ct-layout__main {
  padding-left: 0;
  padding-right: 0;
}
body.path-frontpage .section-banner {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
body.layout-one-sidebar .ct-layout__inner > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin: 0;
}
body.layout-one-sidebar .ct-layout__inner > * .col-m-3, body.layout-one-sidebar .ct-layout__inner > * .ct-layout__main.col-m-9 {
  max-width: 100%;
  padding: 0;
}
body.layout-one-sidebar .ct-layout__inner .ct-layout__sidebar__left {
  grid-column: 1/4;
}
body.layout-one-sidebar .ct-layout__inner .ct-layout__main {
  grid-column: 4/13;
}
@media (max-width: 991px) {
  body.layout-one-sidebar .ct-layout__inner .ct-layout__sidebar__left,
  body.layout-one-sidebar .ct-layout__inner .ct-layout__sidebar__right,
  body.layout-one-sidebar .ct-layout__inner .ct-layout__main {
    grid-column: 1/13;
  }
}
body.layout-one-sidebar .ct-pager {
  margin-bottom: 0;
}
body.layout-one-sidebar .section-content--top {
  background-color: #fff;
  padding: 64px 0px 80px;
}
body.layout-one-sidebar .section-content--top + .ct-layout__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
body.layout-one-sidebar .ct-layout__main {
  padding-left: 12px;
  padding-right: 12px;
}
body.layout-one-sidebar aside.col-m-3 {
  margin-bottom: 80px;
}
body.layout-one-sidebar .bs-region--left,
body.layout-one-sidebar .block-system-main-block > article {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 80px;
}
body.layout-one-sidebar .bs-region--left .field--name-field-lead-image .ct-image,
body.layout-one-sidebar .block-system-main-block > article .field--name-field-lead-image .ct-image {
  aspect-ratio: 1.663/1;
}
body.layout-one-sidebar .bs-region--left img,
body.layout-one-sidebar .block-system-main-block > article img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
body.layout-one-sidebar .bs-region--left .block-layout-builder img,
body.layout-one-sidebar .block-system-main-block > article .block-layout-builder img {
  width: auto;
}
body.layout-one-sidebar .bs-region--left h1 img,
body.layout-one-sidebar .bs-region--left h2 img,
body.layout-one-sidebar .bs-region--left h3 img,
body.layout-one-sidebar .bs-region--left h4 img,
body.layout-one-sidebar .bs-region--left h5 img,
body.layout-one-sidebar .bs-region--left h6 img,
body.layout-one-sidebar .block-system-main-block > article h1 img,
body.layout-one-sidebar .block-system-main-block > article h2 img,
body.layout-one-sidebar .block-system-main-block > article h3 img,
body.layout-one-sidebar .block-system-main-block > article h4 img,
body.layout-one-sidebar .block-system-main-block > article h5 img,
body.layout-one-sidebar .block-system-main-block > article h6 img {
  width: auto;
}
body.layout-one-sidebar .bs-region--left p,
body.layout-one-sidebar .block-system-main-block > article p {
  font-size: 16px;
  line-height: 28px;
}
body.layout-one-sidebar .bs-region--left p img,
body.layout-one-sidebar .block-system-main-block > article p img {
  margin-bottom: 0;
}
body.layout-one-sidebar .bs-region--left u,
body.layout-one-sidebar .block-system-main-block > article u {
  text-decoration: none;
  font-weight: 700;
}
body.layout-one-sidebar .field-question {
  font-weight: 700;
  background: linear-gradient(90deg, #b5538e 0%, #eeb092 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
body.layout-two-sidebars .ct-layout__main {
  padding-left: 12px;
  padding-right: 12px;
}
body.layout-two-sidebars .bs-region,
body.layout-two-sidebars .layout__region {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px 24px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 80px;
}
body.layout-two-sidebars .ct-layout__sidebar__right .group-one-column {
  border: 1px solid #eeb092;
  background-color: #fff3ed;
  border-radius: 4px;
  padding: 24px 24px;
  margin-bottom: 80px;
}
body.layout-two-sidebars .ct-layout__sidebar__right .group-one-column p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 28px;
}
body.path-node .block-layout-builder * ~ p img, body.path-sprep30 .block-layout-builder * ~ p img {
  display: block;
  margin: 0 auto;
  width: auto;
}
body.path-node .ct-logo img, body.path-sprep30 .ct-logo img {
  width: auto;
}
body.path-node .bs-region--left,
body.path-node .block-system-main-block > article, body.path-sprep30 .bs-region--left,
body.path-sprep30 .block-system-main-block > article {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
}
body.path-node .ct-layout__main.col-m-9, body.path-sprep30 .ct-layout__main.col-m-9 {
  padding: 0 12px;
  margin-left: auto;
  margin-right: 0;
}
body.path-node .ct-layout__main.col-m-9 > div.block, body.path-sprep30 .ct-layout__main.col-m-9 > div.block {
  padding-left: 24px;
  padding-right: 24px;
}
body.path-node .ct-layout__main-inner, body.path-sprep30 .ct-layout__main-inner {
  background-color: #fff;
  padding: 24px 24px;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 80px;
}
body.path-node.layout-two-sidebars .ct-layout__main.col-m-9, body.path-sprep30.layout-two-sidebars .ct-layout__main.col-m-9 {
  margin-left: auto;
  margin-right: auto;
}
body.path-node.layout-two-sidebars .bs-region,
body.path-node.layout-two-sidebars .layout__region, body.path-sprep30.layout-two-sidebars .bs-region,
body.path-sprep30.layout-two-sidebars .layout__region {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
}
body.path-our-team {
  background-color: #f5f5f5;
}
body.path-our-team .ct-layout__main-inner {
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
body.layout-sidebar-second .ct-layout__main.col-m-9 {
  margin-left: 0;
  margin-right: auto;
}
body.path-governance .block-system-main-block > article .block-layout-builder img {
  width: 100%;
}
body.path-circulars .ct-layout__main {
  padding: 0;
}
body[class*=sprep-meeting-202] .ct-layout__main-inner, body.path-sprep-meeting .ct-layout__main-inner {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
body[class*=sprep-meeting-202] .tab-content, body[class*=sprep-meeting-202] .block-field-blocknodepagebody, body.path-sprep-meeting .tab-content, body.path-sprep-meeting .block-field-blocknodepagebody {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
}
body[class*=sprep-meeting-202] .SM-tab .tab-pane h3, body.path-sprep-meeting .SM-tab .tab-pane h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: -0.4px;
  color: #002242;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  body[class*=sprep-meeting-202] .SM-tab .tab-pane h3, body.path-sprep-meeting .SM-tab .tab-pane h3 {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.25px;
  }
}
body[class*=sprep-meeting-202] .SM-tab .tab-pane h4, body.path-sprep-meeting .SM-tab .tab-pane h4 {
  font-size: 16px;
  line-height: 28px;
  color: #393d49;
  margin-bottom: 16px;
}
body[class*=sprep-meeting-202] .SM-tab .tab-pane h4:empty, body.path-sprep-meeting .SM-tab .tab-pane h4:empty {
  display: none;
}
body[class*=sprep-meeting-202] .SM-tab .tab-pane .text-align-center, body.path-sprep-meeting .SM-tab .tab-pane .text-align-center {
  text-align: left;
}
body[class*=sprep-meeting-202] .group-left .field--name-body h2, body.path-sprep-meeting .group-left .field--name-body h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #002242;
  margin: 48px 0;
}
@media (max-width: 767px) {
  body[class*=sprep-meeting-202] .group-left .field--name-body h2, body.path-sprep-meeting .group-left .field--name-body h2 {
    font-size: 24px;
    line-height: 31px;
    letter-spacing: -0.35px;
  }
}
body[class*=sprep-meeting-202] .group-left .field--name-body h3, body.path-sprep-meeting .group-left .field--name-body h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.2px;
}
@media (max-width: 767px) {
  body[class*=sprep-meeting-202] .group-left .field--name-body h3, body.path-sprep-meeting .group-left .field--name-body h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
body[class*=sprep-meeting-202] .group-left .field--name-body h3:last-child, body.path-sprep-meeting .group-left .field--name-body h3:last-child {
  margin-bottom: 0;
}
@media (min-width: 610px) {
  body.fixed.user-logged-in .our-team-tabs-wrapper {
    top: 66px;
  }
}
@media (max-width: 767px) {
  body.fixed.user-logged-in .our-team-tabs-wrapper {
    top: 39px;
  }
}
@media (max-width: 609px) {
  body.fixed.user-logged-in .our-team-tabs-wrapper {
    top: 0;
  }
}
body.fixed.user-logged-in.toolbar-horizontal.toolbar-tray-open .our-team-tabs-wrapper {
  top: 78px;
}
body.fixed .our-team-tabs-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
  z-index: 10;
  padding: 20px !important;
}
body.fixed .our-team-tabs {
  max-width: 1355px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body.path-search .ct-layout__main-inner ol li {
  font-weight: 700;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: -0.4px;
}
@media (max-width: 767px) {
  body.path-search .ct-layout__main-inner ol li {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.25px;
  }
}
body.path-search .ct-layout__main-inner h3 a {
  font-weight: 700;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: -0.4px;
  color: #002242;
}
@media (max-width: 767px) {
  body.path-search .ct-layout__main-inner h3 a {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.25px;
  }
}
body.path-search .ct-layout__main-inner p {
  font-size: 16px;
  line-height: 20px;
}
body.path-search .block-system-main-block > h2, body.path-search .block-system-main-block h3 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #B5538E 0%, #EEB092 100%);
  -webkit-background-clip: text;
  margin-top: 32px;
}
body.path-search .search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.path-search details summary {
  font-weight: 600;
  color: #018081;
  margin-bottom: 16px;
}
body.path-search details fieldset {
  margin-bottom: 16px;
}
body.path-search details fieldset:last-child {
  margin-bottom: 0;
}
body.path-search details fieldset > legend {
  font-size: 16px;
  line-height: 20px;
  color: #018081;
  font-weight: 600;
  margin-bottom: 16px;
}
body.path-search details .form-checkboxes > .ct-form-element {
  display: inline-block;
  width: auto;
}
body.path-search .ct-pager {
  margin-top: 48px;
}

.path-error-404 {
  background: #f5f5f5;
}
.path-error-404 .section-banner {
  display: none;
}
.path-error-404 .block-page-title-block {
  display: none;
}

body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin: 0;
}
body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner > * .col-m-3, body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner > * .ct-layout__main.col-m-9 {
  max-width: 100%;
  padding: 0;
}
body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner .ct-layout__sidebar__left {
  grid-column: 1/4;
}
body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner .ct-layout__main {
  grid-column: 4/13;
}
@media (max-width: 991px) {
  body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner .ct-layout__sidebar__left,
  body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner .ct-layout__sidebar__right,
  body.path-node.layout-one-sidebar.layout-sidebar-first .ct-layout__inner .ct-layout__main {
    grid-column: 1/13;
  }
}
body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin: 0;
}
body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner > * .col-m-3, body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner > * .ct-layout__main.col-m-9 {
  max-width: 100%;
  padding: 0;
}
body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner .ct-layout__sidebar__right {
  grid-column: 10/13;
}
body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner .ct-layout__main {
  grid-column: 1/10;
}
@media (max-width: 991px) {
  body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner .ct-layout__sidebar__left,
  body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner .ct-layout__sidebar__right,
  body.path-node.layout-one-sidebar.layout-sidebar-second .ct-layout__inner .ct-layout__main {
    grid-column: 1/13;
  }
}
body.path-node.layout-two-sidebars .ct-layout__inner > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin: 0;
}
body.path-node.layout-two-sidebars .ct-layout__inner > * .col-m-3, body.path-node.layout-two-sidebars .ct-layout__inner > * .ct-layout__main.col-m-9 {
  max-width: 100%;
  padding: 0;
}
body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__sidebar__left {
  grid-column: 1/4;
}
body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__sidebar__right {
  grid-column: 10/13;
}
body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__main {
  grid-column: 4/10;
}
@media (max-width: 991px) {
  body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__sidebar__left,
  body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__sidebar__right,
  body.path-node.layout-two-sidebars .ct-layout__inner .ct-layout__main {
    grid-column: 1/13;
  }
}

.SM-Container img {
  border-radius: 4px;
}

@media (min-width: 1441px) {
  body.layout-sidebar-first .main-inner .container {
    max-width: 1216px;
  }
}
@media (max-width: 991px) {
  .sprep-search-icon--wrapper {
    padding-right: 50px;
    border-left: none;
    display: flex;
    justify-content: flex-end;
  }
  .sprep-search-icon--wrapper .search-block--wrapper-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .component-wrapper--type-service .field--name-field-title-service {
    font-size: 26px;
    line-height: 35px;
  }
  .component-wrapper--type-service .field--name-field-body {
    font-size: 20px;
    line-height: 28px;
  }
  .ct-list__filters .ct-form-element {
    max-width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
  }
  .ct-list__filters .form-wrapper {
    max-width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
  }
  .ct-list__filters .form-wrapper .ct-button {
    width: 100%;
  }
  .ct-list__filters .container {
    padding-left: 0;
    padding-right: 0;
  }
  .ct-table tbody tr td {
    flex-direction: column;
  }
  .ct-table tbody tr td::before {
    display: none;
  }
  .ct-group-filter .row--no-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .ct-group-filter .row--no-wrap .col {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .toolbar-icon-9 .ct-layout__sidebar__left,
  .toolbar-icon-9 .ct-layout__sidebar__right {
    padding-top: 0;
  }
  .ct-layout__sidebar__left,
  .ct-layout__sidebar__right {
    padding-left: 0;
    padding-right: 0;
  }
  .ct-layout__sidebar__left {
    margin-bottom: 50px;
  }
  .ct-header {
    position: relative;
  }
  .ct-header__middle > .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .ct-header__content-middle3 nav {
    position: fixed;
    width: 100%;
    max-width: 350px;
    top: 0;
    right: -350px;
    background-color: #008081;
    height: 104vh;
    z-index: 10;
    padding-top: 40px;
    overflow-y: auto;
  }
  .ct-header__content-middle3 nav.is-active {
    right: 0;
  }
  .ct-header__content-middle3 .ct-menu {
    align-items: flex-start;
  }
  .ct-header__content-middle3 .ct-menu .ct-menu__sub-menu__wrapper--level-1 {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    padding: 0;
    background-color: #008081;
  }
  .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0 > .ct-link, .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-1 > .ct-link {
    width: 100%;
    padding: 14px 48px 14px 24px;
  }
  .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-2 > .ct-link {
    padding: 14px 24px 14px 48px;
  }
  .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-1.ct-menu__item--has-children > .ct-link {
    border-bottom: none;
    padding-left: 24px;
    padding-right: 24px;
  }
  .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-1 > .ct-link, .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-2 > .ct-link {
    margin-bottom: 0;
  }
  .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-3 > .ct-link {
    margin-bottom: 0;
    padding: 14px 32px;
    width: 100%;
  }
  .ct-header__content-middle3 .ct-menu.ct-menu--level-1 .ct-menu__item--level-1 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0;
  }
  .ct-header__content-middle3 .ct-menu {
    flex-direction: column;
  }
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 4;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
  }
  .navbar-toggle .icon-bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
  }
  .navbar-toggle .icon-bar ~ .icon-bar {
    margin-top: 4px;
  }
  .ct-header__middle > .navbar-toggle {
    display: block;
    right: 20px;
    opacity: 1;
    visibility: visible;
  }
  .ct-header__middle > .navbar-toggle {
    top: 45px;
  }
  .ct-header__middle .col {
    padding: 0;
  }
  header .ct-menu .ct-menu__sub-menu__wrapper--level-1 {
    background: #008081;
  }
  .ct-layout__sidebar {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
  .section-banner {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 40px;
  }
  .section-banner .block-page-title-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ct-layout__main #block-tendersmenutab {
    overflow-x: auto;
  }
  .ct-layout__main #block-tendersmenutab .ct-menu {
    flex-wrap: nowrap;
    width: max-content;
    margin-right: 10px;
  }
  .block-sprep-base > .ct-form-element--select {
    margin-bottom: 40px;
  }
  table.ct-table thead {
    display: none;
  }
  table.ct-table tbody {
    display: block;
  }
  table.ct-table tr {
    display: flex;
    flex-direction: column;
  }
  table.ct-table td:last-child {
    padding-top: 0;
  }
  .spreps-form-event .container > .row > .col-xxs-12,
  .spreps-form-event .container {
    padding-left: 0;
    padding-right: 0;
  }
  .view-circulars .ct-pager__items {
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
  }
  .block-page-title-block {
    padding: 32px 20px;
  }
  .block-page-title-block .ct-heading {
    font-size: 32px;
    line-height: 40px;
  }
  body.path-frontpage .ct-image.hide-xxs {
    display: block !important;
  }
  body.path-frontpage .ct-image.hide-l {
    display: none !important;
  }
  body.path-frontpage .navbar-toggle .icon-bar {
    background-color: #0054a4;
  }
  body.path-frontpage .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0 > .ct-link {
    color: #fff;
  }
  body.path-frontpage .ct-header__content-middle3 .ct-menu li.ct-menu__item--level-0.ct-menu__item--has-children > .ct-menu__item__link:after {
    background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down.b362f335.svg);
  }
  body.is-fixed {
    overflow: hidden;
  }
  body.layout-one-sidebar aside.col-m-3 {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 32px;
  }
  body.layout-one-sidebar .ct-layout__main {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  body.layout-one-sidebar .section-content--top + .ct-layout__inner {
    padding: 48px 20px;
  }
  body.layout-one-sidebar .bs-region--left,
  body.layout-one-sidebar .block-system-main-block > article {
    margin-bottom: 50px;
  }
  body.layout-two-sidebars .ct-layout__main {
    max-width: 100%;
    flex: 0 0 100%;
  }
  body.layout-two-sidebars .ct-layout__main-inner {
    margin-bottom: 0;
  }
  body.layout-two-sidebars .bs-region {
    margin-bottom: 50px;
  }
  body.path-node .ct-layout__main.col-m-9, body.path-sprep30 .ct-layout__main.col-m-9 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  body.path-node.layout-two-sidebars .ct-layout__main.col-m-9, body.path-sprep30.layout-two-sidebars .ct-layout__main.col-m-9 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  h1,
  .style-heading1 {
    font-size: 36px;
    line-height: 45px;
  }
  h2,
  .style-heading2 {
    font-size: 30px;
    line-height: 40px;
  }
  h3,
  .style-heading3 {
    font-size: 26px;
    line-height: 35px;
  }
  h4,
  .style-heading4 {
    font-size: 20px;
    line-height: 28px;
  }
  h5,
  .style-heading5 {
    font-size: 18px;
    line-height: 26px;
  }
  .sprep-search-icon--wrapper .search-close-button {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 16px;
  }
  .sprep-search-icon--wrapper .search-block--wrapper {
    padding-top: 20px;
    min-height: 200vw;
  }
  .sprep-search-icon--wrapper .views-exposed-form {
    margin-bottom: 0;
  }
  .ct-header__content-middle3 {
    position: static;
  }
  .ckeditor-accordion-container > dl dd.active {
    padding: 0 16px 16px 20px;
  }
  .ckeditor-accordion-container > dl dt > a {
    padding: 16px 20px;
  }
  .ckeditor-accordion-container .ckeditor-accordion-container > dl > dd {
    padding: 0 20px 16px;
  }
  .spreps-form-event .col-m-6 {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .content-background-column .row,
  .content-nonebg-column .row {
    margin-left: 0;
    margin-right: 0;
  }
  .content-background-column .column,
  .content-nonebg-column .column {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .component-wrapper--type-spotlights td a {
    font-size: 16px;
    line-height: 24px;
  }
  .component-wrapper--type-spotlights td:nth-child(1),
  .component-wrapper--type-spotlights td:nth-child(2) {
    padding: 7px;
    font-size: 16px;
  }
  .component-wrapper--type-spotlights td:nth-child(1) {
    min-width: 95px;
  }
  .component-wrapper--type-spotlights td:nth-child(2) {
    min-width: 60px;
  }
}
@media (max-width: 575px) {
  .ct-list__filters {
    margin-bottom: 24px;
  }
  .ct-list__filters .form-wrapper,
  .ct-list__filters .ct-form-element {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .content-year .years {
    padding-left: 0;
  }
  .content-year .number {
    position: relative;
    margin-bottom: 24px;
  }
  .view-circulars .form--inline {
    margin-left: 0;
    margin-right: 0;
  }
  .view-circulars .ct-list__filters .container .ct-form-element {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .block-page-title-block .ct-heading {
    font-size: 28px;
    line-height: 35px;
  }
}
.path-publications .ct-layout__sidebar__left__inner {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
.path-publications .ct-layout__sidebar__left__inner h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #002242;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .path-publications .ct-layout__sidebar__left__inner h2 {
    font-size: 16px;
    line-height: 26px;
  }
}
.path-publications .ct-layout__sidebar__left__inner > .block {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e6e9eb;
}
.path-publications .ct-layout__sidebar__left__inner > .block:empty {
  display: none;
}
.path-publications .ct-layout__sidebar__left__inner > .block:last-child {
  margin-bottom: 0;
  border: none;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox .facet-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox input {
  flex: 0 0 14px;
  height: 20px;
  margin: 0;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex: 1;
  font-weight: 500;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox label:hover {
  cursor: pointer;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox label .facet-item__value {
  color: #393d49;
}
.path-publications .ct-layout__sidebar__left__inner .item-list__checkbox label .facet-item__count {
  color: #6c6d6e;
}
.path-publications .ct-layout__sidebar__left__inner .facets-soft-limit-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  font-size: 14px;
  line-height: inherit;
  font-weight: 500;
}
.path-publications .ct-layout__sidebar__left__inner .facets-soft-limit-link:after {
  content: "";
  display: inline-block;
  background-image: url(/themes/custom/sprep_theme/dist/images/arrow-down-green.9f1dc723.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.page-node-type-page .ct-layout__main-inner .field--name-body a {
  word-break: break-word;
}

.path-tender .node,
.path-event .node,
.path-circular .node,
.path-publications .node {
  color: #393d49;
}
.path-tender .node > div > .field,
.path-event .node > div > .field,
.path-circular .node > div > .field,
.path-publications .node > div > .field {
  line-height: 28px;
  margin-bottom: 24px;
}
.path-tender .node > div > .field:last-child,
.path-event .node > div > .field:last-child,
.path-circular .node > div > .field:last-child,
.path-publications .node > div > .field:last-child {
  margin-bottom: 0;
}
.path-tender .node > div > .field span,
.path-event .node > div > .field span,
.path-circular .node > div > .field span,
.path-publications .node > div > .field span {
  display: inline-block;
}
.path-tender .node > div > .field > .field__label,
.path-event .node > div > .field > .field__label,
.path-circular .node > div > .field > .field__label,
.path-publications .node > div > .field > .field__label {
  margin-bottom: 8px;
}
.path-tender .node > div > .field > .field__label .field__label--content,
.path-event .node > div > .field > .field__label .field__label--content,
.path-circular .node > div > .field > .field__label .field__label--content,
.path-publications .node > div > .field > .field__label .field__label--content {
  font-weight: 700;
  line-height: 28px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: color-mix(in srgb, #0054A4, #000 60%);
}
.path-tender .node > div > .field.field--name-field-document .field__items > .field__item,
.path-event .node > div > .field.field--name-field-document .field__items > .field__item,
.path-circular .node > div > .field.field--name-field-document .field__items > .field__item,
.path-publications .node > div > .field.field--name-field-document .field__items > .field__item {
  margin-bottom: 8px;
}
.path-tender .node > div > .field.field--name-field-document .field__items > .field__item:last-child,
.path-event .node > div > .field.field--name-field-document .field__items > .field__item:last-child,
.path-circular .node > div > .field.field--name-field-document .field__items > .field__item:last-child,
.path-publications .node > div > .field.field--name-field-document .field__items > .field__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .view-our-focus .ct-list__rows__mobile,
  .view-latest-publications .ct-list__rows__mobile,
  .view-upcoming-events .ct-list__rows__mobile,
  .sprep-popular-articles .ct-list__rows__mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .we-mega-menu-ul .we-mega-menu-li[data-level="0"] > .we-mega-menu-li {
    padding-top: 41.5px;
    padding-bottom: 41.5px;
  }
  .ct-logo .ct-logo__image {
    max-height: unset;
  }
}
@media (max-width: 991px) {
  body.toggled {
    right: 0;
  }
  body.toggled .btn-close {
    z-index: 99;
    position: fixed;
    background: transparent;
    box-shadow: none;
    background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
    width: 300px;
    right: 0;
    top: 0;
    border-radius: 0;
  }
  body.toggled .btn-close:before, body.toggled .btn-close:after {
    right: 20px;
    left: auto;
  }
  body.path-frontpage .we-mega-menu-ul > .we-mega-menu-li > a, body.path-frontpage .we-mega-menu-ul > .we-mega-menu-li > span {
    color: #fff;
  }
  body.user-logged-in .navbar-we-mega-menu.navbar {
    top: 37px;
  }
  body.user-logged-in.toggled {
    right: 0;
  }
  body.user-logged-in.toggled .btn-close {
    top: 39px;
  }
  body.layout-one-sidebar .section-content--top {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .ct-header--megamenu .ct-header__middle > .navbar-toggle {
    display: none;
  }
  .region-we-mega-menu {
    background: transparent;
    margin: 0;
    padding: 0;
  }
  .overlay {
    display: none;
  }
  .navbar-we-mega-menu.navbar {
    background: linear-gradient(90deg, #008081 0%, #0054A4 100%);
    top: 0;
    padding: 20px;
    padding-top: 60px;
    z-index: 98;
    display: block;
    width: 300px;
    right: -300px;
  }
  .navbar-we-mega-menu.navbar.we-mobile-megamenu-active {
    right: 0;
  }
  .navbar-we-mega-menu.navbar .nav .open > a, .navbar-we-mega-menu.navbar .nav .open > a:focus, .navbar-we-mega-menu.navbar .nav .open > a:hover, .navbar-we-mega-menu.navbar .nav-tabs > li.active > a,
  .navbar-we-mega-menu.navbar .nav-tabs > li.active > a:focus, .navbar-we-mega-menu.navbar .nav-tabs > li.active > a:hover {
    color: #fff;
    background-color: transparent;
  }
  .navbar-we-mega-menu.navbar .container-fluid, .navbar-we-mega-menu.navbar .container-sm, .navbar-we-mega-menu.navbar .container-md, .navbar-we-mega-menu.navbar .container-lg, .navbar-we-mega-menu.navbar .container-xl, .navbar-we-mega-menu.navbar .container-xxl {
    display: block;
  }
  .navbar-we-mega-menu.navbar ul a {
    color: #fff;
  }
  .navbar-we-mega-menu.navbar .we-mega-menu-ul > li > .we-megamenu-nolink, .navbar-we-mega-menu.navbar .we-mega-menu-ul > li > a {
    padding: 15px 0;
    font-weight: 700;
  }
  .navbar-we-mega-menu.navbar .we-mega-menu-ul .we-mega-menu-submenu {
    padding: 0;
    background: transparent;
    display: block;
  }
  .navbar-we-mega-menu.navbar .we-mega-menu-ul .we-mega-menu-submenu-inner {
    padding: 0;
  }
  .navbar-we-mega-menu.navbar .we-mega-menu-ul .we-mega-menu-row {
    padding: 0;
  }
  .navbar-we-mega-menu.navbar ul > li ul {
    padding-left: 20px;
  }
  .view-frontpage .slide-wrapper {
    display: block;
  }
  .view-frontpage .views-field-fieldset,
  .view-frontpage .views-field-field-image {
    max-width: 100%;
    grid-column: 1/15;
    margin: 0;
  }
  .view-frontpage .views-field-fieldset {
    padding: 20px;
  }
  .view-frontpage .views-field-title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.35px;
    margin-bottom: 16px;
  }
  .view-frontpage .views-field-body {
    font-size: inherit;
    line-height: 26px;
    margin-bottom: 16px;
  }
  .view-frontpage .views-field-field-image .field-content {
    height: auto;
  }
  .view-frontpage .views-field-field-image img {
    display: block;
    height: auto;
  }
  .sprep-news-big-order .views-field-fieldset,
  .sprep-news-big-order .views-field-field-lead-image {
    max-width: 100%;
    margin: 0;
    grid-column: 1/13;
  }
  .sprep-news-big-order .views-field-field-lead-image img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
  }
  .sprep-news-big-order .sprep-latest-news-info {
    padding: 20px 20px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
  }
  .sprep-news-big-order .views-field-title {
    font-size: 24px;
    line-height: 31px;
    letter-spacing: -0.35px;
    margin-bottom: 16px;
  }
  .sprep-event .ct-item-grid__item {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .view-our-focus .ct-list__rows,
  .view-latest-publications .ct-list__rows {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-news-category {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 0;
  }
  .block-search--page-404 > form {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-404 .big-heading h1 {
    font-size: 120px;
    line-height: 1;
    min-width: unset;
  }
  .ct-header.ct-theme-light .ct-header__middle {
    padding: 0;
  }
  .ct-header.ct-theme-light .ct-header__middle > .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .block-country-select-list .country-select-list {
    position: static;
  }
  .sprep-member-flag .views-field-nothing-1 {
    max-width: 100%;
  }
  .sprep-member-flag .views-field-nothing-1 > .field-content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ct-header__content-middle2 .ct-logo .ct-image {
    max-height: 32px;
  }
  .new-latest-slider .slide-wrapper {
    display: flex;
    flex-direction: column;
  }
  .new-latest-slider .views-field-fieldset {
    flex: 0 0 100%;
    order: 2;
  }
  .new-latest-slider .views-field-fieldset > .field-content > div {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .new-latest-slider .views-field-field-lead-image {
    margin: 0;
    max-width: 100%;
  }
  .new-latest-slider .views-field-field-lead-image img {
    border-bottom-right-radius: 0;
  }
  .new-latest-slider .views-field-nothing-1 {
    flex: unset;
  }
  .view-upcoming-alert .group-upcoming-event {
    display: block;
  }
  .view-upcoming-alert .content {
    -webkit-line-clamp: 4;
    padding-left: 0;
  }
  .member-profile-table > .fieldset-wrapper {
    display: block;
  }
  .member-profile-table > .fieldset-wrapper > .field {
    display: flex;
    max-width: 100%;
    border-left: 1px solid #EEB092;
  }
  .member-profile-table > .fieldset-wrapper > .field > .field__label {
    min-width: 240px;
    border-right: 1px solid #EEB092;
    border-bottom: none;
  }
  .member-profile-table > .fieldset-wrapper > .field:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
  }
  .member-profile-table > .fieldset-wrapper > .field:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
  }
  .member-profile-table > .fieldset-wrapper > .field:last-child .field__label {
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
  }
  .member-profile-table > .fieldset-wrapper > .field:not(:last-child) {
    border-bottom: none;
  }
  .ct-list__pager {
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
  .ct-pager {
    flex-direction: column;
    padding: 0;
    margin-bottom: 48px;
  }
  .ct-pager .ct-pager__items {
    justify-content: center;
  }
  .ct-pager .ct-pager__items_per_page {
    width: auto;
    margin: 0;
  }
  table.ct-table {
    margin-bottom: 48px;
  }
  .block-field-blocknodepagebody table {
    display: block;
    overflow: auto;
  }
  .block-field-blocknodepagebody table img {
    max-width: 100%;
  }
  .ct-breadcrumb {
    padding: 0 20px;
  }
  .spreps-form-event {
    margin-bottom: 48px;
  }
  .spreps-form-event .ct-list__filters .form--inline > .ct-form-element, .spreps-form-event .ct-list__filters .form--inline > .form-actions .ct-button {
    margin-bottom: 16px;
  }
  .our-team-tabs {
    flex-wrap: unset;
    row-gap: 0;
  }
  .our-team-tabs .our-team-tab-item {
    box-shadow: none;
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  .splide:not(.splide-banner, .member-profile-tabs).is-initialized {
    margin-right: -20px;
  }
  .splide:not(.splide-banner, .member-profile-tabs) .splide__controls {
    display: block;
    margin: 0;
  }
  .splide:not(.splide-banner, .member-profile-tabs) .splide__arrows {
    margin-bottom: 16px;
  }
  .sprep-news-big-order .views-field-fieldset .field-content > div > .views-field {
    margin-bottom: 16px;
  }
  .sprep-news-big-order .views-field-fieldset .field-content > div > .views-field a {
    margin-bottom: 0;
  }
  .sprep-news-big-order .views-field-fieldset .field-content > div > .views-field:last-child {
    margin-bottom: 0;
  }
  .sprep-news-big-order .views-field-field-lead-image img {
    max-height: 218px;
  }
  .sprep-slishow-news .ct-list__footer {
    padding: 0;
    margin-top: 32px;
  }
  .sprep-slishow-news .sprep-latest-news-info {
    padding: 20px;
  }
  .sprep-slishow-news .views-field-title {
    margin-bottom: 16px;
  }
  .sprep-slishow-news .views-field-title a {
    font-size: 16px;
    line-height: 26px;
  }
  .sprep-slishow-news .views-field-field-topic a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .sprep-slishow-news .link-header {
    display: block;
  }
  .view-our-focus .ct-list__rows,
  .view-latest-publications .ct-list__rows,
  .view-upcoming-events .ct-list__rows,
  .sprep-popular-articles .ct-list__rows {
    display: none;
  }
  .view-our-focus .splide__pagination,
  .view-latest-publications .splide__pagination,
  .view-upcoming-events .splide__pagination,
  .sprep-popular-articles .splide__pagination {
    display: none;
  }
  .view-upcoming-events .views-field-fieldset .field-content > div {
    box-shadow: none;
  }
  .view-upcoming-events .ct-list__footer {
    padding: 0;
    margin-top: 32px;
  }
  .view-upcoming-events .link-header {
    display: block;
  }
  .view-latest-publications .ct-list__footer {
    padding: 0;
    margin-top: 24px;
  }
  .view-latest-publications .link-footer {
    display: block;
  }
  .sprep-news-list .ct-list__rows,
  .sprep-popular-articles .ct-list__rows {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-latest-slider .splide.is-initialized {
    margin: 0;
  }
  .ct-footer__middle .col-xxs-12 {
    margin-bottom: 48px;
  }
  .ct-footer__middle .col-xxs-12 .ct-menu {
    row-gap: 16px;
  }
  .ct-footer__bottom__content-bottom2 .group-left {
    text-align: left;
  }
  .form-login {
    display: block;
  }
  .form-login .container-left {
    margin-bottom: 16px;
  }
  .form-login .container-left img {
    margin: 0;
  }
  .form-login .container-right {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .member-profile-table > .fieldset-wrapper > .field {
    display: block;
    border-left: 1px solid #EEB092;
  }
  .member-profile-table > .fieldset-wrapper > .field > .field__label {
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #EEB092;
  }
  .member-profile-table > .fieldset-wrapper > .field > .field__label:last-child .field__label {
    border-bottom-left-radius: 0;
  }
  iframe {
    min-width: 150px;
  }
}