/*@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-views-block-community-block-1 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%;
  right: 0;
}

.title-block, .sitemap-item 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 {
    font-size: 18px;
  }
}

.bg_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;
}

/*! 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;
  transition: color 0.3s ease;
}
.nav-link:hover, .media-library-view--widget .view-header a:hover,
a:hover {
  color: #1B8354;
}
.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: #1B8354;
}

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

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

ol, ul {
  padding-right: 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=ar] {
  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: 20px 0 10px;
  }
}
.header_site .navbar-desktop:after {
  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;
  transition: all 0.3s ease;
  font-size: 14px;
}
@media (min-width: 1400px) {
  .header_site .navbar-desktop .navbar-nav li a {
    font-size: 16px;
  }
}
.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 a:hover {
  color: #5FB3AA;
}
.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-7 > 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-7 > 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";
  left: -20px;
  font-size: 12px;
}
.header_site .navbar-desktop .navbar-nav li.item-level-1 a.dropdown-toggle:after {
  font-size: 12px;
  line-height: 38px;
  left: 10px;
  right: auto;
  content: "\f053";
}
.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%;
  right: 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: 200px;
  padding: 0;
  right: -20px;
  text-align: right;
  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;
  padding: 15px;
  font-size: 14px;
}
.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-left: 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 {
  right: 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;
}
.header_site .navbar-desktop .navbar-collapse {
  justify-content: space-between;
}
.header_site .navbar-desktop .navbar-collapse .navbar-brand {
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  background: #1B8354;
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.header_site .paragraph--type--composant-social-media a {
  margin: 0 5px;
}

.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-story {
  display: none;
}
@media (min-width: 768px) {
  .list-story {
    display: block;
  }
}
.list-story .story_ads {
  display: flex;
}
.list-story .story_ads article {
  padding: 0;
}
.list-story .story_ads article .img-modal img {
  width: 76.144px;
  height: 76.144px;
  border: 1px dashed;
  border-radius: 50%;
  margin: 0 5px;
  padding: 8px;
}
.list-story .story_ads .spotlight {
  cursor: pointer;
}
.list-story .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-brand {
  display: none;
}
#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-right: 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;
}
.header_site .fixed-header {
  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);
}
.header_site.fixed-top .list-story {
  display: none;
}
.header_site.fixed-top #block-psau-socialmedia-2,
.header_site.fixed-top #block-psau-sitebranding,
.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;
  }
}

body:not(.path-frontpage) .header_site {
  background: #f0f9f8;
}
body:not(.path-frontpage) .header_site .header-top {
  border-bottom: 1px solid #d5ece9;
}
body:not(.path-frontpage) .header_site .navbar-desktop:after {
  z-index: 9;
}
body:not(.path-frontpage) .header_site .navbar-desktop .navbar-collapse {
  z-index: 999;
}

footer.footer-site {
  background: #074D31;
  text-align: center;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  footer.footer-site {
    text-align: initial;
    padding: 40px 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;
  unicode-bidi: embed;
}
footer.footer-site #block-psau-lltwasl .f_item img {
  width: 24px;
  height: 24px;
  margin-left: 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%;
  direction: ltr;
  unicode-bidi: embed;
}
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;
}

.ui-accordion {
  font-family: "IBM Plex Bold";
}
.ui-accordion form {
  margin: 0 !important;
  width: 90%;
}
@media (min-width: 992px) {
  .ui-accordion form {
    margin: 30px 64% 0 0 !important;
    width: 35%;
  }
}
.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: 1px solid #DCDCDC;
  background: #FFFFFF;
  margin: 5px 0;
}
.ui-accordion .views-row .views-row .ui-accordion-header {
  color: #1B8354;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  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: 16px;
  }
}
.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;
  left: 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: #1B8354;
  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: #1B8354;
  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;
}

.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: #074D31;
  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: #074D31;
}
.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: right !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-news-page .item-news {
  margin-bottom: 20px;
}
.list-news-page .item-news .media img {
  width: 100%;
  height: 193px;
  border-radius: 10px;
}
.list-news-page .item-news h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 10px 0;
  height: 45px;
}
.list-news-page .item-news .f_info {
  display: flex;
  gap: 10px;
}
.list-news-page .item-news .f_info .f_writer, .list-news-page .item-news .f_info .f_created {
  color: #A5A5A5;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
}
.list-news-page .item-news .f_info .f_writer i, .list-news-page .item-news .f_info .f_created i {
  margin: 0 5px;
}
.list-news-page .views-exposed-form {
  margin: 15px auto;
  text-align: center;
  width: max-content;
}
.list-news-page .views-exposed-form select {
  width: 100%;
}
@media (min-width: 992px) {
  .list-news-page .views-exposed-form select {
    width: 450px;
  }
}
.list-news-page .not-result {
  text-align: center;
}
.list-news-page .not-result p {
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 10px 0;
}
.list-news-page .f_departement {
  border-radius: 6px;
  background: #5FB3AA;
  padding: 6px 10px;
  color: #FFF;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 18.7px */
  width: max-content;
  margin: 5px 0;
}

.list-events-page .item-event {
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #E1E3EA;
}
.list-events-page .item-event .f_img {
  position: relative;
}
.list-events-page .item-event .f_img .f_departement {
  border-radius: 6px;
  background: #5FB3AA;
  padding: 6px 10px;
  color: #FFF;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 18.7px */
  width: max-content;
  margin: 5px 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.list-events-page .item-event .media img {
  width: 100%;
  height: 240px;
  border-radius: 10px 10px 0 0;
  object-fit: fill;
}
.list-events-page .item-event .f_content {
  padding: 15px;
}
.list-events-page .item-event .f_content h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 10px 0;
}
.list-events-page .item-event .f_content .f_date i {
  color: #1B8354;
}
.list-events-page .item-event .f_content .f_date span {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 0 5px;
}
.list-events-page .item-event .f_content .f_link {
  text-align: center;
  margin-top: 20px;
}
.list-events-page .item-event .f_content .f_link a {
  border-radius: 8px;
  border: 1px solid #1B8354;
  padding: 6px 29px;
}
.list-events-page .item-event .f_content .f_link a:hover {
  background: #1B8354;
  color: #fff;
}
.list-events-page .views-exposed-form {
  margin: 15px auto;
  text-align: center;
  width: max-content;
}
.list-events-page .views-exposed-form select {
  width: 100%;
}
@media (min-width: 992px) {
  .list-events-page .views-exposed-form select {
    width: 450px;
  }
}
.list-events-page .not-result {
  text-align: center;
}
.list-events-page .not-result img {
  width: 120px;
}
.list-events-page .not-result p {
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 10px 0;
}

.list-community-page .item {
  margin-bottom: 20px;
}
.list-community-page .item .media img {
  width: 100%;
  height: 193px;
  border-radius: 10px;
  object-fit: fill;
  border-radius: 10px;
  border: 1px solid #DDD;
  background: lightgray 50%;
}
.list-community-page .item h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 10px 0;
  height: 70px;
}

.list-articles-page .item-article {
  margin-bottom: 20px;
}
.list-articles-page .item-article .media img {
  width: 100%;
  height: 193px;
  border-radius: 10px;
}
.list-articles-page .item-article h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 10px 0;
}
.list-articles-page .item-article .f_info {
  display: flex;
  gap: 10px;
}
.list-articles-page .item-article .f_info .f_writer, .list-articles-page .item-article .f_info .f_created {
  color: #A5A5A5;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
}
.list-articles-page .item-article .f_info .f_writer i, .list-articles-page .item-article .f_info .f_created i {
  margin: 0 5px;
}
.list-articles-page .views-exposed-form {
  margin: 15px auto;
  text-align: center;
  width: max-content;
}
.list-articles-page .views-exposed-form select {
  width: 100%;
}
@media (min-width: 992px) {
  .list-articles-page .views-exposed-form select {
    width: 450px;
  }
}
.list-articles-page .not-result {
  text-align: center;
}
.list-articles-page .not-result p {
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 10px 0;
}

