/*@mixin transition($args...) {
    -webkit-transition: $args;
    -moz-transition: $args;
    -ms-transition: $args;
    -o-transition: $args;
    transition: $args;
}*/
@keyframes a {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  49.9% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@keyframes fill {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes left {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes right {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
@-webkit-keyframes center {
  0% {
    transform: rotate(135deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1;
  }
}
@-moz-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1;
  }
}
@-o-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 0.1;
  }
}
@-webkit-keyframes cf3FadeInOut {
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes cf3FadeInOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes cf3FadeInOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cf3FadeInOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes matrix {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  50% {
    -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes matrix {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  50% {
    -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@-webkit-keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.animate-after, #block-psau-quicktabsservice h2:after, #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3:after, #block-psau-views-block-university-life-block-1 h2:after, .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3:after, .block-quicktabs-blockcolleges h2:after, .register-study h2:after, .page-node-type-university-life .paragraph--type--composant-text h2:after, .header_site .navbar-desktop .navbar-nav li.item-level-2:hover a:after, .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active a:after {
  content: "";
  background: linear-gradient(90deg, #75C6BB 0%, #477E7A 100%);
  border-radius: 50px;
  animation: 20s ease 0s infinite normal none running bganimation;
  position: absolute;
  bottom: 0px;
  height: 4px;
  width: 100%;
  left: 0;
}

.title-block, .sitemap-item h2, #block-psau-quicktabsservice h2, #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3, .block_list_news h2, .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3, .block-quicktabs-blockcolleges h2, .register-study h2 {
  font-family: "IBM Plex Medium";
  color: #1B8354;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
  padding-bottom: 10px;
  width: max-content;
  font-size: 16px;
}
@media (min-width: 1400px) {
  .title-block, .sitemap-item h2, #block-psau-quicktabsservice h2, #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3, .block_list_news h2, .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3, .block-quicktabs-blockcolleges h2, .register-study h2 {
    font-size: 18px;
  }
}

.bg_overly, #block-psau-views-block-university-life-block-1 .university-life .item .content .f_bg, .block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content .f_bg, .register-study .grid-item .item .overly {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  padding-top: 0;
}

.gradient-title, .paragraph--type--composant-text-tow-columns h2 {
  background: linear-gradient(90deg, #6FDFD6 0%, #1B8354 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

body {
  padding: 0 !important;
  font-family: "IBM Plex Light";
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
.nav-link, .media-library-view--widget .view-header a,
a {
  color: #1B8354;
  text-decoration: none;
}
.nav-link:hover, .media-library-view--widget .view-header a:hover,
a:hover {
  color: #6AC7BD;
}
.nav-link:hover, .nav-link:active, .nav-link:focus, .media-library-view--widget .view-header a:hover, .media-library-view--widget .view-header a:active, .media-library-view--widget .view-header a:focus,
a:hover,
a:active,
a:focus {
  color: #6AC7BD;
}

.messages__wrapper {
  margin: 30px 0;
}
.messages__wrapper .messages--error {
  display: none;
}

.alert-message .alert-danger {
  display: none;
}

ol, ul {
  padding-left: 15px;
}

::selection {
  color: #FFFFFF;
  background-color: #1B8354;
}

.a2a_logo_color {
  background-color: #1B8354 !important;
}

#a2a_copy_link_copied {
  background-color: #1B8354 !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #1B8354;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #1B8354;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #1B8354;
}

:-moz-placeholder { /* Firefox 18- */
  color: #1B8354;
}

@font-face {
  font-family: "Somar Sans Regular Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Regular Condensed"), url("../../assets/fonts/SomarSans-RegularCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Regular Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Regular Condensed Italic"), url("../../assets/fonts/SomarSans-RegularCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Regular Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Regular Expanded"), url("../../assets/fonts/SomarSans-RegularExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Regular Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Regular Expanded Italic"), url("../../assets/fonts/SomarSans-RegularExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Regular Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Regular Italic"), url("../../assets/fonts/SomarSans-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin"), url("../../assets/fonts/SomarSans-Thin.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin Condensed"), url("../../assets/fonts/SomarSans-ThinCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin Condensed Italic"), url("../../assets/fonts/SomarSans-ThinCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin Expanded"), url("../../assets/fonts/SomarSans-ThinExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin Expanded Italic"), url("../../assets/fonts/SomarSans-ThinExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Thin Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Thin Italic"), url("../../assets/fonts/SomarSans-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight"), url("../../assets/fonts/SomarSans-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight Condensed"), url("../../assets/fonts/SomarSans-ExtraLightCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight Condensed Italic"), url("../../assets/fonts/SomarSans-ExtraLightCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight Expanded"), url("../../assets/fonts/SomarSans-ExtraLightExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight Expanded Italic"), url("../../assets/fonts/SomarSans-ExtraLightExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraLight Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraLight Italic"), url("../../assets/fonts/SomarSans-ExtraLightItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light"), url("../../assets/fonts/SomarSans-Light.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light Condensed"), url("../../assets/fonts/SomarSans-LightCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light Condensed Italic"), url("../../assets/fonts/SomarSans-LightCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light Expanded"), url("../../assets/fonts/SomarSans-LightExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light Expanded Italic"), url("../../assets/fonts/SomarSans-LightExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Light Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Light Italic"), url("../../assets/fonts/SomarSans-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium";
  font-style: normal;
  font-weight: 400;
  src: local("Somar Sans Medium"), url("../../assets/fonts/SomarSans-Medium.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Medium Condensed"), url("../../assets/fonts/SomarSans-MediumCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Medium Condensed Italic"), url("../../assets/fonts/SomarSans-MediumCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Medium Expanded"), url("../../assets/fonts/SomarSans-MediumExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Medium Expanded Italic"), url("../../assets/fonts/SomarSans-MediumExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Medium Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Medium Italic"), url("../../assets/fonts/SomarSans-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold"), url("../../assets/fonts/SomarSans-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold Condensed"), url("../../assets/fonts/SomarSans-SemiBoldCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold Condensed Italic"), url("../../assets/fonts/SomarSans-SemiBoldCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold Expanded"), url("../../assets/fonts/SomarSans-SemiBoldExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold Expanded Italic"), url("../../assets/fonts/SomarSans-SemiBoldExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans SemiBold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans SemiBold Italic"), url("../../assets/fonts/SomarSans-SemiBoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold"), url("../../assets/fonts/SomarSans-Bold.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold Condensed"), url("../../assets/fonts/SomarSans-BoldCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold Condensed Italic"), url("../../assets/fonts/SomarSans-BoldCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold Expanded"), url("../../assets/fonts/SomarSans-BoldExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold Expanded Italic"), url("../../assets/fonts/SomarSans-BoldExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Bold Italic"), url("../../assets/fonts/SomarSans-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold"), url("../../assets/fonts/SomarSans-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold Condensed"), url("../../assets/fonts/SomarSans-ExtraBoldCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold Condensed Italic"), url("../../assets/fonts/SomarSans-ExtraBoldCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold Expanded"), url("../../assets/fonts/SomarSans-ExtraBoldExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold Expanded Italic"), url("../../assets/fonts/SomarSans-ExtraBoldExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans ExtraBold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans ExtraBold Italic"), url("../../assets/fonts/SomarSans-ExtraBoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black"), url("../../assets/fonts/SomarSans-Black.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black Condensed"), url("../../assets/fonts/SomarSans-BlackCondensed.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black Condensed Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black Condensed Italic"), url("../../assets/fonts/SomarSans-BlackCondensedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black Expanded";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black Expanded"), url("../../assets/fonts/SomarSans-BlackExpanded.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black Expanded Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black Expanded Italic"), url("../../assets/fonts/SomarSans-BlackExpandedItalic.woff") format("woff");
}
@font-face {
  font-family: "Somar Sans Black Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Somar Sans Black Italic"), url("../../assets/fonts/SomarSans-BlackItalic.woff") format("woff");
}
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "IBM Plex Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts-plex/IBMPlexSansArabic-Regular.ttf");
}
@font-face {
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts-plex/IBMPlexSansArabic-Medium.ttf");
}
@font-face {
  font-family: "IBM Plex Light";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts-plex/IBMPlexSansArabic-Light.ttf");
}
@font-face {
  font-family: "IBM Plex SemiBold";
  src: url("../../assets/fonts-plex/IBMPlexSansArabic-SemiBold.ttf");
}
@font-face {
  font-family: "IBM Plex Bold";
  font-style: normal;
  src: url("../../assets/fonts-plex/IBMPlexSansArabic-Bold.ttf");
}
/**
 * Basic typography style for copy text
 */
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
  max-width: 1180px;
}
@media (min-width: 768px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1180px;
  }
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

#toolbar-administration {
  z-index: 99999;
  position: absolute;
}

body.user-logged-in .dialog-off-canvas-main-canvas {
  margin-top: 79px;
}

.header_site .header-top {
  background: #F1F9F7;
  height: 100px;
  padding: 10px 0;
}
.header_site .header-top .h_top {
  justify-content: space-between;
}
.header_site .header-top .h_top .top_header_left {
  display: flex;
  line-height: 82px;
  gap: 10px;
}
.header_site .header-top .h_top .top_header_left .menu--menu-top-header .menu .menu-icon {
  padding: 0;
}
.header_site .header-top .h_top .top_header_left .menu--menu-top-header .menu .menu-icon span {
  display: none;
}
.header_site .header-top .h_top .top_header_left ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header_site .header-top .language-switcher-language-url ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header_site .header-top .language-switcher-language-url ul li[hreflang=en] {
  display: none;
}
.header_site .header-top .language-switcher-language-url ul li a {
  color: #1B8354;
  font-family: "IBM Plex semiBold";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.header_site .header-top .language-switcher-language-url ul li.is-active {
  display: none;
}
.header_site .navbar-desktop {
  margin-bottom: 20px;
  position: relative;
  padding: 20px 0 0;
}
@media (min-width: 1400px) {
  .header_site .navbar-desktop {
    padding: 30px 0 10px;
  }
}
.header_site .navbar-desktop:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 64px;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/after-navbar.svg");
  background-position: center;
  z-index: -1;
}
.header_site .navbar-desktop .navbar-nav {
  gap: 30px;
  line-height: 15px;
}
.header_site .navbar-desktop .navbar-nav li a {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 0;
  font-size: 12px;
}
.header_site .navbar-desktop .navbar-nav li a.dropdown-toggle {
  position: relative;
}
.header_site .navbar-desktop .navbar-nav li a.dropdown-toggle:after {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  border: 0;
  width: 13px;
  height: 13px;
}
.header_site .navbar-desktop .navbar-nav li.menu-item--expanded {
  list-style-type: none;
  list-style-image: none;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon-15 > a .icon, .header_site .navbar-desktop .navbar-nav li.menu-icon-90 > a .icon {
  margin-top: -5px;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon-15 > a span, .header_site .navbar-desktop .navbar-nav li.menu-icon-90 > a span {
  display: none;
}
.header_site .navbar-desktop .navbar-nav li.item-level-0 a.dropdown-toggle:after {
  content: "\f078";
  right: -20px;
  font-size: 12px;
}
.header_site .navbar-desktop .navbar-nav li.item-level-1 a.dropdown-toggle:after {
  font-size: 12px;
  line-height: 38px;
  right: 10px;
  left: auto;
  content: "\f054";
}
.header_site .navbar-desktop .navbar-nav li.item-level-2 {
  position: relative;
  background: transparent;
}
.header_site .navbar-desktop .navbar-nav li.item-level-2:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #1B8354;
  position: absolute;
  border-radius: 50%;
  top: 14px;
}
.header_site .navbar-desktop .navbar-nav li.item-level-2 a {
  font-family: "IBM Plex Light";
  font-size: 13px;
  font-weight: 400;
}
.header_site .navbar-desktop .navbar-nav li.item-level-2:hover, .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active {
  background: transparent;
}
.header_site .navbar-desktop .navbar-nav li.item-level-2:hover a, .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active a {
  position: relative;
  width: max-content;
}
.header_site .navbar-desktop .navbar-nav li.item-level-2:hover a:after, .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active a:after {
  height: 2px;
  width: 90%;
  left: 10px;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon-90 {
  margin-right: 40px;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon-90 a.dropdown-toggle:after {
  display: none;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon-90 .dropdown-menu {
  right: auto;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu {
  min-width: 230px;
  padding: 0;
  left: -20px;
  text-align: left;
  border-radius: 0;
  border: 0;
  width: max-content;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.27);
  -ms-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.27);
  -o-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.27);
  margin-top: 20px;
}
@media (min-width: 1400px) {
  .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu {
    margin-top: 30px;
  }
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li {
  position: relative;
  padding: 0;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a {
  display: flex;
  padding: 10px;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a .icon {
  width: 38px;
  height: 38px;
  background: #D0F0EE;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a .icon img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(44%) saturate(430%) hue-rotate(126deg) brightness(91%) contrast(87%);
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a span {
  line-height: 38px;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover {
  background: #E6F8F4;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover a .icon {
  background: #1D7972;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover a .icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(1204%) hue-rotate(222deg) brightness(111%) contrast(100%);
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover a span {
  line-height: 38px;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li.item-level-1 {
  border-bottom: 1px solid #EDEDED;
  position: static;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li.item-level-1:hover .nav-level-2 {
  min-height: 100%;
  padding: 10px;
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li.menu-icon-16:hover .nav-level-2 {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(188px, 1fr));
}
.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu.nav-level-2 {
  left: 100%;
  top: 0;
  margin: 0;
}
.header_site .navbar-desktop .dropdown-menu li {
  position: relative;
}
.header_site .navbar-desktop .dropdown-menu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}
.header_site .navbar-desktop .dropdown-menu .submenu-left {
  right: 100%;
  left: auto;
}
.header_site .navbar-desktop .dropdown-menu > li:hover > .submenu {
  display: block;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .submenu {
  display: block;
}

.list-ads {
  display: none;
}
@media (min-width: 768px) {
  .list-ads {
    display: block;
  }
}
.list-ads .story_ads {
  display: flex;
}
.list-ads .story_ads article {
  padding: 0;
}
.list-ads .story_ads article .img-modal img {
  width: 76.144px;
  height: 76.144px;
  border: 1px dashed;
  border-radius: 50%;
  margin: 0 5px;
  padding: 8px;
}
.list-ads .story_ads .spotlight {
  cursor: pointer;
}
.list-ads .story_ads .spotlight img {
  width: 76.144px;
  height: 76.144px;
  border: 1px dashed;
  border-radius: 50%;
  margin: 0 5px;
  padding: 8px;
}

.btnMobileNavbar {
  border: 0;
  background: transparent;
  color: #1B8354;
  font-size: 20px;
}

.top_header_right .navbar-brand img {
  height: 50px;
  margin: 10px 1rem 0 0;
}
@media (min-width: 768px) {
  .top_header_right .navbar-brand img {
    height: 70px;
    margin: 0 1rem 0 0;
  }
}

#offcanvasNavbar {
  width: 100%;
  background: #1B8354;
}
#offcanvasNavbar .navbar-nav li a {
  color: #FFFFFF;
  justify-content: start;
  padding: 5px 0;
}
#offcanvasNavbar .navbar-nav li a .icon {
  display: none;
}
#offcanvasNavbar .navbar-nav li a.dropdown-toggle:after {
  content: "";
  background-image: url("../../assets/images/chevron-down.svg");
  margin-left: 5px;
}
#offcanvasNavbar .navbar-nav li.menu-item--expanded {
  list-style-type: none;
  list-style-image: none;
}
#offcanvasNavbar .navbar-nav li .submenu {
  transform: none !important;
  position: static !important;
  background: transparent;
  border: 0;
  text-align: right;
  padding: 0 20px 0 0;
}
#offcanvasNavbar .navbar-nav li .submenu.show {
  display: block;
}
#offcanvasNavbar .navbar-nav li .submenu:has(.show) {
  display: block;
}
#offcanvasNavbar .navbar-nav li .submenu .item-level-1 {
  padding: 5px 0;
}
#offcanvasNavbar .navbar-nav li .submenu .item-level-2 {
  padding: 5px 0;
}
#offcanvasNavbar .offcanvas-header .btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(221deg) brightness(110%) contrast(96%);
}

