/*Global*/

:root {
    scroll-behavior: auto;
}

::selection {
    background: #005698;
    color: #ffffff;
}

body {
    margin: 0;
    font-family: calluna-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #334156;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    /* overflow-x: clip; */
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
}

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

.gray-bg {
    background: #f1f5f9;
}

input:focus,
textarea:focus {
    outline: none;
}

.btn {
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    line-height: 1.2;
    display: inline-block;
    transition: 0.5s;
    font-weight: 600;
    background: #005698;
    border-radius: 4px;
    border: 1px solid #005698;
}

.btn.big {
    padding: 16px 24px;
    font-size: 20px;
}

.btn:hover {
    background-color: #00457a;
    border-color: #00457a;
}

.btn-secondary {
    border: 1px solid #005698;
    background-color: transparent;
    color: #005698;
}

.btn-secondary:hover {
    background-color: #005698;
    color: #fff;
}

.btn.small-btn {
    font-size: 16px;
    padding: 7px 20px 9px 20px;
}

.btn:hover {
    color: #fff;
}

.btn-full {
    width: 100%;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

button {
    cursor: pointer;
}

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

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

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

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.slick-slide {
    outline: none !important;
}

.no-scroll {
    overflow: hidden !important;
}

.font-400 {
    font-weight: 400;
}

b,
strong {
    font-weight: 700;
}

.space-between-vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*Grid adjust*/
.row {
    margin-right: -20px;
    margin-left: -20px;
}

.container,
.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.row > * {
    padding-right: 20px;
    padding-left: 20px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    padding-right: 20px;
    padding-left: 20px;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 1424px;
        max-width: calc(100% - 70px);
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: calc(100% - 70px);
    }
}

@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: calc(100% - 70px);
    }
}

@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: calc(100% - 70px);
    }
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 100%;
    }
}

/*Header*/

header {
    background: #fff;
    width: 100%;
}

.top-nav-outer {
    position: relative;
    z-index: 100;
    background-color: #fff;
}

.top-nav {
    border-bottom: 1px solid #e1e7ef;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
}

.top-nav > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.top-nav li {
    line-height: 1.2;
    position: relative;
}

.top-nav a,
.lang-nav a {
    color: #334156;
    padding: 16px 12px;
    display: inline-block;
    font-weight: 600;
}

.top-nav a:hover,
.lang-nav a:hover {
    color: #005698;
    background: #f1f5f9;
}

.top-nav .sub-nav,
.lang-nav .sub-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.06), 0px 4px 6px -1px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    background: #fff;
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.5s;
    overflow: hidden;
    z-index: 99;
}

.top-nav .sub-nav a,
.lang-nav .sub-nav a {
    display: block;
    text-align: center;
    padding: 8px 12px;
}

.lang-nav {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: 0.5s;
    text-transform: uppercase;
}

.lang-nav > li:hover > .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.5s;
}

.lang-nav > .current-lang > a {
    background: none;
    color: #4d5f71;
    padding-right: 6px;
}

.lang-nav > .current-lang > a:after {
    content: "";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-family: remixicon !important;
    opacity: 0.5;
    transition: 0.5s;
}

.lang-nav > .current-lang:hover > a {
    color: #334156;
}

.lang-nav > .current-lang:hover > a:after {
    color: #334156;
    opacity: 1;
}

.lang-nav:before {
    content: "";
    width: 1px;
    height: 20px;
    background: #e1e7ef;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
}

.mobile-tools .lang-nav:before {
    display: none;
}

.social-links-outer {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
}

.main-nav-list .social-links-outer {
    display: none;
}

.social-links-inner {
    position: absolute;
    top: 20px;
    left: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.social-links li {
    line-height: 1;
}

.social-links a {
    line-height: 1;
    color: #334156;
}

.social-links i {
    font-size: 20px;
}

.social-links a:hover,
.social-links-inner .contact-link:hover {
    color: #005698;
}

.social-links-inner > span {
    transform: rotate(90deg);
    display: inline-block;
    position: relative;
    margin-top: 24px;
}

.social-links-inner .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transform: rotate(180deg) translateY(-50%);
    position: absolute;
    bottom: 50%;
    margin-bottom: -2px;
    color: #334156;
}

.social-links-inner .contact-link:before {
    content: "";
    width: 30px;
    height: 1px;
    background: #005698;
    display: inline-block;
    transition: 0.3s;
}

.social-links-inner .contact-link:hover:before {
    width: 22px;
}

.search-btn {
    position: relative;
    z-index: 1;
    font-weight: normal !important;
}

.search-btn:after {
    content: "";
    width: 52px;
    height: 52px;
    border-radius: 100%;
    position: absolute;
    left: calc(50% - 26px);
    top: calc(50% - 26px);
    opacity: 0;
    z-index: -1;
    background-color: #f1f5f9;
    transition: 0.5s;
    border: 3px solid transparent;
}

.search-btn:hover,
.search-btn.open {
    color: #005698;
}

.search-btn:hover:after,
.search-btn.open:after {
    opacity: 1;
}

.search-btn.open i:before,
.search-btn-mobile.open i:before {
    content: "";
}

.search-btn.open:after {
    border-color: #e6eef5;
    background-color: transparent;
}

.search-form {
    padding: 30px 0 60px 0;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 98;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: 0.5s;
}

.search-form.search-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.search-form form {
    position: relative;
    margin-bottom: 0;
}

.search-form form input[type="text"] {
    width: 100%;
    font-weight: 700;
    padding: 0 !important;
    color: #334156;
    font-size: 54px !important;
    border: none !important;
    text-align: center;
    line-height: 1.2;
}

.search-form form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    opacity: 0.3;
}

.search-form form input::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 0.3;
}

.search-form form input:-ms-input-placeholder {
    /* IE 10+ */
    opacity: 0.3;
}

.search-form form input:-moz-placeholder {
    /* Firefox 18- */
    opacity: 0.3;
}

.search-form form input[type="submit"],
.search-form form button {
    position: absolute;
    right: 15px;
    top: 59%;
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0;
    font-size: 40px;
    font-weight: normal;
    color: #2b3e54;
}

.search-form .js-form-type-search-api-autocomplete{
    width: 100%;
}

.search-form .form-checkboxes {
    display: none;
}

.search-card a p, .search-card a span{
    color: #1d2839;
}

.main-nav {
    padding: 22px 0 0 0;
    width: 100%;
    z-index: 2;
    background: #fff;
    transition-duration: 0.5s;
    position: sticky;
    top: 0;
    z-index: 99;
}

.main-nav > .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.main-nav.transition {
    transition: 0.5s;
}

.main-nav.sticky {
    box-shadow: 0px 8px 12px -2px rgba(0, 0, 0, 0.06);
}

.main-nav.visible {
    top: 0;
}

.main-nav .logo {
    width: 264px;
    margin-bottom: 22px;
    transition: 0.3s;
}

.main-nav.sticky .logo {
    width: 183px;
}

.main-nav .logo img {
    width: 100%;
    height: auto;
}

.main-nav .main-nav-list > ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 32px;
    padding-left: 0;
}

.main-nav .main-nav-list > ul > li {
    transition: 0.3s;
}

.main-nav .main-nav-list > ul > li > a {
    color: #334156;
    font-weight: 700;
    font-size: 22px;
}

.search-active.main-nav .main-nav-list > ul > li:not(:has(.search-btn)) {
    opacity: 0;
    visibility: hidden;
}

.main-nav .main-nav-list ul li > a:hover {
    color: #005698;
}

.main-nav .main-nav-list > ul > li {
    position: relative;
    padding-bottom: 28px;
}

.main-nav .main-nav-list .sub-nav {
    width: 320px;
    z-index: 95;
    position: absolute;
    top: calc(100% - 20px);
    left: 50%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) translateX(-50%);
    transition: 0.5s;
    padding: 12px;
    border-radius: 4px;
    list-style: none;
    box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.04), 0px 16px 24px -4px rgba(0, 0, 0, 0.08);
}

.main-nav .main-nav-list > ul > li.has-sub:hover > .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}

.main-nav .main-nav-list .sub-nav li > a {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #334156;
    padding: 12px 20px;
    display: block;
    border-radius: 4px;
}

.main-nav .main-nav-list .sub-nav li > a:hover {
    background: #f1f5f9;
}

.main-nav .main-nav-list .sub-nav li.sub-nav-cta > a {
    display: flex;
    padding: 16px 12px 16px 20px;
    align-items: center;
    gap: 8px;
    background: #005698;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 12px;
}