.not-result {
  text-align: center;
}
.not-result p {
  color: #1B8354;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 10px 0;
}

.list-press-interviews-page .item,
.list-written-student-page .item {
  margin-bottom: 20px;
}
.list-press-interviews-page .item .media img,
.list-written-student-page .item .media img {
  width: 100%;
  height: 193px;
  border-radius: 10px;
}
.list-press-interviews-page .item h3,
.list-written-student-page .item h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 10px 0;
}
.list-press-interviews-page .item .f_writer, .list-press-interviews-page .item .f_created,
.list-written-student-page .item .f_writer,
.list-written-student-page .item .f_created {
  color: #A5A5A5;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
  margin: 5px 0;
}
.list-press-interviews-page .item .f_writer i, .list-press-interviews-page .item .f_created i,
.list-written-student-page .item .f_writer i,
.list-written-student-page .item .f_created i {
  margin: 0 5px;
}

.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 #1B8354;
  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%;
}

.block-views-blockpsau-inside-block-1 {
  background: #F3F4F6;
  padding: 50px 0;
  margin: 50px 0;
}
.block-views-blockpsau-inside-block-1 h2 {
  color: #161616;
  font-family: "IBM Plex semiBold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.block-views-blockpsau-inside-block-1 .owl-nav i {
  color: #161616;
  font-size: 18px;
}

.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-left: 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;
}
.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%;
}
.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: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  padding: 10px;
}
.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 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: #074D31;
  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-right: 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: #074D31 !important;
}
.paragraph--type--composant-table .table > :not(caption) > * > * {
  padding: 16px 15px;
  color: #1B8354;
  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: right;
  margin-bottom: 10px;
}
.paragraph--type--composant-table table > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: #F6F6F6;
}

.paragraph--type--composant-accordion .accordion .accordion-item {
  margin: 10px 0;
  border: 1px solid #DCDCDC;
}
.paragraph--type--composant-accordion .accordion .accordion-item .accordion-button {
  border-radius: 5px;
  border: 0;
  background: #FFF;
  box-shadow: none;
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.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%);
  margin-right: auto;
  margin-left: 0;
}

.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 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";
}

.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-left: 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: #3C7974;
  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: #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.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: 10px;
  right: auto;
}
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: #3C7974;
  border: 1px solid #3C7974;
  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: 10px;
  right: auto;
  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;
  }
}
.webform-submission-contact-form input {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #E3EAEA;
  background: #FFF;
  height: 48px;
  padding: 15px 17px;
}
.webform-submission-contact-form input:focus {
  outline: none;
  box-shadow: unset;
  border-color: #1B8354;
  box-shadow: unset;
}
.webform-submission-contact-form textarea {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #E3EAEA;
  background: #FFF;
  padding: 15px 17px;
}
.webform-submission-contact-form textarea:focus {
  outline: none;
  box-shadow: unset;
  border-color: #1B8354;
  box-shadow: unset;
}
.webform-submission-contact-form ::placeholder {
  color: #818181 !important;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  line-height: 120%; /* 15.6px */
}
.webform-submission-contact-form .form-submit:focus {
  background-color: #1B8354 !important;
  background: #1B8354 !important;
  border-color: transparent !important;
}

/** custom code story*/
.stories-container {
  position: relative;
}

.story {
  cursor: pointer;
}
.story .img_story {
  width: 76.144px;
  height: 76.144px;
  border: 1px dashed;
  border-radius: 50%;
  margin: 0 5px;
  padding: 8px;
}

.stories-container .previous-btn,
.stories-container .next-btn,
.stories-full-view .previous-btn,
.stories-full-view .next-btn {
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 45%;
  background: #F1F9F7;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.2;
}
.stories-container .previous-btn:hover,
.stories-container .next-btn:hover,
.stories-full-view .previous-btn:hover,
.stories-full-view .next-btn:hover {
  opacity: 1;
}

.stories-container .previous-btn,
.stories-container .next-btn {
  opacity: 0;
  pointer-events: none;
  transition: all 400ms ease;
}

.stories-container .previous-btn.active,
.stories-container .next-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.stories-container .previous-btn,
.stories-full-view .previous-btn {
  left: 8px;
}

.stories-container .next-btn,
.stories-full-view .next-btn {
  right: 8px;
}