.header_site .not-fixed-header {
  display: block;
  padding: 0;
}
.header_site .not-fixed-header .menu--main {
  display: none;
}
.header_site .list-ads {
  display: none;
}
.header_site.fixed-top {
  position: fixed;
  width: 100%;
  border: 1px solid rgba(117, 198, 187, 0.21);
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(3.5px);
  z-index: 99999;
}
.header_site.fixed-top .list-ads {
  display: none;
}
.header_site.fixed-top .not-fixed-header {
  display: none;
}
.header_site.fixed-top .fixed-header {
  display: none;
}
@media (min-width: 992px) {
  .header_site.fixed-top .fixed-header {
    display: block;
    padding: 30px 0 10px;
  }
}
.header_site .navbar-desktop {
  display: none;
}
@media (min-width: 992px) {
  .header_site .navbar-desktop {
    display: block;
  }
}

.header_site .header-top {
  background: #FFFFFF;
}

.header_site .navbar-desktop .navbar-nav li.item-level-0 a {
  color: #161616;
  font-size: 16px !important;
  line-height: 24px;
}

.header_site .navbar-desktop .navbar-nav li.menu-icon-15 > a .icon, .header_site .navbar-desktop .navbar-nav li.menu-icon-90 > a .icon {
  display: none;
}

.header_site .navbar-desktop .navbar-nav li.menu-icon-15 > a span, .header_site .navbar-desktop .navbar-nav li > a span {
  display: block;
}

.header_site .header-top .h_top .top_header_left .language-link {
  color: #161616;
  width: auto;
  height: auto;
  border-radius: unset;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.language img, .language ul {
  display: inline-block;
}

#block-psau-sitebranding-2 {
  display: flex;
  flex-wrap: wrap;
}
#block-psau-sitebranding-2 h2 {
  margin: 0;
}
#block-psau-sitebranding-2 p {
  order: 2;
  width: 100%;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

footer.footer-site {
  background: #074D31;
  text-align: center;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  footer.footer-site {
    text-align: initial;
    padding: 40px 0 0;
  }
}
footer.footer-site h2,
footer.footer-site h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 15px auto;
}
@media (min-width: 768px) {
  footer.footer-site h2,
  footer.footer-site h5 {
    margin: 0 0 20px;
  }
}
footer.footer-site ul.menu {
  margin: 0;
}
footer.footer-site ul.menu li.menu-item {
  list-style-type: none;
  color: #1B8354;
  margin: 8px 4px;
}
footer.footer-site ul.menu li.menu-item a {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 161%;
  transition: color 0.5s ease;
  font-size: 14px;
}
@media (min-width: 768px) {
  footer.footer-site ul.menu li.menu-item a {
    font-size: 15px;
  }
}
footer.footer-site ul.menu li.menu-item a:hover {
  color: #6AC7BD;
}
footer.footer-site #block-psau-lltwasl {
  color: #1B8354;
}
footer.footer-site #block-psau-lltwasl .link_footer {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #1B8354;
  padding: 10px;
  width: max-content;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
footer.footer-site #block-psau-lltwasl .link_footer a {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
footer.footer-site #block-psau-lltwasl .link_footer:hover {
  background: #6AC7BD;
}
footer.footer-site #block-psau-lltwasl .f_item {
  margin: 10px 0;
}
footer.footer-site #block-psau-lltwasl .f_item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
footer.footer-site #block-psau-lltwasl .f_item a {
  color: #1B8354;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
footer.footer-site .text-formatted p {
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
footer.footer-site .paragraph--type--composant-social-media a {
  color: #FFFFFF;
  margin: 0 5px;
  font-size: 17px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
footer.footer-site .paragraph--type--composant-social-media a i {
  color: #FFFFFF;
}

.copyright {
  background: #074D31;
  padding: 20px 0;
  color: #FFFFFF;
}
.copyright .copyright-content {
  align-items: center;
  flex-direction: column-reverse;
  gap: 10px;
}
@media (min-width: 768px) {
  .copyright .copyright-content {
    flex-direction: initial;
    gap: 0;
  }
}
.copyright .copyright-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 13.214px;
  line-height: 164%;
  color: #FFFFFF;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .copyright .copyright-content p {
    text-align: initial;
  }
}
.copyright .copyright-content p span {
  margin: 0 5px;
}
.copyright #block-psau-sitebranding-2 .navbar-brand img {
  filter: brightness(0) invert(1);
}
.copyright #block-psau-sitebranding-2, .copyright #block-psau-image2030 {
  display: inline-block;
  width: 140px;
  height: 92px;
}
.copyright #block-psau-image2030 {
  margin-inline-start: 15px;
}
.copyright ul[data-block=footer_copyright_first] li a {
  color: #fff;
  text-decoration: underline;
}
.copyright .block_image_footer {
  display: flex;
  gap: 0 15px;
}
.copyright #block-psau-image2030 img {
  width: auto;
  height: 60px;
}

.ui-accordion {
  font-family: "IBM Plex Bold";
}
.ui-accordion form {
  margin: 0 !important;
  width: 90%;
}
@media (min-width: 992px) {
  .ui-accordion form {
    margin: 30px 0 0 64% !important;
    width: auto;
  }
}
.ui-accordion form input {
  font-family: "IBM Plex Medium";
  color: #1B8354;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.ui-accordion .views-row .views-row {
  border-radius: 5px;
  border-bottom: 1px solid #DCDCDC;
  background: #FFFFFF;
  margin: 5px 0;
}
.ui-accordion .views-row .views-row .ui-accordion-header {
  color: #161616;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  border: 0 !important;
  background: #FFFFFF;
  padding: 10px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .ui-accordion .views-row .views-row .ui-accordion-header {
    font-size: 15px;
  }
}
.ui-accordion .views-row .views-row .ui-accordion-header .ui-icon-triangle-1-e {
  background-image: url("../../assets/images/icons/plus.svg");
  background-position: center;
}
.ui-accordion .views-row .views-row .ui-accordion-header .ui-icon-triangle-1-s {
  background-image: url("../../assets/images/icons/mois.svg");
  background-position: center;
}
.ui-accordion .views-row .views-row .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 0.5em;
}
.ui-accordion .views-row .views-row .ui-accordion-content {
  padding: 1em;
  border: 0;
}
.ui-accordion .views-row .views-row .ui-accordion-content p {
  font-family: "IBM Plex Light";
  color: #5E5E5E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}
.ui-accordion .views-row .views-row .ui-accordion-content ol, .ui-accordion .views-row .views-row .ui-accordion-content ul {
  list-style-type: disc;
}
.ui-accordion .views-row .views-row .ui-accordion-content ol li, .ui-accordion .views-row .views-row .ui-accordion-content ul li {
  font-family: "IBM Plex Regular";
  color: #5E5E5E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  list-style-type: disc;
}
.ui-accordion .views-row .views-row .ui-accordion-content h2, .ui-accordion .views-row .views-row .ui-accordion-content h3, .ui-accordion .views-row .views-row .ui-accordion-content h4, .ui-accordion .views-row .views-row .ui-accordion-content h5, .ui-accordion .views-row .views-row .ui-accordion-content h6 {
  color: #1B8354;
  margin: 10px 0;
}

.list-achievements header h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  background: linear-gradient(90deg, #6FDFD6 0%, #1B8354 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.viewsreference--view-title h2 {
  font-family: "IBM Plex Bold";
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .viewsreference--view-title h2 {
    margin: 20px 0 40px;
  }
}

.node-322 .viewsreference--view-title h2 {
  float: initial;
}
@media (min-width: 768px) {
  .node-322 .viewsreference--view-title h2 {
    float: left;
  }
}

#views-bootstrap-scholarships-block-1 .views-field {
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  padding: 10px;
  position: relative;
  height: 90px;
  margin: 10px 0;
}
#views-bootstrap-scholarships-block-1 .views-field h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  width: 80%;
}
#views-bootstrap-scholarships-block-1 .views-field .link {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
#views-bootstrap-scholarships-block-1 .views-field:hover {
  border: 1px solid #1B8354;
  background: #1B8354;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
#views-bootstrap-scholarships-block-1 .views-field:hover h3, #views-bootstrap-scholarships-block-1 .views-field:hover .link {
  color: #FFFFFF;
}

.list-links .views-field,
#quicktabs-evidence_acceptance .views-field {
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  padding: 10px;
  position: relative;
  height: 90px;
  margin: 10px 0;
}
.list-links .views-field h3,
#quicktabs-evidence_acceptance .views-field h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  width: 80%;
}
.list-links .views-field .f_link,
#quicktabs-evidence_acceptance .views-field .f_link {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.list-links .views-field .f_link a,
#quicktabs-evidence_acceptance .views-field .f_link a {
  margin: 0 5px;
}
.list-links .views-field:hover,
#quicktabs-evidence_acceptance .views-field:hover {
  border: 1px solid #1B8354;
  background: #1B8354;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.list-links .views-field:hover h3, .list-links .views-field:hover a,
#quicktabs-evidence_acceptance .views-field:hover h3,
#quicktabs-evidence_acceptance .views-field:hover a {
  color: #FFFFFF;
}
.list-links .bef-links ul,
#quicktabs-evidence_acceptance .bef-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 30px 10px;
}
@media (min-width: 992px) {
  .list-links .bef-links ul,
  #quicktabs-evidence_acceptance .bef-links ul {
    gap: 10px;
  }
}
.list-links .bef-links ul li a,
#quicktabs-evidence_acceptance .bef-links ul li a {
  border-radius: 10px;
  border: 1px solid #1B8354;
  background: #FFF;
  color: #1B8354;
  padding: 10px 12px;
  font-size: 13px;
}
@media (min-width: 992px) {
  .list-links .bef-links ul li a,
  #quicktabs-evidence_acceptance .bef-links ul li a {
    padding: 10px 20px;
    font-size: 15px;
  }
}
.list-links .bef-links ul li a.bef-link--selected,
#quicktabs-evidence_acceptance .bef-links ul li a.bef-link--selected {
  color: #FFF;
  background: #1B8354;
}

.research-innovation .media--type-image img {
  width: 100%;
  border-radius: 10px;
}
.research-innovation .views-field-title {
  height: 100px;
  padding: 10px 0;
}
.research-innovation .views-field-title .field-content {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.research-innovation.list-pdf {
  text-align: center;
}
.research-innovation.list-pdf .views-field-title {
  height: 60px;
}
.research-innovation.list-pdf .f_file span {
  color: #6AC7BD;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.research-innovation.list-pdf .f_file img {
  width: 20px;
  height: 20px;
}
.research-innovation.list-journals .views-field-field-image-media {
  margin-top: 30px;
}
.research-innovation.list-journals .views-field-title {
  height: 50px;
}
.research-innovation.list-journals .views-field-title .field-content {
  font-size: 16px;
}
.research-innovation.list-journals .views-field-body p {
  color: #1B8354;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.research-innovation.list-journals .views-field-field-link .f_link {
  color: #6AC7BD;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.research-innovation.list-journals .views-field-field-link .f_link span {
  margin-left: 5px;
}
.research-innovation.list-awards .views-field-title {
  height: 60px;
}
.research-innovation.list-awards .views-field-field-prize-value .f_price {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.research-innovation.list-awards .views-field-field-prize-value .f_price img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.research-innovation.list-awards .views-field-body {
  margin: 10px 0;
}
.research-innovation.list-awards .views-field-field-file {
  margin-bottom: 30px;
}
.research-innovation.list-awards .views-field-field-file .f_file span {
  color: #6AC7BD;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.research-innovation.list-awards .views-field-field-file .f_file img {
  width: 20px;
  height: 20px;
  margin-left: 6px;
}
.research-innovation.list-forum .views-field-title {
  height: auto;
  padding: 10px;
}
.research-innovation.list-forum .views-field-field-link {
  margin-bottom: 30px;
  padding: 10px;
}
.research-innovation.list-forum .views-field-field-link .f_link {
  color: #6AC7BD;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.research-innovation.list-forum .views-field-field-link .f_link span {
  margin-left: 5px;
}

.list-research-file .item-list ul {
  list-style-type: none;
}
.list-research-file .item-list ul li {
  border-bottom: 1px dashed #DEDEDE;
  padding: 15px 10px 15px 20px;
}
.list-research-file .item-list ul li .f_item {
  display: flex;
  justify-content: space-between;
}
.list-research-file .item-list ul li .f_item .f_title {
  display: flex;
  gap: 10px;
}
.list-research-file .item-list ul li .f_item .f_title .f_img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #F3F3F3;
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.list-research-file .item-list ul li .f_item .f_title .f_img img {
  width: 17px;
  height: 17px;
}
.list-research-file .item-list ul li .f_item .f_title h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.list-research-file .item-list ul li .f_item .f_file {
  line-height: 40px;
}
.list-research-file .item-list ul li .f_item .f_file img {
  width: 20px;
  height: 20px;
}

.list-regulations-systems .item-list ul {
  list-style-type: none;
}
.list-regulations-systems .item-list ul li {
  border-radius: 5px;
  border: 1px solid #DCDCDC;
  padding: 10px 10px 10px 20px;
  margin: 0 0 10px;
}
.list-regulations-systems .item-list ul li .f_item {
  display: flex;
  justify-content: space-between;
}
.list-regulations-systems .item-list ul li .f_item .f_title {
  display: flex;
  gap: 10px;
}
.list-regulations-systems .item-list ul li .f_item .f_title .f_img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #F3F3F3;
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.list-regulations-systems .item-list ul li .f_item .f_title .f_img img {
  width: 17px;
  height: 17px;
}
.list-regulations-systems .item-list ul li .f_item .f_title h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.list-regulations-systems .item-list ul li .f_item .f_file {
  line-height: 40px;
}
.list-regulations-systems .item-list ul li .f_item .f_file img {
  width: 20px;
  height: 20px;
}
.list-regulations-systems .item-list ul li:hover {
  background: #1B8354;
}
.list-regulations-systems .item-list ul li:hover .f_item .f_title h3 {
  color: #FFFFFF;
}
.list-regulations-systems .item-list ul li:hover .f_item .f_file img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(20%) hue-rotate(212deg) brightness(103%) contrast(100%);
}

.list-service-view .grid-item {
  padding: 0;
}
.list-service-view .grid-item .item {
  height: 164px;
}
.list-service-view .grid-item .item .f_display {
  display: block;
  position: relative;
  border: 1px solid #BDE2E2;
  background: #FFFFFF;
  height: 100%;
  padding: 15px 25px;
}
.list-service-view .grid-item .item .f_display .f_counter {
  color: #6AC7BD;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.list-service-view .grid-item .item .f_display h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
.list-service-view .grid-item .item .f_display .icon {
  display: inline-block;
  position: relative;
}
.list-service-view .grid-item .item .f_display .icon img {
  width: 33.333px;
  height: 33.333px;
  z-index: 999;
  position: relative;
}
.list-service-view .grid-item .item .f_display .icon:after {
  content: "";
  width: 37.5px;
  height: 37.5px;
  background: #D1EEEB;
  border-radius: 50%;
  position: absolute;
  bottom: -50%;
  right: -45%;
  opacity: 0.6;
}
.list-service-view .grid-item .item .f_display .f_link {
  position: absolute;
  bottom: 10px;
  left: 14px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  border-radius: 11px;
  border: 1px solid #1B8354;
  padding: 3px 15px;
}
.list-service-view .grid-item .item .f_display .f_link a i {
  transform: rotate(25deg);
}
.list-service-view .grid-item .item .f_hover {
  display: none;
}
.list-service-view .grid-item .item:hover .f_display {
  display: none;
}
.list-service-view .grid-item .item:hover .f_hover {
  height: 100%;
  display: block;
  -webkit-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  background: #1B8354;
  color: #FFFFFF;
  padding: 15px;
  height: 184px;
  position: relative;
  margin-top: -10px;
  z-index: 999;
}
.list-service-view .grid-item .item:hover .f_hover h3 {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
  padding-bottom: 10px;
  width: max-content;
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -ms-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
.list-service-view .grid-item .item:hover .f_hover h3:after {
  content: "";
  border-radius: 50px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  left: 0;
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -ms-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
.list-service-view .grid-item .item:hover .f_hover p {
  color: #FFFFFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.list-service-view .grid-item .item:hover .f_hover .link-view a {
  color: #FFFFFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.3s ease 0s;
  position: relative;
  display: inline-block;
}
.list-service-view .grid-item .item:hover .f_hover .link-view a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  left: auto;
  right: 0;
  background: #fff;
}
.list-service-view .grid-item .item:hover .f_hover .f_counter {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E4E4E4;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 5px;
}

.list-academic-programs .item .content {
  border: 1px solid #DFDFDF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  display: block;
  position: relative;
  margin: 10px 0;
}
.list-academic-programs .item .content img {
  height: 191px;
  object-fit: fill;
  width: 100%;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
}
.list-academic-programs .item .content .f_params {
  padding: 15px;
  height: 140px;
}
.list-academic-programs .item .content .f_params h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.list-academic-programs .item .content .f_params .f_college {
  color: #1B8354;
  font-family: "IBM Plex Light";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 7px 0;
}
.list-academic-programs .item .content .f_params .f_place {
  color: #1B8354;
  font-family: "IBM Plex Light";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.list-academic-programs .item .content .f_params .f_place i {
  margin-right: 10px;
}
.list-academic-programs .item .overly {
  display: none;
}
.list-academic-programs .item:hover .content {
  display: none;
}
.list-academic-programs .item:hover .overly {
  display: block;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #1B8354;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  background: #1B8354;
  padding: 30px;
  height: 334px;
  margin: 10px 0;
}
.list-academic-programs .item:hover .overly p {
  color: #FFFFFF;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.list-academic-programs .item:hover .overly .link-view {
  width: 38px;
  height: 38px;
  margin: 10px auto;
  background: #6AC7BD;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
}
.list-academic-programs .item:hover .overly .link-view a {
  color: #FFFFFF;
}
.list-academic-programs .item:hover .overly .link-view a i {
  transform: rotate(25deg);
}

.list-news-page article {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 0.716px solid #EAEAEB;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -ms-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -o-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  padding: 20px;
  position: relative;
  margin: 10px 0;
}
.list-news-page article:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/after-news.svg");
  background-position: center;
}
.list-news-page article .content {
  margin-bottom: 0 !important;
}
.list-news-page article .content .f_image {
  position: relative;
}
.list-news-page article .content .f_image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.list-news-page article .content .f_image .f_date {
  background: #1B8354;
  position: absolute;
  bottom: -30px;
  text-align: center;
  right: 10px;
  max-width: 90px;
  padding: 5px 10px;
}
.list-news-page article .content .f_image .f_date .datetime {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.list-news-page article .content .f_content {
  padding: 15px 15px 25px;
  position: relative;
  z-index: 9999;
}
.list-news-page article .content .f_content p {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-size: 11px;
}
@media (min-width: 768px) {
  .list-news-page article .content .f_content p {
    font-size: 13px;
  }
}
.list-news-page article .content .f_content h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  height: 70px;
}
.list-news-page article .content .f_content .addtoany_list .a2a_default_style a {
  padding: 0px 10px;
  font-size: 18px;
  float: right;
}
.list-news-page article .content .f_content .addtoany_list .a2a_default_style a:first-child {
  padding: 0px;
}

.list-videos iframe {
  border-radius: 10px;
}
.list-videos h3.field-content {
  color: #1B8354;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  margin-bottom: 30px;
}

.list-gallerys .item .media img {
  border-radius: 10px;
  width: 100%;
  height: 283px;
  object-fit: cover;
}
.list-gallerys .item h3.field-content {
  color: #1B8354;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  margin-bottom: 20px;
  width: 90%;
  padding: 10px 0;
}

#block-psau-views-block-events-block-2 h2,
#block-psau-views-block-list-ads-block-2 h2 {
  color: #1B8354;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 20.4px */
  margin-bottom: 20px;
}
#block-psau-views-block-events-block-2 .list-news,
#block-psau-views-block-list-ads-block-2 .list-news {
  border-top: 1px solid #1B8354;
  padding-top: 30px;
}
#block-psau-views-block-events-block-2 .list-news .content,
#block-psau-views-block-list-ads-block-2 .list-news .content {
  margin-bottom: 10px;
}
#block-psau-views-block-events-block-2 .list-news .content img,
#block-psau-views-block-list-ads-block-2 .list-news .content img {
  width: 80px;
  height: 80px;
}
#block-psau-views-block-events-block-2 .list-news .content h3,
#block-psau-views-block-list-ads-block-2 .list-news .content h3 {
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
}
#block-psau-views-block-events-block-2 .list-news .content .f_date,
#block-psau-views-block-list-ads-block-2 .list-news .content .f_date {
  color: #6AC7BD;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 13.2px */
}
#block-psau-views-block-events-block-2 .list-news .more-list,
#block-psau-views-block-list-ads-block-2 .list-news .more-list {
  display: none;
}

