/*
 sm     =   small   =   phone-small     = 576px     = 36em;
 md     =   medium  =   phone-large     = 768px     = 48em;
 lg     =   large   =   phone-tablet    = 992px     = 62em;
 xl     =   xlarge  =   desktop         = 1200px    = 75em;
 xxl    =   xxl     =   big desktop     = 1400px    = 87.5em;

 1em = 16px;
*/
/*
When using MAX and Desktop first approach the biggest screen size
shall be on top for right cascading of styles(smallest shall be last)
*/
/*
When using MIN and Mobile first approach the smalles screen size
shall be on top for right cascading of styles(bigest shall be last)
*/
* {
  margin: 0;
  padding: 0;
}

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

*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top, 100px);
}

img {
  max-width: 100%;
}

@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Regular.woff);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-SemiLight.woff);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Medium.woff);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-MediumItalic.woff);
  font-weight: 550;
  font-style: italic;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-SemiBold.woff);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Bold.woff);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-ExtraBold.woff);
  font-weight: 800;
  font-style: normal;
}
body {
  color: #003B53;
  font-family: "Sofia", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sofia", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1,
h2,
h3 {
  font-weight: 800;
}

a {
  text-decoration: none;
}

a:not([class]) {
  color: #003B53;
}

.section-title {
  color: #00332D;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}
.section-title--s {
  font-size: 1.25rem;
}

.page-title {
  color: grey;
  font-size: 2rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.sidebar-title {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.0125rem;
}

.form-title {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4;
}

@media screen and (max-width: 47.9em) {
  .page-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
.u-btn {
  --btn-bg: #007A6C;
  --btn-color: #ffffff;
  --btn-hover: #00574D;
  display: inline-block;
  min-height: 2.75rem;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  border: 2px solid transparent;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.01rem;
  transition: all 0.2s ease;
}
.u-btn:hover, .u-btn:focus, .u-btn:active {
  background-color: var(--btn-hover);
}
.u-btn--primary-2 {
  --btn-bg: #B0D6D1;
  --btn-color: #003B53;
  --btn-hover: #00574D;
}
.u-btn--primary-2:hover, .u-btn--primary-2:focus {
  --btn-hover: #339589;
  --btn-color: white;
}
.u-btn--secondary {
  --btn-bg: #6FC44F;
  --btn-color: #003B53;
  --btn-hover: #4F8B38;
}
.u-btn--secondary:hover, .u-btn--secondary:focus {
  --btn-hover: #65B248;
}
.u-btn--secondary-2 {
  --btn-bg: #BDE4AE;
  --btn-color: #003B53;
  --btn-hover: #4F8B38;
}
.u-btn--secondary-2:hover, .u-btn--secondary-2:focus {
  --btn-hover: #8CD072;
}
.u-btn--border {
  --btn-bg: white;
  --btn-color: #003B53;
  --btn-hover: #B0D6D1;
  border-color: #B0D6D1;
}
.u-btn--s {
  padding: 0.5rem 0.5rem;
  gap: 0.5rem;
}
.u-btn:disabled {
  background-color: #99A3A7;
}
.u-btn--icon {
  display: inline-flex;
  justify-content: space-between;
}
.u-btn--icon span:has(svg) {
  display: block;
}
.u-btn--icon span:has(svg) svg {
  width: 1.5rem;
  height: 1.5rem;
}

.u-icon {
  position: relative;
}
.u-icon:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-image: url(../images/svg/logo-white.svg);
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
}
.u-icon--pin:before {
  background-image: url(../images/svg/icon-pin.svg);
}
.u-icon--bank:before {
  background-image: url(../images/svg/icon-bank.svg);
}
.u-icon--building:before {
  background-image: url(../images/svg/icon-building.svg);
}
.u-icon--student:before {
  background-image: url(../images/svg/icon-student.svg);
}
.u-icon--microscope:before {
  background-image: url(../images/svg/icon-microscope.svg);
}
.u-icon--calendar:before {
  background-image: url(../images/svg/icon-calendar.svg);
}
.u-icon--users:before {
  background-image: url(../images/svg/icon-users.svg);
}
.u-icon--envelope:before {
  background-image: url(../images/svg/icon-envelope.svg);
}
.u-icon--mobile:before {
  background-image: url(../images/svg/icon-mobile.svg);
}
.u-icon--facebook:before {
  background-image: url(../images/svg/icon-facebook.svg);
}
.u-icon--instagram:before {
  background-image: url(../images/svg/icon-instagram.svg);
}
.u-icon--youtube:before {
  background-image: url(../images/svg/icon-youtube.svg);
}
.u-icon--threads:before {
  background-image: url(../images/svg/icon-thread.svg);
}
.u-icon--idcard:before {
  background-image: url(../images/svg/icon-idcard.svg);
}
.u-icon--stethoscope:before {
  background-image: url(../images/svg/icon-stethoscope.svg);
}
.u-icon--certificate:before {
  background-image: url(../images/svg/icon-certificate.svg);
}
.u-icon--pie:before {
  background-image: url(../images/svg/icon-pie.svg);
}
.u-icon--user:before {
  background-image: url(../images/svg/icon-user.svg);
}

*.u-icon {
  display: block;
  padding-left: 1.5rem;
}

.bckgrnd-dg {
  background-color: #E6F2F0;
}

.bckgrnd-dg2 {
  background-color: #B0D6D1;
}

.bckgrnd-lg {
  background-color: #F1F9ED;
}

.bckgrnd-lg2 {
  background-color: #D2EDC8;
}

.bckgrnd-gr {
  background-color: #F2F3F4;
}

p:has(> .u-title) {
  display: flex;
  gap: 2rem;
}
p:has(> .u-title) .u-label {
  flex: 0 0 fit-content;
}

.u-title {
  margin-left: auto;
  font-weight: 800;
  text-align: right;
}

.u-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.u-msg {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #339589;
  border-radius: 4px;
}
.u-msg:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1.5rem;
  background-image: none;
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}
.u-msg--info {
  color: #004373;
  background-color: #EFF8FF;
  border-color: #036BB5;
}
.u-msg--info:before {
  background-image: url(../images/svg/icon-info.svg);
}
.u-msg--error {
  color: #C92A03;
  background-color: #FFEEEA;
  border-color: #C92800;
}
.u-msg--error:before {
  background-image: url(../images/svg/icon-error.svg);
}
.u-msg--warning {
  color: #685C00;
  background-color: #FFFCE9;
  border-color: #FFE100;
}
.u-msg--warning:before {
  background-image: url(../images/svg/icon-warning.svg);
}
.u-msg--success {
  color: #00574D;
  background-color: #E6F2F0;
  border-color: #007A6C;
}
.u-msg--success:before {
  background-image: url(../images/svg/icon-success.svg);
}
.u-msg p:only-child,
.u-msg p:last-child {
  margin-bottom: 0 !important;
}

.u-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}
.u-status:before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 0.75rem;
  background-color: #F2F3F4;
  border-radius: 50%;
}
.u-status--active:before {
  background-color: #6FC44F;
}
.u-status--inactive:before {
  background-color: #66747C;
}
.u-status--warning:before {
  background-color: #FFE100;
}