.stories-container .story {
  width: 76.144px;
  height: 76.144px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.stories-container .story img {
  object-fit: cover;
}

.stories-container .stories {
  display: flex;
  gap: 8px;
}

.stories-container .content {
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.stories-container .content::-webkit-scrollbar {
  display: none;
}

.stories-container .author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(transparent, #222 130%);
}

.stories-full-view {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(26, 26, 26, 0.97);
  display: none;
  place-items: center;
  opacity: 0;
  transition: opacity 0.5s, display 0.5s allow-discrete;
}

.stories-full-view.active {
  display: grid;
  opacity: 1;
  z-index: 99999;
}

.stories-full-view .close-btn {
  top: 16px;
  left: 16px;
  width: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  z-index: 20;
  cursor: pointer;
}

.stories-full-view .close-btn svg {
  height: 24px;
  flex-shrink: 0;
  width: 24px;
  margin: 0 auto;
  text-align: center;
}

.stories-full-view .content {
  height: 90vh;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.stories-full-view .story {
  height: 100%;
  text-align: center;
}

.stories-full-view .story img {
  height: 100%;
  aspect-ratio: 10/16;
  object-fit: fill;
  border-radius: 19px;
  max-height: 750px;
}

.stories-full-view .author {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 32px;
  border-radius: 8px;
}

.icons {
  display: none;
}

.stories-full-view.active .icons {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 45%;
}

.stories-full-view.active .icons ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style-type: none;
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  padding: 10px 23px;
}
.story-header .close-btn {
  left: 32px;
  top: 32px;
}

@media (min-width: 992px) {
  .close-btn {
    display: flex;
    z-index: 20;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 22px;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    padding: 6px !important;
  }
  .close-btn i {
    line-height: 50px;
    font-size: 25px;
    font-size: 25px;
    padding: 6px !important;
  }
}
html[dir=rtl] .stories-container .previous-btn, html[dir=rtl] .stories-full-view .previous-btn {
  right: 8px;
  left: unset;
}
html[dir=rtl] .stories-container .previous-btn i, html[dir=rtl] .stories-full-view .previous-btn i {
  transform: rotate(180deg);
}
html[dir=rtl] .stories-container .next-btn, html[dir=rtl] .stories-full-view .next-btn {
  left: 8px;
  right: unset;
}
html[dir=rtl] .stories-container .next-btn i, html[dir=rtl] .stories-full-view .next-btn i {
  transform: rotate(180deg);
}

.hide {
  display: none;
}

.story .img-fluid {
  width: 76.144px;
  height: 76.144px;
  border: 1px dashed;
  border-radius: 50%;
  margin: 0 5px;
  padding: 8px;
}

#block-psau-views-block-last-news-block-1 {
  margin: 40px 0;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div {
  position: relative;
  margin: 20px 0;
}
@media (min-width: 992px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div {
    margin: 0;
  }
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .media {
  position: relative;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .media img {
  width: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  object-fit: fill;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .media::after {
  content: "";
  background: linear-gradient(180deg, rgba(50, 50, 50, 0) 0%, rgba(16, 15, 15, 0.32) 59.5%, rgba(16, 15, 15, 0.59) 100%);
  width: 100%;
  padding: 30px 15px;
  position: absolute;
  bottom: 0px;
  color: #FFFFFF;
  height: 100%;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly {
  background: linear-gradient(180deg, rgba(50, 50, 50, 0) 0%, rgba(16, 15, 15, 0.32) 59.5%, rgba(16, 15, 15, 0.59) 100%);
  width: 100%;
  padding: 30px 15px;
  position: absolute;
  bottom: 0px;
  color: #FFFFFF;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category {
  padding: 7px 11px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  width: max-content;
  font-size: 12px;
  font-style: normal;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category_1 {
  background: #1B8354;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category_2 {
  background: #EB3323;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category_3 {
  background: #6AC7BD;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category_4 {
  background: #1B8354;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category_5 {
  background: #1B8354;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly h3 {
  font-style: normal;
  line-height: 170%;
  color: #FFFFFF;
  margin: 10px 0;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly h3 a {
  color: #FFFFFF;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly time {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-6-first h3 {
  font-weight: 800;
  font-size: 12px;
}
@media (min-width: 992px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-6-first h3 {
    font-size: 20px;
  }
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-6-first img {
  height: auto;
}
@media (min-width: 992px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-6-first img {
    height: 524px;
  }
}
@media (min-width: 1400px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-6-first img {
    height: 524px;
  }
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-12-content {
  margin-bottom: 15px;
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-12-content h3 {
  font-size: 14px;
  font-weight: 600;
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-12-content img {
  height: 200px;
}
@media (min-width: 992px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-12-content img {
    height: 290px;
  }
}
@media (min-width: 1400px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-12-content img {
    height: 290px;
  }
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-6-last img {
  height: auto;
}
@media (min-width: 992px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-6-last img {
    height: 220px;
  }
}
@media (min-width: 1400px) {
  #block-psau-views-block-last-news-block-1 .list-last-news .block-6-last img {
    height: 220px;
  }
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-6-last h3 {
  font-size: 12px;
  font-weight: 600;
}
#block-psau-views-block-last-news-block-1 .list-last-news .block-6-last .row > div {
  padding: 0 5px;
}

#block-psau-quicktabsnews .quicktabs-wrapper .item-list {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .item-list ul {
  margin: -10px 0 0;
  padding: 7px 0 5px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .item-list ul li {
  margin: 0;
  padding: 5px 15px;
  display: block;
}
@media (min-width: 992px) {
  #block-psau-quicktabsnews .quicktabs-wrapper .item-list ul li {
    display: inline;
  }
}
#block-psau-quicktabsnews .quicktabs-wrapper .item-list ul li a {
  color: #1B8354;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
#block-psau-quicktabsnews .quicktabs-wrapper .item-list ul li.active {
  border-radius: 7px 7px 0px 0px;
  background: #1B8354;
}
#block-psau-quicktabsnews .quicktabs-wrapper .item-list ul li.active a {
  color: #FFFFFF;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div {
  position: relative;
  margin: 10px 0;
}
@media (min-width: 992px) {
  #block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div {
    margin: 0;
  }
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .media img {
  width: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly {
  background: linear-gradient(180deg, rgba(50, 50, 50, 0) 0%, rgba(16, 15, 15, 0.12) 59.5%, rgba(16, 15, 15, 0.32) 100%);
  padding: 30px 15px;
  position: absolute;
  bottom: 0px;
  color: #FFFFFF;
  width: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category {
  padding: 7px 11px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  width: max-content;
  font-size: 12px;
  font-style: normal;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category_1 {
  background: #1B8354;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category_2 {
  background: #EB3323;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category_3 {
  background: #6AC7BD;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category_4 {
  background: #1B8354;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly .category_5 {
  background: #1B8354;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly h3 {
  font-style: normal;
  line-height: 170%;
  color: #FFFFFF;
  margin: 10px 0;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly h3 a {
  color: #FFFFFF;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content .content-overly time {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-first img {
  width: 100%;
  height: 248px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-first h3 {
  font-size: 14px;
  font-weight: 800;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row {
  margin-bottom: 10px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row .row > div {
  padding: 0 5px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row .f_content {
  padding-top: 15px !important;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row .f_content h3 {
  font-family: "IBM Plex Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin: 0;
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .block-last .views-row .f_content time {
  color: #868686;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

#block-psau-views-block-community-block-1 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #1B8354;
  padding: 20px 40px;
  margin: 20px 0 60px;
  position: relative;
}
#block-psau-views-block-community-block-1:after {
  content: "";
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: linear-gradient(0deg, #285A56 0%, #285A56 100%), linear-gradient(0deg, #285A56 0%, #285A56 100%), linear-gradient(0deg, #285A56 0%, #285A56 100%), #285A56;
  width: 90%;
  height: 100%;
  position: absolute;
  bottom: -15px;
  z-index: -1;
  display: none;
}
@media (min-width: 992px) {
  #block-psau-views-block-community-block-1:after {
    display: block;
  }
}
#block-psau-views-block-community-block-1:before {
  content: "";
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: linear-gradient(0deg, #285A56 0%, #285A56 100%), linear-gradient(0deg, #285A56 0%, #285A56 100%), linear-gradient(0deg, #285A56 0%, #285A56 100%), #285A56;
  width: 85%;
  height: 100%;
  position: absolute;
  bottom: -30px;
  z-index: -1;
  left: 9%;
  display: none;
}
@media (min-width: 992px) {
  #block-psau-views-block-community-block-1:before {
    display: block;
  }
}
#block-psau-views-block-community-block-1 h2 {
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 170%;
  text-align: center;
  width: max-content;
  margin: 15px auto;
  position: relative;
  z-index: 0;
}
#block-psau-views-block-community-block-1 h2:after {
  height: 8px;
  border-radius: 10px;
  background: #51B6A9;
  z-index: -1;
}
#block-psau-views-block-community-block-1 .carousel-community .views-field-field-image-media img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
#block-psau-views-block-community-block-1 .carousel-community .views-field-title .field-content {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  padding: 10px 0;
  font-family: "IBM Plex Light";
  line-height: 170%;
}
#block-psau-views-block-community-block-1 .carousel-community .views-field-title .field-content a {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  padding: 10px 0;
  font-family: "IBM Plex Light";
  line-height: 170%;
  transition: all 0.3s ease-in-out;
}
#block-psau-views-block-community-block-1 .carousel-community .owl-nav .owl-next {
  color: #fff;
  font-size: 20px;
  left: -30px;
}
#block-psau-views-block-community-block-1 .carousel-community .owl-nav .owl-prev {
  color: #fff;
  font-size: 20px;
  right: -30px;
}

#block-psau-views-block-press-interviews-block-1 h2,
#block-psau-views-block-written-student-block-1 h2,
#block-psau-views-block-article-block-1 h2 {
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 170%;
  position: relative;
  border-bottom: 1px solid #E5E5E5;
}
#block-psau-views-block-press-interviews-block-1 h2:after,
#block-psau-views-block-written-student-block-1 h2:after,
#block-psau-views-block-article-block-1 h2:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #1B8354;
  right: 0;
  bottom: 0;
  width: 100px;
}

#block-psau-views-block-written-student-block-1 {
  padding-left: 30px;
}

#block-psau-views-block-article-block-1 .views-field-nothing {
  margin: 10px 0;
}
#block-psau-views-block-article-block-1 .views-field-nothing .f_img img {
  height: 75px;
  object-fit: cover;
}
#block-psau-views-block-article-block-1 .views-field-nothing .f_content {
  padding: 0;
  margin-top: 10px;
}
#block-psau-views-block-article-block-1 .views-field-nothing .f_content h3 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 5px;
}
#block-psau-views-block-article-block-1 .views-field-nothing .f_content h4 {
  color: #074D31;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
#block-psau-views-block-article-block-1 .views-field-nothing .f_content h4 img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 5px;
}

#block-psau-views-block-management-decisions-block-1 h2 {
  color: #1B8354;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 170%;
  position: relative;
  border-bottom: 1px solid #E5E5E5;
}
#block-psau-views-block-management-decisions-block-1 h2:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #1B8354;
  right: 0;
  bottom: 0;
  width: 100px;
}

.list-management-decisions .grid-item {
  gap: 10px;
  margin: 10px 0;
  align-items: center;
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .list-management-decisions .grid-item {
    display: flex;
    text-align: initial;
  }
}
.list-management-decisions .grid-item .views-field-field-person-img {
  width: 100px;
  margin: auto;
}
@media (min-width: 992px) {
  .list-management-decisions .grid-item .views-field-field-person-img {
    margin: initial;
  }
}
.list-management-decisions .grid-item .views-field-field-person-img img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 1px solid #6AC7BD;
  padding: 5px;
}
.list-management-decisions .grid-item .views-field-title {
  margin-top: 15px;
}
.list-management-decisions .grid-item .views-field-title h3 {
  color: #1B8354;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 170%;
}