#block-psau-views-block-news-block-2 h2 {
  color: #1B8354;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 20.4px */
  margin-bottom: 20px;
}
#block-psau-views-block-news-block-2 .other-news {
  border-top: 1px solid #1B8354;
  padding-top: 30px;
}
#block-psau-views-block-news-block-2 .other-news .content {
  margin-bottom: 10px;
}
#block-psau-views-block-news-block-2 .other-news .content img {
  width: 80px;
  height: 80px;
}
#block-psau-views-block-news-block-2 .other-news .content h3 {
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
}
#block-psau-views-block-news-block-2 .other-news .content .f_date {
  color: #6AC7BD;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 13.2px */
}

.list-annual-reports .item {
  border-radius: 10px;
  background: #F1F9F7;
  padding: 15px;
  margin: 10px 0;
}
.list-annual-reports .item .media img {
  width: 100%;
  margin-bottom: 10px;
  height: 200px;
  object-fit: contain;
}
.list-annual-reports .item h3 {
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 168%;
  margin: 0;
  height: 50px;
}
.list-annual-reports .item .f_file {
  text-align: end;
}

.pager__items {
  margin-top: 30px;
}
.pager__items .pager__item {
  margin: 0 3px;
  padding: 3px;
}

.list-directory-phone .accordion-body {
  padding: 10px 40px 30px;
}
.list-directory-phone table {
  margin: 0;
}
.list-directory-phone table td.views-field-field-function {
  --bs-table-color-type: #6AC7BD !important;
}
.list-directory-phone .table-striped > tbody > tr > * {
  --bs-table-bg-type: transparent;
  padding: 15px;
  --bs-table-color-type: #1B8354;
}
.list-directory-phone .table-striped > tbody > tr > * i {
  margin: 0 5px;
  font-size: 16px;
}