.main-nav .main-nav-list .sub-nav li.sub-nav-cta > a:after {
    content: "";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-family: remixicon !important;
    font-weight: normal;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

.main-nav .main-nav-list .sub-nav li.sub-nav-cta > a:hover {
    background-color: #00457a;
}

.main-nav .main-nav-list .sub-nav li.sub-nav-cta > a:hover:after {
    color: rgba(255, 255, 255, 1);
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    left: 0;
    top: 0;
    z-index: 3;
    display: none;
    cursor: pointer;
}

/*Hero section*/

.hero-section {
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section > .container {
    position: relative;
}

.hero-section-content {
    min-height: 532px;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}

.caption-footer:before {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 12px;
}

.caption-footer ul {
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.caption-footer h5 {
    color: #fff;
}

.caption-footer ul li a {
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    display: inline-block;
    color: #fff;
    line-height: 1.2;
}

.caption-footer ul li a:hover {
    color: #005698;
    background: rgba(255, 255, 255, 1);
}

.hero-section-content .row {
    flex: 1;
}

.hero-section-caption {
    padding: 55px 60px 32px 60px;
    background: rgba(0, 86, 152, 0.6);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-section-caption h1 {
    margin-bottom: 24px;
    color: #fff;
}

/*News section*/

.hero-section + .gray-bg {
    padding-top: 130px;
    margin-top: -65px;
    z-index: 0;
}

.grid-item {
    margin-bottom: 40px;
}

.card {
    color: #334156;
    transition: 0.3s;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1d2839;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
    display: inline;
}

.card h4 {
    display: inline;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
}

.card h3 + p,
.card h4 + p {
    margin-top: 16px;
    line-height: 1.5;
}

.card h4 + p {
    margin-top: 12px;
}

.card p {
    line-height: 1.3;
    margin-bottom: 0;
}

.news-slider .txt-wrap {
    padding-right: 120px;
}

.card .img-wrap {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
}

.card .img-wrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    opacity: 0;
    transition: 0.5s;
}

.card .img-wrap .categories {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 24px 0;
    list-style: none;
}

.categories li {
    padding: 6px 8px;
    color: #fff;
    background-color: #a39c91;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.42px;
    line-height: 1;
}

.news-slider .categories li {
    font-size: 14px;
}

.card.active .img-wrap:after {
    opacity: 0.8;
}

.card:hover {
    color: #334156;
}

.card:hover h3,
.card:hover h4 {
    border-color: #1d2839;
}

.card:not(.active):hover .img-wrap:after {
    opacity: 1;
}

.card:not(.active):hover .img-wrap img {
    transform: scale(1.05);
}

.card .event-date {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 26px;
    line-height: 1.3;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.card .event-date span {
    background: #005698;
    color: #fff;
    padding: 4px 8px;
    line-height: 1.3;
}

.card .event-date span:nth-child(2) {
    margin-top: -7px;
    margin-left: 26px;
}

.card .date {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 16px;
    display: block;
}

.list .grid-item {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
}

.list .grid-item .card .img-wrap {
    width: 53px;
}

.list .grid-item .img-wrap img {
    display: none;
}

.list .grid-item .card .img-wrap .categories {
    position: initial;
}

.list .grid-item .card {
    border-bottom: 1px solid #cbd5e1;
}

.list .grid-item .card .card-header {
    padding: 24px 0;
    display: flex;
    gap: 16px;
    position: relative;
}

.list .grid-item:first-child .card {
    border-top: 1px solid #cbd5e1;
}

.bachelor-card.card h4,
.list .grid-item .card .img-wrap {
    margin-bottom: 0;
}

.bachelor-card.card h4 {
    border-bottom: none !important;
}

.list .grid-item .card .img-wrap:after {
    display: none;
}

.list .grid-item .card .img-wrap {
    top: 4px;
}

.list .grid-item .card {
    position: relative;
}

.list .grid-item .card .accordion-content {
    padding: 0;
}

.grid:not(.list) .card.active .accordion-content {
    opacity: 1;
    visibility: visible;
}

.grid:not(.list) .card .accordion-content {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    transition: 0.3s;
    margin-top: 40px;
    display: block;
}

.bachelor-content {
    display: none;
}

.news-slider-outer {
    position: relative;
}

.news-slider-nav {
    display: inline-flex;
    gap: 8px;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: calc(61.48% + 24px);
}

.prev-slide,
.next-slide {
    font-size: 26px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #005698;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    position: relative;
    line-height: normal;
    cursor: pointer;
    transition: 0.5s;
}

.prev-slide:hover,
.next-slide:hover {
    background: #005698;
    color: #fff;
}

.filters .categories-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 15px;
    margin-bottom: 0;
}

.filters .categories-list label {
    padding: 6px 12px;
    border-radius: 4px;
    background: #e1e7ef;
    color: #1d2839;
    font-size: 14px;
}

.filters .categories-list label:hover {
    background-color: #cbd5e1;
}

.filters .categories-list input[type="radio"]:checked + label {
    background: #334156;
    color: #fff;
}

.filters .categories-list label {
    text-decoration: none;
    transition: 0.5s;

}

.filters .categories-list input[type="radio"] + label:before,
.filters .categories-list input[type="radio"] + label:after {
    display: none;
}

.filters .categories-list input[type="radio"] + label {
    padding-left: 12px;
}

.filters .hide-filter {
    display: none;
}

.load-more {
    margin-top: 8px;
    list-style: none;
}

/* News detail */
.news-date {
    color: #94a3b8;
    display: inline-block;
    margin-bottom: 30px;
}

.related-news {
    border-top: 1px solid #e1e7ef;
    padding-top: 40px;
    margin-top: 40px;
}

.related-news .grid-item {
    margin-bottom: 0;
}

/* Events detail */
.events-date {
    color: #005698;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    display: inline-block;
}

.event-info {
    border-bottom: 1px solid #e1e7ef;
    margin-bottom: 36px;
}

table.event-info th,
table.event-info td {
    vertical-align: top;
    padding: 16px 10px 16px 0;
}

table.event-info tr:nth-child(odd) {
    background: transparent;
}

/* Schools section */
.school-row {
    row-gap: 12px;
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 48px;
    position: relative;
}

.gray-bg + section .school-row:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    bottom: calc(100% - 50px);
    left: calc(0px - ((100vw - 100%) / 2));
    background: #f1f5f9;
    z-index: -1;
}

.school-row > * {
    padding-left: 6px;
    padding-right: 6px;
}

.school-card {
    display: block;
    color: #fff;
    aspect-ratio: 9 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px 40px;
    text-align: center;
    height: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.school-card h3 {
    margin-bottom: 12px;
    font-weight: 700;
    transition: 0.3s;
    color: #fff;
}

.school-card p {
    margin-bottom: 0;
    font-size: 20px;
    transition: 0.3s;
}

.school-card:after {
    content: "";
    opacity: 0.9;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

.school-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: grayscale(100%);
}

.hover-txt {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.school-card:hover {
    color: #fff;
}

.school-card:hover h3 {
    transform: translateY(-20px);
    opacity: 0;
}

.school-card:hover p {
    transform: translateY(20px);
    opacity: 0;
}

.school-card:hover:after {
    opacity: 0.7;
}

.school-card:hover .hover-txt {
    opacity: 1;
}

.right-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translateX(100%);
    transition: 0.5s;
    width: 360px;
    max-width: 100%;
    height: 100%;
    display: flex;
}

.right-menu-inner {
    background: #fff;
    display: flex;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    position: relative;
}

.right-menu-inner::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: #f1f5f9;
}

.right-menu-inner::-webkit-scrollbar-corner {
    background: #f1f5f9;
}

.right-menu-inner::-webkit-scrollbar-thumb {
    background: #e1e7ef;
    border-radius: 0;
}

.right-menu:after {
    content: "";
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    right: 100%;
    top: 0;
    position: fixed;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.right-menu.active:after {
    opacity: 0.7;
    visibility: visible;
}

.right-menu-inner > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right-menu.active {
    transform: translateX(0);
}

.right-menu .logo img {
    height: 70px;
    width: auto;
    margin: 0 auto 35px auto;
    display: block;
}

.right-menu-top {
    padding: 40px 24px 0 24px;
}

.right-menu-footer {
    padding: 20px 24px;
    background: #f1f5f9;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.right-menu-footer .btn {
    width: 100%;
    white-space: nowrap;
}

.right-menu .close-menu {
    font-size: 32px;
    position: absolute;
    right: 12px;
    top: 12px;
    line-height: 1;
    color: #94a3b8;
    transition: 0.3s;
}

.right-menu .close-menu:hover {
    color: #334156;
}

/* Call to action */

.cta-row {
    row-gap: 12px;
    margin-left: -6px;
    margin-right: -6px;
}

.cta-row > * {
    padding-left: 6px;
    padding-right: 6px;
}

.cta {
    padding: 40px 40px 48px 40px;
    background-color: #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #334156;
    aspect-ratio: 49 / 24;
    max-width: 100%;
    height: 100%;
}

.cta:hover {
    color: #334156;
    background-color: #e1e7ef;
}

.cta.active {
    background-color: #e1e7ef;
}

.cta h3 {
    color: #1d2839;
    margin-bottom: 12px;
}

.cta p {
    margin-bottom: 0;
}

.cta .lord-icon {
    margin-bottom: 12px;
}

.school-map-cta {
    position: relative;
}

.school-map-cta:after {
    content: "\eb99";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #94a3b8;
    transition: 0.3s;
    line-height: 1;
}

.school-map-cta.active:after {
    opacity: 1;
}

.school-map {
    background-color: #f1f5f9;
    height: 500px;
    display: none;
    margin-top: 12px;
}

.school-map iframe {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.school-map iframe.active {
    opacity: 1;
}

/*Section image + text*/

.subtitle {
    color: #005698;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.img-txt-center [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.img-txt-center [class*="col-"].txt-col {
    margin-top: auto;
    margin-bottom: auto;
}

.img-txt-center [class*="col-"] *:last-child {
    margin-bottom: 0;
}

.gray-bg:has(.sigle-hes-so-ge) + section.img-txt {
    margin-top: -132px;
}

.gray-bg:has(.sigle-hes-so-ge) + section .img-txt-center [class*="col-"].txt-col {
    padding-top: 106px;
    padding-bottom: 106px;
}

section {
    padding: 75px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.gray-bg:has(.sigle-hes-so-ge):has(+ .img-txt:not(.gray-bg)) {
    padding-bottom: 207px;
}

.img-txt p {
    font-size: 20px;
}

/* Testimonials slider */

.testimonials-section {
    z-index: 1;
}

.testimonials-section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 75px - 60px);
    background-color: #f1f5f9;
    bottom: 0;
    z-index: -1;
}

.testimonials-slider .testimonials-slide-inner {
    padding-right: calc((100% - 1384px) / 2);
    padding-left: calc((100% - 1384px) / 2);
}

@media (max-width: 1440px) {
    .testimonials-slider .testimonials-slide-inner {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.testimonials-slider-nav {
    display: flex;
    margin-top: 24px;
    align-items: center;
    gap: 20px;
}

.testimonials-slider-nav .nav {
    display: inline-flex;
    gap: 8px;
}

.testimonial-slide .quote {
    z-index: 1;
    position: absolute;
    left: calc(100% - 35px);
    top: 27px;
    width: 28%;
}

.testimonial-slide blockquote {
    padding: 0;
    border: none;
    margin-top: 20px;
}

.testimonial-slide .txt-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.testimonial-slide .img-wrap {
    position: relative;
    z-index: 1;
}

.testimonial-slide .img-wrap.video {
    cursor: pointer;
    padding-bottom: 56.25%;
    margin-bottom: 43.75%;
}

.testimonial-slide .img-wrap.video .testimonial-img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
}

.testimonial-slide .img-wrap.video:after {
    content: url(../img/player.svg);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    z-index: 1;
    transition: 0.3s;
}

.testimonial-slide .img-wrap.video:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.testimonial-slide .img-wrap.video:hover:before {
    background-color: rgba(0, 0, 0, 0.4);
}

.testimonial-slide .img-wrap.video:hover:after {
    width: 82px;
    height: 82px;
}

.testimonial-slide .img-wrap.video.active:before,
.testimonial-slide .img-wrap.video.active:after,
.testimonial-slide .img-wrap.video.active .testimonial-img {
    opacity: 0;
    visibility: hidden;
}

.testimonial-slide .img-wrap video,
.testimonial-slide .img-wrap .video-filter
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 0;
    margin: 0px;
    text-align: center;
    display: inline-flex;
    gap: 8px;
}

.slick-dots li {
    display: inline-block;
    line-height: 0;
}

.slick-dots li:first-child:last-child {
    display: none;
}

.slick-dots li button {
    text-indent: -99999px;
    background: #005698;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    padding: 0;
    opacity: 0.2;
    cursor: pointer;
    transition: 0.5s;
    outline: none;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

/* Tabs group */

.tabs-group {
    margin-bottom: 24px;
}

.tabs-group .tabs-nav ul {
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
}

.tabs-group.larger .tabs-nav {
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, -10%));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, -10%));
}