.list-news-tabs .more-list,
.block-views .more-list {
  text-align: left;
  margin: 20px 0;
}
.list-news-tabs .more-list a,
.block-views .more-list a {
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.06);
  color: #1B8354;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  padding: 5px 20px;
  position: relative;
}
.list-news-tabs .more-list a:after,
.block-views .more-list a:after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 5px;
  font-size: 12px;
  line-height: 170%;
  top: 5px;
}

#block-psau-views-block-lfaalyt-block-1 h2 {
  color: #1B8354;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 170%;
}
#block-psau-views-block-lfaalyt-block-1 header p {
  text-align: center;
  color: #1B8354;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event {
  position: relative;
  margin: 10px 0;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .media img {
  width: 100%;
  border-radius: 5px;
  height: 210px;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(50, 50, 50, 0) 0%, rgba(16, 15, 15, 0.72) 59.5%, rgba(16, 15, 15, 0.74) 100%);
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content .content-overly {
  padding: 30px 15px;
  position: absolute;
  bottom: 0px;
  color: #FFFFFF;
  width: 100%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content .content-overly h3 {
  font-size: 15px;
  font-style: normal;
  font-family: "IBM Plex Medium";
  line-height: 170%;
  color: #FFFFFF;
  margin: 10px 0;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content .content-overly h3 a {
  color: #FFFFFF;
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content .content-overly .f_date {
  color: #DBDBDB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 17px */
}
#block-psau-views-block-lfaalyt-block-1 .list-events .item-event .content .content-overly .f_date i {
  margin: 0 5px;
}

.list-written-student.item-attachement img,
.list-press-interviews.item-attachement img {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  width: 100%;
  margin-bottom: 10px;
}
.list-written-student.item-attachement .f_writer,
.list-press-interviews.item-attachement .f_writer {
  color: #9B9B9B;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
.list-written-student.item-attachement .views-field-title .field-content,
.list-press-interviews.item-attachement .views-field-title .field-content {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
.list-written-student.item-attachement .views-field-body p,
.list-press-interviews.item-attachement .views-field-body p {
  color: #6A6A6A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.list-written-student .f_item,
.list-press-interviews .f_item {
  margin-bottom: 10px;
  align-items: center;
}
.list-written-student .f_item img,
.list-press-interviews .f_item img {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}
.list-written-student .f_item .f_content,
.list-press-interviews .f_item .f_content {
  padding: 0;
}
.list-written-student .f_item .f_content h3,
.list-press-interviews .f_item .f_content h3 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
.list-written-student .f_item .f_content h4,
.list-press-interviews .f_item .f_content h4 {
  color: #9B9B9B;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

#block-psau-webform-newsletter {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 30px 15px;
  text-align: center;
}
#block-psau-webform-newsletter i {
  color: rgba(207, 207, 207, 0.6980392157);
  font-size: 40px;
}
#block-psau-webform-newsletter h2 {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}
#block-psau-webform-newsletter .subtitle {
  color: #1B8354;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
#block-psau-webform-newsletter form {
  border-top: 1px dashed #C9C9C9;
}
#block-psau-webform-newsletter form p {
  color: #1B8354;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: 90%;
  margin: auto;
}
#block-psau-webform-newsletter form .form-email {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #CFCFCF;
  background: #FFF;
  color: #757575;
  font-size: 10px;
  height: 35px;
}
#block-psau-webform-newsletter form .form-email::placeholder {
  font: 11px "IBM Plex Medium";
  color: #757575;
}
#block-psau-webform-newsletter form .form-email:hover, #block-psau-webform-newsletter form .form-email:focus {
  border: 1px solid #CFCFCF;
}
#block-psau-webform-newsletter form .form-submit {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  height: 35px;
  margin: 0;
}

nav.pager ul li a {
  line-height: normal;
}

.share_addtoany {
  border-top: 1px solid #E1E1E1;
  padding: 15px 0;
  margin-top: 15px;
  justify-content: space-between;
}
.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 .navigation {
  background: #1B8354;
  padding: 15px;
  -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 .navigation {
    margin-left: 15px;
    -webkit-border-radius: 10px 0px 0px 10px;
    -moz-border-radius: 10px 0px 0px 10px;
    -ms-border-radius: 10px 0px 0px 10px;
    -o-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
  }
}
.page_content .sidebar_first .navigation h5 {
  color: #FFFFFF;
  font-family: "IBM Plex Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.page_content .sidebar_first .navigation ul.menu {
  margin: 0;
  border-top: 1px solid #6AC7BD;
  padding: 10px 0;
}
.page_content .sidebar_first .navigation ul.menu li {
  margin: 5px 0;
  padding: 10px;
}
.page_content .sidebar_first .navigation ul.menu li a {
  color: #FFFFFF;
  font-family: "IBM Plex Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.page_content .sidebar_first .navigation ul.menu li.menu-item--active-trail {
  border-radius: 10.132px;
  background: #226761;
}
.page_content .sidebar_first .navigation ul.menu li.menu-icon a {
  display: flex;
  gap: 10px;
}
.page_content .sidebar_content {
  order: 2 !important;
}
.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: right;
  margin-left: 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: left;
  margin-right: 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;
}
.page_content .sidebar_content .block-system-main-block article .node_information {
  justify-content: space-between;
  width: 100%;
  bottom: 10px;
  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;
  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;
  }
}

.node-311 .paragraph--type--composant-text .text-formatted {
  width: 30%;
  right: 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: right;
  margin-left: 20px;
}
.article-programs .text_body.image_content.position- img, .article-programs .text_body.image_content.position-left img {
  float: left;
  margin-right: 20px;
}
.article-programs .f_program_info .f_info {
  color: #1B8354;
  margin: 10px 0;
}