.page-search-content .views-exposed-form .form-item {
  width: 28%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #DDD;
  padding: 5px 15px;
  justify-content: space-between;
}
.page-search-content .views-exposed-form .form-item label {
  flex-basis: auto;
  color: #6D6D6D;
  text-align: center;
  font-family: "IBM Plex semiBold";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.page-search-content .views-exposed-form .form-item .form-control {
  border: 0 !important;
  padding: 0 !important;
  height: 35px !important;
  flex-basis: calc(100% - 130px);
  box-shadow: none !important;
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.page-search-content .views-exposed-form .form-item .form-control.form-select {
  padding: 0px 15px !important;
}
.page-search-content .views-exposed-form .form-item.form-item-keyword {
  width: 100%;
}
.page-search-content .views-exposed-form .form-item.form-item-keyword:after {
  display: none;
}
.page-search-content .views-row {
  border-bottom: 1px solid #E0E0E0;
  padding: 15px 0;
  margin: 10px 0;
}
.page-search-content .views-row .views-field-type {
  border-radius: 5px;
  border: 1px solid #6AC7BD;
  background: #F1F9F7;
  padding: 5px 26px;
  color: #1B8354;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  width: max-content;
}
.page-search-content .views-row .views-field-title {
  margin: 6px 0;
}
.page-search-content .views-row .views-field-title a {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.page-search-content .views-row .views-field-body {
  color: #6D6D6D;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.service-worthyit header h2 {
  color: #1B8354;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  font-family: "IBM Plex Medium";
}
.service-worthyit header h2 i {
  color: #1B8354;
  border: 1px solid #1B8354;
  padding: 5px 7px;
  border-radius: 50%;
}
.service-worthyit header p {
  color: #1F2A37;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  font-family: "IBM Plex semiBold";
}
.service-worthyit header p strong {
  color: red;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.service-worthyit .bef-exposed-form ul {
  display: flex;
  gap: 10px;
  list-style-type: none;
  flex-direction: column;
}
@media (min-width: 1400px) {
  .service-worthyit .bef-exposed-form ul {
    flex-direction: row;
  }
}
.service-worthyit .bef-exposed-form ul li {
  padding: 7px 15px;
  border-radius: 3px;
  border: 1px solid #1B8354;
  color: #1B8354;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.service-worthyit .bef-exposed-form ul li:hover {
  background: #1B8354;
  border: 1px solid #1B8354;
}
.service-worthyit .bef-exposed-form ul li:hover a {
  color: #fff;
}
.service-worthyit .table > :not(caption) > * > * {
  padding: 10px;
}
.service-worthyit .table > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: #FFF;
}
.service-worthyit .table > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: #FAFAFA;
}
.service-worthyit .table thead th {
  height: auto;
  line-height: initial;
  font-size: 10px;
}
@media (min-width: 1400px) {
  .service-worthyit .table thead th {
    height: 49px;
    line-height: 30px;
    font-size: 14px;
  }
}
.service-worthyit .table thead th.views-field-nothing {
  background-color: #1B8354 !important;
  border-radius: 0px 5px 5px 0px;
}
.service-worthyit .table thead th.views-field-body {
  background-color: #14573A !important;
}
.service-worthyit .table thead th.views-field-field-category {
  background-color: #1B8354 !important;
  border-radius: 5px 0px 0px 5px;
}
.service-worthyit .table .f_info {
  gap: 10px;
  display: block;
}
@media (min-width: 1400px) {
  .service-worthyit .table .f_info {
    display: flex;
  }
}
.service-worthyit .table .f_info .f_logo img {
  width: 75.034px;
  border-radius: 5px;
  border: 1px solid #1B8354;
  object-fit: cover;
  margin-bottom: 5px;
  height: auto;
}
@media (min-width: 1400px) {
  .service-worthyit .table .f_info .f_logo img {
    height: 54.462px;
  }
}
.service-worthyit .table .f_info .f_text h3 {
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  font-size: 9px;
}
@media (min-width: 1400px) {
  .service-worthyit .table .f_info .f_text h3 {
    font-size: 14px;
  }
}
.service-worthyit .table .f_info .f_text span {
  color: #FFF;
  padding: 4px 8px;
  border-radius: 5px;
  background: #1B8354;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  font-size: 7px;
}
@media (min-width: 1400px) {
  .service-worthyit .table .f_info .f_text span {
    font-size: 10px;
  }
}
.service-worthyit .table .views-field-body {
  padding: 15px;
}
.service-worthyit .table .views-field-body p {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 10px;
}
@media (min-width: 1400px) {
  .service-worthyit .table .views-field-body p {
    font-size: 14px;
  }
}
.service-worthyit .table .views-field-body ul, .service-worthyit .table .views-field-body ol {
  margin: 0;
  list-style-type: none;
  display: block;
}
@media (min-width: 1400px) {
  .service-worthyit .table .views-field-body ul, .service-worthyit .table .views-field-body ol {
    display: flex;
  }
}
.service-worthyit .table .views-field-body ul li, .service-worthyit .table .views-field-body ol li {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  padding: 0;
  width: auto;
  font-size: 10px;
}
@media (min-width: 1400px) {
  .service-worthyit .table .views-field-body ul li, .service-worthyit .table .views-field-body ol li {
    width: 50%;
    font-size: 14px;
  }
}
.service-worthyit .table .views-field-body ul li:before, .service-worthyit .table .views-field-body ol li:before {
  content: "";
  width: 6.5px;
  height: 6.5px;
  background: #1B8354;
  position: absolute;
  border-radius: 50%;
  top: 8px;
  right: -15px;
}
.service-worthyit .table .views-field-field-category {
  text-align: center;
}
.service-worthyit .table .views-field-field-category span {
  border-radius: 4px;
  color: #1B8354;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  border: none;
  padding: 0;
}
@media (min-width: 1400px) {
  .service-worthyit .table .views-field-field-category span {
    border: 1px solid #D2D2D2;
    padding: 9px;
  }
}

.paragraph--type--composant-image {
  text-align: center;
}
.paragraph--type--composant-image .f-image {
  margin: 10px 0;
}
.paragraph--type--composant-image .f-image.display_100 img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.paragraph--type--composant-document {
  margin: 15px 0 20px;
}
.paragraph--type--composant-document .paragraph--type--document {
  margin: 10px 0;
}
.paragraph--type--composant-document .paragraph--type--document a img {
  margin-right: 5px;
}

.paragraph--type--composant-owl-carousel {
  padding: 30px;
}
.paragraph--type--composant-owl-carousel .paragraph-carousel .owl-item img {
  height: 120px;
  object-fit: fill;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.paragraph--type--composant-owl-carousel .paragraph-carousel .owl-nav {
  top: 45%;
}
.paragraph--type--composant-owl-carousel .paragraph-carousel .owl-nav .owl-prev {
  right: -30px;
}
.paragraph--type--composant-owl-carousel .paragraph-carousel .owl-nav .owl-next {
  left: -30px;
}

.paragraph--type--composant-application {
  display: flex;
  gap: 5px;
  margin: 15px 0;
}

.paragraph--type--composant-button {
  margin: 40px 0;
}
.paragraph--type--composant-button > div {
  display: flex;
  justify-content: end;
  gap: 10px;
  flex-flow: wrap;
}
.paragraph--type--composant-button > div > div {
  margin: 10px 0;
}
.paragraph--type--composant-button > div > div:nth-of-type(even) a {
  color: #1B8354;
  background: #FFFFFF;
  border: 1px solid #1B8354;
}
.paragraph--type--composant-button > div > div:nth-of-type(even) a:hover {
  background: #1B8354;
  color: #FFFFFF;
}
.paragraph--type--composant-button > div a {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #1B8354;
  padding: 10px 20px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 168%;
  color: #FFFFFF;
  margin: 40px 0;
}
.paragraph--type--composant-button > div a:hover {
  color: #1B8354;
  background: #FFFFFF;
  border: 1px solid #1B8354;
}

.paragraph--type--composant-block .block h2 {
  font-family: "IBM Plex Bold";
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 20px 0 40px;
}
.paragraph--type--composant-block .block .quicktabs-tabs {
  margin-bottom: 40px;
}
.paragraph--type--composant-block .block .quicktabs-tabs li {
  margin: 0;
  padding: 10px;
}
.paragraph--type--composant-block .block .quicktabs-tabs li a {
  font-family: "IBM Plex Medium";
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.paragraph--type--composant-block .block .quicktabs-tabs li.active {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #1B8354;
}
.paragraph--type--composant-block .block .quicktabs-tabs li.active a {
  color: #FFFFFF;
}

.paragraph--type--composant-list-image {
  margin-bottom: 30px;
}
.paragraph--type--composant-list-image h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: 20px;
}
.paragraph--type--composant-list-image .paragraph--type--list-image {
  margin: 10px 0;
  padding: 10px;
}
.paragraph--type--composant-list-image .paragraph--type--list-image img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
  border: 1px solid #eee;
}
.paragraph--type--composant-list-image .paragraph--type--list-image div:nth-child(2) {
  text-align: center;
}
.paragraph--type--composant-list-image .paragraph--type--list-image div:nth-child(2) a {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.paragraph--type--composant-list-image .paragraph--type--list-image .f_title {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  padding: 10px;
  object-fit: cover;
}
.paragraph--type--composant-list-image.paragraph-58 .col-lg-4 {
  width: 25%;
}

.paragraph--type--composant-text-image {
  margin: 30px 0;
}
.paragraph--type--composant-text-image .f_image {
  text-align: center;
}
.paragraph--type--composant-text-image .f_image img {
  border-radius: 10px;
}
.paragraph--type--composant-text-image p {
  color: #1B8354;
  text-align: justify;
  font-family: "IBM Plex Light";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.paragraph--type--composant-key-figure {
  margin: 60px 0;
}
.paragraph--type--composant-key-figure .paragraph--type--key-figure {
  text-align: center;
}
.paragraph--type--composant-key-figure .paragraph--type--key-figure .f_key {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 37.04px;
  font-style: normal;
  font-weight: 700;
  line-height: 164%;
}
.paragraph--type--composant-key-figure .paragraph--type--key-figure .f_title {
  color: #6AC7BD;
  font-family: "IBM Plex Light";
  font-size: 12.347px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}
.paragraph--type--composant-key-figure .paragraph--type--key-figure + .paragraph--type--key-figure {
  border-left: 1px solid #E4E4E4;
}

.page-node-type-university-life .paragraph--type--composant-text h2 {
  position: relative;
  width: max-content;
  padding-bottom: 10px;
  margin: 20px 0;
}
.paragraph--type--composant-table {
  margin: 30px 0;
}
.paragraph--type--composant-table table thead tr th {
  background-color: #1B8354 !important;
  padding: 16px 15px;
  color: #fff !important;
  border-bottom-width: 0;
}
.paragraph--type--composant-table table tbody tr td {
  padding: 16px 15px;
  color: #000 !important;
  border-bottom-width: 0;
}
.paragraph--type--composant-table table caption {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 164%;
  text-align: left;
  margin-bottom: 10px;
}
.paragraph--type--composant-table table > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: #F6F6F6;
}

.list-directory-phone .accordion .accordion-item,
.paragraph--type--composant-accordion .accordion .accordion-item {
  margin: 10px 0;
  border-bottom: 1px solid #DCDCDC;
}
.list-directory-phone .accordion .accordion-item .accordion-button,
.paragraph--type--composant-accordion .accordion .accordion-item .accordion-button {
  border-radius: 5px;
  border: 0;
  background: #FFF;
  box-shadow: none;
  color: #161616;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  width: 98%;
}
.list-directory-phone .accordion .accordion-item .accordion-button:after,
.paragraph--type--composant-accordion .accordion .accordion-item .accordion-button:after {
  filter: brightness(0) saturate(100%) invert(45%) sepia(40%) saturate(470%) hue-rotate(126deg) brightness(83%) contrast(86%);
}

.paragraph--type--composant-tabs .nav-tabs {
  border: 0;
}
.paragraph--type--composant-tabs .nav-tabs .paragraph .paragraph {
  display: none;
}
.paragraph--type--composant-tabs .nav-tabs button {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #1B8354;
  background: #FFF;
  color: #1B8354;
}
.paragraph--type--composant-tabs .nav-tabs button.active {
  color: #FFF;
  background: #1B8354;
}
.paragraph--type--composant-tabs .tab-content .paragraph--type--tabs .f_title {
  display: none;
}

.paragraph--type--composant-image-qrcode {
  display: flex;
  gap: 15px;
}
.paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode {
  width: 130px;
}
.paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode img {
  width: 130px;
  height: 130px;
  padding: 10px;
  border-radius: 8.176px;
  border: 0.818px solid #D6D6D6;
}
.paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode .f_title {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  color: #1B8354;
  font-family: "IBM Plex Medium";
}

.paragraph--type--composant-image-text-editor .f_subtitle {
  color: #1B8354 !important;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 15.6px */
}
.paragraph--type--composant-image-text-editor h2 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%; /* 29.26px */
}
.paragraph--type--composant-image-text-editor .f_body p {
  color: #5E5E5E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  text-align: justify;
}
.paragraph--type--composant-image-text-editor .f_link {
  text-align: right;
}
.paragraph--type--composant-image-text-editor .f_link a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
}
.paragraph--type--composant-image-text-editor .f_link a:after {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 12px;
  line-height: 170%;
  top: 5px;
  content: "\f061";
  right: -15px;
}
.paragraph--type--composant-image-text-editor .f_image .media {
  position: relative;
  width: 90%;
  margin: auto;
}
.paragraph--type--composant-image-text-editor .f_image .media:after {
  content: "";
  position: absolute;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  left: -15px;
  top: -15px;
  background: #F1F9F7;
}
.paragraph--type--composant-image-text-editor .f_image .media > div:nth-child(2) > div {
  position: relative;
  z-index: 99;
}
.paragraph--type--composant-image-text-editor .f_image .media img {
  z-index: 999;
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.paragraph--type--composant-director {
  position: relative;
  z-index: 111;
}
.paragraph--type--composant-director .row {
  margin: 0 15px;
}
@media (min-width: 992px) {
  .paragraph--type--composant-director .row {
    margin: initial;
  }
}
.paragraph--type--composant-director .row .block_text {
  padding: 30px;
}
@media (min-width: 992px) {
  .paragraph--type--composant-director .row .block_text {
    padding: initial;
  }
}
.paragraph--type--composant-director .f_subtitle {
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 15.6px */
  position: relative;
  color: #FFF;
  /* Text sm/Bold */
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}
.paragraph--type--composant-director .f_subtitle:after {
  position: absolute;
  background: linear-gradient(270deg, #3C7A75 0%, #75C6BB 100%);
  width: 22px;
  right: -25px;
  top: 6px;
  z-index: 999;
  height: 2px;
}
.paragraph--type--composant-director h2 {
  font-family: "IBM Plex Medium";
  font-style: normal;
  line-height: 133%; /* 29.26px */
  color: #FFF;
  /* Display xs/Semibold */
  font-size: 24px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.paragraph--type--composant-director .f_body p {
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  color: #FFF !important;
  /* Text lg/Regular */
  font-size: 18px;
  line-height: 28px; /* 155.556% */
}
.paragraph--type--composant-director .f_link {
  text-align: right;
}
.paragraph--type--composant-director .f_link a {
  font-style: normal;
  position: relative;
  color: #FFF;
  /* Text sm/Regular */
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.paragraph--type--composant-director .f_link a:after {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 12px;
  line-height: 170%;
  top: 5px;
  content: "\f061";
  right: -15px;
}
.paragraph--type--composant-director .f_link a i {
  position: absolute;
  font-size: 12px;
  line-height: 170%;
  top: 4px;
  left: -15px;
}
.paragraph--type--composant-director .f_name {
  display: none;
}
.paragraph--type--composant-director .f_image {
  text-align: center;
}
.paragraph--type--composant-director .f_image .name {
  margin: 10px auto;
}
.paragraph--type--composant-director .f_image .name h6 {
  font-size: 14px;
  font-style: normal;
  color: #FFF;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.paragraph--type--composant-director .f_image .media {
  position: relative;
  width: 90%;
  margin: auto;
}
.paragraph--type--composant-director .f_image .media:after {
  position: absolute;
  border-radius: 10px;
  border: 1px solid #75C6BB;
  height: 100%;
  width: 100%;
  right: -10px;
  top: -10px;
}
.paragraph--type--composant-director .f_image .media > div:nth-child(2) > div {
  position: relative;
  z-index: 999;
}
.paragraph--type--composant-director .f_image .media img {
  z-index: 999;
  position: relative;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
  border: 1px solid #EAEAEA;
}

.paragraph ul, .paragraph ol, .paragraph li, .paragraph p {
  color: #5E5E5E;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}

.paragraph--type--composant-text-tow-columns h2 {
  color: #2A2A2A;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%; /* 29.26px */
  width: 90%;
}
.paragraph--type--composant-text-tow-columns h3 {
  color: #1B8354;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 15.6px */
}
.paragraph--type--composant-text-tow-columns .block_2 {
  border-radius: 10px;
  background: #F1F9F7;
  padding: 30px;
}
.paragraph--type--composant-text-tow-columns .block_2 ul li {
  color: #5E5E5E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 25.6px */
}

.paragraph--type--composant-content-icon {
  background-color: #1B8354;
  padding: 40px 0;
  position: relative;
}
.paragraph--type--composant-content-icon video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: opacity(0.3);
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon {
  background: #fff;
  padding: 15px;
  margin: 10px 0;
  display: flex;
  gap: 30px;
  z-index: 1;
  position: relative;
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon .f_icon {
  background: #6AC7BD;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon .f_icon img {
  width: 24px;
  height: 24px;
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon .f_content {
  width: 90%;
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon .f_content h4 {
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 15.6px */
}
.paragraph--type--composant-content-icon .paragraph--type--content-icon .f_content p, .paragraph--type--composant-content-icon .paragraph--type--content-icon .f_content li {
  color: #5E5E5E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 25.6px */
}

.block-webform-block .block-feedback {
  background: #EEF6F5;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  padding: 10px 15px;
  margin: 50px auto;
}
@media (min-width: 768px) {
  .block-webform-block .block-feedback {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline {
  display: flex;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline legend {
  float: none !important;
  margin-right: 0.5em !important;
  display: contents !important;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline legend span.fieldset-legend {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 31px;
  color: #1B8354;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios {
  display: flex;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios .form-item-question {
  position: relative;
  width: 55px;
  height: 30px;
  background: #1B8354;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: #FFFFFF;
  margin: 0 5px;
  text-align: center;
  line-height: 30px;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios .form-item-question .form-radio {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  cursor: pointer;
}
.block-webform-block .block-feedback .resultat-feedback {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #545454;
  padding-top: 10px;
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
}
.block-webform-block .block-feedback .resultat-feedback span {
  margin: 0 4px;
}

form .button {
  background: #1B8354;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 169.7%;
  text-align: center;
  border: 0;
}
form .button:hover {
  background: #6AC7BD;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 169.7%;
  text-align: center;
  border: 0;
}
form.views-exposed-form {
  margin: 15px 0;
}
form.views-exposed-form .form--inline .form-item {
  margin: 10px 10px;
  min-width: 100%;
}
@media (min-width: 768px) {
  form.views-exposed-form .form--inline .form-item {
    min-width: 150px;
  }
}
form.views-exposed-form .form--inline .form-item .form-control {
  box-sizing: border-box;
  border-radius: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #6E6E6E;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #1B8354;
  padding: 13px 25px;
  line-height: 15px;
  box-shadow: none;
}
form.views-exposed-form .form--inline .form-item.form-item-keyword {
  position: relative;
}
form.views-exposed-form .form--inline .form-item.form-item-keyword:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../../assets/images/icons/search.svg");
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  right: 10px;
}
form.views-exposed-form .form-submit {
  box-sizing: border-box;
  border-radius: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  height: 44px;
  background: #1B8354;
  border: 1px solid #1B8354;
  padding: 13px 25px;
  line-height: 15px;
  box-shadow: none;
  margin: 10px;
}
form .form-check-input:checked {
  background-color: #1B8354;
  border-color: #1B8354;
}

#views-exposed-form-faq-block-1 .form-submit {
  display: none;
}

#searchBlockContent {
  visibility: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
}
#searchBlockContent .content {
  display: table;
  width: 100%;
  height: 100%;
}
#searchBlockContent .content .close {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.7;
}
#searchBlockContent .content .close i {
  text-align: center;
  background: #000;
  color: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}
@media (min-width: 992px) {
  #searchBlockContent .content .close i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}
#searchBlockContent .content .close:hover {
  opacity: 1;
}
#searchBlockContent .content .search-main {
  display: table-cell;
  vertical-align: middle;
}
#searchBlockContent .content .search-main .search-inner {
  margin: 0 auto;
  width: 80%;
}
@media (min-width: 768px) {
  #searchBlockContent .content .search-main .search-inner {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #searchBlockContent .content .search-main .search-inner {
    width: 30%;
  }
}
#searchBlockContent .content .search-main form {
  position: relative;
}
#searchBlockContent .content .search-main .form-item-keyword {
  position: relative;
  cursor: pointer;
}
#searchBlockContent .content .search-main .form-item-keyword:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/images/icons/search-popup.svg");
  background-repeat: no-repeat;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  left: auto;
  right: 10px;
  background-color: #1B8354;
  padding: 10px;
  border-radius: 50%;
  background-position: center;
  width: 35px;
  height: 35px;
}
@media (min-width: 992px) {
  #searchBlockContent .content .search-main .form-item-keyword:after {
    width: 45px;
    height: 45px;
  }
}
#searchBlockContent .content .search-main .form-item-keyword input {
  border-radius: 30px;
  border: 1px solid #1B8354;
  background: #F1F9F7;
  backdrop-filter: blur(1px);
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  height: 45px;
  padding: 15px;
  font-size: 13px;
}
@media (min-width: 992px) {
  #searchBlockContent .content .search-main .form-item-keyword input {
    height: 60px;
    padding: 30px;
    font-size: 16px;
  }
}
#searchBlockContent .content .search-main .form-item-keyword input:focus {
  outline: none;
}
#searchBlockContent .content .search-main .form-submit {
  display: none;
}
#searchBlockContent.-open {
  background: rgba(26, 26, 26, 0.97);
  visibility: visible;
  animation: fadein 0.8s;
}
#searchBlockContent.-open .container .search-main input {
  transform: scale3d(1, 1, 1);
  transition-duration: 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#carouselHome .carouselHome {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome {
    height: 375px;
  }
}
@media (min-width: 1400px) {
  #carouselHome .carouselHome {
    height: 500px;
  }
}
#carouselHome .carouselHome .owl-item {
  position: relative;
  padding: 0;
  height: 250px;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome .owl-item {
    height: 375px;
  }
}
@media (min-width: 1400px) {
  #carouselHome .carouselHome .owl-item {
    height: 500px;
  }
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider {
  width: 100%;
  height: 100%;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider.bg_background {
  position: relative;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider.bg_background:after {
  content: "";
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(3, 71, 65, 0.59) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #009389 0%, #009389 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 29, 0.7) 100%);
  background-blend-mode: normal, color, normal;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider.bg_background .link_clickable {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider video, #carouselHome .carouselHome .owl-item .paragraph--type--slider img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: initial;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider video, #carouselHome .carouselHome .owl-item .paragraph--type--slider img {
    height: 375px;
    object-fit: fill;
  }
}
@media (min-width: 1400px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider video, #carouselHome .carouselHome .owl-item .paragraph--type--slider img {
    height: 500px;
  }
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content {
  position: absolute;
  color: #FFFFFF;
  z-index: 999;
  width: 90%;
  bottom: 20px;
  left: 20px;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content {
    width: 45%;
    bottom: 80px;
    left: 40px;
  }
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content h2 {
  color: #FFFFFF;
  font-family: "IBM Plex semiBold";
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  font-size: 14px;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content h2 {
    font-size: 28px;
  }
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content p {
  color: #FFFFFF;
  font-family: "IBM Plex Light";
  font-style: normal;
  font-weight: 300;
  line-height: 166%;
  width: 80%;
  font-size: 13px;
}
@media (min-width: 768px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content p {
    font-size: 16px;
  }
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content .f_link {
  margin-top: 20px;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content .f_link a {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 5px 30px;
  background: #6AC7BD;
  color: #FFFFFF;
}
#carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content .f_link a:hover {
  background: #FFFFFF;
  color: #1B8354;
}
#carouselHome .owl-dots {
  bottom: 20px;
  justify-content: start;
  margin-right: 0;
  position: absolute;
  left: 40px;
  display: none;
}
@media (min-width: 768px) {
  #carouselHome .owl-dots {
    display: block;
  }
}
#carouselHome .owl-dots button {
  color: #FFFFFF;
  min-width: 130px;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  height: 3px;
  padding: 0;
  margin-right: 10px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 0;
  background: #fff;
}

.register-study {
  margin: 0;
}
@media (min-width: 768px) {
  .register-study {
    margin: 40px 0;
  }
}
.register-study .row {
  margin: 0;
}
.register-study h2 {
  margin-bottom: 20px;
}
.register-study h2.f_h2 {
  margin: 20px auto;
}
.register-study p {
  color: #000000;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
  width: 90%;
}
.register-study .grid-item {
  padding: 0 5px;
}
.register-study .grid-item .item {
  position: relative;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .register-study .grid-item .item {
    margin: 0;
  }
}
.register-study .grid-item .item img {
  width: 100%;
  border-radius: 10px;
}
.register-study .grid-item .item .overly h3, .register-study .grid-item .item .overly a {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: absolute;
  width: 100%;
  bottom: 10px;
}

.block-quicktabs-blockcolleges {
  background: #F0F9F8;
  padding: 40px 0;
  position: relative;
}
.block-quicktabs-blockcolleges:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/before_college.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
}
.block-quicktabs-blockcolleges:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url("../../assets/images/after_college.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
}
.block-quicktabs-blockcolleges h2 {
  margin: auto;
}
.block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs {
  display: flex;
  flex-wrap: wrap;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #5FB3AA;
  margin: 20px auto;
  padding: 12px 0;
  width: auto;
}
@media (min-width: 768px) {
  .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs {
    padding: 12px 15px;
    width: max-content;
  }
}
.block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li {
  margin: 5px;
}
@media (min-width: 768px) {
  .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li {
    margin: 0 10px;
  }
}
.block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li a {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-size: 10px;
}
@media (min-width: 768px) {
  .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li a {
    font-size: 12px;
  }
}
.block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li.active {
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  background: #305A55;
  padding: 3px 7px;
}
@media (min-width: 768px) {
  .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li.active {
    padding: 3px 10px;
  }
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college {
  position: relative;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college:after {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/after-college.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  top: 20%;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content {
  display: block;
  position: relative;
  text-align: center;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content .f_bg {
  padding-top: 0;
}
@media (min-width: 768px) {
  .block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content .f_bg {
    padding-top: 0;
  }
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content img {
  height: 287px;
  object-fit: fill;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item .content h3 {
  position: absolute;
  bottom: 10px;
  right: 40%;
  transform: translateX(35%);
  color: #F1F9F7;
  font-family: "IBM Plex Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item .overly {
  display: none;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .content {
  display: none;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly {
  display: block;
  -webkit-border-radius: 8.581px;
  -moz-border-radius: 8.581px;
  -ms-border-radius: 8.581px;
  -o-border-radius: 8.581px;
  border-radius: 8.581px;
  -webkit-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  background: #FFFFFF;
  padding: 20px;
  height: 287px;
  animation: slide-in 1.5s both;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3 {
  width: max-content;
  max-width: 100%;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly p {
  color: #000000;
  font-family: "IBM Plex Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly .link-view {
  width: 38px;
  height: 38px;
  margin: 10px auto;
  background: #6AC7BD;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly .link-view a {
  color: #FFFFFF;
}
.block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly .link-view a i {
  transform: rotate(25deg);
}
.block_list_news {
  padding: 0 0 50px;
  position: relative;
}
.block_list_news:after {
  position: absolute;
  width: 100%;
  width: 100%;
  height: 64px;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/after-navbar.svg");
  background-position: center;
}
.block_list_news h2 {
  color: #FFFFFF;
  margin: 0 auto;
}
.block_list_news .list-news article {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 0.716px solid #EAEAEB;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -ms-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  -o-box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(7, 7, 7, 0.1);
  padding: 20px;
  position: relative;
}
.block_list_news .list-news article:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/after-news.svg");
  background-position: center;
}
.block_list_news .list-news article .content .f_image {
  position: relative;
}
.block_list_news .list-news article .content .f_image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  height: 160px;
  object-fit: cover;
}
.block_list_news .list-news article .content .f_image .f_date {
  background: #1B8354;
  position: absolute;
  bottom: -30px;
  text-align: center;
  right: 10px;
  max-width: 90px;
  padding: 5px 10px;
}
.block_list_news .list-news article .content .f_image .f_date .datetime {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.block_list_news .list-news article .content .f_content {
  padding: 15px 15px 25px;
  position: relative;
  z-index: 9999;
}
.block_list_news .list-news article .content .f_content p {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-size: 11px;
}
@media (min-width: 768px) {
  .block_list_news .list-news article .content .f_content p {
    font-size: 13px;
  }
}
.block_list_news .list-news article .content .f_content h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  height: 70px;
}
.block_list_news .list-news article .content .f_content .addtoany_list .a2a_default_style a {
  padding: 0px 10px;
  font-size: 18px;
  float: right;
}
.block_list_news .list-news article .content .f_content .addtoany_list .a2a_default_style a:first-child {
  padding: 0px;
}
.block_list_news .list-event article {
  background: #F0F9F8;
  position: relative;
  width: 98%;
}
.block_list_news .list-event article:before {
  content: "";
  border-radius: 10px;
  border: 1px solid #3DD0BC;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: -1;
}
.block_list_news .list-event article .content .f_image .f_date {
  background: #6AC7BD !important;
}
.block_list_news .list-event .carousel-events .owl-stage-outer .owl-stage .owl-item {
  padding: 15px 10px;
}
.block_list_news .more-list {
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .block_list_news .more-list {
    text-align: right;
    margin: 0;
  }
}
.block_list_news .more-list a {
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  position: relative;
}
.block_list_news .more-list a:after {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 12px;
  line-height: 170%;
  top: 5px;
  content: "\f061";
  right: -15px;
}

#block-psau-views-block-university-life-block-1 {
  margin: 40px 0 0;
  background: #074B45;
  color: #FFFFFF;
  padding: 50px 0;
  position: relative;
}
#block-psau-views-block-university-life-block-1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-image: url("../../assets/images/before_university.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 25%;
  z-index: -1;
  display: none;
}
@media (min-width: 768px) {
  #block-psau-views-block-university-life-block-1:before {
    display: block;
  }
}
#block-psau-views-block-university-life-block-1 h2 {
  text-align: center;
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
  width: max-content;
  margin: auto;
  padding-bottom: 10px;
}
#block-psau-views-block-university-life-block-1 h2:after {
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
}
#block-psau-views-block-university-life-block-1 .university-life header {
  display: none;
}
@media (min-width: 768px) {
  #block-psau-views-block-university-life-block-1 .university-life header {
    display: block;
  }
}
#block-psau-views-block-university-life-block-1 .university-life header p {
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  width: 80%;
  margin: 30px auto;
}
#block-psau-views-block-university-life-block-1 .university-life .item .content {
  display: block;
  position: relative;
}
#block-psau-views-block-university-life-block-1 .university-life .item .content .f_bg h3 {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 15.183px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: absolute;
  bottom: 20px;
  right: 30px;
}
#block-psau-views-block-university-life-block-1 .university-life .item .content img {
  height: 250px;
  -webkit-border-radius: 8.581px;
  -moz-border-radius: 8.581px;
  -ms-border-radius: 8.581px;
  -o-border-radius: 8.581px;
  border-radius: 8.581px;
  object-fit: cover;
}
@media (min-width: 768px) {
  #block-psau-views-block-university-life-block-1 .university-life .item .content img {
    object-fit: fill;
  }
}
#block-psau-views-block-university-life-block-1 .university-life .item .overly {
  display: none;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .content {
  display: none;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly {
  display: block;
  -webkit-border-radius: 8.581px;
  -moz-border-radius: 8.581px;
  -ms-border-radius: 8.581px;
  -o-border-radius: 8.581px;
  border-radius: 8.581px;
  -webkit-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  background: #FFFFFF;
  color: #1B8354;
  padding: 15px;
  height: 250px;
  position: relative;
  animation: slide-in 1.5s both;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/after-news.svg");
  background-position: center;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly p {
  color: #000000;
  font-family: "IBM Plex Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly .link-view {
  width: 38px;
  height: 38px;
  margin: 10px auto;
  background: #6AC7BD;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly .link-view a {
  color: #FFFFFF;
}
#block-psau-views-block-university-life-block-1 .university-life .item:hover .overly .link-view a i {
  transform: rotate(25deg);
}
#block-psau-views-block-university-life-block-1 .university-life .owl-nav button i {
  color: #FFFFFF;
}
#block-psau-views-block-university-life-block-1 .university-life .btn-footer {
  text-align: center;
}
#block-psau-views-block-university-life-block-1 .university-life .btn-footer .btn {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  text-align: center;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 5px 10px;
  padding: 10px 15px;
  font-size: 12px;
}
@media (min-width: 768px) {
  #block-psau-views-block-university-life-block-1 .university-life .btn-footer .btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}
#block-psau-views-block-university-life-block-1 .university-life .btn-footer .btn:hover {
  background: #FFFFFF;
  color: #1B8354;
}

