@font-face {
  font-family: "Source Sans";
  src: url("/assets/fonts/SourceSans3-VariableFont_wght.ttf")
    format("truetype");
}
@font-face {
  font-family: "Source Sans";
  src: url("/assets/fonts/SourceSans3-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-style: italic;
}

:root {
  --white: #ffffff;
  --bg-white: #ffffff80;
  --light-white: #f2f2ff;
  --bg-light-white: #f2f2ff80;
  --grey: #4c4b54;
  --bg-grey: #4c4b5480;
  --black: #000000;
  --bg-black: #00000080;
  --green: #47D15B;
  --bg-green: #47D15B80;
  --blue :#2fc4ff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.prio {
  font-family: "Source Sans", Arial, sans-serif;
  padding: 0.5em 1em;
}

.prio.prio__high {
  background-color: var(--bg-green);
}

.prio.prio__medium {
  background-color: var(--bg-yellow);
}

a,
a:hover {
  color: var(--green);
  text-decoration: none !important;
}

html,
body,
div,
span,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
section,
input,
textarea {
  font-size: 16px;
  line-height: 24px;
  font-family: "Source Sans", Arial, sans-serif;
  color: var(--black);
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

h1 {
  font-size: 2em;
}

h1,
h2 {
  color: var(--green);
  margin: 0.5em auto;
  line-height: 1.2;
}

h1,
.title,
.subtitle {
  font-family: "Source Sans", Arial, sans-serif;
}

h2 {
  font-family: "Source Sans", Arial, sans-serif;
}

h3,
h4 {
  color: var(--blue);
  margin: 1em auto;
}

b {
  font-family: "Source Sans", Arial, sans-serif;
  font-size: 1.2em;
}

ul li {
  list-style: none;
  margin-bottom: 0.5em;
}

.scrollable {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.caps {
  text-transform: uppercase;
}

.limiter {
  width: 100vw;
  max-width: 1200px;
  box-sizing: border-box;
}

p.limiter,
h3.limiter {
  width: 90vw;

  max-width: 1000px;

  margin: 1em auto 1em;
}

.panel p.limiter {
  width: 100%;
}

.flex-row {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  position: relative;
}

.pos-rel {
  position: relative;
}

.width-fill {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.buttonSVG {
  cursor: pointer;
}

.buttonSVG svg {
  height: 1.5em;
  width: 1.5em;
}

.buttonSVG svg .str1 {
  stroke-width: 0;
  stroke: transparent;
  transition: all 0.2s ease-in-out;
}

.buttonSVG svg .fil1 {
  fill: var(--dark-blue);
  transition: all 0.2s ease-in-out;
}

.buttonSVG:hover svg .fil1 {
  fill: var(--blue);
}

section {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  padding: 3em 1em;
  background: var(--white);
}

section.orange {
  background-color: var(--green);
  color: var(--black);
}

section.orange::before {
  position: absolute;
  background: var(--green);
  right: 0;
  left: 0;
  top: -2.5em;
  content: "";
  height: 5em;
  border-radius: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: -1;
}

section.grey {
  background-color: var(--bg-light-white);
}

button,
.button {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
  padding: 0.8em 3em;
  overflow: hidden;
  text-align: center;
  background-color: var(--green);
  font-size: 1em;
  line-height: 1;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.button.open {
}

button:after,
.button:after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -60%;
  background: linear-gradient(
    to bottom,
    rgba(229, 172, 142, 0),
    rgba(255, 255, 255, 0.5) 50%,
    rgba(229, 172, 142, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

button:hover,
button:focus,
.button:hover {
  opacity: 1;
  color: var(--white);
}

button:hover::after,
button:focus::after,
.button:hover::after {
  animation: sheen 1s forwards;
}

button:disabled,
.button:disabled {
  background-color: var(--bg-grey);

  cursor: default;
}

.button.cancel {
  background: no-repeat;

  outline: 2px solid var(--green);

  outline-offset: -1px;

  color: var(--green);
}

.button.cancel:hover {
  background: var(--green);

  color: var(--white);
}

.button.open {
  background: none;

  outline: 2px solid var(--green);

  outline-offset: -1px;

  color: var(--green);
  border-radius: 500px;
}

.button.open:hover {
  background: var(--green);

  color: var(--white);
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

button span.icon,
.button span.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  margin: 0 0.5em 0.2em 0.1em;
}

header.fixed,
header.fixed-hold,
header.fixed::before,
header.fixed-hold::before {
  background: var(--blue);
}

.global__wrapper {
  margin-bottom: 20em;
  background-color: var(--white);
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}

header.fixed-hold + .global__wrapper {
  padding-top: 4em;
}

.global__wrapper.fixed {
  margin: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.spacer1 {
  padding-top: 1em;
}

.spacer3 {
  padding-top: 3em;
}

.spacer5 {
  padding-top: 5em;
}

.spacer {
  height: 8em;
}

.back__button {
  margin: auto;
  display: block;
  width: 20em;
  text-align: center;
  font-family: "Poppins Bold", Arial, sans-serif;
  color: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

.back__button span {
  font-size: 1.5em;
  color: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

.back__button:hover {
  font-family: "Poppins Bold", Arial, sans-serif;
  color: var(--dark-blue);
}

.back__button:hover span {
  color: var(--blue);
}

.formInput {
  outline: none;
  border-radius: 3px;
  padding: 0.5em 1em;
  min-width: 20em;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid var(--bg-grey);
  transition: all 0.3s ease-in-out;
}

.formInput.incorrect {
  border-color: var(--green);
}

.formInput:focus {
  border: 1px solid var(--blue);
}

.formInput__label {
  font-family: "Source Sans", Arial, sans-serif;
  display: block;
  margin: 0.5em 0.5em 0;
  font-size: 0.8em;
}

.formInput__label--default {
  padding: 0 !important;
  margin-top: 2em;
}

.formInput__label--required {
  color: var(--green);
  font-size: 0.9em;
  margin-left: 0.3em;
  font-family: "Source Sans", Arial, sans-serif;
}

.formInput__notif {
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 2px;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  bottom: 105%;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.formInput__notif.incorrect {
  background-color: var(--green);
}

.formInput__notif.correct {
  background-color: var(--green);
}

.buttonsvg {
  cursor: pointer;
}

svg .fil1 {
  fill: var(--dark-blue);
  transition: all 0.3s ease-in-out;
}

.buttonsvg:hover svg .fil1 {
  fill: var(--blue);
}

.add,
.edit {
  font-family: "Source Sans", Arial, sans-serif;
  color: var(--blue);
  font-size: 0.5em;
  margin-left: 0.5em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.add:hover,
.edit:hover {
  color: var(--dark-blue);
}

.banner {
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 90vw;
  width: 55em;
}

.banner .title {
  font-size: 3em;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin: 0;
}
.banner .subtitle {
  font-size: 1.2em;
  line-height: 1.5;
  color: var(--grey);
}

p {
  margin-bottom: 1em;
  font-size: 0.8em;
  line-height: 1.2;
}

section .title {
  font-size: 2em;
  line-height: 1.2;
}

section .subtitle {
  font-size: 1.8em;
  line-height: 1.2;
  color: var(--text-blue);
}

section.red .subtitle {
  color: var(--white);
}

section p {
  font-size: 0.9em;
}

section .subtitle .blue {
  font-family: "Source Sans", Arial, sans-serif;
  font-size: 1em;
  line-height: 1;
  color: var(--blue);
  font-weight: 600;
}

span.orange {
}

section.orange .subtitle .orange {
  color: var(--text-blue);
}

.gallery {
  display: flex;

  align-items: flex-start;

  justify-content: center;

  width: 100%;

  flex-wrap: wrap;

  gap: 3em;

  margin: 3em auto;
}

.galleryList li {
  font-size: 0.8em;

  line-height: 1.2;

  margin-bottom: 1em;
}

section.orange .gallery {
  justify-content: space-around;
  gap: 3em;
}

.gallery__item {
  width: 18em;

  position: relative;
}

section.orange .gallery__item {
  width: 30em;
}

.gallery__item.list {
  display: flex;

  background: var(--light-white);

  border-radius: 5px;

  padding: 1em;
}

.gallery__item--number {
  color: var(--green);

  font-family: "Source Sans", Arial, sans-serif;

  font-size: 4em;

  line-height: 1.5;
}

.gallery__item--image {
  height: 10em;

  width: 15em;

  object-fit: cover;

  border-radius: 3px;
}

.gallery__item--icon {
  fill: var(--green);
  height: 45px;
  display: inline-block;
}

section.orange .gallery__item--image {
  height: 15em;
  width: 30em;
  max-width: 90vw;
}

.gallery__item--content {
  padding: 1em;

  width: 100%;

  box-sizing: border-box;
}

section.orange .gallery__item--content {
  max-width: 75vw;

  width: 75%;

  margin: -0.75em auto 0;

  box-sizing: border-box;

  background: var(--white);

  border-radius: 5px;

  z-index: 1;

  position: relative;
}

.gallery__item.list .gallery__item--content {
  text-align: left;
}

.gallery__item--content-title {
  font-family: "Source Sans", Arial, sans-serif;

  font-size: 1.2em;

  line-height: 1;

  margin: 0.5em 0 1em;
}

section.orange .gallery__item--content-title {
  color: var(--green);
}

.line-banner {
  padding: 2em 1em 1em;

  margin-bottom: 3em;
}

.gallery__item--content-message {
}

.gallery__item--content-subline {
  color: var(--bg-black);

  font-weight: 600;
}

.panels {
  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 1em;

  margin-bottom: 3em;

  flex-wrap: wrap;

  box-sizing: border-box;

  width: 100%;
}

.panel {
  width: 30em;

  max-width: 90vw;
}

.panel.full {
  width: 87%;
}

.panel .panel__image {
  display: block;

  margin: auto;

  width: 100%;
}

.panes {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 3em;
  width: 100%;
  box-sizing: border-box;
}

.pane {
  padding: 1em 5em;
  flex-grow: 1;
}
img.pane {
  width: 40em;

  height: 20em;

  max-width: 93vw;

  display: block;

  object-fit: cover;

  padding: unset;
}
.panes.orange {
  background: var(--bg-orange);
}

.panes.grey {
  background: var(--light-white);
}

.panes.orange .pane b {
  color: var(--text-blue);
}

.panes.grey .pane b {
  color: var(--green);
}

.contactus {
  position: absolute;

  top: -2em;

  left: 8%;

  text-align: left;

  font-size: 1.5em;

  color: var(--text-blue);
}

.contactus__say {
  font-family: "Source Sans", Arial, sans-serif;

  font-size: 2em;

  line-height: 1;

  color: var(--text-blue);
}

.contactus__hello {
  font-family: "Source Sans", Arial, sans-serif;

  font-size: 3em;

  line-height: 1;

  color: var(--white);
}

.accordion {
  display: flex;

  flex-direction: column;

  gap: 2em;

  padding: 1em;
}

.accordion__item {
  background: var(--light-white);

  border-radius: 5px;
}

.accordion__item--title {
  font-family: "Source Sans", Arial, sans-serif;

  font-size: 1.2em;

  line-height: 1;

  color: var(--white);

  background: var(--green);

  padding: 1em 2em;

  border-radius: 5px;

  cursor: pointer;

  position: relative;

  transition: all 0.3s ease-in-out;
}
.accordion__item--title::after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  font-size: 1.5em;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.accordion__item.active .accordion__item--title::after {
  content: "-";
}
.accordion__item.active .accordion__item--title,
.accordion__item--title:hover {
  background-color: var(--blue);
}

.accordion__item--content {
  padding: 0;

  overflow: hidden;

  height: 0;

  opacity: 0;

  transition: all 0.3s ease-in-out;
}

.accordion__item.active .accordion__item--content {
  padding: 2em;

  height: unset;

  opacity: 1;
}

.accordion__item--content ul li {
  list-style: none;

  padding-left: 1em;
}

/*/////////////////////////////////////////////////////// CAROUSEL
*/

.slideshow-container {
  width: 90%;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
  text-align: center;
}

.mySlides img {
  width: 95%;
  min-height: 2em;
  display: block;
  margin: auto;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  color: var(--white);
  background: var(--green);
  font-size: 1em;
  line-height: 1;
  transition: 0.6s ease;
  border-radius: 500px;
}

.next {
  right: -1em;
}

.prev {
  left: -1em;
}

.prev:hover,
.next:hover {
  background-color: var(--black);
  color: var(--white);
}

/*/////////////////////////////////////////////////////// HEADER
*/

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2em;
  background: transparent;
  height: 4em;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  height: 3em;

  width: 3em;

  position: relative;
}
.header__logo img {
  height: 8em;

  width: 8em;

  position: absolute;

  z-index: 1;

  transition: all 0.3s ease-in-out;
}
header.fixed .header__logo img,
header.fixed-hold .header__logo img {
  height: 6em;

  width: 6em;

  object-fit: cover;
}
.header__title {
  position: absolute;

  left: 9.5em;

  top: 50%;

  transform: translateY(-50%);
}
.header__title .title {
  color: var(--white);

  margin: 0;

  font-size: 1.3em;

  font-weight: 500;
}
.header__title .subtitle {
  color: var(--white);

  font-size: 0.8em;

  line-height: 1;

  margin-left: 0.25em;

  font-weight: 200;
}
.header__nav {
}

.header__nav ul {
  list-style: none;
}

.header__nav--links {
  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 2em;
}

.header__nav--link {
  position: relative;
  line-height: 1;
  margin-bottom: 0;
}

.header__nav--link:not(:last-child)::after {
  content: "";
  display: block;
  height: 1.2em;
  width: 0.1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1em;
  background: var(--white);
}

.header__nav--sublinktxt {
  cursor: default;
}

.header__nav--link a,
.header__nav--sublinktxt {
  color: var(--white);
  font-family: "Source Sans", Arial, sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.header__nav--link.active a,
.header__nav--link a:hover,
.header__nav--link.no-click.active .header__nav--sublinktxt,
.header__nav--link.no-click:hover .header__nav--sublinktxt {
  color: var(--black) !important;
}

header.fixed .header__nav--link a,
header.fixed .header__nav--sublinktxt,
header.fixed-hold .header__nav--link a,
header.fixed-hold .header__nav--sublinktxt {
  color: var(--white);
}

.header__nav--sublinks {
  display: block;
  position: absolute;
  top: 100%;
  left: -1.5em;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

header.fixed .header__nav--sublinks,
header.fixed-hold .header__nav--sublinks {
  background: var(--white);
}

.header__nav--link.no-click:hover .header__nav--sublinks {
  opacity: 1;

  height: unset;

  padding: 1em 2em;
}

.header__nav--sublink {
  margin-bottom: 0.5em;
}

.header__cta {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5em;

  position: relative;
}

.header__cta--tour {
  font-size: 0.8em;

  line-height: 1;

  white-space: nowrap;

  display: block;

  background: var(--green);

  color: var(--white);

  padding: 0.7em 1.5em;

  border-radius: 500px;

  opacity: 0.9;

  font-family: "Source Sans", Arial, sans-serif;

  font-weight: 500;

  transition: all 0.3s ease-in-out;
}

.header__cta--tour:hover {
  opacity: 1;
  color: var(--white);
}

.header__cta--account {
  height: 2em;

  display: block;
}

.header__cta--account span {
}

.header__cta--account span svg {
  height: 100%;
  width: 100%;
  display: block;
  fill: var(--light-orange);
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}

.header__cta--account:hover span svg {
  opacity: 1;
}

/*/////////////////////////////////////////////////////// BREADCRUMBS
*/

.breadcrumbs {
  width: 100%;

  box-sizing: border-box;

  margin: auto;

  padding: 1em;

  padding-left: 2em;

  display: flex;

  align-items: center;

  gap: 1em;
}

.breadcrumbs a {
  color: var(--grey);

  font-size: 0.8em;

  font-weight: 900;

  opacity: 0.5;

  transition: all 0.3s ease-in-out;

  position: relative;

  display: flex;

  align-items: center;

  gap: 1em;
}

.breadcrumbs a span {
  display: inline-block;
  height: 1em;
  width: 1em;
}

.breadcrumbs a span svg {
  display: inline-block;

  height: 100%;

  width: 100%;
}

.breadcrumbs a:hover,
.breadcrumbs .active {
  opacity: 1;
}

.breadcrumbs a:hover span,
.breadcrumbs .active span {
  margin-right: -0.5em;

  transition: all 0.3s ease-in-out;
}

/*/////////////////////////////////////////////////////// HOME
*/
.home {
  height: 60em;
  max-height: 100vh;
  width: 100vw;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

.home.subpage {
  max-height: 40vh;
}

.home__logo {
  display: block;
  margin: 1em auto;
  max-width: 80vw;
}

.instaFeeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1em;
  margin: 3em auto;
  max-height: 22em;
  overflow: hidden;
}
.instaFeed__image {
  height: 10em;
  opacity: 0.8;
  filter: grayscale(0.4);
  transition: all 0.3s ease-in-out;
}
.instaFeed:hover .instaFeed__image {
  opacity: 1;
  filter: grayscale(0);
}

.requirement {
  margin: 0 6em;
}

.requirement li {
  list-style: none;
  position: relative;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 1em;
}

.requirement__check {
  height: 1.5em;

  display: block;

  position: absolute;

  left: -2.5em;

  top: 0.05em;
}

.requirement__check svg {
  display: inline-block;

  height: 100%;

  width: 100%;

  fill: var(--light-blue);
}

.faculty {
  border-radius: 5px;
  padding: 1em;
  box-sizing: border-box;
  width: 95%;
  margin: 5em auto 1em;
}

.faculty h3 {
  margin-bottom: 3em;
}

.faculty__wrapper {
  display: flex;

  align-items: flex-start;

  justify-content: space-around;

  margin: auto;

  margin-bottom: 3em;

  flex-wrap: wrap;

  max-width: 95vw;

  gap: 3em;
}

.faculty__campus {
  margin: 1em auto;

  width: 12em;

  max-width: 70vw;

  border-bottom: 1px solid;
}

.faculty__item {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;
}

.faculty__item img {
  height: 10em;

  width: 10em;

  border-radius: 500px;

  object-fit: cover;

  object-position: center top;


  background: var(--white);
}

.faculty.orange .faculty__item img {
  outline-color: var(--green);
}

.faculty__info {
  box-sizing: border-box;

  padding: 1em 4em;

  flex-grow: 1;

  text-align: center;
}

.faculty__info--name {
  font-family: "Source Sans", Arial, sans-serif;

  font-size: 1.5em;

  line-height: 1;

  color: var(--text-blue);
}

.faculty__info--position {
  line-height: 1.5;

  color: var(--text-blue);
}

.faculty__info--email {
  color: var(--green);

  transition: all 0.3s ease-in-out;
}

.faculty__wrapper.orange .faculty__info--email {
  color: var(--black);
}

.faculty__wrapper.orange .faculty__info--email:hover {
  color: var(--text-blue);
}

.bulletin {
  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 2em;

  flex-wrap: wrap;
}

.bulletin li {
  list-style: none;
}

.bulletin li a {
  background: var(--bg-grey);

  color: var(--light-white);

  padding: 0.5em 1em;

  border-radius: 3px;

  min-width: 12em;

  display: block;

  transition: all 0.3s ease-in-out;
}

.bulletin li a:hover,
.bulletin li a.active {
  background: var(--grey);

  color: var(--white);
}

.bulletin__video {
  width: 75em;

  max-width: 95vw;

  height: 35em;

  max-height: 75vh;

  margin: 2em auto;
}
/*/////////////////////////////////////////////////////// HOME - IMG
*/

.home__img {
  
  height: 20em;
  width: 30em !important;
  object-fit: cover;

}
/*/////////////////////////////////////////////////////// MAIN
*/

.maincontent__wrapper {
  background-color: var(--white);
  width: 100vw;
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
}

.maincontent {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1em;
  box-sizing: border-box;
}

.table {
  width: 95%;
  text-align: center;
  margin: auto;
}

.table thead {
  position: sticky;
  top: -1em;
  left: 0;
  background: var(--white);
  z-index: 1;
}

.table th {
  font-size: 1em;
  padding: 0.5em;
  font-family: "Source Sans", Arial, sans-serif;
  border-bottom: 1px solid var(--blue);
}

.table td {
  padding: 1em;
  font-size: 0.8em;
}

.table tr:not(:last-child) {
  border-bottom: 1px solid var(--bg-grey);
}

.table td > .button {
  font-size: 0.8em;
  background-color: var(--grey);
  min-width: 7em;
  border-radius: 500px;
}

.table td > .button:hover {
  background-color: var(--dark-blue);
}

.adminForm {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 45em;
  max-width: 80vw;
  min-height: 300px;
  position: relative;
}

.adminForm__title {
  text-align: center;
  width: 100%;
  margin: 0.5em auto 2em;
  font-family: "Source Sans", Arial, sans-serif;
  font-size: 1.3em;
  line-height: 1;
  font-weight: 500;
  color: var(--green);
}

.adminForm__content {
  flex-grow: 1;
  width: 100%;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  position: relative;
}

.adminForm .line {
  margin-bottom: 1.2em;
}

.adminForm .line-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adminForm__input,
textarea.adminForm__input {
  width: 100%;
  height: 2.5em;
  box-sizing: border-box;
  margin: 0 auto 1em;
  display: block;
  border: 1px solid var(--bg-grey);
  color: var(--black);
  font-size: 0.8em;
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-family: "Source Sans", Arial, sans-serif;
}

textarea.adminForm__input {
  height: 5.5em;
  resize: none;
}

optgroup {
  font-family: "Source Sans", Arial, sans-serif;
}

.adminForm__input:focus,
.adminForm__input:focus-visible,
textarea.adminForm__input:focus,
textarea.adminForm__input:focus-visible {
  border: 1px solid var(--blue);
  outline: 0;
}

.adminForm__input.disabled,
textarea.adminForm__input.disabled {
  border: 1px solid var(--grey);
  color: var(--grey);
  background: var(--bg-grey);
}

.adminForm__check {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--black);
  font-size: 0.8em;
  line-height: 1;
  padding: 0.5em 1em;
  font-family: "Source Sans", Arial, sans-serif;
}

.adminForm__check input {
  display: inline-block;
  margin-right: 0.5em;
}

.adminForm__input--error {
  color: var(--green);

  position: absolute;

  font-size: 0.7em;

  line-height: 1;

  bottom: -2em;

  top: 105%;

  text-align: center;

  padding-left: 1em;
}
.adminForm__input.error {
  border-color: var(--green);
}

.adminForm__notif {
  padding-left: 1em;
  min-height: 2em;
  color: var(--grey);
  font-weight: 600;
}

.adminForm__progress {
  width: calc(100% - 3em);

  height: 0.2em;

  position: absolute;

  top: -1em;

  left: 50%;

  transform: translateX(-50%);

  background: var(--bg-grey);

  border-bottom-left-radius: 500px;

  border-bottom-right-radius: 500px;

  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.adminForm__progress:hover {
  height: 1em;
}

.adminForm__progress--bar {
  height: 100%;

  width: 0%;

  background: var(--bg-black);
}

.adminForm__progress--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  line-height: 0;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.adminForm__progress:hover .adminForm__progress--text {
  font-size: 0.7em;
  line-height: 1;
  opacity: 1;
}

.adminform__button {
  margin: 0;
  height: 3em;
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
}

.line,
.line15 {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 98%;
  margin: 0 auto;
}

.line15 {
  margin-bottom: 15px;
}

.line--inactive {
  display: none;
}

.line__item {
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  position: relative;
}

.line__title {
  width: 100%;
  color: var(--green);
  font-size: 1.2em;
  line-height: 1;
  margin-bottom: 1em;
  font-family: "Source Sans", Arial, sans-serif;
  border-bottom: 1px solid var(--green);
  padding: 0.5em;
  box-sizing: border-box;
  position: relative;
}

.line__subtitle {
  width: 100%;
  color: var(--black);
  font-size: 1em;
  line-height: 1;
  font-weight: 400;
  font-family: "Source Sans", Arial, sans-serif;
  padding: 0.5em;
  box-sizing: border-box;
  position: relative;
}

.line__title--button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5em;
  cursor: pointer;
}

.line__title--button:nth-child(2) {
  right: 2em;
}

.line__title--button svg {
  display: block;
  height: 100%;
  width: 100%;
  fill: var(--green);
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}

.line__title--button:hover svg {
  opacity: 1;
}

.line__item--title {
  color: var(--grey);
  font-size: 0.8em;
  line-height: 1;
  min-height: 1.5em;
}

.line__item--content {
  padding-left: 0.5em;
  overflow-wrap: break-word;
  min-height: 2em;
  position: relative;
}

.line__item--content p {
  margin-bottom: 1.5em;
}

.w1 {
  width: 1% !important;
}

.w2 {
  width: 2% !important;
}

.w3 {
  width: 3% !important;
}

.w4 {
  width: 4% !important;
}

.w5 {
  width: 5% !important;
}

.w6 {
  width: 6% !important;
}

.w7 {
  width: 7% !important;
}

.w8 {
  width: 8% !important;
}

.w9 {
  width: 9% !important;
}

.w10 {
  width: 10% !important;
}

.w11 {
  width: 11% !important;
}

.w12 {
  width: 12% !important;
}

.w13 {
  width: 13% !important;
}

.w14 {
  width: 14% !important;
}

.w15 {
  width: 15% !important;
}

.w19 {
  width: 19% !important;
}

.w20 {
  width: 20% !important;
}

.w21 {
  width: 21% !important;
}

.w22 {
  width: 22% !important;
}

.w23 {
  width: 23% !important;
}

.w24 {
  width: 24% !important;
}

.w25 {
  width: 25% !important;
}

.w26 {
  width: 26% !important;
}

.w27 {
  width: 27% !important;
}

.w28 {
  width: 28% !important;
}

.w29 {
  width: 29% !important;
}

.w30 {
  width: 30% !important;
}

.w31 {
  width: 31% !important;
}

.w32 {
  width: 32% !important;
}

.w33 {
  width: 33% !important;
}

.w34 {
  width: 34% !important;
}

.w35 {
  width: 35% !important;
}

.w36 {
  width: 36% !important;
}

.w37 {
  width: 37% !important;
}

.w38 {
  width: 38% !important;
}

.w39 {
  width: 39% !important;
}

.w40 {
  width: 40% !important;
}

.w41 {
  width: 41% !important;
}

.w42 {
  width: 42% !important;
}

.w43 {
  width: 43% !important;
}

.w44 {
  width: 44% !important;
}

.w45 {
  width: 45% !important;
}

.w46 {
  width: 46% !important;
}

.w47 {
  width: 47% !important;
}

.w48 {
  width: 48% !important;
}

.w49 {
  width: 49% !important;
}

.w50 {
  width: 50% !important;
}

.w51 {
  width: 51% !important;
}

.w52 {
  width: 52% !important;
}

.w53 {
  width: 53% !important;
}

.w54 {
  width: 54% !important;
}

.w55 {
  width: 55% !important;
}

.w56 {
  width: 56% !important;
}

.w57 {
  width: 57% !important;
}

.w58 {
  width: 58% !important;
}

.w59 {
  width: 59% !important;
}

.w60 {
  width: 60% !important;
}

.w61 {
  width: 61% !important;
}

.w62 {
  width: 62% !important;
}

.w63 {
  width: 63% !important;
}

.w64 {
  width: 64% !important;
}

.w65 {
  width: 65% !important;
}

.w66 {
  width: 66% !important;
}

.w67 {
  width: 67% !important;
}

.w68 {
  width: 68% !important;
}

.w69 {
  width: 69% !important;
}

.w70 {
  width: 70% !important;
}

.w71 {
  width: 71% !important;
}

.w72 {
  width: 72% !important;
}

.w73 {
  width: 73% !important;
}

.w74 {
  width: 74% !important;
}

.w75 {
  width: 75% !important;
}

.w76 {
  width: 76% !important;
}

.w77 {
  width: 77% !important;
}

.w78 {
  width: 78% !important;
}

.w79 {
  width: 79% !important;
}

.w80 {
  width: 80% !important;
}

.w81 {
  width: 81% !important;
}

.w82 {
  width: 82% !important;
}

.w83 {
  width: 83% !important;
}

.w84 {
  width: 84% !important;
}

.w85 {
  width: 85% !important;
}

.w86 {
  width: 86% !important;
}

.w87 {
  width: 87% !important;
}

.w88 {
  width: 88% !important;
}

.w89 {
  width: 89% !important;
}

.w90 {
  width: 90% !important;
}

.w91 {
  width: 91% !important;
}

.w92 {
  width: 92% !important;
}

.w93 {
  width: 93% !important;
}

.w94 {
  width: 94% !important;
}

.w95 {
  width: 95% !important;
}

.w96 {
  width: 96% !important;
}

.w97 {
  width: 97% !important;
}

.w98 {
  width: 98% !important;
}

.w99 {
  width: 99% !important;
}

.w100 {
  width: 100% !important;
}

.h5 {
  height: 5% !important;
}

.h10 {
  height: 10% !important;
}

.h15 {
  height: 15% !important;
}

.h20 {
  height: 20% !important;
}

.h25 {
  height: 25% !important;
}

.h30 {
  height: 30% !important;
}

.h35 {
  height: 35% !important;
}

.h40 {
  height: 40% !important;
}

.h45 {
  height: 45% !important;
}

.h50 {
  height: 50% !important;
}

.h55 {
  height: 55% !important;
}

.h60 {
  height: 60% !important;
}

.h65 {
  height: 65% !important;
}

.h70 {
  height: 70% !important;
}

.h75 {
  height: 75% !important;
}

.h80 {
  height: 80% !important;
}

.h85 {
  height: 85% !important;
}

.h90 {
  height: 90% !important;
}

.h95 {
  height: 95% !important;
}

.h100 {
  height: 100% !important;
}

.margin0h {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.margin0ht {
  margin-top: 0 !important;
}

.margin0hb {
  margin-bottom: 0 !important;
}

.margin0w {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.margin0wl {
  margin-left: 0 !important;
}

.margin0wr {
  margin-right: 0 !important;
}

.margin0 {
  margin: 0 !important;
}

.padding0 {
  padding: 0 !important;
}

.pos-rel {
  position: relative;
}

.padding-right15 {
  padding-right: 15px !important;
}

.min25 {
  min-width: 25% !important;
}
.center-align {
  text-align: center;
}

.left-align {
  text-align: left;
}

.right-align {
  text-align: right;
}

.top-align {
  vertical-align: top;
}

.mid-align {
  vertical-align: middle;
}

.bottom-align {
  vertical-align: bottom;
}

.midcenter {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.midbetween {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.midleft {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.midright {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.fullsize {
  width: 100%;
  height: 100%;
}

/*/////////////////////////////////////////////////////// OVERLAY FORM
*/

.copy {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
}

.copy:after {
  content: "Copy";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  background-color: var(--bg-dark-blue);
  font-size: 0.8em;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Poppins Bold", Arial, sans-serif;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.copy:hover:after {
  opacity: 1;
}

.cookieLoader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookieLoader .loader {
  max-width: 50vw;
  max-height: 50vh;
}

.overlay--cart,
.overlay {
  height: 100vh;
  width: 100vw;
  background: var(--bg-blue);
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease-in-out;
  display: none;
}

.overlay__preloader--cart,
.overlay__preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5em;
  width: 5em;
}

.overlayFormBox {
  position: absolute;
  min-height: 10em;
  max-height: 90vh;
  min-width: 15em;
  max-width: 90vw;
  overflow: auto;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  box-shadow: 2px 3px 10px -1px var(--bg-dark-blue);
  padding: 1em;
}

.overlayFormBox__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  height: 1.2em;
  z-index: 1;
}

.overlayFormBox__close svg {
  height: 100%;
  width: 100%;
  fill: var(--bg-grey);
  transition: all 0.3s ease-in-out;
}

.overlayFormBox__close:hover svg {
  fill: var(--grey);
}

.overlayForm {
}

.page__notif {
  border-top: 1px solid var(--blue);
  box-shadow: 0px -3px 10px var(--bg-blue);
  background-color: var(--white);
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  overflow: hidden;
  opacity: 1;
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  z-index: 300;
}

.page__notif--inactive {
  height: 0;
  padding: 0;
  opacity: 0;
}

.page__notif--remove {
  display: none;
}

/*/////////////////////////////////////////////////////// FOOTER
*/

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 20em;
  background: var(--black);
  color: var(--white);
  padding: 1em 5em;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

footer .logo {
  font-size: calc((75vw - 4.5rem) / 7);
  font-family: "Source Sans", Arial, sans-serif;
  line-height: 1;
  color: var(--white);
  margin-left: -0.3em;
}

footer .menus {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5em;
  margin-top: 2em;
  width: 100%;
  height: auto;
  box-shadow: none;
}

footer .menus__panel,
footer .menus__panel h3,
footer .menus__panel ul li,
footer .menus__panel ul li a {
  color: var(--white);
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
}

footer .menus__panel ul {
  list-style-type: none;
}

footer .menus__panel ul li {
  font-size: 0.8em;
  margin-bottom: 0;
}

footer .menus__panel ul li a {
  font-family: "Source Sans", Arial, sans-serif;
  transition: all 0.3s ease-in-out;
}

footer .menus__panel ul li a:hover {
  opacity: 0.8;
}

footer .footer__socials-wrapper {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .footer__socials--logo {
  height: 10em;

  margin-bottom: 1em;
}
footer .footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
footer .footer__social {
  height: 1.5em;
  width: 1.5em;
  display: block;
}

footer .footer__social svg {
  display: block;
  height: 100%;
  width: 100%;
  fill: var(--white);
  transition: all 0.3s ease-in-out;
}

footer .footer__social:hover svg {
  fill: var(--bg-light-white);
}

footer .copyright {
  font-size: 0.8em;
  color: var(--white);
  letter-spacing: 0.1em;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 1em;
}

/*/////////////////////////////////////////////////////// ERROR 404
*/

.error {
  height: 100vh;

  width: 100vw;

  max-width: unset;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background: var(--white);
}

.errorPopup {
  width: 50vw;
  margin: 0;
}

.errorPopup .error {
  padding: 10em 0;
  margin: auto;
}

.error a {
  margin: 1em;
}

/*/////////////////////////////////////////////////////// OVERRIDE
*/

.midcenter {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gap1 {
  gap: 1em;
}

.gap2 {
  gap: 2em;
}

.hide {
  opacity: 0;
}

.show {
  opacity: 1;
}

.animateOnScroll {
  opacity: 0;
}

.mobile-only,
.mob-only {
  display: none;
}

.red {
  color: var(--green);
}

.green {
  color: var(--green);
}

.yellow {
  color: var(--yellow);
}

.blue {
  color: var(--blue);
}

.blue-txt {
  color: var(--text-blue);
}

.orange {
  color: var(--orange);
}

.red svg .fil1 {
  fill: var(--green);
}

.green svg .fil1 {
  fill: var(--green);
}

.yellow svg .fil1 {
  fill: var(--yellow);
}

.blue svg .fil1 {
  fill: var(--blue);
}

.font-regular {
  font-family: "Source Sans", Arial, sans-serif !important;
}

.font-script {
  font-family: "Script", "Brush Script MT", cursive !important;
}

/*/////////////////////////////////////////////////////// BURGER MENU
*/

.burger {
  top: 50%;
  transform: translateY(-50%);
  right: 2em;
  position: absolute;
}

#burger__menu {
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#burger__menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 500px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#burger__menu span:nth-child(1) {
  top: 0px;
}

#burger__menu span:nth-child(2),
#burger__menu span:nth-child(3) {
  top: 7px;
}

#burger__menu span:nth-child(4) {
  top: 15px;
}

#burger__menu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#burger__menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#burger__menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#burger__menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.burger__menus {
  overflow: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  position: relative;
}

.burger__menus.open {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 1;
  background: var(--bg-grey);
  backdrop-filter: blur(90px);
}
.burger__menu-wrapper {
  background: var(--green);
  padding: 0;
  height: 0;
  width: 0;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 5px;
  opacity: 0;
  box-sizing: border-box;
  filter: contrast(0.8);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.burger__menu--container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}

.burger__menus.open .burger__menu-wrapper {
  opacity: 1;
  padding: 3em;
  height: unset;
  width: unset;
}

.burger__menus.open .burger__menu-wrapper a,
.burger__menu {
  color: var(--white);

  font-size: 1.5em;

  line-height: 1.5;

  cursor: pointer;
}

.burger__menu--title,
.burger__menu--back,
.burger__menu--sub {
  position: absolute;
  display: none;
}

.burger__menu--title {
  top: -1em;

  font-size: 2em;

  line-height: 1;

  font-family: "Source Sans", Arial, sans-serif;

  color: var(--green);

  left: 0;
}
.burger__menu--back {
  top: 0;

  left: -3em;

  cursor: pointer;
}

.burger__menu--back svg {
  fill: var(--green);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.burger__menu--back:hover svg {
  opacity: 1;
  fill: var(--light-orange);
}
.burger__menu--sub {
  height: 100%;

  width: 100%;

  background: var(--green);

  z-index: 1;

  padding: 1em;

  box-sizing: border-box;

  border-radius: 5px;
}

.burger__menu--sub a {
  margin-bottom: 0.5em;
}

.quicklinks {
  position: absolute;

  top: 1em;

  right: 4.5em;
}
.quicklink {
  transition: all 0.3s ease-in-out;

  padding: 0.3em;

  border: 1px solid var(--white);

  border-radius: 500px;

  cursor: default;
}
.quicklink svg {
  transition: all 0.3s ease-in-out;

  fill: var(--white);

  height: 1.3em;

  width: 1.3em;

  display: block;
}
.quicklinks:hover .quicklink {
  background-color: var(--green);
  border-color: var(--green);
}
.quicklink__options {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: -0.5em;
  gap: 0.5em;
}
.quicklinks:hover .quicklink__options {
  height: unset;
  width: 12em;
  opacity: 1;
  padding-top: 1em;
}
.quicklink__option {
  font-size: 1em;

  line-height: 1;

  padding: 0.5em 1em;

  border: 1px solid var(--white);

  color: var(--white);

  border-radius: 500px;

  display: inline-block;

  transition: all 0.3s ease-in-out;
}
header.fixed .quicklink__option,
header.fixed-hold .quicklink__option {
  color: var(--black);
  border-color: var(--grey);
  background-color: var(--bg-white);
  backdrop-filter: blur(5px);
}

.quicklink__option:hover,
header.fixed .quicklink__option:hover,
header.fixed-hold .quicklink__option:hover {
  color: var(--white);
  background-color: var(--green);
  border-color: var(--white);
}

/*/////////////////////////////////////////////////////// FOUNDERS
*/

.faculty {
  border-radius: 5px;
  padding: 1em;
  box-sizing: border-box;
  width: 95%;
  margin: 5em auto 1em;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2em;
  padding: 5em;
}
.faculty__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 35em;
  max-width: 100vw;
}
.faculty__item--img-wrapper {
  width: 35em;
  max-width: 100vw;
  height: 30em;
  position: relative;
}
.faculty__item--img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  object-position: center !important;
}
.faculty__item--name  {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 4em;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  box-sizing: border-box;
  background: var(--bg-black);
  padding: 0.5em;
  width: 100%;
}
.faculty__item--desc  {
  background: var(--black);
  padding: 2em;
  width: 31em;
  max-width: 100vw;
}
.faculty__item--desc p,
.faculty__item--desc li {
  color: var(--white);
}
.faculty__item--desc-pos {
  color: var(--green);
  font-family: "Gantari", Arial, sans-serif;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 2em;
}

/*/////////////////////////////////////////////////////// ANIMATION
*/

.hover-ul {
  display: inline-block;
  position: relative;
}

.hover-ul:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--green);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-ul:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-out-top {
  -webkit-animation: slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-out-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    opacity: 0;
  }
}

.scale-up-center {
  -webkit-animation: scale-up-center 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95)
    both;
  animation: scale-up-center 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-out-center {
  -webkit-animation: zoom-out-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: zoom-out-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes zoom-out-center {
  0% {
    -webkit-transform: translateZ(600px) scale(1.5);
    transform: translateZ(600px) scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
}
@keyframes zoom-out-center {
  0% {
    -webkit-transform: translateZ(600px) scale(1.5);
    transform: translateZ(600px) scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fadeIn cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
  -moz-animation: fadeIn cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
  -o-animation: fadeIn cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
  -ms-animation: fadeIn cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
  animation: fadeIn cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-out {
  animation: fadeInOut cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
  -webkit-animation: fadeInOut cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
  -moz-animation: fadeInOut cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
  -o-animation: fadeInOut cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
  -ms-animation: fadeInOut cubic-bezier(0.25, 0.46, 0.45, 0.94) 6s forwards;
}
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
}

@-o-keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
}

@-ms-keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  25%,
  75% {
    opacity: 1;
  }
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*/////////////////////////////////////////////////////// ANIMATION
*/
.preloader {
  height: 15em;
  width: 15em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.loader::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100%,
  0% {
    stroke: var(--green);
  }
  40% {
    stroke: var(--blue);
  }
  66% {
    stroke: var(--bg-blue);
  }
  80%,
  90% {
    stroke: var(--bg-orange);
  }
}

#preloader__inline.background {
  position: relative;
  width: 100%;
  height: 100%;
}

#preloader__inline .dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#preloader__inline .dots span {
  -webkit-transition: all 6000ms ease;
  transition: all 6000ms ease;
  background: rgba(198, 12, 48, 0.5);
  height: 15px;
  width: 15px;
  margin: 0 2px 0 0;
  display: inline-block;
  border-radius: 50%;
  animation: wave 2s ease infinite;
  -webkit-animation: wave 2s ease infinite;
}

#preloader__inline .dots span:nth-child(1) {
  animation-delay: 0;
  -webkit-animation-delay: 0;
}

#preloader__inline .dots span:nth-child(2) {
  animation-delay: 100ms;
  -webkit-animation-delay: 100ms;
}

#preloader__inline .dots span:nth-child(3) {
  animation-delay: 200ms;
  -webkit-animation-delay: 200ms;
}

@-webkit-keyframes wave {
  0%,
  40%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    background-color: var(--blue);
  }
  10% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
    background-color: var(--dark-blue);
  }
}

@keyframes wave {
  0%,
  40%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    background-color: var(--blue);
  }
  10% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
    background-color: var(--dark-blue);
  }
}