.sidebar_second .block-views {
  border-radius: 10px;
  border: 1px solid #E1E3EA;
  padding: 20px;
}
.sidebar_second .block-views h2 {
  color: #6AC7BD;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 18px */
  position: relative;
  width: max-content;
}
.sidebar_second .block-views h2:after {
  content: "";
  background: #6AC7BD;
  position: absolute;
  bottom: -20px;
  height: 2px;
  width: 100%;
  right: 0;
}
.sidebar_second .block-views .list-press-interviews,
.sidebar_second .block-views .list-written-student,
.sidebar_second .block-views .list-articles,
.sidebar_second .block-views .list-community,
.sidebar_second .block-views .list-last-news {
  border-top: 1px solid #E4E4E4;
  margin-top: 10px;
  padding-top: 10px;
}
.sidebar_second .block-views .list-press-interviews .views-row,
.sidebar_second .block-views .list-written-student .views-row,
.sidebar_second .block-views .list-articles .views-row,
.sidebar_second .block-views .list-community .views-row,
.sidebar_second .block-views .list-last-news .views-row {
  padding: 10px 0;
  border-right: 4px solid #1B8354;
  padding-right: 10px;
  margin: 20px 0;
}
.sidebar_second .block-views .list-press-interviews .views-row h3.field-content,
.sidebar_second .block-views .list-written-student .views-row h3.field-content,
.sidebar_second .block-views .list-articles .views-row h3.field-content,
.sidebar_second .block-views .list-community .views-row h3.field-content,
.sidebar_second .block-views .list-last-news .views-row h3.field-content {
  color: #1F2A37;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.sidebar_second .block-views .list-press-interviews .views-row h3.field-content a,
.sidebar_second .block-views .list-written-student .views-row h3.field-content a,
.sidebar_second .block-views .list-articles .views-row h3.field-content a,
.sidebar_second .block-views .list-community .views-row h3.field-content a,
.sidebar_second .block-views .list-last-news .views-row h3.field-content a {
  color: #1F2A37;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.sidebar_second .block-views .list-press-interviews .views-row + .views-row,
.sidebar_second .block-views .list-written-student .views-row + .views-row,
.sidebar_second .block-views .list-articles .views-row + .views-row,
.sidebar_second .block-views .list-community .views-row + .views-row,
.sidebar_second .block-views .list-last-news .views-row + .views-row {
  border-top: 1px dashed #E4E4E4;
}
.sidebar_second .block-views .list-press-interviews .views-row .f_writer,
.sidebar_second .block-views .list-press-interviews .views-row .views-field-field-writer,
.sidebar_second .block-views .list-press-interviews .views-row .views-field-created,
.sidebar_second .block-views .list-written-student .views-row .f_writer,
.sidebar_second .block-views .list-written-student .views-row .views-field-field-writer,
.sidebar_second .block-views .list-written-student .views-row .views-field-created,
.sidebar_second .block-views .list-articles .views-row .f_writer,
.sidebar_second .block-views .list-articles .views-row .views-field-field-writer,
.sidebar_second .block-views .list-articles .views-row .views-field-created,
.sidebar_second .block-views .list-community .views-row .f_writer,
.sidebar_second .block-views .list-community .views-row .views-field-field-writer,
.sidebar_second .block-views .list-community .views-row .views-field-created,
.sidebar_second .block-views .list-last-news .views-row .f_writer,
.sidebar_second .block-views .list-last-news .views-row .views-field-field-writer,
.sidebar_second .block-views .list-last-news .views-row .views-field-created {
  color: #A5A5A5;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  margin: 10px 0;
}
.sidebar_second .block-views .list-press-interviews .views-row .f_writer i,
.sidebar_second .block-views .list-press-interviews .views-row .views-field-field-writer i,
.sidebar_second .block-views .list-press-interviews .views-row .views-field-created i,
.sidebar_second .block-views .list-written-student .views-row .f_writer i,
.sidebar_second .block-views .list-written-student .views-row .views-field-field-writer i,
.sidebar_second .block-views .list-written-student .views-row .views-field-created i,
.sidebar_second .block-views .list-articles .views-row .f_writer i,
.sidebar_second .block-views .list-articles .views-row .views-field-field-writer i,
.sidebar_second .block-views .list-articles .views-row .views-field-created i,
.sidebar_second .block-views .list-community .views-row .f_writer i,
.sidebar_second .block-views .list-community .views-row .views-field-field-writer i,
.sidebar_second .block-views .list-community .views-row .views-field-created i,
.sidebar_second .block-views .list-last-news .views-row .f_writer i,
.sidebar_second .block-views .list-last-news .views-row .views-field-field-writer i,
.sidebar_second .block-views .list-last-news .views-row .views-field-created i {
  margin: 0 5px;
}

.path-node article h2, .path-node article h1 {
  color: #3C7974;
  font-family: "IBM Plex Medium";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 54.4px */
}
.path-node article .media img {
  width: 96%;
  height: 357px;
  border-radius: 10px;
  margin: 10px 0;
  object-fit: fill;
  border-radius: 10px;
  background: lightgray 50%/cover no-repeat;
  box-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.28);
}
.path-node article .carousel-gallery img {
  background: none;
  box-shadow: none;
}
.path-node article .f_title {
  border-bottom: 1px solid #E4E4E4;
}
.path-node article .f_title h3 {
  color: #3C7974;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  position: relative;
  width: max-content;
}
.path-node article .f_title h3:after {
  content: "";
  background: #6AC7BD;
  position: absolute;
  bottom: -9px;
  height: 2px;
  width: 100%;
  right: 0;
}
.path-node article .carousel-gallery .owl-item {
  padding: 0;
}
.path-node article .carousel-gallery .media img {
  height: 160px;
  border-radius: 7px;
  object-fit: fill;
  width: 100%;
}
.path-node article .carousel-gallery .owl-nav .owl-next {
  left: -20px;
}
.path-node article .carousel-gallery .owl-nav .owl-prev {
  right: -30px;
}
.path-node article .f_info {
  display: flex;
  gap: 10px;
}
.path-node article .f_info .f_writer, .path-node article .f_info .f_created {
  color: #A5A5A5;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
}
.path-node article .f_info .f_writer i, .path-node article .f_info .f_created i {
  margin: 0 5px;
}
.path-node article p {
  color: #7C7C7C;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
.path-node article .f_location i,
.path-node article .f_date i {
  color: #3C7974;
}
.path-node article .f_location span,
.path-node article .f_date span {
  color: #3C7974;
  font-family: "IBM Plex Medium";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  margin: 0 5px;
}
.path-node article .f_body {
  display: flex;
  gap: 20px;
  width: 98%;
}
.path-node article .f_body .f_share {
  padding-top: 80px;
  position: relative;
  width: 50px;
}
.path-node article .f_body .f_share .f_desc {
  transform: rotate(-90deg);
  position: absolute;
  height: 100px;
  top: 0;
  left: 25px;
}
.path-node article .f_body .f_share .addtoany_list a {
  margin: 5px 0;
}
.path-node article .f_map h2 {
  color: #6AC7BD;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 18px */
  position: relative;
  width: max-content;
}
.path-node article .f_map h2:after {
  content: "";
  background: #6AC7BD;
  position: absolute;
  bottom: -21px;
  height: 2px;
  width: 100%;
  right: 0;
}
.path-node article .f_map .f_content_map {
  border-top: 1px solid #E4E4E4;
  margin-top: 20px;
  padding-top: 20px;
}
.path-node article .f_map .f_content_map .leaflet-container {
  border-radius: 10px;
  margin: 10px 0;
}

.article-contact h2 {
  color: #1B8354;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.article-contact .f_item {
  padding: 15px;
  unicode-bidi: embed;
}
.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-left: 10px;
}
.article-contact .f_item a {
  color: #1B8354;
  direction: ltr;
  unicode-bidi: embed;
}
.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 article figure.youtube-container {
  width: 96%;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.28);
}

.list-articles-page .item-article .f_writer {
  display: flex;
}
.list-articles-page .item-article .f_writer img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 5px;
}

.list-articles .views-field-field-writer .field-content {
  display: flex;
}
.list-articles .views-field-field-writer .field-content img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 5px;
}

.page-node-type-article article .f_writer {
  display: flex;
}
.page-node-type-article article .f_writer img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 5px;
}

.path-node article p {
  text-align: justify;
}

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

.page_content .sidebar_first .navigation {
  background: #fff;
  padding: 0;
}

.page_content .sidebar_first .navigation ul.menu li.menu-item--active-trail {
  border-radius: 0;
  background: #fff;
  border-right: 3px solid #1B8354;
}
.page_content .sidebar_first .navigation ul.menu li.menu-item--active-trail a {
  color: #1B8354;
  font-weight: 600;
}

.page_content .sidebar_first .navigation ul.menu li {
  padding: 5px 10px;
}

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

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

.page_content .sidebar_first .navigation ul.menu {
  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;
}