#block-psau-quicktabsservice {
  background: #F1F9F7;
  padding: 40px 0;
}
#block-psau-quicktabsservice h2 {
  margin: auto;
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs {
  width: max-content;
  margin: 30px auto 40px;
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li {
  padding: 12px 15px;
  background: #5FB3AA;
  margin: 5px;
  display: block;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li {
    margin: 0;
    display: inline;
  }
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li:first-child {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li:first-child {
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -ms-border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
    border-radius: 10px 0 0 10px;
  }
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li:last-child {
  background: #4A9F96;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li:last-child {
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -ms-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0;
  }
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li a {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 3px 10px;
}
#block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li.active a {
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  background: #1B8354;
}
#block-psau-quicktabsservice .list_services_home {
  display: flex;
  flex-wrap: wrap;
}
#block-psau-quicktabsservice .list_services_home > div {
  width: 50%;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .list_services_home > div {
    width: 33.33%;
  }
}
@media (min-width: 992px) {
  #block-psau-quicktabsservice .list_services_home > div {
    width: 20%;
  }
}
#block-psau-quicktabsservice .list_services_home > div:nth-child(10) .f_counter span {
  display: none;
}
#block-psau-quicktabsservice .list_services_home > div .item {
  height: 164px;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .list_services_home > div .item {
    height: 164px;
  }
}
@media (min-width: 1400px) {
  #block-psau-quicktabsservice .list_services_home > div .item {
    height: 200px;
  }
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display {
  display: block;
  position: relative;
  border: 1px solid #BDE2E2;
  background: #FFFFFF;
  height: 100%;
  padding: 15px 25px;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .f_counter {
  color: #6AC7BD;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .icon {
  display: inline-block;
  position: relative;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .icon img {
  width: 33.333px;
  height: 33.333px;
  z-index: 999;
  position: relative;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .icon:after {
  content: "";
  width: 37.5px;
  height: 37.5px;
  background: #D1EEEB;
  border-radius: 50%;
  position: absolute;
  bottom: -50%;
  right: -45%;
  opacity: 0.6;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .f_link {
  position: absolute;
  bottom: 10px;
  left: 14px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  border-radius: 11px;
  border: 1px solid #1B8354;
  padding: 3px 15px;
}
#block-psau-quicktabsservice .list_services_home > div .item .f_display .f_link a i {
  transform: rotate(25deg);
}
#block-psau-quicktabsservice .list_services_home > div .item .f_hover {
  display: none;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_display {
  display: none;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover {
  height: 100%;
  display: block;
  -webkit-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3.796px 12.336px 0px rgba(0, 0, 0, 0.25);
  background: #1B8354;
  color: #FFFFFF;
  padding: 15px;
  position: relative;
  margin-top: -10px;
  z-index: 999;
  animation: slide-in 1.5s both;
  height: 184px;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover {
    height: 184px;
  }
}
@media (min-width: 1400px) {
  #block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover {
    height: 220px;
  }
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover h3 {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
  padding-bottom: 10px;
  width: max-content;
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -ms-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover h3:after {
  content: "";
  border-radius: 50px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  left: 0;
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -ms-transition: all 5s ease;
  -o-transition: all 5s ease;
  transition: all 5s ease;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover p {
  color: #FFFFFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover .link-view a {
  color: #FFFFFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.3s ease 0s;
  position: relative;
  display: inline-block;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover .link-view a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  left: auto;
  right: 0;
  background: #fff;
}
#block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover .f_counter {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E4E4E4;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 5px;
}
#block-psau-quicktabsservice .more-list {
  margin: 20px 0;
  text-align: center;
}
@media (min-width: 768px) {
  #block-psau-quicktabsservice .more-list {
    text-align: right;
  }
}
#block-psau-quicktabsservice .more-list a {
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration-line: underline;
}

.block_list_achievements {
  margin: 30px 0;
}
.block_list_achievements .block__content {
  padding: 20px 0;
}
.block_list_achievements .block__content h2 {
  font-family: "IBM Plex Regular";
  color: #161616;
  font-size: 23.197px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.383px; /* 126.667% */
}
.block_list_achievements .block__content header p {
  color: #277048;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.block_list_achievements .block__content .item .media img {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  height: 166px;
  object-fit: contain;
}
.block_list_achievements .block__content .item .f_date {
  color: #277048;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin: 10px 0;
}
.block_list_achievements .block__content .item .f_title {
  border-radius: 0 0 6.056px 6.056px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #067647;
  padding: 15px;
}
.block_list_achievements .block__content .item .f_title h3, .block_list_achievements .block__content .item .f_title a {
  color: #fff;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 10px 0;
}
.block_list_achievements .more-list {
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .block_list_achievements .more-list {
    text-align: right;
  }
}
.block_list_achievements .more-list a {
  color: #1B8354;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  position: relative;
}
.block_list_achievements .more-list a:after {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 12px;
  line-height: 170%;
  top: 5px;
  content: "\f061";
  right: -15px;
}

.block_list_achievements .block__content .carousel-section-colleges .item .media img {
  object-fit: fill;
}

#block-psau-views-block-ads-block-2 {
  border-top: 1px solid #E2E2E2;
  margin: 50px 0 0;
  padding: 25px 0;
  gap: 10px;
  width: 100%;
  display: block;
}
@media (min-width: 992px) {
  #block-psau-views-block-ads-block-2 {
    display: inline-flex;
  }
}
#block-psau-views-block-ads-block-2 h2 {
  border-radius: 10px;
  background: #F1F9F7;
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 18px */
  text-align: center;
  padding: 11px 11px;
  height: 40px;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee {
  width: 88%;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .views-field-title .field-content {
  color: #1B8354;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 18px */
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .owl-carousel .owl-nav {
  position: absolute;
  top: 10px;
  width: 0;
  color: #1B8354;
  right: 0;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .owl-carousel .owl-nav button {
  width: auto;
  height: auto;
  border: none;
  border: none !important;
  color: #1B8354 !important;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .owl-carousel .owl-nav button.disabled {
  border: none !important;
  color: rgba(27, 131, 84, 0.4901960784) !important;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .owl-carousel .owl-nav button.owl-next {
  left: 0;
  right: 15px;
}
#block-psau-views-block-ads-block-2 .list-ads-marquee .owl-carousel .owl-nav button.owl-prev {
  left: 15px;
  right: 0;
}

.carousel-section-colleges {
  display: flex !important;
  justify-content: center;
}

.carousel-achievements .owl-nav {
  top: 25% !important;
}

.carousel-section-colleges .owl-nav {
  top: 30% !important;
}

.carousel-news .owl-nav {
  top: 40% !important;
}

.share_addtoany {
  border-top: 1px solid #E1E1E1;
  padding: 15px 0;
  margin-top: 15px;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.share_addtoany .text-label p {
  margin: 0;
}
.share_addtoany .addtoany_list a i {
  color: #212121;
  font-size: 20px;
}

.page_content {
  margin: 30px 0;
}
.page_content .sidebar_first {
  order: 1 !important;
}
@media (min-width: 768px) {
  .page_content .sidebar_first {
    order: 1 !important;
  }
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1,
.page_content .sidebar_first .navigation {
  background: #fff;
  padding: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin: 0px 15px 15px 0;
}
@media (min-width: 768px) {
  .page_content .sidebar_first .block-views-blockmenu-section-college-block-1,
  .page_content .sidebar_first .navigation {
    margin-right: 15px;
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -ms-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0;
  }
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 h5,
.page_content .sidebar_first .navigation h5 {
  font-family: "IBM Plex Bold";
  color: #1F2A37;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu,
.page_content .sidebar_first .navigation .item-list > ul,
.page_content .sidebar_first .navigation ul.menu {
  margin: 0;
  padding: 10px 0;
  list-style-type: none;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul li,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu li,
.page_content .sidebar_first .navigation .item-list > ul li,
.page_content .sidebar_first .navigation ul.menu li {
  margin: 5px 0;
  padding: 10px;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul li a,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu li a,
.page_content .sidebar_first .navigation .item-list > ul li a,
.page_content .sidebar_first .navigation ul.menu li a {
  color: #384250;
  line-height: 20px;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul li.menu-item--active-trail a,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu li.menu-item--active-trail a,
.page_content .sidebar_first .navigation .item-list > ul li.menu-item--active-trail a,
.page_content .sidebar_first .navigation ul.menu li.menu-item--active-trail a {
  color: #1B8354;
  font-weight: 600;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul li.menu-icon a,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu li.menu-icon a,
.page_content .sidebar_first .navigation .item-list > ul li.menu-icon a,
.page_content .sidebar_first .navigation ul.menu li.menu-icon a {
  display: flex;
  gap: 10px;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 .item-list > ul li:hover a,
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul.menu li:hover a,
.page_content .sidebar_first .navigation .item-list > ul li:hover a,
.page_content .sidebar_first .navigation ul.menu li:hover a {
  color: #1B8354;
  font-weight: 600;
}
.page_content .sidebar_content {
  order: 2 !important;
}
.page_content .sidebar_content .block-system-main-block {
  margin-left: 15px;
}
.page_content .sidebar_content .block-system-main-block article {
  min-height: 100%;
}
.page_content .sidebar_content .block-system-main-block article .content {
  margin-bottom: 60px;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body {
  color: #1B8354;
  display: inline-block;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body.image_content img {
  border-radius: 10px;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body.image_content.position-right img {
  float: left;
  margin-right: 20px;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body.image_content.position- img, .page_content .sidebar_content .block-system-main-block article .content .text_body.image_content.position-left img {
  float: right;
  margin-left: 20px;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body h2 {
  font-family: "IBM Plex Bold";
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.page_content .sidebar_content .block-system-main-block article .content .text_body p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}
.page_content .sidebar_content .block-system-main-block article .node_information {
  justify-content: space-between;
  width: 100%;
  bottom: 10px;
  flex-direction: initial;
  display: block;
}
@media (min-width: 992px) {
  .page_content .sidebar_content .block-system-main-block article .node_information {
    display: flex;
  }
}
.page_content .sidebar_content .block-system-main-block article .node_information span.text {
  color: #6AC7BD;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.page_content .sidebar_content .block-system-main-block article .node_information time {
  color: #1B8354;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.page_content .sidebar_content .block-system-main-block article .node_information .f_date,
.page_content .sidebar_content .block-system-main-block article .node_information .f_share {
  display: flex;
  gap: 10px;
  color: #1B8354;
  flex-direction: initial;
  margin: 15px 0;
}
@media (min-width: 992px) {
  .page_content .sidebar_content .block-system-main-block article .node_information .f_date,
  .page_content .sidebar_content .block-system-main-block article .node_information .f_share {
    margin: 5px 0;
  }
}

.page-node-type-page .block-system-main-block {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  margin-left: 15px;
  padding: 15px;
}
.page-node-type-page .block-system-main-block article {
  min-height: 100%;
}
.page-node-type-page .block-system-main-block article .content {
  margin-bottom: 60px;
}
.page-node-type-page .block-system-main-block article .content .text_body {
  color: #1B8354;
  display: inline-block;
}
.page-node-type-page .block-system-main-block article .content .text_body.image_content img {
  border-radius: 10px;
}
.page-node-type-page .block-system-main-block article .content .text_body.image_content.position-right img {
  float: left;
  margin-right: 20px;
  width: 290px;
  height: 215px;
}
.page-node-type-page .block-system-main-block article .content .text_body.image_content.position- img, .page-node-type-page .block-system-main-block article .content .text_body.image_content.position-left img {
  float: right;
  margin-left: 20px;
  width: 290px;
  height: 215px;
}
.page-node-type-page .block-system-main-block article .content .text_body h2 {
  font-family: "IBM Plex Bold";
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.page-node-type-page .block-system-main-block article .content .text_body p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}
.page-node-type-page .block-system-main-block article .node_information {
  justify-content: space-between;
  width: 100%;
  bottom: 10px;
  flex-direction: initial;
  display: block;
}
@media (min-width: 992px) {
  .page-node-type-page .block-system-main-block article .node_information {
    display: flex;
  }
}
.page-node-type-page .block-system-main-block article .node_information span.text {
  color: #6AC7BD;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.page-node-type-page .block-system-main-block article .node_information time {
  color: #1B8354;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
}
.page-node-type-page .block-system-main-block article .node_information .f_date,
.page-node-type-page .block-system-main-block article .node_information .f_share {
  display: flex;
  gap: 10px;
  color: #1B8354;
  flex-direction: initial;
  margin: 15px 0;
}
@media (min-width: 992px) {
  .page-node-type-page .block-system-main-block article .node_information .f_date,
  .page-node-type-page .block-system-main-block article .node_information .f_share {
    margin: 5px 0;
  }
}

.node-311 .paragraph--type--composant-text .text-formatted {
  width: 30%;
  left: 70%;
  position: relative;
}
.node-311 .paragraph--type--composant-text .text-formatted p {
  text-align: center;
}

.path-academic-calendar .page_content,
.path-academic-programs .page_content {
  margin: 0;
}
.path-academic-calendar .page_content .block-system-main-block,
.path-academic-programs .page_content .block-system-main-block {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.page-node-type-academic-programs .page_content .block-system-main-block {
  padding: 30px;
}

.article-programs h2 {
  color: #1B8354;
  font-family: "IBM Plex semiBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 20px 0;
}
.article-programs .text_body.image_content img {
  border-radius: 10px;
}
.article-programs .text_body.image_content.position-right img {
  float: left;
  margin-right: 20px;
}
.article-programs .text_body.image_content.position- img, .article-programs .text_body.image_content.position-left img {
  float: right;
  margin-left: 20px;
}
.article-programs .f_program_info .f_info {
  color: #1B8354;
  margin: 10px 0;
}

.node-311 .position-right .media--view-mode-image-position-page {
  margin-left: 20px;
  position: relative;
  float: right;
}
.node-311 .position-right .media--view-mode-image-position-page > div:nth-child(2):after {
  content: "";
  position: absolute;
  border-radius: 10px;
  border: 1px solid #75C6BB;
  height: 100%;
  width: 90%;
  right: -8px;
  top: -8px;
}
.node-311 .position-right .media--view-mode-image-position-page > div:nth-child(2) > div {
  position: relative;
  z-index: 999;
}

.node-389 .sidebar_content .block-system-main-block {
  box-shadow: none;
}

.article-contact h2 {
  color: #1B8354;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.article-contact .f_item {
  padding: 15px;
}
.article-contact .f_item img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(17%) saturate(941%) hue-rotate(124deg) brightness(95%) contrast(84%);
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.article-contact .f_item span {
  color: #1B8354;
}
.article-contact iframe {
  border-radius: 0px 10px 10px 0px;
  border: 1px solid #DBDBDB !important;
  width: 95%;
  height: 100%;
}
.article-contact form .form-submit {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #E3EAEA;
  background: #1B8354;
  height: 48px;
}

.path-node .f_body img {
  max-width: 100%;
}
.path-node .f_description {
  text-align: justify;
  color: #7C7C7C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
.path-node article.single-news h2, .path-node article.single-news h1 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 54.4px */
}
.path-node article.single-news .media img {
  width: 96%;
  border-radius: 10px;
  margin: 10px 0;
  object-fit: fill;
  height: auto;
}
@media (min-width: 768px) {
  .path-node article.single-news .media img {
    height: 357px;
  }
}
.path-node article.single-news .f_title {
  border-bottom: 1px solid #E4E4E4;
}
.path-node article.single-news .f_title h3 {
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  position: relative;
  width: max-content;
}
.path-node article.single-news .f_title h3:after {
  content: "";
  background: #6AC7BD;
  position: absolute;
  bottom: -9px;
  height: 2px;
  width: 100%;
  right: 0;
}
.path-node article.single-news .carousel-gallery .media img {
  height: 160px;
  border-radius: 7px;
  object-fit: fill;
}
.path-node article.single-news .carousel-gallery .owl-nav .owl-next {
  left: -20px;
}
.path-node article.single-news .carousel-gallery .owl-nav .owl-prev {
  right: -30px;
}
.path-node article.single-news p {
  color: #7C7C7C;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 36px */
}
.path-node article.single-news .f_date {
  color: #6AC7BD;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 13.2px */
}
.path-node article.single-news .f_body {
  width: 98%;
}
.path-node article.single-news .f_body .f_share {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}
.path-node article.single-news .f_body .f_share .f_desc {
  border-radius: 2px;
  border: 1px solid #E9E9E9;
  color: #000 !important;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  padding: 10px;
}
.path-node article.single-news .f_body .f_share .addtoany_list a {
  border-radius: 2px;
  background: #1B8354;
  width: 42px;
  height: 42px;
  margin: 0;
  text-align: center;
  line-height: 42px;
  color: #fff;
  margin: 0 2px;
}
.path-node article.single-news .f_body .f_share .addtoany_list a.a2a_button_linkedin {
  background: #0a66c2;
}
.path-node article.single-news .f_body .f_share .addtoany_list a.a2a_button_copy_link {
  background: #1B8354;
}
.path-node article.single-news .f_body .f_share .addtoany_list a.a2a_button_facebook {
  background: #0866ff;
}
.path-node article.single-news .f_body .f_share .addtoany_list a.a2a_button_x {
  background: #454545;
}
.path-node article.single-news .f_body .f_share .addtoany_list a.a2a_button_whatsapp {
  background: #3AC34C;
}

.page-node-type-ads .page_content .not_sidebar_content,
.page-node-type-event .page_content .not_sidebar_content,
.page-node-type-article .page_content .not_sidebar_content {
  width: 100%;
}
@media (min-width: 992px) {
  .page-node-type-ads .page_content .not_sidebar_content,
  .page-node-type-event .page_content .not_sidebar_content,
  .page-node-type-article .page_content .not_sidebar_content {
    width: 75%;
  }
}

.alert-message .alert {
  overflow: hidden;
  position: relative;
}
.alert-message .alert .btn-close {
  position: absolute;
  top: 10px;
  z-index: 999;
  right: 10px;
}

.f_body h2, .f_body h3, .f_body h4, .f_body h5, .f_body h6,
.list_content header h2,
.list_content header h3,
.list_content header h4,
.list_content header h5,
.list_content header h6,
.text-formatted h2,
.text-formatted h3,
.text-formatted h4,
.text-formatted h5,
.text-formatted h6 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 800;
  line-height: 192.7%;
}
.f_body ul, .f_body ol, .f_body span, .f_body p,
.list_content header ul,
.list_content header ol,
.list_content header span,
.list_content header p,
.text-formatted ul,
.text-formatted ol,
.text-formatted span,
.text-formatted p {
  color: #5E5E5E !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  background: transparent !important;
}
.f_body h2,
.list_content header h2,
.text-formatted h2 {
  font-size: 20px;
}

p {
  color: #5E5E5E;
  font-family: "IBM Plex Light";
}

a.btn-primary,
a.btn-primary:hover {
  background: #1B8354;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 169.7%;
  text-align: center;
  border: 0;
}

.owl-carousel {
  position: relative;
  /*.owl-dots {
    text-align: center;
    .owl-dot {
      @include border-radius(50%);
      height: 10px;
      width: 10px;
      margin: 4px 5px;
      border: 1px solid #dddddd;
      &.active {
        border: 1px solid $social;
        background: $social;
      }
    }

  }*/
}
.owl-carousel .owl-stage-outer .owl-stage .owl-item {
  padding: 15px 0;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #1B8354;
}
.owl-carousel .owl-nav .owl-prev {
  top: 0;
  position: absolute;
  right: 0;
}
@media (min-width: 992px) {
  .owl-carousel .owl-nav .owl-prev {
    right: -50px;
  }
}
.owl-carousel .owl-nav .owl-next {
  top: 0;
  position: absolute;
  left: 0;
}
@media (min-width: 992px) {
  .owl-carousel .owl-nav .owl-next {
    left: -50px;
  }
}

#scrollToTopBtn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1B8354 !important;
  border-radius: 50%;
  z-index: 100;
  /* hide with opacity */
  /* also add a translate effect */
  /* and a transition */
  transition: all 0.5s ease;
  left: 3%;
  background-color: transparent;
  border: 0;
  bottom: 60px;
  position: fixed;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 56px;
  outline: none;
  position: fixed;
}
#scrollToTopBtn:hover {
  background-color: #1B8354;
  color: #fff;
  clip-path: unset;
}
#scrollToTopBtn:hover img {
  filter: brightness(0) invert(1);
}
#scrollToTopBtn img {
  width: 20px;
  height: 20px;
}

.alert-message {
  margin: 20px 0;
}

.path-error-404 .block-system-main-block,
.path-error-403 .block-system-main-block {
  text-align: center;
}

.breadcrumb_page.home_page {
  position: relative;
  margin-bottom: 50px;
}
.breadcrumb_page.home_page:after {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 105, 35, 0.5) 0%, rgba(0, 105, 35, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(3, 71, 65, 0.59) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #009389 0%, #009389 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 29, 0.7) 100%);
  background-blend-mode: normal, normal, normal, color, normal;
}
.breadcrumb_page.home_page .media img, .breadcrumb_page.home_page .media video {
  width: 100%;
  border-radius: 0;
  position: relative;
  height: 199.729px;
  min-height: 135px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .breadcrumb_page.home_page .media img, .breadcrumb_page.home_page .media video {
    min-height: auto;
    object-fit: initial;
  }
}
.breadcrumb_page.home_page .media .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  object-fit: cover;
  opacity: 0.6;
  background: linear-gradient(0deg, rgba(0, 105, 35, 0.5) 0%, rgba(0, 105, 35, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(3, 71, 65, 0.59) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #009389 0%, #009389 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 29, 0.7) 100%);
  background-blend-mode: normal, normal, normal, color, normal;
}
.breadcrumb_page.home_page .banner_page {
  padding: 14px 23px;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 0;
  padding-top: 4%;
}
.breadcrumb_page.home_page .banner_page h2, .breadcrumb_page.home_page .banner_page h1 {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.breadcrumb_page.home_page .banner_page .block-system-breadcrumb-block {
  position: relative;
  z-index: 999;
}
.breadcrumb_page.home_page .banner_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item {
  color: #FFFFFF;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  padding: 0;
}
.breadcrumb_page.home_page .banner_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding: 0 5px;
  content: ">";
  color: #FFFFFF;
}
.breadcrumb_page.home_page .banner_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
}

.internal_page {
  background: #1B8354;
  padding: 22px;
  position: relative;
  border-radius: 0;
  margin-bottom: 0;
}
.internal_page .block-system-breadcrumb-block {
  position: relative;
  z-index: 999;
}
.internal_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item {
  color: #fff;
  font-family: "IBM Plex Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.internal_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-family: "IBM Plex Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.internal_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding: 0 5px;
  content: ">";
  color: #fff;
}

table {
  font-size: 14px;
}
table thead tr th {
  background-color: #1B8354 !important;
  color: #FFFFFF !important;
}

.fullcalendar-page {
  margin: 40px 0;
}
.fullcalendar-page .fc-header-toolbar {
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .fullcalendar-page .fc-header-toolbar {
    display: flex;
    text-align: center;
  }
}
.fullcalendar-page .fc-header-toolbar > div {
  margin: 10px 0;
}
@media (min-width: 768px) {
  .fullcalendar-page .fc-header-toolbar > div {
    margin: 10px 0;
  }
}
.fullcalendar-page .fc-header-toolbar h2 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-size: 14px;
}
@media (min-width: 768px) {
  .fullcalendar-page .fc-header-toolbar h2 {
    font-size: 24px;
  }
}
.fullcalendar-page .fc-header-toolbar .fc-left .fc-button-group {
  flex-direction: row-reverse;
}
.fullcalendar-page .fc-header-toolbar button {
  border-radius: 5.809px !important;
  background: #6AC7BD;
  border: 0;
  margin: 0 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 6px 10px;
}
.fullcalendar-page .fc-header-toolbar button.fc-prev-button, .fullcalendar-page .fc-header-toolbar button.fc-next-button, .fullcalendar-page .fc-header-toolbar button.fc-button-active {
  background: #1B8354;
}
.fullcalendar-page .fc-header-toolbar button.fc-prev-button {
  margin: 0;
}
.fullcalendar-page .fc-header-toolbar button:hover, .fullcalendar-page .fc-header-toolbar button:focus {
  box-shadow: none !important;
  background: #6AC7BD;
}
.fullcalendar-page .fc-header-toolbar button .fc-icon {
  font-size: 15px;
}
.fullcalendar-page table {
  font-size: 14px;
}
.fullcalendar-page table thead tr th {
  background-color: #FFFFFF !important;
  color: #1B8354 !important;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 10px;
  border: 0;
  font-family: "IBM Plex Medium";
  font-size: 10px;
}
@media (min-width: 768px) {
  .fullcalendar-page table thead tr th {
    font-size: 14px;
  }
}
.fullcalendar-page table thead tr td .fc-day-number {
  float: left !important;
  padding: 10px;
}
.fullcalendar-page table tbody td.fc-today {
  background: transparent !important;
}
.fullcalendar-page table tbody td .fc-event-container .fc-day-grid-event {
  padding: 15px;
  min-height: 40px;
}

.list-table i {
  width: 30px;
  height: 30px;
  background: #AFAFAF;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  margin-right: 5px;
}

.rw-widget-container {
  margin: 0 !important;
  bottom: 20px !important;
  left: 3% !important;
}
.rw-widget-container .rw-launcher {
  /*border: 1px solid rgba(0, 0, 0, 0.10) !important;
  background: #FFF !important;
  box-shadow: 0px 4px 4px 0px rgba(157, 157, 157, 0.09);
  left: 0px;
  right: auto;
  width: 41px !important;
  height: 41px !important;
  bottom: 182px !important;
  @if $direction == 'rtl' {
    border-radius: 0 20px 20px 0;
  } @else {
    border-radius: 20px 0 0 20px;
  }*/
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  background-color: #1B8354 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  left: 3%;
  bottom: 182px !important;
  border: 0;
}
.rw-widget-container .rw-launcher img {
  width: 35px;
  height: 35px;
}
.rw-widget-container .rw-launcher img.rw-close-launcher {
  height: 15px;
}
@media (min-width: 768px) {
  .rw-widget-container .rw-launcher img.rw-close-launcher {
    height: 35px;
  }
}
.rw-widget-container .rw-launcher:focus, .rw-widget-container .rw-launcher:hover {
  background-color: #1B8354 !important;
  border: 2px solid #1B8354 !important;
}
.rw-widget-container .rw-launcher:focus img, .rw-widget-container .rw-launcher:hover img {
  filter: brightness(0) invert(1) !important;
}
.rw-widget-container.rw-chat-open .rw-launcher.rw-hide-sm {
  background-color: #1B8354 !important;
  border: 2px solid #1B8354 !important;
}
.rw-widget-container.rw-chat-open .rw-close-launcher.rw-default {
  margin-left: -5px;
}
.rw-widget-container .rw-conversation-container {
  margin: 0 20px;
}
.rw-widget-container.rw-chat-open .rw-launcher {
  bottom: 205px !important;
}
@media (min-width: 768px) {
  .rw-widget-container.rw-chat-open .rw-launcher {
    bottom: 182px !important;
  }
}

.owl-carousel .owl-nav button {
  width: 53px;
  height: 53px;
}
#block-psau-views-block-directors-block-1 {
  background-color: #1B8354;
  padding: 40px 0;
}
#block-psau-views-block-directors-block-1 video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: opacity(0.3);
}
#block-psau-views-block-directors-block-1 .f_content {
  z-index: 1;
  position: relative;
}
#block-psau-views-block-directors-block-1 h2 {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  text-align: center;
}
#block-psau-views-block-directors-block-1 .list-directors .list-col {
  margin: 20px auto;
}
#block-psau-views-block-directors-block-1 .list-directors .list-col .item .media {
  text-align: center;
}
#block-psau-views-block-directors-block-1 .list-directors .list-col .item .media img {
  border-radius: 10px;
  background: #FFF;
  width: 185px;
  height: 185px;
  margin-bottom: 10px;
}
#block-psau-views-block-directors-block-1 .list-directors .list-col .item h3.field-content {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
}
#block-psau-views-block-directors-block-1 .list-directors .list-col .item p.field-content {
  color: #6AC7BD;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  width: 70%;
  margin: 10px auto 20px;
  margin-bottom: 40px;
}

.block-page-title-block h1 {
  color: #1B8354 !important;
  /* Display sm/Semibold */
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px; /* 126.667% */
}
.block-page-title-block h1:after {
  position: absolute;
  background: linear-gradient(270deg, #3C7A75 0%, #75C6BB 100%);
  width: 22px;
  top: 10px;
  z-index: 999;
  height: 2px;
  left: -25px;
}

.sidebar_first:empty {
  display: none !important;
}

ul.contextual-links a {
  color: #000 !important;
}

.page-node-type-article .breadcrumb_page {
  margin-bottom: 20px;
}
.page-node-type-article .breadcrumb_page .media img, .page-node-type-article .breadcrumb_page .media video {
  min-height: 180px;
}

.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(60, 121, 116, 0.9019607843);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader__container {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.loader__circle {
  position: relative;
  margin: 0 auto 14px;
  text-align: center;
}

.loader__circle img {
  display: block;
  width: auto;
  text-align: center;
  margin: 0 auto;
}

.loader__circle.fade {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@-webkit-keyframes whiteShadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.2);
    box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.2);
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
    -moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
    -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
    transition: -webkit-box-shadow 0.4s ease-in-out;
    -o-transition: box-shadow 0.4s ease-in-out;
    -moz-transition: box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
  }
}
@-moz-keyframes whiteShadow {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.03);
    box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.03);
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
    -moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
  }
  100% {
    -moz-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
    -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
    transition: -webkit-box-shadow 0.4s ease-in-out;
    -o-transition: box-shadow 0.4s ease-in-out;
    -moz-transition: box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
  }
}
@keyframes whiteShadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.7);
    -moz-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.7);
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
    -moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
    -moz-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
    -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
    transition: -webkit-box-shadow 0.4s ease-in-out;
    -o-transition: box-shadow 0.4s ease-in-out;
    -moz-transition: box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out, -moz-box-shadow 0.4s ease-in-out;
  }
}
@keyframes load {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}
.progress {
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 6px;
  width: 120px;
  margin: 0 auto;
  border-radius: 10px;
  border: 0px solid #d9d9d9;
  position: relative;
  padding: 1px;
  background: #d9d9d9;
}
.progress .progress-value {
  animation: load 3s linear infinite;
  box-shadow: 0 10px 40px -10px #5FB3AA;
  border-radius: 10px;
  background: #5FB3AA;
  height: 6px;
  width: 0;
}