.page-content h1:not([class]) {
  font-size: 1.5rem;
}
.page-content h2:not([class]) {
  font-size: 1.75rem;
  line-height: 1.14;
  letter-spacing: -0.0175rem;
}
.page-content h3:not([class]) {
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: -0.015rem;
}
.page-content h4:not([class]) {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.0125rem;
}
.page-content h5:not([class]) {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.0125rem;
}
.page-content h1:not([class]),
.page-content h2:not([class]),
.page-content h3:not([class]),
.page-content h4:not([class]) {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
}
.page-content a:not([class]) {
  color: #036BB5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:not([class]):hover, .page-content a:not([class]):focus {
  text-decoration-thickness: 2px;
}
.page-content p:not([class]) {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.page-content ul:not([class]) {
  padding-left: 1rem;
  list-style-position: inside;
}
.page-content figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-content figcaption {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.87rem;
  border-bottom: 1px solid #CCD1D3;
}
.page-content table thead th {
  position: relative;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  background-color: #006F62;
  border-width: 0;
}
.page-content table thead th:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  position: absolute;
  right: 0;
  top: 0.75rem;
  background-color: white;
}
.page-content table tbody td {
  font-size: 1rem;
  border-width: 0;
}
.page-content table tbody tr:nth-child(odd) td {
  background-color: white;
}
.page-content table tbody tr:nth-child(even) td {
  background-color: #F2F3F4;
}