.alert-message .alert {
  overflow: hidden;
  position: relative;
}
.alert-message .alert .btn-close {
  position: absolute;
  top: 10px;
  z-index: 999;
  left: 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" !important;
  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 {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  font-family: "IBM Plex Medium" !important;
  line-height: 30px;
}
.f_body h2,
.list_content header h2,
.text-formatted h2 {
  font-size: 20px;
  font-family: "IBM Plex Medium" !important;
}

p {
  color: #6A6A6A;
  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-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;
  }
}
.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin: 4px 5px;
  border: 1px solid #dddddd;
}
.owl-carousel .owl-dots .owl-dot.active {
  border: 1px solid #1B8354;
  background: #1B8354;
}

#scrollToTopBtn {
  left: auto;
  right: 10%;
  background-color: transparent;
  border: 0;
  bottom: 100px;
  position: fixed;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 48px;
  outline: none;
  position: fixed;
  z-index: 3000;
  display: none;
}
@media (min-width: 992px) {
  #scrollToTopBtn {
    display: block;
  }
}
#scrollToTopBtn img {
  width: 45px;
}

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

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

.breadcrumb_page {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: #F0F9F8;
  padding: 14px 23px 0;
  position: relative;
}
.breadcrumb_page:after {
  position: absolute;
  width: 100%;
  height: 64px;
  bottom: 0;
  left: 0;
  background-image: url("../../assets/images/after-news.svg");
  background-position: center;
}
.breadcrumb_page h1 {
  color: #1B8354;
  font-family: "IBM Plex Bold";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 0;
  margin: 0;
}
.breadcrumb_page .text-formatted p {
  color: #1B8354;
  font-size: 13px !important;
}
.breadcrumb_page .block-system-breadcrumb-block {
  position: relative;
  z-index: 99;
}
.breadcrumb_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.breadcrumb_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding: 0 5px;
  content: ">";
  color: #1B8354;
}

body[class*=path-events-] .breadcrumb_page .text-formatted p,
body[class*=path-news-] .breadcrumb_page .text-formatted p {
  margin: 0;
}

body[class*=node-] .breadcrumb_page,
body.path-node .breadcrumb_page {
  padding-bottom: 20px;
}

.block-system-breadcrumb-block {
  position: relative;
  z-index: 99;
  margin-top: 30px;
}
.block-system-breadcrumb-block .breadcrumb .breadcrumb-item {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.block-system-breadcrumb-block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding: 0 5px;
  content: ">";
  color: #1B8354;
}

.banner_page .navigation .menu {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0px;
  margin-right: 0;
}
.banner_page .navigation .menu li {
  padding: 15px;
  border-bottom: 2px solid #d2d6db;
}
.banner_page .navigation .menu li a {
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.banner_page .navigation .menu li.menu-item--active-trail {
  border-bottom: 2px solid #1B8354;
}
.banner_page .navigation .menu li.menu-item--active-trail a {
  color: #1B8354;
  font-family: "IBM Plex Medium";
  font-weight: 600;
}

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

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

.rw-widget-container {
  margin: 0 !important;
  bottom: 20px !important;
}
.rw-widget-container .rw-launcher {
  border: 1px solid rgba(0, 0, 0, 0.1) !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;
  border-radius: 0 20px 20px 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: #477E7A !important;
  border: 2px solid #477E7A !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: #477E7A !important;
  border: 2px solid #477E7A !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;
  }
}

.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: #074D31;
  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: #074D31;
}
.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: right !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;
}

nav.pager ul {
  display: flex;
  gap: 5px;
}
nav.pager ul li {
  border-radius: 7.39px;
  border: 0.739px solid #7E8299;
  display: flow;
  width: 35.471px;
  height: 30.298px;
  line-height: 15px;
}
nav.pager ul li a {
  color: #7E8299;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 0; /* 22.465px */
}
nav.pager ul li.is-active {
  background: #3C7974;
  border: 0.739px solid #3C7974;
}
nav.pager ul li.is-active a {
  color: #fff;
}

.weatcher_block {
  border-radius: 10px;
  border: 0;
}
.weatcher_block > div {
  border-radius: 10px;
  height: auto;
}
@media (min-width: 768px) {
  .weatcher_block > div {
    height: 240px;
  }
}

.banner_img_video .media img,
.banner_img_video .media video {
  width: 100%;
  border-radius: 10px;
}

.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: 182px !important;
}
.chatbot .profile_div .imgProfile {
  height: 22px;
  width: 22px;
}
.chatbot .profile_div:hover {
  background: #477E7A;
  cursor: pointer;
}
.chatbot .profile_div:hover .imgProfile {
  filter: brightness(0) invert(1);
}
.chatbot .tap-target {
  bottom: 188px !important;
  left: 50px;
}
.chatbot .widget {
  bottom: 270px !important;
}

body.dark-mode {
  background: #1B1B1B;
}
body.dark-mode * {
  color: #FFFFFF !important;
}
body.dark-mode main {
  background: #1B1B1B !important;
  background-color: #1B1B1B !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, body.dark-mode #block-psau-views-block-community-block-1 h2:after, #block-psau-views-block-community-block-1 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 {
  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 .header_site {
  background: #1B1B1B;
}

body {
  background: #f0f9f8;
}

.header_site .navbar-desktop .navbar-collapse .navbar-brand {
  padding: 9px 26px;
  transition: all 0.3s ease-in-out;
}
.header_site .navbar-desktop .navbar-collapse .navbar-brand:hover {
  background: #5FB3AA;
  color: #fff;
}

#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category {
  padding: 11px 11px;
  border-radius: 15px;
  width: max-content;
  font-size: 12px;
  font-style: normal;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  min-width: 100px;
  text-align: center;
  display: flex;
  padding: 7px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly .category.category_3 {
  border-radius: 15px;
  background: #eb3323;
}

#block-psau-views-block-lfaalyt-block-1 h2 {
  position: relative;
  z-index: 0;
}
#block-psau-views-block-lfaalyt-block-1 h2::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../assets/images/event.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  left: 45%;
  z-index: -1;
}

#block-psau-views-block-press-interviews-block-1 h2,
#block-psau-views-block-written-student-block-1 h2,
#block-psau-views-block-article-block-1 h2 {
  padding-bottom: 8px;
  line-height: normal;
}

#block-psau-views-block-management-decisions-block-1 .list-management-decisions .grid-item .views-field-title h3 {
  font-size: 13px;
  font-style: normal;
  font-weight: bold;
  line-height: 170%;
  font-family: "IBM Plex Medium";
}

.list-written-student.item-attachement .f_writer,
.list-press-interviews.item-attachement .f_writer {
  color: #9b9b9b;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
}

.list-written-student.item-attachement .views-field-body p,
.list-press-interviews.item-attachement .views-field-body p {
  color: #6a6a6a;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.1px */
}

.list-written-student .f_item .f_content h3,
.list-press-interviews .f_item .f_content h3 {
  font-family: "IBM Plex Bold";
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  font-style: normal;
  font-weight: bold;
  line-height: 23px;
  margin-bottom: 0;
  cursor: pointer;
}
.list-written-student .f_item .f_content h4,
.list-press-interviews .f_item .f_content h4 {
  margin-bottom: 0;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  font-family: "IBM Plex Light";
}

.f_writer i {
  padding: 0px 5px;
}

.list-news-tabs .more-list a,
.block-views .more-list a {
  display: inline-block;
  text-align: right;
  padding: 5px;
  min-width: 120px;
}

.header_site .navbar-desktop .navbar-nav li ul.dropdown-menu {
  animation: growDown 500ms ease-in-out forwards;
  transform-origin: top center;
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.list-story .story_ads .story {
  position: relative;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c7974;
  text-decoration: none;
  transition: color 0.3s ease;
}
.list-story .story_ads .story::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-radius: 50%;
  border: 1.5px dashed;
  width: 75px;
  height: 75px;
}
.list-story .story_ads .story:hover::after {
  animation-name: Rotate;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.list-story .story_ads .story img {
  border: 0;
  margin: 0;
}

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#block-psau-quicktabsnews .quicktabs-wrapper .quicktabs-main .list-news-tabs .views-field-nothing .field-content > div .content {
  background: linear-gradient(180deg, rgba(50, 50, 50, 0) 0%, rgba(16, 15, 15, 0.72) 59.5%, rgba(16, 15, 15, 0.74) 100%);
  z-index: 0;
}