body.gin-login .user-form-page__wallpaper img {
  object-fit: fill;
}

.chatbot .profile_div {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(157, 157, 157, 0.09);
  left: 0px;
  right: auto;
  width: 41px !important;
  height: 41px !important;
  border-radius: 0 20px 20px 0;
  padding: 0 13px;
  line-height: 41px;
  bottom: 200px !important;
}
.chatbot .profile_div .imgProfile {
  height: 22px;
  width: 22px;
}
.chatbot .profile_div:hover {
  background: #1B8354;
  cursor: pointer;
}
.chatbot .profile_div:hover .imgProfile {
  filter: brightness(0) invert(1);
}
.chatbot .tap-target {
  bottom: 198px !important;
}
@media (min-width: 992px) {
  .chatbot .tap-target {
    left: 100px;
  }
}
@media (min-width: 1400px) {
  .chatbot .tap-target {
    left: 115px;
  }
}
@media (min-width: 1600px) {
  .chatbot .tap-target {
    left: 6.2%;
  }
}
.chatbot .widget {
  bottom: 270px !important;
}

.page_content .sidebar_content {
  box-shadow: none;
}

.page_content .sidebar_first .block-views-blockmenu-section-college-block-1,
.page_content .sidebar_first .navigation {
  background: #fff;
  padding: 0;
}