.tabs-group .tabs-nav ul li {
    padding: 16px 14px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tabs-group .tabs-nav ul li {
    font-weight: 600;
    color: #334156;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.72px;
    transition: 0.5s;
    opacity: 0.5;
}

.tabs-group .tabs-nav ul li:after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}

.tabs-group .tabs-nav ul li:hover {
    color: #334156;
    opacity: 1;
}

.tabs-group .tabs-nav ul li.slick-current {
    color: #334156;
    opacity: 1;
}

.tabs-group .tabs-nav ul li.slick-current:after {
    background: #005698;
}

.tabs-group .tab {
    transition: all 0.5s ease;
    position: relative;
    left: -40px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.tabs-group .tab hr {
    margin: 22px 0;
}

.tabs-group .tab p {
    margin-bottom: 24px;
}

.tabs-group .tab > *:last-child {
    margin-bottom: 0;
}

.tabs-group .tab.active {
    left: 0px;
    opacity: 1;
    height: auto;
}

/* Accordion group */

.accordions-group {
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
}

.accordions-group > h3 {
    margin-bottom: 22px;
}

.accordions-group + .accordions-group {
    margin-top: 22px;
}

.sigle-hes-so-ge {
    position: absolute;
    transform: translateX(-40%);
}

.accordion-item {
    border-top: solid 1px #cbd5e1;
    transition: 0.5s;
}

.accordion-item:last-child {
    border-bottom: solid 1px #cbd5e1;
}

.accordion-item.open,
.accordion-item:hover {
    border-color: #334156;
}

.accordion-item.open + .accordion-item,
.accordion-item:hover + .accordion-item {
    border-top-color: #334156;
}

.accordion-header {
    position: relative;
    cursor: pointer;
}

.accordion-header > h1,
.accordion-header > h2,
.accordion-header > h3 {
    font-size: 26px;
}

.accordion-header > * {
    font-weight: 700;
    line-height: 1.3;
    padding: 24px 36px 24px 0;
    margin-bottom: 0;
    color: #1d2839;
}

.accordion-content .accordion-item {
    margin-left: 14px;
    margin-right: 14px;
}

.accordion-content .accordion-header > * {
    padding: 18px 36px 18px 0px;
}

.accordion-content .accordion-header:after {
    font-size: 18px;
}

.accordion-header:after,
.list .card-header:after {
    content: "\ea4e";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    transform-origin: center center;
    color: #005698;
}

.accordion-header.active:after,
.list .card-header.active:after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion-content {
    display: none;
    padding-bottom: 32px;
}

.accordion-content > *:last-child {
    margin-bottom: 0;
}

/*Page component*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #1d2839;
}

h1,
h2 {
    line-height: 1.2;
}

h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

h1 {
    font-size: 54px;
    position: relative;
    margin-bottom: 40px;
}

h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

*:not(.subtitle) + h2 {
    margin-top: 34px;
}

h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

*:not(.subtitle) + h3 {
    margin-top: 28px;
}

h4 {
    font-size: 26px;
    margin-bottom: 12px;
}

*:not(.subtitle) + h4 {
    margin-top: 22px;
}

h5 {
    font-size: 21px;
    margin-bottom: 8px;
}

*:not(.subtitle) + h5 {
    margin-top: 18px;
}

h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.heading-area {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 24px;
    margin-bottom: 25px;
}

.heading-area h1,
.heading-area h2,
.heading-area h3,
.heading-area h4,
.heading-area h5,
.heading-area h6 {
    margin-bottom: 0;
}

p {
    margin-top: 0;
    margin-bottom: 27px;
    line-height: 1.5;
}

p.address,
p.phone,
p.email,
p.website {
    position: relative;
    padding-left: 40px;
}

p.address:before,
p.phone:before,
p.email:before,
p.website:before {
    position: absolute;
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    left: 0;
    top: 3px;
    font-size: 24px;
    line-height: 1;
}

p.address:before {
    content: "\ef14";
}

p.phone:before {
    content: "\efec";
}

p.email:before {
    content: "\eef6";
}

p.website:before {
    content: "\edcf";
}

p a,
ul.content-ul a,
ol.content-ol a,
.paragraph li a,
label a,
table a,
.alert a {
    background-image: linear-gradient(to bottom, #005698 100%, #005698 100%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0px 100%;
    color: #005698;
}

p a:hover,
ul.content-ul a:hover,
ol.content-ol a:hover,
label a:hover,
table a:hover,
.alert a:hover {
    color: rgba(0, 86, 152, 0.7);
    background-size: 100% 1px;
    background-image: linear-gradient(to bottom, rgba(0, 86, 152, 0.7) 100%, rgba(0, 86, 152, 0.7) 100%);
}

.alert a {
    color: rgba(255, 255, 255, 0.7);
    background-image: linear-gradient(to bottom, #fff 100%, #fff 100%);
}

.alert a:hover {
    color: rgba(255, 255, 255, 1);
    background-image: linear-gradient(to bottom, #fff 100%, #fff 100%);
}

.alert a.close-notification {
    background: none;
}

/*.blue-box p a,
.blue-box ul.content-ul a,
.blue-box ol.content-ol a,
.blue-box label a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.blue-box p a:hover,
.blue-box ul.content-ul a:hover,
.blue-box ol.content-ol a:hover,
.blue-box label a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}*/

a:has(i) {
    background: none;
}
a:has(i):hover {
    background: none;
}

.page-header {
    text-align: center;
    position: relative;
    color: #fff;
    z-index: 1;
    min-height: 365px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background-position: 50% 50%;
}

.page-header h1 {
    margin-bottom: 0;
    line-height: 1.2;
    color: #fff;
}

.page-header .parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
}

.back-btn {
    display: inline-flex;
    padding-right: 16px;
    margin-right: 16px;
    gap: 4px;
    align-items: center;
    position: relative;
    line-height: normal;
    padding-left: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.back-btn:before {
    content: "\ea64";
    display: inline-block;
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    font-size: 18px;
    left: 0;
    position: absolute;
    color: #65758b;
    transition: 0.3s;
}

.back-btn:hover {
    color: #005698;
}

.back-btn:hover:before {
    left: -5px;
}

.back-btn:after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #cbd5e1;
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
}

.breadcrumb {
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-tools {
    border-top: 1px solid #e1e7ef;
    border-bottom: 1px solid #e1e7ef;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 20px;
}

body:has(.page-header) .page-tools {
    border: none;
}

.breadcrumb span.back-btn:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #334156;
}

.breadcrumb a:hover {
    color: #005698;
}

.breadcrumb i {
    margin: 0px 8px;
    color: #cbd5e1;
    position: relative;
    font-size: 18px;
    top: 2px;
}

.breadcrumb .current {
    font-weight: 700;
}

.share-btn:before {
    content: "\f0fe";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    transition: 0.3s;
    line-height: 1;
    transform-origin: center;
}

.share-btn {
    color: #334156;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.share-btn:hover {
    color: #005698;
}

.share-box {
    font-size: 18px;
    align-items: center;
    display: flex;
    position: relative;
}

.share-box a {
    color: #334156;
}

.share-btn:before {
    color: #65758b;
}

.share-box a:hover {
    color: #005698;
}

.share-link {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-right: 24px;
    gap: 12px;
}

.share-link li {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.5);
}

.share-link li:last-child {
    transition-delay: 0.3s;
}