#block-psau-views-block-last-news-block-1 > .row {
  align-items: baseline;
}

.list-written-student.item-attachement img,
.list-press-interviews.item-attachement img {
  transition: clip-path 1s cubic-bezier(0.12, 0.76, 0.36, 1), opacity 0.3s, transform 1.5s cubic-bezier(0.12, 0.76, 0.36, 1);
}
.list-written-student.item-attachement .views-field-field-image-media,
.list-press-interviews.item-attachement .views-field-field-image-media {
  cursor: pointer;
}
.list-written-student.item-attachement .views-field-field-image-media:hover img,
.list-press-interviews.item-attachement .views-field-field-image-media:hover img {
  transform: scale(1.03);
}

.weatcher_block {
  margin-bottom: 30px;
}
.weatcher_block #ww_3bbbbc223c568 {
  border-radius: 5px;
  background: linear-gradient(312deg, #3c7974 7.83%, #64aba3 48.33%, #75c6bb 92.43%);
}
.weatcher_block #ww_3bbbbc223c568 .ww_current {
  flex-direction: column;
}
.weatcher_block .ww_noselect {
  direction: ltr;
}

#block-psau-webform-newsletter form .form-email:hover,
#block-psau-webform-newsletter form .form-email:focus {
  box-shadow: unset !important;
}

.list-events .item-event .content .content-overly {
  padding: 30px 15px 15px;
}

.event_badge {
  display: inline-flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  border-radius: 10px;
  color: #fff;
  position: absolute;
  left: 0;
  left: 5%;
  padding: 6px 10px;
  top: 10%;
}
.event_badge.precedent-event {
  background: #F2AD00;
}
.event_badge.coming-event {
  background: #1B8354;
}
.event_badge.current-event {
  background: #EB3323;
}

.carousel-community .views-field-title .field-content a {
  font-weight: normal;
}

body[class^=path-] main, body[class*=path-] main {
  background: #fff;
  background-color: #fff;
}

body.path-frontpage main {
  background: #fff;
  background-color: #fff;
}

.pager {
  margin-top: 30px;
}

form.views-exposed-form .form--inline .form-item select {
  border-radius: 6px;
  border: 1px solid #D8D8E5 !important;
  background: url("../../assets/images/arrows1.svg") !important;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08) !important;
  background-repeat: no-repeat !important;
  background-size: 3% !important;
  background-position: 10px center !important;
}

.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;
}

#block-psau-views-block-last-news-block-1 .list-last-news .views-field-nothing .field-content > div .content .content-overly h3 a:hover {
  text-decoration: underline;
}

.carousel-community.owl-carousel .owl-nav {
  top: 30%;
}

.paragraph.paragraph--type--image-qrcode.paragraph--view-mode--default {
  width: 130px;
}

.paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode {
  width: 130px;
}

#block-psau-views-block-management-decisions-block-1 h2 {
  padding-bottom: 11px;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
} /* Chrome <=56, Safari < 10 */
:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
} /* FF 4-18 */
::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
} /* FF 19-51 */
:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
} /* IE 10+ */
::placeholder {
  opacity: 1;
  transition: opacity 0.5s;
} /* Modern Browsers */
*:focus::-webkit-input-placeholder {
  opacity: 0;
} /* Chrome <=56, Safari < 10 */
*:focus:-moz-placeholder {
  opacity: 0;
} /* FF 4-18 */
*:focus::-moz-placeholder {
  opacity: 0;
} /* FF 19-50 */
*:focus:-ms-input-placeholder {
  opacity: 0;
} /* IE 10+ */
*:focus::placeholder {
  opacity: 0;
} /* Modern Browsers */
.header_site.fixed-top .navbar-desktop .navbar-nav {
  gap: 22px;
  line-height: 10px;
}
.header_site.fixed-top .header-top .h_top .top_header_left {
  margin-right: 14px;
}
.header_site .header-top .h_top .top_header_left {
  gap: 20px;
  align-items: center;
  line-height: 0;
}
.header_site .header-top .h_top .top_header_left .search a {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  line-height: 50px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}
.header_site .header-top .h_top .top_header_left .search a:hover {
  background: #1B8354;
}
.header_site .header-top .h_top .top_header_left .search a:hover i {
  color: #fff;
}
.header_site .header-top .h_top .top_header_left .menu--menu-top-header a .icon {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  line-height: 50px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}
.header_site .header-top .h_top .top_header_left .menu--menu-top-header a:hover .icon {
  background: #1B8354;
}
.header_site .header-top .h_top .top_header_left .menu--menu-top-header a:hover .icon img {
  filter: brightness(0) invert(1);
}
.header_site .header-top .h_top .top_header_left .darkmode-switcher .switch {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  line-height: 58px;
}
.header_site .header-top .h_top .top_header_left .darkmode-switcher .slider {
  height: 45px;
  background: transparent;
  border-radius: 50%;
  line-height: 50px;
  display: block;
}
.header_site .header-top .h_top .top_header_left .darkmode-switcher .slider::before {
  transition: Rotate 0.3s ease-in-out;
}
.header_site .header-top .h_top .top_header_left .darkmode-switcher .slider:hover::before {
  animation-name: Rotate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.header_site .header-top .h_top .top_header_left .language-link {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  line-height: 50px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
}
.header_site .header-top .h_top .top_header_left .language-link:hover {
  background: #1B8354;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .header_site .header-top .h_top {
    justify-content: space-between;
    align-items: end;
  }
  .article-contact h2 {
    margin-top: 20px;
  }
  footer.footer-site #block-psau-lltwasl .f_item,
  footer.footer-site #block-psau-lltwasl .link_footer {
    width: fit-content;
  }
  footer.footer-site h2, footer.footer-site h5 {
    text-align: initial;
    margin: 15px 0;
  }
  .copyright .copyright-content p span {
    display: none;
  }
  .f_application .paragraph--type--composant-application {
    justify-content: center;
  }
  .header_site .header-top .h_top .top_header_left {
    gap: 0px;
    align-items: center;
    line-height: 0;
    position: relative;
    top: 15px;
    margin-bottom: 0 !important;
  }
  footer.footer-site ul.menu li.menu-item {
    width: 100%;
  }
  .copyright .copyright-content p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .copyright .copyright-content p span:nth-child(2) {
    display: none;
  }
}
.list-press-interviews-page .item h3, .list-written-student-page .item h3 {
  margin-bottom: 30px;
}

.path-node article p {
  font-family: "IBM Plex Light" !important;
  font-weight: bold;
}

.header_site.fixed-top .navbar-desktop:after {
  content: unset;
}

.article-contact .f_item a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 16.8px */
}

form.webform-submission-form input::not(.form-check-input) {
  border-radius: 4px;
  border: 1px solid #E3EAEA;
  background: #FFF;
  height: 48px;
}
form.webform-submission-form input::not(.form-check-input):focus, form.webform-submission-form input::not(.form-check-input):active {
  border-color: #1B8354;
  outline: 0;
  box-shadow: unset;
}
form.webform-submission-form textarea:focus, form.webform-submission-form textarea:active {
  border-color: #1B8354;
  outline: 0;
  box-shadow: unset;
}

::placeholder {
  color: #818181;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 15.6px */
}

.list-news-page .item-news .f_info {
  gap: 0;
}

.list-events-page .item-event .f_content .f_link a {
  display: inline-flex;
  padding: 6px 29px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#block-psau-views-block-community-block-1 .carousel-community .views-field-title .field-content a:hover {
  color: #1B1B1B !important;
}