.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul li.menu-item--active-trail,
.page_content .sidebar_first .navigation ul li.menu-item--active-trail {
  border-radius: 0;
  background: #fff;
  border-left: 3px solid #1B8354;
}
.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul li.menu-item--active-trail a,
.page_content .sidebar_first .navigation ul li.menu-item--active-trail a {
  color: #1B8354;
  font-weight: 600;
}

.page_content .sidebar_first .block-views-blockmenu-section-college-block-1 ul li,
.page_content .sidebar_first .navigation ul li {
  padding: 5px 10px;
}

.page_content .sidebar_first ul li,
.page_content .sidebar_first .navigation ul li a {
  color: #384250;
  line-height: 20px;
}
.page_content .sidebar_first ul li:hover,
.page_content .sidebar_first .navigation ul li a:hover {
  color: #1B8354;
  font-weight: 600;
}

.page_content .sidebar_first h5 {
  color: #1F2A37;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.page_content .sidebar_first ul {
  border-top: 0;
  padding: 10px 0;
}

.banner_site {
  padding: 40px 0;
}
.banner_site .block-page-title-block h1 {
  color: #1B8354;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  font-family: "IBM Plex Bold";
}
.banner_site .block_share {
  border-radius: 8px;
  border: 1px solid #B8EACB;
  background: #FFF;
  box-shadow: -4px 4px 7px 2px rgba(0, 0, 0, 0.04);
  height: 100%;
  padding: 15px;
  text-align: center;
}
.banner_site .block_share h2 {
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.banner_site .block_share .a2a_default_style {
  margin: 5px auto;
  padding: 10px 0 30px;
  width: max-content;
}
.banner_site .block_share .a2a_default_style img {
  width: 24px;
  height: 24px;
}

.breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
}

.breadcrumb_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#block-psau-views-block-published-date-block-1 .f_date {
  padding-top: 14px;
  color: #1F2A37;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}

.a2a_default_style:not(.a2a_flex_style) a {
  padding: 0 10px;
}

.banner_site {
  position: relative;
  padding: 30px 0 60px;
}
.banner_site::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: url("../../assets/images/single_page_border.svg") repeat center center;
  background-size: contain;
}

.page_content {
  margin: 55px 0;
}

form.views-exposed-form .form-submit {
  background: #1B8354;
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
form.views-exposed-form .form-submit:hover, form.views-exposed-form .form-submit:focus {
  background-color: #125939;
}

.page-search-content .views-row .views-field-title a {
  color: #1B8354;
}
.page-search-content .views-row .views-field-type {
  border-color: #1B8354;
  color: #1B8354;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

#sliding-popup {
  max-width: 100%;
  position: fixed;
  bottom: 25px;
  color: #fff !important;
  z-index: 10000;
  will-change: transform;
  background-color: #fff !important;
  border: 1px solid #D2D6DB;
  right: 0 !important;
  border-radius: 0 !important;
}
#sliding-popup h1, #sliding-popup h2, #sliding-popup p, #sliding-popup div, #sliding-popup label, #sliding-popup .eu-cookie-compliance-more-button, #sliding-popup .eu-cookie-compliance-secondary-button, #sliding-popup .eu-cookie-withdraw-tab {
  color: #161616 !important;
}
#sliding-popup .eu-cookie-compliance-message {
  float: none !important;
  margin: 0 0 20px;
  max-width: 100% !important;
  text-align: start;
}
#sliding-popup .eu-cookie-compliance-buttons button {
  background: #1B8354 !important;
  background-color: #1B8354 !important;
  color: #fff !important;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.chatbot .tap-target {
  box-shadow: 0px 0px 12px #1B8354;
  right: unset;
  left: 6.3% !important;
}
.chatbot .profile_div {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  background-color: #1B8354;
  display: flex !important;
  align-items: center;
  justify-content: center;
  left: 3%;
}
.chatbot .profile_div:hover, .chatbot .profile_div:focus {
  background-color: #1B8354 !important;
}

#muneer-trigger-button {
  border-radius: 50% !important;
  left: 3% !important;
  right: unset !important;
  width: 56px !important;
  height: 56px !important;
  right: unset !important;
  background-color: #1B8354 !important;
  background: #1B8354 !important;
  display: flex;
  justify-content: center;
}

.muneer-trigger-button-box button span {
  align-items: center;
  justify-content: center;
  position: relative;
}

.path-error-404 .breadcrumb_page, .path-error-404 .banner_site {
  display: none;
}
.path-error-404 .page_content {
  text-align: center;
}
.path-error-404 .page_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.path-error-404 .page_content .content h1 {
  color: #161616;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.path-error-404 .page_content .content p {
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 24px;
}
.path-error-404 .page_content .content a {
  border-radius: 4px;
  border: 1px solid transparent;
  background: #1B8354;
  color: #FFFFFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 20px;
  text-decoration: none;
  min-width: 130px;
}
.path-error-404 .page_content .content a:hover, .path-error-404 .page_content .content a:focus {
  background-color: #125939;
  border-color: #125939;
}

.page_content .sidebar_first h5 {
  color: #1F2A37 !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.block_president {
  background: #1B8354;
  padding: 70px 0 70px;
  position: relative;
  margin: 40px 0 50px;
}
.block_president:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 84%;
  left: 0;
  background: url(../../assets/images/overlay_logo.png) no-repeat center center;
  background-size: contain;
  z-index: 0;
  margin: 0 auto;
  top: 10% !important;
  right: 0%;
}

.list-events-page .upcomingServices__item,
.list-news-page .upcomingServices__item {
  margin: 10px 0;
}

.list-events .upcomingServices__item,
.list-news .upcomingServices__item {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: end;
  align-items: flex-end;
  box-shadow: unset;
  min-height: 340px !important;
  border-radius: 12.608px;
  border-width: 0.778px;
  border-style: solid;
  border-color: rgb(210, 214, 219);
  border-image: initial;
  background: #fff;
  padding: 12.45px;
  gap: 18.675px;
}

.list-events .upcomingServices__item .image, .list-news .upcomingServices__item .image {
  width: 100%;
  height: 194px;
}

.list-events .upcomingServices__item .image img, .list-news .upcomingServices__item .image img {
  max-height: unset;
  width: 100%;
  object-fit: cover;
  border-radius: 6.248px;
  height: 194px;
}

.list-events .upcomingServices__item .content, .list-news .upcomingServices__item .content {
  display: block;
  width: 100%;
}

.list-events .upcomingServices__item .content h3, .list-news .upcomingServices__item .content h3 {
  color: #1f2a37;
  font-size: 16.006px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.787px;
  height: 45px;
}

.list-events .upcomingServices__item .content .f_desc p .f_desc, .list-news .upcomingServices__item .content .f_desc {
  display: none;
}
.list-events .upcomingServices__item .content .f_desc p .f_desc p, .list-news .upcomingServices__item .content .f_desc p {
  color: #1f2a37;
  text-align: initial;
  font-size: 14.45px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.675px;
}

.list-events .upcomingServices__item .content .btn-primary, .list-news .upcomingServices__item .content .btn-primary {
  padding: 6px 16px;
  font-size: 14px;
  background: #1B8354;
}

.block-webform-block .block-feedback {
  margin: 50px auto 0;
  background: transparent;
  border-top: 2px solid #1B8354;
  background: #fff;
  display: flex;
  border-radius: 0px !important;
  padding: 24px 80px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios .form-item-question {
  background: #1B8354;
}
.block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline legend span.fieldset-legend {
  color: #161616 !important;
}

.header_site .header-top .h_top .top_header_left .search a {
  color: #161616;
  width: auto;
  height: auto;
  border-radius: unset;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  align-items: center;
  gap: 5px;
}

.header_site .header-top .h_top .top_header_left .search a p {
  margin-bottom: 0;
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 24px;
}

.header_site .header-top .h_top .top_header_left {
  gap: 30px;
}

#block-search-content-psau {
  margin-top: 5px;
}

.owl-carousel .owl-nav {
  bottom: 0;
  top: unset !important;
  display: flex;
  column-gap: 24px;
}
.owl-carousel .owl-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F9FAFB !important;
}
.owl-carousel .owl-nav button:hover {
  color: #fff;
  background: #1B8354 !important;
}
.owl-carousel .owl-nav button.owl-prev {
  right: 0;
  left: unset;
}
.owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 60px;
}
.owl-carousel .owl-dots {
  right: 0%;
  right: unset;
  left: 0%;
  position: absolute !important;
  bottom: -30px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  margin: 0px 8px;
  height: 16px;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  min-width: unset;
  border-radius: 50%;
  border: 1px solid #dddddd;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #1B8354;
  border-color: transparent;
}

.header_site.header_site.fixed-top #searchBlockContent.show {
  top: 100%;
}

#searchBlockContent.show {
  visibility: visible;
  top: 140px;
  height: auto;
  width: auto;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}
#searchBlockContent.show .form-item {
  width: 90%;
  display: inline-block;
  position: relative;
}
#searchBlockContent.show .form-item::before {
  content: "";
  position: absolute;
  border-radius: 0;
  background: url("../../assets/images/search_icon.svg") no-repeat center center;
  display: flex;
  width: 25px;
  height: 23px;
  padding: 0;
  justify-content: center;
  align-items: center;
  top: 10px;
  left: 10px;
}
#searchBlockContent.show .form-item input {
  display: flex;
  height: 40px;
  padding: 0px 25px;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #9DA4AE;
  background: #FFF;
  color: #384250;
  font-size: 16px;
  padding: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-right: 35px;
}
#searchBlockContent.show .form-item input:focus {
  border-color: #1B8354;
  box-shadow: unset;
}
#searchBlockContent.show .form-item ::placeholder {
  color: #384250;
  font-size: 16px;
  padding: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
#searchBlockContent.show .form-submit {
  width: 8%;
  margin: 0px 15px;
  display: inline-block;
  min-height: 40px;
  max-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  background: #1B8354;
}
#searchBlockContent.show .card.card-body {
  border-top: 0;
  border-radius: 0;
}

.block_list_news h2,
.block_list_achievements h2 {
  color: #161616;
  font-size: 23.197px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.383px; /* 126.667% */
  margin: initial;
}