.share-link li:nth-child(3) {
    transition-delay: 0.2s;
}

.share-link li:nth-child(2) {
    transition-delay: 0.1s;
}

.share-link li:first-child {
    transition-delay: 0s;
}

.share-box.open .share-link li:first-child {
    transition-delay: 0.3s;
}

.share-box.open .share-link li:nth-child(2) {
    transition-delay: 0.2s;
}

.share-box.open .share-link li:nth-child(3) {
    transition-delay: 0.1s;
}

.share-box.open .share-link li:last-child {
    transition-delay: 0s;
}

.share-box.open li {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.share-box.open .share-btn:before {
    content: "\eb99";
    transform: rotate(-180deg);
}

#copy-message {
    display: none;
    color: #005698;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
}

.heading-p {
    font-family: calluna, serif;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.heading-p:after,
.events-date:after {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    margin-top: 24px;
    background: #cbd5e1;
}

a.download-link:after,
a.external-link:after,
a.mailto-link:after {
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 3px;
    font-weight: normal;
}

a.download-link,
a.external-link,
ul.content-ul a.download-link,
ul.content-ul a.external-link,
ol.content-ol a.download-link,
ol.content-ol a.external-link,
a.mailto-link,
ul.content-ul a.mailto-link,
ol.content-ol a.mailto-link {
    background-size: calc(100% - 21px) 1px !important;
}

a.external-link:after {
    content: "\ea70";
}

a.download-link:after {
    content: "\ecc3";
}

a.mailto-link:after {
    content: "\eef6";
}

.quicklinks {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quicklinks a {
    color: #005698;
    display: inline-flex;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 8px;
    line-height: 1.3;
}

.quicklinks a:hover {
    background-color: #f1f5f9;
}

.quicklinks a:after {
    display: none;
}

.quicklinks a:before {
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.quicklinks a.download-link:before {
    content: "\ecc3";
}

.quicklinks a.internal-link:before {
    content: "\ea6c";
}

.quicklinks a.external-link:before {
    content: "\ea70";
}

ul.content-ul li.special-link-contains {
    padding-right: 25px;
}

ul.content-ul,
ul.content-ul ul,
ol.content-ol,
ol.content-ol ol {
    list-style: none;
    padding: 0;
}

ul.content-ul,
ol.content-ol {
    margin-bottom: 40px;
    margin-left: 10px;
}

ul.content-ul ul {
    margin: 0 0 20px 0;
}

ol.content-ol ol {
    margin: 0 0 7px 0;
}

ul.content-ul li {
    padding: 0 0px 0 20px;
    position: relative;
    margin-bottom: 14px;
}

ol.content-ol,
ol.content-ol ol {
    counter-reset: legal;
    list-style-type: none;
    padding: 0;
}

ol.content-ol li {
    padding: 0px;
    position: relative;
    margin-bottom: 13px;
    display: table;
}

ol.content-ol li:before {
    content: counters(legal, ".") ".";
    counter-increment: legal;
    margin-right: 10px;
    display: table-cell;
    padding-right: 15px;
}

ul.content-ul > li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    background: #2b3e54;
    border-radius: 100%;
}

ul.content-ul > li > ul li:first-child,
ol.content-ol > li > ol li:first-child {
    margin-top: 13px;
}

ol.content-ol > li > ol li:last-child {
    margin-bottom: 0;
}

ul.content-ul > li > ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border: solid 1px #2b3e54;
    border-radius: 100%;
}

.table-responsive {
    display: block;
    width: calc(100% + 20px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
    padding-bottom: 10px;
    padding-right: 20px;
}

.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: #eaebec transparent;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
    background-color: transparent;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: #eaebec;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-track {
    background-color: transparent;
}

table {
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
    width: 100%;
}

table thead {
    font-weight: 700;
    border-bottom: 3px solid #e1e7ef;
}

table th,
table td {
    padding: 16px 20px;
    vertical-align: top;
}

.directory table td {
    vertical-align: middle;
}

table th {
    vertical-align: bottom;
}

table tbody tr {
    border-bottom: 1px solid #e1e7ef;
}

table tbody td {
    padding: 20px;
}

table tbody tr:nth-child(odd) {
    background: #f1f5f9;
}

table h6 {
    font-size: 18px;
    margin: 0;
    color: #005698;
}

table [class^="sort-"] {
    font-weight: normal;
    color: #94a3b8;
}

.loader.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
    color: #1d2839;
    font-size: 62px;
}

table img {
    min-width: 24px;
}

table tr.tr-link {
    cursor: pointer;
    transition: 0.3s;
}

table tr.tr-link:hover {
    color: #fff;
    background-color: #005698;
}

table tr.tr-link:hover h6 {
    color: #fff;
}

.views-infinite-scroll-content-wrapper table thead, .views-infinite-scroll-content-wrapper .tableresponsive-toggle-columns{
    display: none;
}

.views-infinite-scroll-content-wrapper table:first-of-type thead{
    display: table-header-group;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.directory a[href^="mailto"] {
    font-size: 22px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: transparent;
    width: 54px;
    height: 54px;
}

.directory td:has(a[href^="mailto"]) {
    width: 170px;
}

.directory a[href^="mailto"]:hover {
    color: #005698;
    background-color: #e1e7ef;
}

.directory a[href^="mailto"][data-tooltip]:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateY(20px) translateX(-50%);
    border-radius: 3px;
    background: #005698;
    padding: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: 170px;
}