.breadcrumb_page h1 {
  color: #3C7974;
  font-family: "IBM Plex Regular";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 16px;
}

#block-psau-views-block-management-decisions-block-1 .list-management-decisions .grid-item .views-field-title h3 {
  transition: color 0.3s ease;
}
#block-psau-views-block-management-decisions-block-1 .list-management-decisions .grid-item .views-field-title h3:hover {
  color: #5FB3AA;
}

footer.footer-site ul.menu li.menu-item a {
  font-weight: bold;
}
footer.footer-site ul.menu li.menu-item a:hover {
  color: #5FB3AA;
}

#block-psau-views-block-press-interviews-block-1 h2,
#block-psau-views-block-written-student-block-1 h2,
#block-psau-views-block-article-block-1 h2 {
  color: #161616;
  font-family: "IBM Plex semiBold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-align: start;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

#block-psau-views-block-lfaalyt-block-1 h2 {
  margin-bottom: 20px;
  color: #161616;
  font-family: "IBM Plex semiBold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-align: start;
}

.event_badge.coming-event {
  background: #161616 !important;
}

.event_badge.current-event {
  background: #1B8354 !important;
}

.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 {
  padding: 14px 23px;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 0;
  padding-top: 4%;
}

.breadcrumb_page.home_page {
  position: relative;
  margin-bottom: 50px;
}

.breadcrumb_page.home_page .media img, .breadcrumb_page.home_page .media video {
  width: 100%;
  border-radius: 0;
  position: relative;
  height: 199.729px;
  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;
}

.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 a .icon {
  display: none;
}
.header_site .navbar-desktop .navbar-nav li.menu-icon a span {
  display: block;
}

.header_site .header-top .h_top .top_header_left {
  gap: 0 !important;
}

#block-psau-ttbyqmward {
  padding: 0px 0 30px;
}
#block-psau-ttbyqmward .download-app {
  border-radius: 16px;
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #14573a;
}
#block-psau-ttbyqmward .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;
}
#block-psau-ttbyqmward .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;
}
#block-psau-ttbyqmward .download-app > * {
  position: relative;
  z-index: 2;
}
#block-psau-ttbyqmward .download-app h2 {
  color: #FFFFFF;
  font-size: 23.197px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 29.383px;
  margin-bottom: 0;
}
#block-psau-ttbyqmward .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;
}
#block-psau-ttbyqmward .download-app .paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode {
  flex-direction: row !important;
  display: flex;
  align-items: center;
  width: auto;
}
#block-psau-ttbyqmward .download-app .paragraph--type--composant-image-qrcode .paragraph--type--image-qrcode img {
  padding: 5px;
}
#block-psau-ttbyqmward .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;
}

.language {
  margin: 0px 20px;
}
.language img, .language ul {
  display: inline-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;
}

.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;
  margin: 0 5px;
}

.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;
}

#block-psau-views-block-community-block-1 h2:after {
  display: none;
}

.muneer-trigger-button-box button#muneer-trigger-button:focus, #muneer-trigger-button {
  bottom: 150px !important;
}

#scrollToTopBtn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1B8354;
  border-radius: 50%;
  z-index: 100;
  transition: all 0.5s ease;
  bottom: 80px;
  left: 3%;
  right: unset;
}

#scrollToTopBtn img {
  width: 20px;
  height: 20px;
}

.chatbot .profile_div {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  background-color: #1B8354;
  display: flex !important;
  align-items: center;
  justify-content: center;
  bottom: 220px !important;
  left: 3%;
  right: unset;
}

.chatbot .tap-target {
  bottom: 220px !important;
}

.breadcrumb_page {
  background: #1B8354;
  padding: 20px 23px;
  position: relative;
  border-radius: 0;
}

.breadcrumb_page.home_page {
  background: transparent;
  padding: 0;
  position: relative;
  border-radius: 0;
}

.breadcrumb_page .block-system-breadcrumb-block {
  margin: 0;
}

.breadcrumb_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%;
}
.breadcrumb_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%;
}

.banner_site {
  position: relative;
  padding: 30px 0 60px;
  margin-bottom: 30px;
}

.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";
}

#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;
}

.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 img {
  width: 24px;
  height: 24px;
}

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;
}

.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;
}

.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;
}

.block-webform-block .block-feedback {
  margin: 0 auto;
  background: transparent;
  border-top: 2px solid #1B8354;
  background: #fff;
  display: flex;
  border-radius: 0px !important;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
@media (min-width: 768px) {
  .block-webform-block .block-feedback {
    padding: 2px 7px;
  }
}
@media (min-width: 992px) {
  .block-webform-block .block-feedback {
    padding: 10px 80px;
  }
}
.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;
}

.sidebar_second .block-views {
  border: none;
}

.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: 370px !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;
}
.upcomingServices__item .image {
  width: 100%;
  height: 194px;
}
.upcomingServices__item .image img {
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6.248px;
  height: 194px;
}
.upcomingServices__item .content {
  display: block;
  width: 100%;
}
.upcomingServices__item .content h3 {
  color: #1f2a37;
  font-size: 16.006px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.787px;
  height: 45px;
}
.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;
}
.upcomingServices__item .content .f_desc p img {
  width: 18px;
  height: 17px;
  margin: 0 5px;
}
.upcomingServices__item .content .btn-primary {
  padding: 6px 16px;
  font-size: 14px;
  background: #1B8354;
}
.upcomingServices__item .content .btn-primary:hover {
  border: 1px solid #1B8354;
  background: #fff;
  color: #1B8354;
}

.upcomingServices__item .content .btn-primary {
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.upcomingServices__item .content .btn-primary:hover {
  border-color: #1B8354;
}

.sidebar_second .block-views h2 {
  color: #DBA102;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  width: 100%;
}

.sidebar_second .block-views h2:after {
  display: none;
}

.sidebar_second .item-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar_second .item-list ul li a {
  color: #1F2A37;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.sidebar_second .item-list ul li {
  border-right: 4px solid #1B8354;
  padding-right: 10px;
  margin: 20px 0;
}

#block-psau-sitebranding-2 .navbar-brand img {
  filter: brightness(0) invert(1);
}

#block-psau-image2030 {
  margin-inline-start: 15px;
}
#block-psau-image2030 img {
  width: auto;
  height: 60px;
}

#block-psau-sitebranding-2, #block-psau-image2030 {
  display: inline-block;
}

.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;
}

.menu--menu-copyright ul li a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb_page .block-system-breadcrumb-block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff !important;
}

.copyright .block_image_footer {
  display: flex;
  gap: 0 15px;
}

#searchBlockContent.show {
  visibility: visible;
  top: 15%;
  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;
  right: 10px;
  left: unset;
}
#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-inline-start: 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;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
#searchBlockContent.show .form-submit:hover {
  background-color: transparent;
  background: transparent;
  border-color: #161616;
  color: #161616;
}
#searchBlockContent.show .card.card-body {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

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

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

.header_site .header-top .h_top .top_header_left .search a:hover {
  background: transparent;
}

.user-logged-in .header_site.fixed-top {
  top: 78px;
}

#block-psau-views-block-lfaalyt-block-1 h2::after {
  display: none;
}

nav.pager ul {
  justify-content: center;
}

@media (max-width: 767px) {
  #searchBlockContent.show .form-submit {
    width: max-content;
  }
  .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;
  }
  .paragraph--type--composant-application {
    display: block;
    margin: 15px auto;
  }
  .paragraph--type--composant-application .paragraph--type--application {
    margin: 10px auto;
    text-align: center;
  }
  .carousel-events .owl-dots,
  .carousel-news .owl-dots {
    display: none;
  }
}
#block-psau-webform-newsletter {
  border-radius: 10px;
  border: 1px solid #88D8AD;
  background: #FFF;
}
#block-psau-webform-newsletter i {
  color: #88D8AD;
}
/*# sourceMappingURL=style-rtl.css.map */