.section {
  margin-bottom: 5rem;
}

.news-header {
  background-color: #E6F2F0;
  border-radius: 4px;
}
.news-header__border {
  border-right: 1px solid #007A6C;
}
.news-header__label {
  margin-bottom: 0.25rem;
  color: #00574D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01rem;
}
.news-header__meta {
  margin-bottom: 0.25rem;
  color: var(--color-dark-primaries-900, #00332D);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.01rem;
}

input:not([type=checkbox]),
textarea,
select,
.input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem;
  background-color: white;
  border-width: 1px;
  border-color: #00332D;
  border-radius: 4px;
  border-style: solid;
  color: #4D5D66;
  font-weight: 700;
  line-height: 1.25;
  outline-offset: 0;
}
input:not([type=checkbox]):-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder, .input:-moz-placeholder {
  color: #99A3A7;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}
input:not([type=checkbox]):placeholder-shown,
textarea:placeholder-shown,
select:placeholder-shown,
.input:placeholder-shown {
  color: #99A3A7;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}

select {
  padding-right: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 20px;
  cursor: pointer;
}

.input {
  border-color: transparent;
}

.flatpickr-current-month {
  display: flex !important;
}

.flatpickr-day.today {
  color: white;
  background-color: #00332D !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background-color: #B0D6D1 !important;
}

.flatpickr-day.today.flatpickr-disabled,
.flatpickr-day.today.flatpickr-disabled:hover,
.flatpickr-day.today.prevMonthDay,
.flatpickr-day.today.nextMonthDay,
.flatpickr-day.today.notAllowed,
.flatpickr-day.today.notAllowed.prevMonthDay,
.flatpickr-day.today.notAllowed.nextMonthDay {
  background-color: rgba(176, 214, 209, 0.4) !important;
}

.material-symbols-outlined {
  font-family: "Material-icon";
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  /* Traditional CSS still works for size and color */
  font-size: 2rem;
  color: #2F5221;
}

input[type=date] {
  color: #808B91;
  position: relative;
  /* Hides the native text */
}

input[type=checkbox] {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 2rem;
  border: 1px solid #99A3A7;
  border-radius: 0;
}
input[type=checkbox]:before {
  content: "";
  width: calc(1.5rem - 2px);
  height: calc(1.5rem - 2px);
  transform: scale(0);
  background-color: white;
  border-radius: 0;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
  border-color: #2F5221;
  background-image: url(../images/svg/checkbox-checked-white.svg);
  background-color: #2F5221;
  background-repeat: no-repeat;
  background-position: center;
}
input[type=checkbox] + label {
  margin-left: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}
input[type=checkbox][role=switch] {
  width: 1.5em;
}
input[type=checkbox][role=switch]:checked {
  background-color: #2F5221;
}
input[type=checkbox][role=switch]::before {
  display: none;
}

.form-switch {
  padding-left: 0;
}

input[type=radio] {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 2rem;
  padding: 0rem;
  border: 1px solid #99A3A7;
  border-radius: 50%;
}
input[type=radio]:before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  transform: scale(0);
  background-color: #2F5221;
  border-radius: 50%;
}
input[type=radio]:checked::before {
  transform: scale(0.6);
}
input[type=radio] + label {
  margin-left: 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
  cursor: pointer;
}

div:has(> input[type=radio] + label),
div:has(> input[type=checkbox] + label) {
  display: flex;
  align-items: flex-start;
}

label,
legend,
.label {
  display: inline-block;
  margin-bottom: 0.125rem;
  color: #00332D;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.drop-area__container:has(input[required]) label:before,
div:has(> input[required]:not([type=radio]), > textarea[required], > select[required]) label:before,
.row:has(div > input[required]:not([type=radio]), > textarea[required], > select[required]) label:before {
  content: "* ";
  color: red;
}
.drop-area__container:has(input[required]) label:hover, .drop-area__container:has(input[required]) label:focus,
div:has(> input[required]:not([type=radio]), > textarea[required], > select[required]) label:hover,
div:has(> input[required]:not([type=radio]), > textarea[required], > select[required]) label:focus,
.row:has(div > input[required]:not([type=radio]), > textarea[required], > select[required]) label:hover,
.row:has(div > input[required]:not([type=radio]), > textarea[required], > select[required]) label:focus {
  cursor: pointer;
}

textarea {
  display: block;
  width: 100%;
  min-height: 10rem;
  line-height: 1.3;
  background-color: transparent;
}
textarea:placeholder {
  font-size: 0.875rem;
}

input:not([type=checkbox]) .section-title,
textarea .section-title,
select form .section-title,
.form .section-title {
  margin-top: 2rem;
  margin-bottom: 0;
  font-family: "Sofia", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #001824;
  text-transform: none;
}

fieldset {
  margin-bottom: 1rem;
}

table:not([class]) td,
table:not([class]) th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid #CCD1D3;
}
table:not([class]) td:first-child:not(:last-child),
table:not([class]) th:first-child:not(:last-child) {
  padding-left: 1rem;
}
table:not([class]) td:last-child:not(:first-child),
table:not([class]) th:last-child:not(:first-child) {
  padding-right: 1rem;
}
table:not([class]) th {
  background-color: #8AC2BB;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
table:not([class]) td {
  background-color: #E6F2F0;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.form-control {
  border-color: transparent;
}
.form-control label {
  display: inline-block;
}

.data-format-input {
  display: flex !important;
  padding-right: calc(0.5rem * 2 + 32px);
  background-image: url(../images/svg/input-date.svg);
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.form-check.form-switch {
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
}
.form-check.form-switch input {
  margin-left: 0;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

.data-format-input {
  display: flex !important;
  padding-right: 48px;
  background-image: url(../images/svg/input-date.svg);
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.flatpickr-monthDropdown-months,
.flatpickr-innerContainer,
.flatpickr-next-month,
.flatpickr-prev-month {
  display: none;
}

.brand {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  align-items: center;
}
.brand__title {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  width: 33ch;
}
.brand__rb {
  display: block;
  color: #00574D;
  font-weight: 400;
}
.brand__name {
  display: block;
  color: #00332D;
  font-weight: 800;
}
.brand:before {
  content: "";
  width: 2.5rem;
  height: 3.5rem;
  flex: 0 0 2.5rem;
  background-image: url(../images/svg/logo-green.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2.5rem;
}
.brand--footer .brand__rb, .brand--footer .brand__name {
  color: white;
}
.brand--footer:before {
  background-image: url(../images/svg/logo-white.svg);
}

.pagination__list {
  display: flex;
  gap: 10px;
  list-style: none;
}
.pagination__list li {
  display: inline-block;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  color: black;
  border: 1px solid transparent;
  border-radius: 2px;
  background-position: center;
  background-repeat: no-repeat;
}
.pagination__link:hover, .pagination__link:focus {
  color: grey;
  background-color: rgba(128, 128, 128, 0.2);
}
.pagination__link.active {
  color: white;
  font-weight: 800;
  background-color: #006F62;
  border-color: #006F62;
}
.pagination__link.disabled {
  color: grey;
}
.pagination__link--first {
  background-image: url(../images/svg/pagination-first.svg);
}
.pagination__link--first:hover, .pagination__link--first:focus {
  background-image: url(../images/svg/pagination-first-hover.svg);
}
.pagination__link--first.disabled {
  background-image: url(../images/svg/pagination-first-disabled.svg);
}
.pagination__link--prev {
  background-image: url(../images/svg/pagination-prev.svg);
}
.pagination__link--prev:hover, .pagination__link--prev:focus {
  background-image: url(../images/svg/pagination-prev-hover.svg);
}
.pagination__link--prev.disabled {
  background-image: url(../images/svg/pagination-prev-disabled.svg);
}
.pagination__link--next {
  background-image: url(../images/svg/pagination-next.svg);
}
.pagination__link--next:hover, .pagination__link--next:focus {
  background-image: url(../images/svg/pagination-next-hover.svg);
}
.pagination__link--next.disabled {
  background-image: url(../images/svg/pagination-next-disabled.svg);
}
.pagination__link--last {
  background-image: url(../images/svg/pagination-last.svg);
}
.pagination__link--last:hover, .pagination__link--last:focus {
  background-image: url(../images/svg/pagination-last-hover.svg);
}
.pagination__link--last.disabled {
  background-image: url(../images/svg/pagination-last-disabled.svg);
}
.pagination__container {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 47.9em) {
  .pagination__list {
    flex-wrap: wrap;
  }
}
.social-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
}

.social-link {
  display: block;
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  border-radius: 4px;
}
.social-link--facebook {
  background-image: url(../images/svg/icon-facebook.svg);
}
.social-link--insta {
  background-image: url(../images/svg/icon-instagram.svg);
}
.social-link--lin {
  background-image: url(../images/svg/social-lin.svg);
}
.social-link--x {
  background-image: url(../images/svg/social-x.svg);
}
.social-link--yt {
  background-image: url(../images/svg/icon-youtube.svg);
}
.social-link--tt {
  background-image: url(../images/svg/social-tt.svg);
}
.social-link--link {
  background-image: url(../images/svg/social-link.svg);
}
.social-link--rss {
  background-image: url(../images/svg/social-rss.svg);
}
.social-link:hover, .social-link:focus {
  background-color: #B0D6D1;
}

.news-card {
  --border-radius: 4px;
  display: block;
  padding-bottom: 1rem;
  color: #003B53;
  border-radius: var(--border-radius);
}
.news-card > *:first-child {
  margin-bottom: 1rem;
}
.news-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 380/253.46;
  border-radius: var(--border-radius);
}
.news-card__thumb > img {
  position: relative;
  width: 100%;
  aspect-ratio: 380/253.46;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}
.news-card__thumb--blur {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
.news-card__thumb--blur img {
  -o-object-fit: cover;
  object-fit: cover;
  filter: blur(10px);
}
.news-card__data {
  padding-left: 2rem;
  padding-right: 2rem;
}
.news-card__data > *:not(:last-child) {
  margin-bottom: 1rem;
}
.news-card__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}
.news-card__meta {
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.0075rem;
}
.news-card__meta > *:not(:last-child) {
  margin-right: 1rem;
}
.news-card .tag {
  margin-bottom: 0;
}
.news-card:hover, .news-card:focus {
  background-color: white;
  box-shadow: 0 7px 15px -3px rgba(77, 93, 102, 0.2), 0 4px 6px -2px rgba(32, 71, 105, 0.1);
}

.horizontal-news-cards {
  container-name: horizontal-news-cards;
  container-type: inline-size;
}

@container horizontal-news-cards (width > 768px) {
  .news-card {
    display: flex;
    gap: 1rem;
  }
}
.color-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 0.25rem;
}
.color-card__title {
  color: #00332D;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.33;
  letter-spacing: -0.015rem;
}
.color-card__description {
  color: #00332D;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.01rem;
}

.more-link {
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
  color: black;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}
.more-link:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-left: 0.5rem;
  background-image: url(../images/svg/arrow-right-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: margin-left 0.3s ease;
}
.more-link:hover, .more-link:focus {
  color: inherit;
}
.more-link:hover:after, .more-link:focus:after {
  margin-left: 1rem;
}

div[class*=col]:has(> a.more-link) {
  display: flex;
  justify-content: flex-end;
}

.tag {
  display: flex;
  align-items: center;
  font-size: 0.865rem;
  gap: 0.5rem;
  padding: 0;
}
.tag:before {
  content: "";
  top: 0;
  left: 0;
  position: relative;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}
.tag--white {
  background-color: white;
}
.tag--green {
  border-radius: 5px;
  color: #003B53;
  background-color: #B0D6D1;
}
.tag--oval {
  border-radius: 2rem;
  padding: 0.25rem 0.5rem;
}
.tag--active {
  color: #2F5221;
}
.tag--active::before {
  background-color: #6FC44F;
}
.tag--inactive {
  color: #66747C;
}
.tag--inactive::before {
  background-color: #66747C;
}
.tag--alert {
  color: #C92A03;
}
.tag--alert::before {
  background-color: #FC5830;
}
.tag--text:not(.u-icon) {
  padding: 0.5rem;
}
.tag--text:not(.u-icon):before {
  display: none;
}

.tag--green.tag--oval {
  padding: 0.25rem 1rem;
}
.tag--green.tag--oval:before {
  display: none;
}

a.tag.tag--green {
  display: inline-block;
}
a.tag.tag--green:hover, a.tag.tag--green:focus {
  color: white;
  background-color: #006F62;
}

.tabs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 0.5rem;
}
.tabs__btn {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  align-items: center;
  gap: 0.5rem;
  color: #003B53;
  font-weight: 800;
  line-height: 1.5;
  border-color: transparent;
  border-radius: var(--spacing-spacing-xs, 0.25rem);
  background-color: #B0D6D1;
}
.tabs__btn.active {
  color: white;
  background: #007A6C;
}

.tab__title {
  color: #003B53;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.document {
  display: block;
  padding: 1rem;
  padding-left: calc(1rem * 2 + 1.25rem);
  background-image: url(../images/svg/icon-doc.svg);
  background-repeat: no-repeat;
  background-position: left 1rem top 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
}
.document__title {
  color: #003B53;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.01rem;
}
.document__meta {
  margin-top: 0.25rem;
  color: var(--color-dark-primaries-600, #006F62);
  font-size: 0.875rem;
  line-height: 1.42;
  letter-spacing: -0.00875rem;
}
.document:hover, .document:focus {
  border-color: #B0D6D1;
  background-color: #F2F3F4;
}

.carousel-item {
  max-height: 10rem;
}
.carousel img {
  aspect-ratio: 4/2.5;
  -o-object-fit: contain;
  object-fit: contain;
  overflow: hidden;
}
.carousel-indicators {
  bottom: -3rem;
}
.carousel-control-next, .carousel-control-prev {
  height: 2rem;
  top: calc(100% + 0.5rem);
}

.mh-event {
  flex-wrap: nowrap;
  margin: 0;
  color: #003B53;
  font-size: 0.875rem;
}
.mh-event .row {
  flex-wrap: nowrap;
  margin: 0;
}
.mh-event:has([class*=col]:hover) [class*=col] {
  text-decoration: underline;
  background-color: #E6F2F0;
}

.mh-event__table-head, .mh-event__table-body {
  padding-left: 0;
  flex-wrap: nowrap;
  list-style: none !important;
  margin-left: 0 !important;
}
.mh-event__table-head p, .mh-event__table-body p {
  margin-bottom: 0 !important;
}
.mh-event__table-head li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.mh-event__table-body [class*=col] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.mh-event__table-body > li:nth-child(even) [class*=col] {
  background-color: #F2F3F4;
}

@media screen and (min-width: 768px) {
  .mh-event__table-head {
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    margin: unset;
  }
  .mh-event__table-head > * {
    background-color: #006a5d;
    border-left: 1px solid #BFD6D3;
  }
  .mh-event__table-head > *:first-child {
    border-left: none;
  }
  .mh-event .col-5:has(.mh-event__label) {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.5px) {
  .mh-event .row .col-md[aria-labelledby=mhTh-1]:before {
    display: none;
  }
  .mh-event .row .col-md[aria-labelledby=mhTh-1] p {
    font-size: 0.81rem;
  }
}
@media screen and (max-width: 767.5px) {
  .mh-event__table-head {
    visibility: hidden;
    width: 1px;
    height: 1px;
  }
  .mh-event__table-head,
  .mh-event__table-body {
    list-style: none !important;
    margin-left: 0 !important;
  }
  .mh-event__table-body li[role=row]:nth-child(even) .mh-event .col-5:has(.mh-event__label) {
    background-color: #006a5d;
  }
  .mh-event__table-head {
    background-color: #007A6C;
  }
  .mh-event .row {
    flex-wrap: wrap;
    margin: 0;
  }
  .mh-event .col-5:has(.mh-event__label) {
    color: var(--ffffff, #FFF);
    font-weight: 700;
    line-height: normal;
    background-color: var(--007-a-6-c, #007A6C);
  }
}
.table-wrapper {
  overflow-x: auto;
}

.accordion {
  --bs-accordion-color: #003B53;
  --bs-accordion-bg: #E6F2F0;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-color: #003B53;
  --bs-accordion-btn-bg: white;
  --bs-accordion-btn-icon-width: 1rem;
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 111, 98, 0.45);
  --bs-accordion-active-color: #003B53;
  --bs-accordion-active-bg: #B0D6D1;
}

.accordion-item {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-color: #B0D6D1;
}

.banner-carousel {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}
.banner-carousel__container {
  display: flex;
  align-items: center;
}
.banner-carousel__track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.banner-carousel__item {
  flex: 0 0 auto;
  /* Adjust for 5 images per row */
  width: 20%;
  box-sizing: border-box;
  padding: 0.25rem;
}
.banner-carousel__item img {
  width: 100%;
  height: 200px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 2px;
}
.banner-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  background-color: red;
}

.banner-carousel__container {
  display: flex;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.banner-carousel__container button {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.banner-carousel__container button:disabled {
  opacity: 0;
}

.banner-carousel__prev {
  background-color: pink;
  background-image: url(../images/svg/banner-carousel-prev.svg);
}

.banner-carousel__next {
  background-color: yellow;
  background-image: url(../images/svg/banner-carousel-next.svg);
}

.banner-carousel__title {
  color: black;
  text-align: center;
}

.banner-carousel--medium {
  background-color: grey;
}

@media screen and (max-width: 47.9em) {
  .banner-carousel__item {
    width: 33%;
  }
}
@media screen and (max-width: 35.9em) {
  .banner-carousel__item {
    width: 50%;
  }
}
.banner-carousel--light:has(*.banner-carousel__title),
.banner-carousel--medium:has(*.banner-carousel__title) {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
}
.gallery-item > img {
  position: relative;
  width: 100%;
  aspect-ratio: 380/253.46;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}
.gallery-item__thumb--blur {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
.gallery-item__thumb--blur img {
  width: 100%;
  aspect-ratio: 380/253.46;
  -o-object-fit: cover;
  object-fit: cover;
  filter: blur(10px);
}

.gallery {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.nav-pills {
  --bs-nav-pills-border-radius: 4px;
  --bs-nav-pills-link-active-color: white;
  --bs-nav-pills-link-active-bg: #007A6C;
  --bs-nav-pills-link-bg: #741b1b;
  --bs-nav-link-color: #003B53;
}
.nav-pills .nav-link {
  width: 100%;
  font-weight: 800;
  background-color: #B0D6D1;
}
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  color: white;
  background-color: #003B53;
}

.profile-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 0.25rem;
  background-color: white;
}
.profile-card__thumb img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}
.profile-card__title {
  color: #003B53;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
}
.profile-card__value {
  color: #006F62;
  text-align: right;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.sitemap {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sitemap--l1 > li > a {
  display: block;
  margin-bottom: 0.5rem;
  padding: var(--spacing-05, 0.25rem) var(--spacing-2, 1rem);
  color: #003B53;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  background-color: #E6F2F0;
}
.sitemap--l2 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
}
.sitemap--l2 li a {
  display: block;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  color: #006F62;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.sitemap--l3 li {
  padding-left: 1.5rem;
}

.header {
  position: relative;
  box-shadow: 0 7px 15px -3px rgba(77, 93, 102, 0.2), 0 4px 6px -2px rgba(32, 71, 105, 0.1);
  z-index: 1;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #006F62;
  z-index: 10;
  color: white;
}
.header--sticky *:not(.u-btn):not(.dropdown-item),
.header--sticky .main-nav__link {
  color: white;
}
.header--sticky *:not(.u-btn):not(.dropdown-item):hover, .header--sticky *:not(.u-btn):not(.dropdown-item):focus,
.header--sticky .main-nav__link:hover,
.header--sticky .main-nav__link:focus {
  color: #003B53;
}
.header--sticky div[class*=col]:has(.brand) {
  width: 100px;
}
.header--sticky .brand__title {
  font-size: 0.1px;
}
.header--sticky .brand:before {
  filter: saturate(0) grayscale(1) brightness(0) invert(1);
}

.page-header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
  background-color: #006F62;
}
.page-header *:not(p.tag),
.page-header * a {
  color: white;
}

.search-section {
  position: relative;
  min-height: 50vh;
  color: white;
  background-image: linear-gradient(90deg, var(--color-dark-primaries-600, #006F62) 0%, rgba(0, 111, 98, 0.8) 50.48%, var(--color-dark-primaries-600, #006F62) 98.08%);
}
.search-section *:not(button):not(select):not(input):not(a):not(option) {
  color: white;
}
.search-section:before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/jpg/students-hallway.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
.search-section--inside {
  background-image: none;
  background-color: #006F62;
}
.search-section--inside:before {
  display: none;
}

.footer {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #006F62;
  color: white;
  z-index: 0;
}
.footer a {
  color: inherit;
}
.footer-bottom ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 0.5rem;
}
.footer-bottom ul li {
  display: inline-block;
}
.footer-bottom ul a {
  font-size: 0.75rem;
}
.footer .u-icon:before {
  filter: invert(1) grayscale(1) brightness(100);
}

.breadcrumbs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.breadcrumbs__item {
  display: inline-flex;
  font-size: 1rem;
  line-height: 1;
}
.breadcrumbs__item a {
  display: block;
}
.breadcrumbs__item:first-of-type a {
  font-weight: 700;
}
.breadcrumbs__item:first-of-type a:after {
  content: "";
  margin-top: 0.125rem;
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
}
.breadcrumbs__item:not(:last-of-type):after {
  top: 0;
  content: "";
  display: block;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
  width: 8px;
  height: 14px;
  background-image: url(../images/svg/divider.svg);
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0) grayscale(1) invert(1);
}

.spacer {
  margin-bottom: 0.5rem;
}

.spacer-m {
  margin-bottom: 1rem;
}

.spacer-sm {
  margin-bottom: 0.5rem;
}

.spacer-xs {
  margin-bottom: 0.25rem;
}

.spacer-xxs {
  margin-bottom: 0.125rem;
}

.spacer-l {
  margin-bottom: 2rem;
}

.spacer-xl {
  margin-bottom: 3rem;
}

.spacer-2xl {
  margin-bottom: 4rem;
}

div[class*=spacer] {
  display: block;
  border: 1px solid rgba(128, 128, 128, 0.2);
}

.main-nav {
  height: 100%;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav__item {
  text-align: center;
  font-style: normal;
  /* 140% */
  letter-spacing: -0.0125rem;
}
.main-nav__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  color: var(--color-dark-primaries-900, #00332D);
  font-size: clamp(0.85rem, 0.85rem + 0.2vw, 1rem);
  font-weight: 800;
  line-height: 1.75rem;
}
.main-nav__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-color: transparent;
}
.main-nav__link:hover:before, .main-nav__link:focus:before, .main-nav__link.active:before {
  background-color: #6FC44F;
}
.main-nav__link:hover, .main-nav__link:focus {
  background-color: #F1F9ED;
}
.main-nav .navbar-nav {
  height: 100%;
}

.dropdown-menu {
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-item-padding-x: 0.75rem;
  --bs-dropdown-item-padding-y: 0.75rem;
  --bs-dropdown-spacer: 0rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: 0;
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-divider-bg: transparent;
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 7px 15px -3px rgba(77, 93, 102, 0.2), 0 4px 6px -2px rgba(32, 71, 105, 0.1);
  --bs-dropdown-link-color: #003B53;
  --bs-dropdown-link-hover-color: #003B53;
  --bs-dropdown-link-hover-bg: #F1F9ED;
  --bs-dropdown-link-active-color: #003B53;
  --bs-dropdown-link-active-bg: #F1F9ED;
  width: 100%;
  text-align: center;
}

.dropdown-item {
  white-space: normal;
}

@media screen and (min-width: 75em) {
  .main-nav > *, .main-nav > * > * {
    height: 100%;
    align-items: stretch;
  }
}
@media screen and (max-width: 61.9em) {
  .main-nav--right {
    position: absolute;
    top: 0;
    right: 0;
  }
  .main-nav > * {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1rem;
  }
}
.footer-title {
  min-height: 3.125rem;
  margin-bottom: 0.75rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.credentials {
  font-size: 0.75rem;
}

.login-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-image--base {
  background-position: bottom right;
  background-image: url(../images/jpg/loginbase.jpg);
}
.login-title {
  color: var(--color-blacks-900, #001824);
  font-size: 2.5rem;
  font-weight: 800;
}
.login-subtitle {
  color: #00574D !important;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}
.login-page {
  min-height: 100vh;
  padding-top: 8vw;
  display: flex;
  flex-direction: column;
}
.login-footer {
  margin-top: auto;
}/*# sourceMappingURL=main.css.map */