.block_list_news p,
.block_list_achievements p {
  color: #161616;
  padding-top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.block_list_achievements .more-list {
  display: none;
}

.block_list_achievements .block__content .item .f_title h3, .block_list_achievements .block__content .item .f_title a {
  margin: 0;
  height: 50px;
}

.block_list_achievements .block__content .item .media img {
  border: 1px solid rgba(238, 238, 238, 0.4196078431);
}

.block_list_achievements .block__content .item .f_date {
  display: none;
}

.path-error-404 .page_content,
.path-error-403 .page_content {
  text-align: center;
}
.path-error-404 .page_content .sidebar_content,
.path-error-403 .page_content .sidebar_content {
  margin: auto;
}

.page-node-type-page .block-system-main-block {
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.app_psau {
  padding: 0px 0 30px;
}
.app_psau .download-app {
  border-radius: 16px;
  padding: 30px 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #14573a;
}
.app_psau .download-app video.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.app_psau .download-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background: linear-gradient(0deg, rgba(0, 105, 35, 0.5) 0%, rgba(0, 105, 35, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(3, 71, 65, 0.59) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #009389 0%, #009389 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 29, 0.7) 100%);
  background-blend-mode: normal, normal, normal, color, normal;
}
.app_psau .download-app > * {
  position: relative;
  z-index: 2;
}
.app_psau .download-app h2 {
  color: #FFFFFF;
  font-size: 23.197px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 29.383px;
}
.app_psau .download-app .paragraph--type--composant-image-qrcode {
  display: grid;
  padding-top: 15px;
  gap: 15px;
  flex-wrap: wrap;
  width: 80%;
  grid-template-columns: auto auto;
  margin: 0 auto;
}
.app_psau .download-app .paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode {
  flex-direction: row !important;
  display: flex;
  align-items: center;
  width: auto;
}
.app_psau .download-app .paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode img {
  padding: 5px;
}
.app_psau .download-app .paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode .f_title {
  font-size: 18px;
  font-style: normal;
  padding-inline-start: 15px;
  font-weight: 700;
  line-height: 28px;
  color: #FFFFFF;
}

.path-node .paragraph--type--composant-director h2, .path-node .paragraph--type--composant-director .f_subtitle, .path-node .paragraph--type--composant-director .f_body p, .path-node .paragraph--type--composant-director .f_name h6, .path-node .paragraph--type--composant-director .f_body ul, .path-node .paragraph--type--composant-director .f_body li {
  color: initial !important;
}
.path-node .paragraph--type--composant-director .f_image .media img {
  width: 100%;
}

.rw-widget-container .rw-conversation-container {
  margin-left: 22%;
}

.paragraph--type--composant-image-text-editor {
  position: relative;
  align-items: center;
}
.paragraph--type--composant-image-text-editor .block_text {
  padding: 46px 30px;
}
.paragraph--type--composant-image-text-editor::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  height: 100%;
  width: 80%;
  /* left: -15px; */
  top: -5px;
  background: #F1F9F7;
  z-index: -1;
  background-size: 58%;
}
.paragraph--type--composant-image-text-editor .f_image .media::after {
  content: unset;
}

.paragraph.paragraph--type--composant-social-media.paragraph--view-mode--default {
  display: flex;
  align-items: center;
}
.paragraph.paragraph--type--composant-social-media.paragraph--view-mode--default a {
  display: flex;
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.block_list_achievements .block__content .item .media img {
  border-bottom: 0;
}

.user-logged-in #searchBlockContent.show {
  top: 219px;
}

.paragraph--type--composant-director .f_link a:after {
  display: none;
}

.tab-press {
  position: relative;
  padding: 0 0 90px;
}
.tab-press .head_block h2 {
  font-size: 23.197px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.383px;
}
.tab-press .quicktabs-wrapper {
  position: relative;
}
.tab-press .quicktabs-tabs {
  position: absolute;
  bottom: 100%;
  border-radius: 16px;
  background: #1B8354;
  padding: 5.5px 3px;
  min-width: 185px;
  right: 0;
  left: unset;
  display: flex;
  align-items: center;
  justify-content: space-around;
  left: 0;
  right: unset;
}
.tab-press .quicktabs-tabs li {
  margin: 0 !important;
  padding: 7px 32px;
  border-radius: 16px;
  background: transparent;
}
.tab-press .quicktabs-tabs li.active {
  background: #14573a;
}
.tab-press .quicktabs-tabs li a {
  color: #fff !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.tab-press .more-list {
  display: none;
}

.path-node .paragraph--type--composant-director .f_image .name {
  margin: 0px auto;
  border-radius: 0 0 8px 8px;
  background: #1B8354;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}
.path-node .paragraph--type--composant-director .f_image .media {
  width: 100%;
}
.path-node .paragraph--type--composant-director .f_image .media img {
  border-radius: 10px 10px 0 0;
}
.path-node .paragraph--type--composant-director .row .block_text {
  padding: 0 20px;
}

.path-frontpage .paragraph--type--composant-director .row .block_text {
  width: 50%;
}

@media (max-width: 767px) {
  .breadcrumb_page.home_page .banner_page {
    padding-top: 15%;
  }
  #searchBlockContent.show .form-submit {
    width: max-content;
  }
  .tab-press .quicktabs-tabs {
    position: relative;
  }
  .copyright .copyright-content p {
    text-align: start;
  }
  .header_site .header-top .h_top .top_header_left .search a p,
  .header_site .header-top .h_top .top_header_left .language-link {
    font-size: 13px;
  }
  .block_feedback .last_update_node {
    text-align: start !important;
  }
  .path-frontpage .paragraph--type--composant-director .row .block_text {
    width: 100%;
  }
  .paragraph--type--composant-application {
    display: block;
    text-align: center;
  }
  .paragraph--type--composant-application .paragraph--type--application {
    margin: 10px 0;
  }
  .paragraph--type--composant-application .paragraph--type--application img {
    height: 40px;
    width: 120px;
    object-fit: cover;
    border-radius: 10px;
  }
  footer.footer-site h2, footer.footer-site h5 {
    text-align: start;
  }
  .header_site .header-top .h_top .top_header_left {
    gap: 5px;
  }
  .chatbot .tap-target {
    left: 10% !important;
  }
  .paragraph--type--composant-image-text-editor::after {
    display: none;
  }
  .chatbot .tap-target {
    display: none !important;
  }
}
.block_feedback {
  margin: 50px auto 0;
}
.block_feedback .last_update_node {
  text-align: end;
  padding: 10px 80px;
}
.block_feedback .last_update_node p {
  color: #161616;
  /* Text sm/Regular */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.block_feedback .block-feedback {
  margin: 0 auto;
}

#sliding-popup a {
  color: #1B8354;
  margin: 0 5px;
}

html[dir=ltr] .paragraph--type--composant-director .f_link a i {
  transform: rotate(180deg);
  /* order: 2; */
  right: -20px;
  left: unset;
}

.path-error-404 .page_content .sidebar_content,
.path-error-403 .page_content .sidebar_content {
  margin: auto;
}
.path-error-404 .block_feedback,
.path-error-403 .block_feedback {
  display: none;
}

@media (min-width: 992px) and (max-width: 1200px) {
  #carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content h2 {
    font-size: 26px;
    line-height: 40px;
  }
  .header_site .navbar-desktop .navbar-nav li.item-level-0 a {
    font-size: 14px !important;
  }
  .header_site .navbar-desktop .navbar-nav {
    gap: 15px !important;
  }
}
body.dark-mode {
  background: #1B1B1B;
}
body.dark-mode * {
  color: #FFFFFF !important;
}
body.dark-mode .block-quicktabs-blockcolleges,
body.dark-mode .header_site .header-top {
  background: #1B1B1B;
}
body.dark-mode #block-psau-views-block-university-life-block-1 {
  background: #414141;
}
body.dark-mode #block-psau-quicktabsservice {
  background: #252525;
}
body.dark-mode footer.footer-site {
  background: linear-gradient(180deg, #2B2B2B 55.5%, #171717 100%);
}
body.dark-mode .copyright {
  background: #000;
}
body.dark-mode #block-psau-quicktabsservice .list_services_home > div .item .f_display {
  border: 1px solid #323232;
  background: #262626;
}
body.dark-mode footer.footer-site #block-psau-lltwasl .link_footer,
body.dark-mode #block-psau-quicktabsservice .list_services_home > div .item:hover .f_hover {
  background: #000;
}
body.dark-mode .animate-after, .header_site .navbar-desktop .navbar-nav li.item-level-2:hover body.dark-mode a:after, .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active body.dark-mode a:after, .page-node-type-university-life .paragraph--type--composant-text body.dark-mode h2:after, .register-study body.dark-mode h2:after, .block-quicktabs-blockcolleges body.dark-mode h2:after, .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly body.dark-mode h3:after, #block-psau-views-block-university-life-block-1 body.dark-mode h2:after, #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly body.dark-mode h3:after, #block-psau-quicktabsservice body.dark-mode h2:after, body.dark-mode #block-psau-quicktabsservice h2:after, body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3:after,
body.dark-mode #block-psau-views-block-university-life-block-1 h2:after, body.dark-mode #block-psau-views-block-news-block-1 h2:after,
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3:after, body.dark-mode .block-quicktabs-blockcolleges h2:after,
body.dark-mode .register-study h2:after, body.dark-mode .page-node-type-university-life .paragraph--type--composant-text h2:after,
body.dark-mode footer.footer-site h2:after, body.dark-mode footer.footer-site h5:after, body.dark-mode .header_site .navbar-desktop .navbar-nav li.item-level-2:hover a:after,
body.dark-mode .header_site .navbar-desktop .navbar-nav li.item-level-2.is-active a:after {
  background: #fff;
}
body.dark-mode #block-psau-quicktabsservice .list_services_home > div .item .f_display .f_link {
  border: 1px solid #000;
}
body.dark-mode #block-psau-views-block-news-block-1 .list-news article {
  border: 0.716px solid #535353;
  background: #535353;
}
body.dark-mode #block-psau-views-block-news-block-1 .list-news article .content .f_content h3 {
  color: #000 !important;
}
body.dark-mode #block-psau-views-block-news-block-1 .list-event article:before {
  border: 1px solid #5B5B5B;
}
body.dark-mode #block-psau-views-block-news-block-1 .list-news article .content .f_image .f_date {
  background: #000;
}
body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly .link-view,
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly .link-view,
body.dark-mode .quicktabs-main .list-college .item:hover .overly h3:after,
body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3:after,
body.dark-mode #block-psau-views-block-news-block-1 .list-event article .content .f_image .f_date {
  background: #000 !important;
}
body.dark-mode body.dark-mode #block-psau-views-block-news-block-1 .list-event article {
  border: 0.716px solid #EAEAEB;
  background: #FFF;
}
body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly p,
body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .item:hover .overly h3,
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly h3,
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-main .list-college .item:hover .overly p {
  color: #000 !important;
}
body.dark-mode footer.footer-site #block-psau-lltwasl .f_item img,
body.dark-mode #block-psau-quicktabsservice .list_services_home > div .item .f_display .icon img {
  filter: brightness(0) saturate(100%);
}
body.dark-mode #block-psau-quicktabsservice .list_services_home > div .item .f_display .icon:after {
  background: #555;
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a,
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a span {
  color: #000 !important;
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a .icon {
  background: #888;
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li a .icon img {
  filter: brightness(0) saturate(100%);
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover {
  background: #555;
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li ul.dropdown-menu li:hover a .icon {
  background: #000;
}
body.dark-mode .header_site .navbar-desktop .navbar-nav li.item-level-2:before {
  background: #000;
}
body.dark-mode .list-research-file .item-list ul li .f_item .f_file img,
body.dark-mode .top_header_left li a img,
body.dark-mode .header_site .navbar-desktop .navbar-nav li.item-level-0 img,
body.dark-mode .top_header_right .navbar-brand img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(172deg) brightness(104%) contrast(100%);
}
body.dark-mode .page_content .sidebar_first .navigation,
body.dark-mode #carouselHome .carouselHome .owl-item .paragraph--type--slider .f_content .f_link a {
  background: #000;
}
body.dark-mode .block-webform-block .block-feedback,
body.dark-mode .breadcrumb_page {
  background: #888;
}
body.dark-mode .block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios .form-item-question {
  background: #000;
}
body.dark-mode .block-webform-block .block-feedback .webform-submission-form fieldset.webform-fieldset--title-inline .fieldset-wrapper .form-radios .form-item-question input {
  color: #fff !important;
}
body.dark-mode .page_content .sidebar_first .navigation ul.menu li.menu-item--active-trail {
  background: #555;
}
body.dark-mode .page_content .sidebar_first .navigation ul.menu {
  border-top: 1px solid #555;
}
body.dark-mode .page_content .sidebar_content .block-system-main-block {
  background: #555;
}
body.dark-mode .fullcalendar-page table tbody td .fc-event-container .fc-day-grid-event {
  background-color: #000 !important;
  border-color: #000 !important;
}
body.dark-mode .fullcalendar-page .fc-header-toolbar button.fc-prev-button, body.dark-mode .fullcalendar-page .fc-header-toolbar button.fc-next-button, body.dark-mode .fullcalendar-page .fc-header-toolbar button.fc-button-active {
  background: #000 !important;
}
body.dark-mode .fullcalendar-page .fc-header-toolbar button {
  background: #888;
}
body.dark-mode .fullcalendar-page table thead tr th span {
  color: #000 !important;
}
body.dark-mode .list-academic-programs .item:hover .overly {
  background: #000;
  border: 1px solid #DFDFDF;
}
body.dark-mode #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li {
  background: #555;
}
body.dark-mode #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li.active a {
  background: #000;
}
body.dark-mode #block-psau-quicktabsservice .quicktabs-wrapper .item-list .quicktabs-tabs li:last-child {
  background: #222;
}
body.dark-mode #block-psau-views-block-university-life-block-1 .university-life .btn-footer .btn:hover {
  color: #000 !important;
}
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs li.active {
  background: #000;
}
body.dark-mode .block-quicktabs-blockcolleges .quicktabs-wrapper .item-list .quicktabs-tabs {
  background: #555;
}
body.dark-mode .ui-accordion .views-row .views-row .ui-accordion-header .field-content {
  color: #000 !important;
}
body.dark-mode .nav-tabs .nav-link.active,
body.dark-mode .ui-accordion .views-row .views-row .ui-accordion-content p,
body.dark-mode .ui-accordion .views-row .views-row .ui-accordion-content span,
body.dark-mode .ui-accordion .views-row .views-row .ui-accordion-content tr,
body.dark-mode .ui-accordion .views-row .views-row .ui-accordion-content td {
  color: #000 !important;
}
body.dark-mode .paragraph--type--composant-button > div a {
  background: #000;
}
body.dark-mode .block-darkmode input:checked + .slider:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(102%) contrast(104%);
}
body.dark-mode #block-psau-webform-newsletter .subtitle,
body.dark-mode #block-psau-webform-newsletter h2,
body.dark-mode #block-psau-webform-newsletter form p,
body.dark-mode .list-news-tabs .more-list a, body.dark-mode .block-views .more-list a {
  color: #000 !important;
}
body.dark-mode #block-psau-views-block-community-block-1:after,
body.dark-mode #block-psau-views-block-community-block-1:before,
body.dark-mode #block-psau-views-block-community-block-1 {
  background: #555;
}
body.dark-mode form .button {
  background: #000;
}
body.dark-mode img {
  filter: grayscale(80%);
}
body.dark-mode .list-news-page article .content .f_content .addtoany_list .a2a_default_style a,
body.dark-mode .list-news-page article .content .f_content .addtoany_list .a2a_default_style a i,
body.dark-mode .list-news-page article .content .f_content h3 a,
body.dark-mode .list-news-page article .content .f_content p {
  color: #000 !important;
}
body.dark-mode .paragraph--type--composant-text-tow-columns .block_2 {
  background: #000;
}
body.dark-mode .chatbot .tap-target .tap-target-content {
  background: #555;
}
body.dark-mode .list-directory-phone .accordion .accordion-item .accordion-button {
  color: #000 !important;
}
body.dark-mode .list-directory-phone .table-striped > tbody > tr > * {
  background: #555;
}
body.dark-mode .paragraph--type--composant-text-tow-columns .block_2,
body.dark-mode .list-annual-reports .item,
body.dark-mode .block_list_achievements .block__content {
  background: #000;
}
body.dark-mode.page-node-type-page .block-system-main-block {
  background: #555;
}
body.dark-mode .messages--status {
  background: #555;
}
body.dark-mode .list-directory-phone .accordion .accordion-item .accordion-button, body.dark-mode .paragraph--type--composant-accordion .accordion .accordion-item .accordion-button {
  color: #000 !important;
}
body.dark-mode .paragraph--type--composant-accordion .accordion .accordion-item p, body.dark-mode .paragraph--type--composant-accordion .accordion .accordion-item li, body.dark-mode .paragraph--type--composant-accordion .accordion .accordion-item span {
  color: #000 !important;
}
/*# sourceMappingURL=style.css.map */