.directory a[href^="mailto"][data-tooltip]:before {
    content: "";
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    border-top: solid 8px #005698;
    position: absolute;
    left: calc(50% - 8px);
    transform: translateY(20px);
    bottom: calc(100% + 5px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.directory a[href^="mailto"][data-tooltip]:hover:after {
    transform: translateY(0px) translateX(-50%);
    opacity: 1;
    visibility: visible;
}

.directory a[href^="mailto"][data-tooltip]:hover:before {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.directory td.views-field-field-last-name,
.directory td.views-field-field-first-name {
    font-size: 18px;
    font-weight: 700;
    color: #005698;
    white-space: nowrap;
}

.directory .load-more{
    margin-top: 58px;
}

.special-link-group {
    margin-bottom: 44px;
}

.special-link {
    border: 1px solid #cbd5e1;
    margin-bottom: 24px;
    padding: 20px;
    display: block;
    position: relative;
    color: #1d2839;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 74px;
}

.special-link:hover {
    background-color: #f1f5f9;
    color: #005698;
}

.special-link span {
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-top: 4px;
}

.special-link:before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #005698;
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    line-height: 1;
}

.special-link:after {
    content: "";
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    top: 20px;
    left: 58px;
    background-color: #cbd5e1;
    margin: 0;
}

.special-link.pdf-link:before {
    content: "\ecc3";
}

.special-link.intern-link:before {
    content: "\ea6c";
}

.special-link.extern-link:before {
    content: "\ea70";
}

hr {
    margin: 20px 0;
    border: none;
    border-bottom: 1px solid #e1e7ef;
    opacity: 1;
    width: 100%;
}

.call-to-action {
    margin-bottom: 20px;
    display: block;
}

.call-to-action h5 {
    margin-top: 0;
}

.call-to-action img {
    margin-bottom: 20px;
}

.call-to-action h4 {
    margin-bottom: 12px;
}

.call-to-action:after {
    content: "\ea6c";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    color: #005698;
    font-size: 24px;
    display: block;
    line-height: 1;
}

.quote-wrap {
    margin: 40px 0 40px 0;
    width: calc((100% / 7) * 5);
}

blockquote {
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    border-left: 2px solid #005698;
    padding: 0 0 0 24px;
    margin: 0 0 20px 0;
    position: relative;
    color: #334156;
    font-family: calluna, serif;
}

cite {
    line-height: 1.3;
}

cite b {
    font-style: normal;
}

blockquote p {
    margin-bottom: 5px;
}

figure {
    margin: 0 0 24px 0;
}

figure figcaption {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 12px;
}

p img.float-left {
    padding: 0 40px 30px 0;
}

p img.float-right {
    padding: 0 0 30px 40px;
}

.lightgallery {
    margin: 0 -5px;
    margin-bottom: 24px;
}

.lightgallery [class*="col-"] {
    padding: 0 5px;
    margin-bottom: 10px;
}

.lightgallery .gallery-item {
    position: relative;
    cursor: pointer;
}

.lightgallery .gallery-item:after {
    content: "\f2db";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 75px;
    opacity: 0;
    transition: 0.5s;
}

.lightgallery .gallery-item:hover:after {
    opacity: 1;
}

.color-box {
    margin-bottom: 24px;
    padding: 32px;
}

.color-box *:last-child {
    margin-bottom: 0;
}

.gray-box {
    background-color: #f1f5f9;
}

.blue-box {
    background-color: #005698;
    color: #fff;
}

.blue-box *, .blue-box li a {
    color: #fff;
}

.blue-box a, .blue-box li a {
    background-image: linear-gradient(to bottom, #fff 100%, #fff 100%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0px 100%;
}

.blue-box a:hover, .blue-box li a:hover {
    color: #fff;
    opacity: 0.7;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 100%, rgba(255, 255, 255, 0.7) 100%);
}

.alert-group {
    margin-bottom: 24px;
}

.alert {
    padding: 20px;
    font-weight: normal;
    margin-bottom: 12px;
    position: relative;
    color: #fff;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.3;
}

.alert:before {
    content: "";
    display: inline-block;
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 1;
    margin-top: 1px;
}

.alert-error {
    background-color: #db1f4d;
}

.alert-error:before {
    content: "\eca1";
    color: #950a1b;
}

.alert-danger {
    background-color: #f5961e;
}

.alert-danger:before {
    content: "\ea21";
    color: #a45d0f;
}

.alert-info {
    background-color: #0278d5;
}

.alert-info:before {
    content: "\ee59";
    color: #0f538f;
}

.alert-success, .alert-status {
    background-color: #008539;
}

.alert-success:before, .alert-status:before {
    content: "\eb81";
    color: #00592a;
}

.notification {
    font-size: 16px;
    justify-content: center;
    padding: 14px 60px 14px 20px;
    position: relative;
    margin-bottom: 0;
    z-index: 99;
}

.notification p {
    margin-bottom: 0;
}

.notification:before {
    font-size: 24px;
    margin-top: -1px;
    margin-bottom: -1px;
}

.notification .close-notification {
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.notification .close-notification:after {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: 0.3s;
}

.notification .close-notification:hover {
    color: #fff;
}

.notification .close-notification:hover:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.hero-section-content .notification {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.hero-section-content .notification.alert-error {
    background-color: rgba(219, 31, 77, 0.8);
}

.hero-section-content .notification.alert-danger {
    background-color: rgba(245, 150, 30, 0.8);
}

.hero-section-content .notification.alert-info {
    background-color: rgba(2, 120, 213, 0.8);
}

.hero-section-content .notification.alert-success {
    background-color: rgba(0, 133, 57, 0.8);
}

form {
    margin-bottom: 44px;
}

form .row {
    margin-left: -12px;
    margin-right: -12px;
}

form .row > * {
    padding: 0 12px;
}

.field-group {
    position: relative;
    margin-bottom: 22px;
}

form label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

textarea {
    height: 165px;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 2px;
    border: 1px solid #cbd5e1;
    font-size: 16px;
    outline: none;
    transition: 0.5s;
    line-height: normal;
}

input::placeholder {
    color: #94a3b8;
    font-size: 400;
}

textarea::placeholder {
    color: #334156;
    font-size: 400;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):focus,
textarea:focus {
    border-color: #005698;
}

input[type="file"] {
    border-bottom: solid 1px #e1e7ef;
    padding-bottom: 13px;
    margin-bottom: 40px;
    border-radius: 0;
    display: inline-block;
    width: 100%;
}

label + input[type="file"] {
    margin-top: 6px;
}

.date-field:after {
    content: "\eb27";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 12px;
    bottom: 13px;
    line-height: 1;
}

.radio-group,
.checkbox-group {
    margin-bottom: 32px;
}

label + .radio-group,
label + .checkbox-group {
    margin-top: 12px;
}

.radio-group label,
.checkbox-group label {
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"] {
    vertical-align: top;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    line-height: 0;
    width: 16px;
    height: 16px;
    margin: 3px 10px 3px 0;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    transition: 0.5s;
    border-radius: 0;
    float: left;
}

input[type="checkbox"]:checked {
    background: #005698;
    border-color: #005698;
}

input[type="checkbox"]:checked:before {
    content: "\eb7b";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 7px 0px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
}

input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 100%;
    transition: 0.5s;
}

input[type="radio"]:checked + label:before {
    border-color: #005698;
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #005698;
    position: absolute;
    top: 7px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

select {
    display: none;
}

.dropdown {
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-weight: normal;
    outline: none;
    border-radius: 2px;
    padding: 12px 42px 12px 12px;
    border: 1px solid #cbd5e1;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    user-select: none;
    width: 100%;
    z-index: 1;
    margin-bottom: 24px;
    line-height: normal;
    font-size: 16px;
}

.dropdown .current {
    color: #94a3b8;
}

.dropdown.filled .current {
    color: #334156;
}

.dropdown:after {
    line-height: 1;
    transform-origin: top center;
    transition: all 0.125s ease-in-out;
    content: "\ea4e";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: rotate(0deg) translateY(-50%);
    font-size: 18px;
    color: #334156;
}

.dropdown.open:after {
    transform: rotate(-180deg) translateY(-50%);
}

.dropdown.open .list {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown.open .option {
    cursor: pointer;
}

.dropdown.wide {
    width: 100%;
}

.dropdown.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.dropdown .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transform: scale(0.75);
    transform-origin: 50% 0;
    background-color: #fff;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    min-width: 100%;
    max-width: inherit;
    top: calc(100% + 9px);
    left: 0px;
    z-index: 999;
    border: 1px solid #e1e7ef;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.06), 0px 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.dropdown .list ul {
    height: auto;
    max-height: 380px;
    overflow: auto;
    padding: 0;
    margin: 0;
    position: relative;
}

.dropdown .option {
    cursor: default;
    font-weight: normal;
    outline: none;
    display: block;
    text-transform: none;
    padding: 12px;
    text-align: left;
    transition: all 0.2s;
    border-bottom: 1px solid #e1e7ef;
}

.dropdown .option:hover,
.dropdown .option:focus {
    background-color: #f1f5f9;
}

.dropdown .option.selected {
    color: #fff;
    background-color: #005698;
    display: flex;
    justify-content: space-between;
}

.dropdown .option.selected:after {
    content: "\eb7b";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 18px;
}

.dropdown.open {
    border-color: #005698;
    z-index: 2;
}

* + .filters {
    margin-top: 48px;
}

.filters {
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12px;
}

.filters form {
    width: 100%;
    margin-bottom: 0;
}

.filters .js-form-type-textfield.form-item-combine input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
.filters .js-form-type-textfield.form-item-combine textarea,
.search-page input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]).form-autocomplete {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid #e1e7ef;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    padding-left: 32px;
    overflow: hidden;
}

.search-page input[type="submit"] {
    display: none;
}

.filters .js-form-type-textfield.form-item-combine input::placeholder,
.filters .js-form-type-textfield.form-item-combine textarea::placeholder,
.search-page input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]).form-autocomplete::placeholder {
    color: #65758b;
}

.filters .js-form-type-textfield.form-item-combine, .search-page .js-form-type-search-api-autocomplete {
    position: relative;
    margin-bottom: 0;
    display: flex;
}

.search-page .js-form-type-search-api-autocomplete {
    width: 100%;
}



.filters .js-form-type-textfield.form-item-combine:before,
.search-page .js-form-type-search-api-autocomplete:before {
    content: "\f0d1";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 24px;
    font-size: 24px;
    line-height: 1;
}

.filters legend,
.filters .form-checkbox {
    display: none;
}

#views-exposed-form-list-of-directory-card-block-page-annuaire .filters{
    display: block;
}

.filters .alphabet {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #e1e7ef;
}

.filters .alphabet input {
    display: none;
}

.filters .alphabet li label {
    color: #1d2839;
    text-transform: uppercase;
    padding: 24px 12px;
    font-weight: 700;
    line-height: normal;
    border-bottom: 3px solid transparent;
    display: block;
    margin-bottom: -1px;
    cursor: pointer;
}

.filters .alphabet li:not(.active) label:hover {
    background-color: #f1f5f9;
    color: #005698;
}

.filters .alphabet li.active label {
    border-color: #005698;
}

.filters .view-switcher {
    display: flex;
    gap: 12px;
}

.filters .view-switcher a {
    font-size: 24px;
    color: #1d2839;
    opacity: 0.5;
}

.filters .view-switcher a.active {
    opacity: 1;
}

.page-image-wrap {
    width: calc((100% + 30px) + ((100% / 3) * 2));
    float: right;
}

.page-image-wrap + * {
    clear: left;
}

.page-image-wrap .page-image {
    margin-bottom: 56px;
}

.sidebar h5 {
    margin: 0 0 20px 0;
}

.main-content {
    padding-bottom: 136px;
}

.main-content:has(section:last-child) {
    padding-bottom: 0;
}

.main-content-col > *:last-child {
    margin-bottom: 0;
}

.sidebar p,
.sidebar a:not(.btn),
.sidebar ul {
    font-size: 16px;
}

.sidebar p {
    margin-bottom: 21px;
    line-height: 1.3;
}

.sidebar .event-card p {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
}

.sidebar .event-card {
    font-size: 14px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav > ul > li {
    transition: 0.5s;
}

.sidebar-nav ul li > a {
    display: block;
    padding: 12px 16px;
    line-height: 1.3;
}

.sidebar-nav > ul > li:hover {
    border-color: #005698;
}

.sidebar-nav ul li.active > a {
    font-weight: 700;
}

.sidebar-nav ul li.current > a {
    font-weight: 700;
    background-color: #f1f5f9;
}

.sidebar-nav ul li.current > ul.open  {
    display: block;
}

.sidebar-nav ul li.has-children {
   position:relative
}

.sidebar-nav .nav-trigger:after {
    content: "\ea11";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    padding: 13.4px 16px;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.sidebar-nav .nav-trigger.open:after {
    content: "\ee57";
}

.sidebar-nav ul li ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 24px;
    display: none;
}

.sidebar-nav ul li.active > ul {
    display: block;
}

.sidebar-nav a {
    color: #1d2839;
}

.sidebar-nav a:hover {
    background-color: #f1f5f9;
}

.sidebar-box {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #cbd5e1;
}

.sidebar-box:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.sidebar-box > *:last-child {
    margin-bottom: 0;
}

.sidebar .color-box {
    padding: 20px 20px 30px 20px;
}

.sidebar-nav-wrap:has(.anchor-menu) {
    position: sticky;
    top: 120px;
}

.anchor-menu ul li a.active {
    background-color: #f1f5f9;
}

div.video-filter {
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 45px;
    position: relative;
}

div.video-filter iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.iframe-video {
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 45px;
    position: relative;
}

.iframe-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

img + p {
    margin-top: 35px;
}

.sidebar img + p {
    margin-top: 15px;
}

.sidebar img + img {
    margin-top: 35px;
}

/*
.contact-map {
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid #e1e7ef;
}*/

.contact-map iframe {
    width: 100%;
    height: 470px;
}

/*Footer*/
footer {
    background: #1d2839;
    color: #fff;
    padding-top: 75px;
    position: relative;
    font-size: 16px;
    line-height: 1.3;
}

footer .footer-logo {
    margin-bottom: 32px;
    display: block;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer a {
    color: #94a3b8;
    background: none;
}

footer a:hover {
    color: #ffffff;
    background: none;
}

footer p {
    line-height: 1.3;
    margin: 0 0 26px 0;
}

footer .social-links li {
    display: inline-block;
    margin-bottom: 0;
}

footer .social-links {
    gap: 18px;
    align-items: flex-end;
}

footer .social-links li a {
    font-size: 30px;
    color: #94a3b8;
}

footer .social-links li a:hover {
    color: #fff;
}

footer .logo-footer a {
    width: 275px;
    height: auto;
    display: inline-block;
    position: relative;
    z-index: 1;
}

footer .footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 30px;
}

footer .sub-footer {
    border-top: solid 1px #334156;
    margin-top: 45px;
    padding: 30px 0;
    font-size: 14px;
}

footer .sub-footer ul {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

footer .sub-footer ul li a {
    color: #ffffff;
}

body:not(:has(.home)) footer:after {
    content: url(../img/sigle_hes-so_ge_blue.svg);
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: -1;
    display: block;
}

.back-to-top {
    position: fixed;
    width: 48px;
    height: 48px;
    background: rgba(0, 86, 152, 0.1);
    right: 35px;
    bottom: 42px;
    border-radius: 100%;
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.back-to-top:hover {
    background: rgba(0, 86, 152, 1);
    color: #fff;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
.mobile-tools {
    display: none;
}

/* School colors */
.categories li.hes-so {
    background-color: #005698;
}

.categories li.hepia,
[data-school="hepia"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="hepia"].active .img-wrap:after,
.school-card.hepia:after,
.right-menu[data-school="hepia"]:after,
.right-menu[data-school="hepia"] .btn:not(.btn-secondary),
.right-menu[data-school="hepia"] .btn.btn-secondary:hover {
    background-color: #dd0069;
}

.right-menu[data-school="hepia"] .btn {
    border-color: #dd0069;
    color: #dd0069;
}

.right-menu[data-school="hepia"] .btn:not(.btn-secondary):hover {
    border-color: #b10054;
    background: #b10054;
}

.right-menu[data-school="hepia"] .accordion-header:after {
    color: #dd0069;
}

.categories li.hets,
[data-school="hets"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="hets"].active .img-wrap:after,
.school-card.hets:after,
.right-menu[data-school="hets"]:after,
.right-menu[data-school="hets"] .btn:not(.btn-secondary),
.right-menu[data-school="hets"] .btn.btn-secondary:hover {
    background-color: #00975f;
}

.right-menu[data-school="hets"] .btn {
    border-color: #00975f;
    color: #00975f;
}

.right-menu[data-school="hets"] .btn:not(.btn-secondary):hover {
    border-color: #00794c;
    background: #00794c;
}

.right-menu[data-school="hets"] .accordion-header:after {
    color: #00975f;
}

.categories li.heds,
[data-school="heds"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="heds"].active .img-wrap:after,
.school-card.heds:after,
.right-menu[data-school="heds"]:after,
.right-menu[data-school="heds"] .btn:not(.btn-secondary),
.right-menu[data-school="heds"] .btn.btn-secondary:hover {
    background-color: #f5c500;
}

.right-menu[data-school="heds"] .btn {
    border-color: #f5c500;
    color: #f5c500;
}

.right-menu[data-school="heds"] .btn:not(.btn-secondary):hover {
    border-color: #c49e00;
    background: #c49e00;
}

.right-menu[data-school="heds"] .accordion-header:after {
    color: #f5c500;
}

.categories li.head,
[data-school="head"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="head"].active .img-wrap:after,
.school-card.head:after,
.right-menu[data-school="head"]:after,
.right-menu[data-school="head"] .btn:not(.btn-secondary),
.right-menu[data-school="head"] .btn.btn-secondary:hover {
    background-color: #ec6725;
}

.right-menu[data-school="head"] .btn {
    border-color: #ec6725;
    color: #ec6725;
}

.right-menu[data-school="head"] .btn:not(.btn-secondary):hover {
    border-color: #bd521e;
    background: #bd521e;
}

.right-menu[data-school="head"] .accordion-header:after {
    color: #ec6725;
}

.categories li.heg,
[data-school="heg"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="heg"].active .img-wrap:after,
.school-card.heg:after,
.right-menu[data-school="heg"]:after,
.right-menu[data-school="heg"] .btn:not(.btn-secondary),
.right-menu[data-school="heg"] .btn.btn-secondary:hover {
    background-color: #0099db;
}

.right-menu[data-school="heg"] .btn {
    border-color: #0099db;
    color: #0099db;
}

.right-menu[data-school="heg"] .btn:not(.btn-secondary):hover {
    border-color: #007aaf;
    background: #007aaf;
}

.right-menu[data-school="heg"] .accordion-header:after {
    color: #0099db;
}

.categories li.hem,
[data-school="hem"] .tabs-group .tabs-nav ul li.slick-current:after,
[data-school="hem"].active .img-wrap:after,
.school-card.hem:after,
.right-menu[data-school="hem"]:after,
.right-menu[data-school="hem"] .btn:not(.btn-secondary),
.right-menu[data-school="hem"] .btn.btn-secondary:hover {
    background-color: #7e3483;
}

.right-menu[data-school="hem"] .btn {
    border-color: #7e3483;
    color: #7e3483;
}

.right-menu[data-school="hem"] .btn:not(.btn-secondary):hover {
    border-color: #652a69;
    background: #652a69;
}

.right-menu[data-school="hem"] .accordion-header:after {
    color: #7e3483;
}

.right-menu-footer .btn:not(.btn-secondary),
.right-menu-footer .btn.btn-secondary:hover {
    color: #fff;
}

/* Responsive */

@media screen and (max-width: 1200px) {
    .main-nav .logo {
        width: 180px;
    }

    .testimonial-slide .quote {
        left: inherit;
        right: calc(100% + 40px);
    }

    .page-image-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    /* Header */
    .main-nav {
        align-items: center;
        padding: 20px 0 12px 0;
    }

    .main-nav > .container {
        align-items: center;
    }

    .main-nav .main-nav-list,
    .top-nav {
        display: none;
    }

    .main-nav .logo {
        width: 127px;
        margin-bottom: 0;
    }

    .main-nav.sticky .logo {
        width: 127px;
    }

    .search-btn-mobile {
        color: #334156;
        font-size: 24px;
    }

    .mobile-tools {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
    }

    .lang-nav .sub-nav {
        top: 100%;
    }

    .lang-nav li a {
        font-weight: 600;
    }

    .lang-nav > .current-lang > a {
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    lang-nav .sub-nav {
        top: 100%;
    }

    .menuburger {
        position: relative;
        z-index: 99999;
        cursor: pointer;
        width: 30px;
        height: 20px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 1;
    }

    .menuburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 26px;
        background: #334156;
        border-radius: 0px;
        opacity: 1;
        left: 50%;
        -webkit-transform: rotate(0deg);
        -moz-transform: translateX(-50%) rotate(0deg);
        -o-transform: translateX(-50%) rotate(0deg);
        transform: translateX(-50%) rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .menuburger span:nth-child(1) {
        top: 0px;
    }

    .menuburger span:nth-child(2) {
        top: 8px;
    }

    .menuburger span:nth-child(3) {
        top: 16px;
    }

    .menuburger.active span:nth-child(1) {
        top: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(135deg);
        -moz-transform: translate(-50%, -50%) rotate(135deg);
        -o-transform: translate(-50%, -50%) rotate(135deg);
        transform: translate(-50%, -50%) rotate(135deg);
        opacity: 1;
    }

    .menuburger.active span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .menuburger.active span:nth-child(3) {
        top: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-135deg);
        -moz-transform: translate(-50%, -50%) rotate(-135deg);
        -o-transform: translate(-50%, -50%) rotate(-135deg);
        transform: translate(-50%, -50%) rotate(-135deg);
    }

    .main-nav .main-nav-list {
        position: fixed;
        width: 100%;
        height: calc(100vh - 66px);
        /* height: calc(100svh - 66px); */
        flex-direction: column;
        background: #fff;
        top: 66px;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0 24px 80px 24px;
    }

    .main-nav .main-nav-list:has(.sub-open) {
        overflow-y: hidden;
    }

    .main-nav .main-nav-list > ul {
        flex-direction: column;
        padding-bottom: 0;
        gap: 0;
    }

    .main-nav .main-nav-list > ul li a {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2; /* 26.4px */
        display: block;
        position: relative;
    }

    .main-nav .main-nav-list > ul > li > a {
        padding: 20px 35px 20px 0;
    }

    .main-nav .main-nav-list > ul > li {
        padding: 0;
        border-bottom: solid 1px #cfd4d7;
    }

    .main-nav .main-nav-list > ul > li.has-sub > a:after {
        content: "\ea6e";
        font-family: remixicon !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        right: 0;
        font-size: 24px;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s;
        transform-origin: center center;
        color: #94a3b8;
        width: auto;
        height: auto;
        bottom: inherit;
        left: inherit;
        background: none !important;
        font-weight: normal;
    }

    .main-nav .main-nav-list > ul > li {
        position: initial;
    }

    .main-nav .main-nav-list .sub-nav {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transition: inherit;
        padding: 10px 0 22px 0;
        background: #fff;
        transition: inherit, background 0.5s;
        transform: translateX(100%) !important;
        width: 100%;
        height: 100%;
        overflow: auto;
        box-shadow: none;
        padding: 0 24px 50px 24px;
    }

    .main-nav .main-nav-list li:has(.search-btn) {
        display: none;
    }

    .main-nav .main-nav-list li.sub-open .sub-nav {
        transform: translateX(0%) !important;
    }

    .main-nav .main-nav-list .sub-nav ul li a {
        font-size: 20px;
        padding-left: 23px;
    }

    .mobile-menu-footer {
        margin-top: 24px;
        position: relative;
    }

    .mobile-menu-footer ul.secondary-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-footer ul.secondary-nav li a {
        padding: 10px 0;
        font-weight: 600;
        line-height: 1.2;
        color: #334156;
        display: inline-block;
    }

    .sub-header {
        position: absolute;
        max-width: calc(100% - 70px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 22px;
        font-weight: 700;
        line-height: 120%;
        color: #005698;
        align-items: center;
        cursor: pointer;
    }

    .sub-header:before {
        content: "\ea64";
        font-family: remixicon !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 24px;
        color: #94a3b8;
        font-weight: normal;
        line-height: 1;
        margin-right: 8px;
        top: 2px;
        position: relative;
    }

    .main-nav:has(.sub-open) .logo,
    .main-nav:has(.sub-open) .lang-nav,
    .main-nav:has(.sub-open) .search-btn-mobile {
        opacity: 0;
        visibility: hidden;
    }

    .main-nav-list .mobile-menu-footer .social-links-outer {
        bottom: initial;
        right: 0;
        top: 15px;
        left: initial;
        display: block;
    }

    .main-nav-list .social-links-inner {
        bottom: 0;
        top: inherit;
        right: 0;
        left: inherit;
        position: initial;
        display: inline-flex;
    }

    /* Search form */
    .search-form {
        padding: 30px 0;
        height: calc(100vh - 66px);
    }

    .search-form form input[type="text"] {
        padding: 0 55px 0 0 !important;
        font-size: 33px !important;
    }

    .search-form form input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        font-size: 33px;
    }

    .search-form form input::-moz-placeholder {
        /* Firefox 19+ */
        font-size: 33px;
    }

    .search-form form input:-ms-input-placeholder {
        /* IE 10+ */
        font-size: 33px;
    }

    .search-form form input:-moz-placeholder {
        /* Firefox 18- */
        font-size: 33px;
    }

    .search-form form input[type="submit"],
    .search-form form button {
        font-size: 23px;
    }

    /* Hero section */
    .hero-section img {
        position: initial;
        aspect-ratio: 4 / 3;
    }

    .caption-content {
        position: relative;
    }

    .caption-content-txt {
        padding: 20px 20px 28px 20px;
        background: rgba(0, 86, 152, 0.6);
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .hero-section-caption {
        padding: 0;
        background: transparent;
        color: #fff;
        height: auto;
    }

    .caption-footer {
        position: relative;
        padding: 24px 0 8px 0;
        width: 100%;
    }

    .caption-footer h5 {
        color: #1d2839;
    }

    .caption-footer:before {
        display: none;
    }

    .caption-footer:after {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: calc(100% + 36px);
        left: -20px;
        bottom: 0;
        background: #f1f5f9;
        z-index: -1;
    }

    .caption-footer ul li a {
        color: #005698;
        background-color: #fff;
        backdrop-filter: none;
    }

    /* img txt center */
    .gray-bg:has(.sigle-hes-so-ge):has(+ .img-txt:not(.gray-bg)) {
        padding-bottom: 95px;
    }

    .img-txt .row {
        row-gap: 40px;
    }

    .gray-bg:has(.sigle-hes-so-ge) + section .img-txt-center [class*="col-"].txt-col {
        padding-bottom: 0;
    }

    /* Page header */
    .page-header {
        margin: 0px;
        min-height: 325px;
    }

    /* Sidebar */
    .sidebar {
        margin-top: 40px;
    }

    .sidebar-nav-wrap + .sidebar-box {
        margin-top: 0;
    }

    /* Sidebar nav */
    .sidebar-nav:not(.no-toggle) ul {
        display: none;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .sidebar-nav .nav-trigger:after {
        font-size: 20px;
        line-height: .9;
    }

    .sidebar-nav {
        border-bottom: 1px solid #e1e7ef;
        padding: 12px 0;
        margin-bottom: 32px;
    }

    .sidebar-nav h5 {
        cursor: pointer;
        margin-bottom: 0;
        position: relative;
    }

    .sidebar-nav h5:after {
        content: "\ea13";
        position: absolute;
        right: 0px;
        top: calc(50% - 12px);
        font-size: 24px;
        font-family: remixicon !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transition: 0.5s;
        font-weight: normal;
        line-height: 1;
    }

    .sidebar-nav h5.open:after {
        transform: rotate(45deg);
    }

    .main-content-col .sidebar-nav + .sidebar-nav {
        margin-top: -20px;
    }

    .sidebar .sidebar-nav {
        margin-bottom: 30px;
    }

    .page-image {
        margin-bottom: 24px;
    }

    /* Events item */
    .card .event-date {
        min-width: 70px;
    }

    /* Footer */
    footer > .container > .row [class*="col-"]:first-child {
        margin-bottom: 42px;
    }

    footer .sub-footer .text-right {
        text-align: left !important;
    }

    footer .sub-footer ul {
        margin-bottom: 15px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        right: 20px;
        bottom: 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    /*Global*/
    body {
        font-size: 16px;
    }

    .main-content.page {
        padding-bottom: 45px;
    }

    section {
        padding: 45px 0;
    }

    .hero-section + .gray-bg {
        padding-top: 45px;
        margin-top: 0;
    }

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

    /* Hero section */
    .hero-section img {
        aspect-ratio: 1 / 1;
    }

    .caption-content-txt h1 {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 16px;
        padding-bottom: 0;
    }

    .caption-footer ul li a {
        font-size: 12px;
    }

    .school-card p {
        font-size: 14px;
    }

    /* Page component */
    h1 {
        font-size: 38px;
        margin-bottom: 28px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    h4 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    h6 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .heading-p {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 32px;
    }

    .heading-p:after,
    .events-date:after {
        margin-top: 20px;
    }

    ul.content-ul,
    ol.content-ol {
        margin-bottom: 32px;
    }

    ul.content-ul > li:before,
    ul.content-ul > li > ul li:before {
        width: 4px;
        height: 4px;
        top: 9px;
    }

    ol.content-ol li:before {
        padding-right: 10px;
    }

    a.download-link,
    a.external-link,
    ul.content-ul a.download-link,
    ul.content-ul a.external-link,
    ol.content-ol a.download-link,
    ol.content-ol a.external-link,
    a.mailto-link,
    ul.content-ul a.mailto-link,
    ol.content-ol a.mailto-link {
        background-size: calc(100% - 18px) 1px !important;
    }

    ul.content-ul li,
    ol.content-ol li {
        margin-bottom: 12px;
    }

    ul.content-ul ul,
    ol.content-ul ol {
        margin: 0 0 17px 0;
    }

    .sigle-hes-so-ge {
        display: none;
    }

    /* Page header */
    .page-header {
        margin: 0px;
        aspect-ratio: 7 / 6;
        min-height: auto;
        max-width: 100%;
        padding: 20px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
    }

    .breadcrumb i {
        margin: 0px 4px;
        font-size: 14px;
        top: 1px;
    }

    .page-tools {
        padding: 12px 0;
        margin-bottom: 32px;
    }

    .page-tools + .row:has(.sidebar-nav) {
        margin-top: -32px;
    }

    body:has(.page-header) .page-tools {
        border-bottom: 1px solid #e1e7ef;
    }

    .page-tools .share-box {
        display: none;
    }

    .back-btn {
        padding-right: 8px;
        margin-right: 8px;
        padding-left: 16px;
    }

    .back-btn:before {
        font-size: 14px;
    }

    .back-btn:after {
        height: 16px;
        top: calc(50% - 8px);
    }

    .filters .categories-list {
        gap: 12px;
    }

    .filters .categories-list li a {
        font-size: 12px;
        padding: 4px 8px;
    }

    * + .filters {
        margin-top: 28px;
    }

    .filters {
        margin-bottom: 28px;
    }

    .filters .view-switcher {
        width: 100%;
        justify-content: center;
        margin-top: 28px;
    }

    .filters .alphabet li a {
        padding: 16px 12px;
    }

    .filters .js-form-type-textfield.form-item-combine input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
    .filters .js-form-type-textfield.form-item-combine textarea {
        padding: 16px 0 16px 32px;
        font-size: 16px;
        height: auto;
    }

    .filters .js-form-type-textfield.form-item-combine:before {
        top: 16px;
        font-size: 20px;
    }

    .loader.spin {
        font-size: 32px;
    }

    /* Table */

    .table-responsive {
        margin-bottom: 32px;
    }

    table tbody td {
        padding: 12px;
    }

    table th {
        padding: 12px;
    }

    table {
        font-size: 14px;
    }

    .directory .last-name,
    .directory .first-name {
        font-size: 16px;
    }

    /* Accordions */

    .accordions-group {
        margin-bottom: 32px;
    }

    .accordion-header:after {
        font-size: 20px;
    }

    .accordion-header > * {
        padding: 16px 30px 16px 0;
    }

    .accordion-content .accordion-item {
        margin-left: 10px;
        margin-right: 10px;
    }

    .accordion-content .accordion-header > * {
        padding: 12px 30px 12px 0px;
    }
    
    .accordion-content .accordion-header:after {
        font-size: 16px;
    }
    
    /* Separator */
    hr {
        margin: 16px 0;
    }

    /* Special links */

    .special-link-group {
        margin-bottom: 30px;
    }

    .special-link {
        padding: 16px 16px 16px 58px;
        margin-bottom: 8px;
    }

    .special-link:before {
        left: 16px;
        font-size: 18px;
    }

    .special-link:after {
        height: calc(100% - 32px);
        top: 16px;
        left: 46px;
    }

    /* Tabs */
    .tabs-group .tabs-nav ul li {
        font-size: 14px;
        letter-spacing: 0.56px;
        padding: 12px 8px;
    }

    .tabs-group .tabs-nav ul {
        margin: 0 0 24px 0;
    }

    .tabs-group .tab hr {
        margin: 16px 0;
    }

    /* Quote */
    .quote-wrap {
        margin: 40px 0 40px 0;
        width: 100%;
    }

    blockquote {
        font-size: 20px;
    }

    /* Call to action */
    .call-to-action {
        margin-bottom: 24px;
    }

    .call-to-action img {
        margin-bottom: 16px;
    }

    .call-to-action:after {
        font-size: 20px;
    }

    /* Image + legend */
    figure {
        margin: 0 0 32px 0;
    }

    figure figcaption {
        font-size: 14px;
        margin-top: 8px;
    }

    /* Image in txt */
    p img.float-left {
        padding: 0 0 20px 0;
    }

    /* Color box */
    .color-box {
        margin-bottom: 20px;
        padding: 24px;
    }

    /* Alert */
    .alert-group {
        margin-bottom: 20px;
    }

    .alert {
        padding: 16px;
        gap: 8px;
        font-size: 14px;
    }

    .alert:before {
        font-size: 18px;
        margin-top: 0px;
    }

    .notification {
        font-size: 14px;
        padding: 14px 40px 14px 20px;
    }

    .notification .close-notification {
        right: 14px;
    }

    .notification:before {
        font-size: 20px;
    }

    /* Form */

    form {
        margin-bottom: 50px;
    }

    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
    textarea {
        padding: 10px;
        font-size: 14px;
    }

    .field-group label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .field-group {
        margin-bottom: 20px;
    }

    .dropdown {
        padding: 10px 38px 10px 10px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .dropdown .option {
        padding: 10px;
    }

    .dropdown:after {
        right: 10px;
        font-size: 18px;
    }

    input[type="radio"]:checked + label,
    input[type="radio"]:not(:checked) + label {
        padding-left: 24px;
    }

    input[type="radio"]:checked + label:before,
    input[type="radio"]:not(:checked) + label:before {
        top: 5px;
        width: 14px;
        height: 14px;
    }

    input[type="radio"]:checked + label:after,
    input[type="radio"]:not(:checked) + label:after {
        top: 8px;
        left: 3px;
    }

    .radio-group,
    .checkbox-group {
        margin-bottom: 24px;
    }

    input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin: 4px 8px 4px 0;
    }

    input[type="file"] {
        margin-bottom: 24px;
    }

    /* Btn */
    .btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .btn.big {
        padding: 14px 20px;
        font-size: 16px;
    }

    .btn-group {
        gap: 20px;
    }

    .load-more .btn {
        width: 100%;
    }

    /* News detail */
    .related-news {
        border-top: none;
        padding-top: 0;
        margin-top: 20px;
    }

    .related-news .grid-item {
        margin-bottom: 40px;
    }

    /* Event detail */
    .events-date {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .event-info {
        font-size: 14px;
    }

    /* Sidebar box */
    .sidebar-box {
        margin-bottom: 20px;
    }

    .card h3 {
        font-size: 23px;
        line-height: 1.2;
        margin-bottom: 22px;
    }

    .categories li {
        font-size: 12px;
        padding: 4px 6px;
    }

    .subtitle {
        font-size: 14px;
        letter-spacing: 0.56px;
        margin-bottom: 16px;
    }

    .school-card {
        aspect-ratio: 5 / 2;
        padding: 25px 12px;
    }

    .school-row {
        margin-bottom: 32px;
    }

    .right-menu {
        width: 100%;
    }
    .right-menu-footer {
        flex-direction: column;
    }

    .cta {
        padding: 20px;
        aspect-ratio: 7 / 4;
    }

    .cta lord-icon {
        width: 62px !important;
        height: 62px !important;
    }

    .cta h3 {
        margin-top: 12px !important;
    }

    .news-section .container .row > [class^="col-"]:first-child {
        margin-bottom: 64px;
    }

    .card .event-date {
        font-size: 20px;
        top: 16px;
        left: 16px;
    }

    .card .img-wrap {
        margin-bottom: 20px;
    }

    .card.bachelor-card .img-wrap {
        margin-bottom: 16px;
    }

    .list .grid-item .card .card-header {
        padding: 12px 0;
        flex-direction: column;
        gap: 8px;
    }

    .card h3 + p {
        margin-top: 12px;
    }

    .news-slider .txt-wrap {
        padding-right: 90px;
    }

    .news-slider-nav {
        gap: 10px;
        margin-top: calc(61.48% + 20px);
    }

    .prev-slide,
    .next-slide {
        font-size: 16px;
        width: 32px;
        height: 32px;
        line-height: 1;
    }

    .gray-bg + section .school-row:before {
        display: none;
    }

    .gray-bg:has(.sigle-hes-so-ge) + section.img-txt {
        margin-top: -90px;
    }

    .gray-bg:has(.sigle-hes-so-ge) + section .img-txt-center [class*="col-"].txt-col {
        padding-top: 0;
        padding-bottom: 0;
    }

    .testimonials-slider .testimonials-slide-inner {
        padding-right: 20px;
        padding-left: 20px;
    }

    .testimonial-slide .img-wrap.video {
        margin-bottom: 0;
    }

    .testimonial-slide .quote {
        display: none;
    }

    .testimonials-section:after {
        height: calc(100% - 45px - 55px);
    }

    .testimonials-slide-inner .row {
        row-gap: 40px;
    }

    input[type="checkbox"]:checked:before {
        margin: 7px 0px;
        font-size: 13px;
    }

    /* Footer */
    footer {
        padding: 45px 0;
        font-size: 14px;
    }

    footer p {
        line-height: 1.3;
        margin: 0 0 20px 0;
    }

    footer .footer-logo {
        width: 275px;
        max-width: 100%;
    }

    footer .footer-logo img {
        width: 100%;
    }

    footer .sub-footer {
        margin-top: 35px;
        padding: 25px 0 0 0;
    }

    footer .sub-footer ul {
        margin-bottom: 16px;
        column-gap: 24px;
        row-gap: 12px;
    }

    footer .text-right,
    footer .sub-footer .text-right {
        text-align: center !important;
    }

    footer .sub-footer ul {
        display: flex;
        justify-content: center;
    }

    footer .social-links {
        flex-direction: row;
    }

    footer .social-links li a {
        font-size: 24px;
    }

    footer .footer-logos {
        margin-top: 28px;
        gap: 24px;
        justify-content: center;
    }

    body:not(:has(.home)) footer:after {
        display: none;
    }

    .quicklinks a {
        padding: 8px 12px;
        gap: 8px;
    }

    .quicklinks a:before {
        font-size: 16px;
        top: 1px;
    }
}

@media screen and (max-width: 576px) {
    .tabs-group.larger .tabs-nav {
        margin-right: -20px;
    }

    .hero-section img {
        aspect-ratio: 2 / 3;
    }
}


/** ADMIN **/

.local-tasks>ul {
    display: flex;
    gap: .13em;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    padding-bottom: 6px;
    margin-bottom: 12px;
    transition: 0.5s;
}

.local-tasks>ul a {
    display: block;
    padding: 0 0px 6px 0px;
    color: #24272a;
}

.local-tasks>ul a:hover {
    color: var(--colorGinPrimary);
}


.local-tasks * {
    font-family: var(--ginFont);
}

.local-tasks ul li,
.local-tasks ul li>* {
    border-radius: 48px;
}

.local-tasks ul li>* {
    color: var(--colorGinText);
    font-size: .9375rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    min-height: 0;

}

.local-tasks ul li .is-active {
    color: var(--colorGinPrimary);
    text-decoration: none;
    font-weight: 700;
}

.local-tasks ul li .is-active,
.local-tasks ul li:hover {
    color: var(--colorGinPrimaryActive);
    background: var(--colorGinPrimaryLight);
}

/* Cookies banner */

#sliding-popup {
    left: 0;
    right: 0;
}

#sliding-popup .eu-cookie-compliance-banner {
    background: #1d2839;
    color: white;
    width: 100%;
    padding: 30px 0px;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message h2 {
    font-size: 26px;
    line-height: 1.23;
    margin-bottom: 10px;
    color: #fff;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message {
    max-width: 70%;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message p,#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message button {
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    display: inline;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message button,#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-buttons .decline-button {
    background: none;
    outline: none;
    border: none;
    border-bottom: solid 1px #c8c9ca;
    color: #fff;
    transition: 0.3s;
    line-height: 1;
    text-decoration: none;
    text-shadow: none;
    padding: 0;
    font-size: 16px;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-message button:hover,#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-buttons .decline-button:hover {
    border-color: transparent;
    color: #00457a;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-buttons .agree-button {
    padding: 12px 20px;
    background-color: #005698;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
    color: #fff;
    margin-left: 15px;
    margin-right: 30px;
}

#sliding-popup .eu-cookie-compliance-banner .eu-cookie-compliance-buttons .agree-button:hover {
    background-color: #00457a;
}

.views-infinite-scroll-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.load-more-list {
    list-style: none;
}

h3[id^="CFC_"] {
    padding-top: 150px;
    margin-top: -150px;
}