@font-face {
    font-family: "Gantari";
    src: url("/assets/fonts/Gantari-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Gantari";
  src: url("/assets/fonts/Gantari-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: italic;
}

:root {
  --white: #ffffff;
  --bg-white: #ffffff80;
  --light-white: #f2f2ff;
  --bg-light-white: #f2f2ff80;
  --blue: #000080;
  --bg-blue: #00008080;
  --light-blue: #3d8ee2;
  --bg-light-blue: #3d8ee280;
  --text-blue: #2F5597;
  --bg-text-blue: #2F559780;
  --orange: #ff962a;
  --bg-orange: #ff962a80;
  --light-orange: #fe9934;
  --bg-light-orange: #fe993480;
  --grey: #4c4b54;
  --bg-grey: #4c4b5480;
  --black: #000000;
  --bg-black: #00000080;
  --red: #ed0707;
  --bg-red: #ed070780;
  --maroon: #930000;
  --bg-maroon: #93000080;
}

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: "Open Sans", Arial, sans-serif;
    padding: 0.5em 1em;
}

.prio.prio__high {
    background-color: var(--bg-red);
}

.prio.prio__medium {
    background-color: var(--bg-yellow);
}

a, a:hover {
    color: var(--red);
    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: "Open Sans", Arial, sans-serif;
    color: var(--black);
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
}

h1 {
    font-size: 2em;
}

h1, h2 {
    color: var(--white);
    margin: 0.5em auto;
    line-height: 1.2;
}

h1,
.title,
.subtitle {
  font-family: "Gantari", Arial, sans-serif;
}


h2 {
    font-family: "Open Sans", Arial, sans-serif;
}

h3, h4 {
    color: var(--blue);
    margin: 1em auto;
}

b {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.2em;
}

ul li {
  list-style: none;
}

.scrollable {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.caps {
  text-transform: uppercase;
}

.limiter {
    width: 100vw;
    max-width: 1600px;
    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;
    background: var(--white);
}

section.orange {
  background-color: var(--orange);
  color: var(--black);
}

section.orange::before {
  position: absolute;
  background: var(--orange);
  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;
    color: #fff;
    text-align: center;
    background-color: var(--blue);
    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(--red);

outline-offset: -1px;

color: var(--red);
}

.button.cancel:hover {
  
background: var(--red);
  
color:
  
var(--white);
}

.button.open {

background: none;

outline: 2px solid var(--orange);

outline-offset: -1px;

color: var(--orange);
border-radius: 500px;
}

.button.open:hover {
  
background: var(--orange);
  
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;
}

.global__wrapper {
    background-color: var(--white);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    flex-grow: 1;
    min-height: 100vh;
    position: relative;
}

header.fixed-hold + .global__wrapper {
}

.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(--red);
}

.formInput:focus {
    border: 1px solid var(--blue);
}

.formInput__label {
    font-family: "Open 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(--red);
    font-size: 0.9em;
    margin-left: 0.3em;
    font-family: "Open 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(--red);
}

.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: "Open 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);
}

p {
  margin-bottom: 1em;
  font-size: 0.8em;
  line-height: 1.5;
}

section .title {
  font-size: 2em;
  line-height: 1.2;
}

section .subtitle {
  font-size: 1.6em;
  line-height: 1.2;
  color: var(--red);
}

section.orange .subtitle {
  color: var(--white);
}

section p {
  font-size: 0.9em;
}

section .subtitle .orange {
  font-family: "Gantari", Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1;
  color: var(--orange);
}

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: 40em;

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(--orange);
  
font-family: "Gantari", Arial, sans-serif;
  
font-size: 4em;
  
line-height: 1.5;
}

.gallery__item--image {

height: 20em;

width: 100%;

object-fit: cover;

border-radius: 3px;
}

.gallery__item--icon {
  fill: var(--orange);
  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;

background: var(--black);
}

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: "Gantari", Arial, sans-serif;

font-size: 2em;

line-height: 1;

margin: 0.5em 0 1em;

color: var(--red);
}

section.orange .gallery__item--content-title {

color: var(--orange);
}

.line-banner {
  
padding: 2em 1em 1em;
  
margin-bottom: 3em;
}

.gallery__item--content-message *:not(.hover-ul) {
  color: var(--white);
}

.gallery__item--content-subline {
  
color: var(--bg-black);
  
font-weight: 600;
}

.panels {

display: flex;

align-items: center;

justify-content: space-around;

flex-wrap: wrap;

box-sizing: border-box;

width: 100%;
}

.panel {

width: 50%;

box-sizing: border-box;
}

.panels .panel iframe {
  width: 100%;
  min-height: 30em;
}

.panel.full {
  
width: 100%;
}

.panel .panel__image {

display: block;

margin: auto;

width: 100%;

object-fit: cover;
}

.panel ul li {
  
font-size: 0.9em;
  
line-height: 1.2;
  
margin-bottom: 1em;
}

.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(--orange);
}

.bulletin {

display: flex;

align-items: center;

justify-content: center;

flex-wrap: wrap;

padding: 3em;

}
  
  .bulletin li {
  
  list-style: none;
  }
  
  .bulletin li a {
    
background: var(--bg-grey);
    
color: var(--light-white);
    
padding: 1em;
    
min-width: 12em;
    
display: block;
    
font-size: 1.5em;
    
transition: all 0.3s ease-in-out;
  }
  
  .bulletin li a:hover,
  .bulletin li a.active {
    
  background: var(--grey);
    
  color: var(--white);
  }

.contactus {

position: absolute;

top: -2em;

left: 8%;

text-align: left;

font-size: 1.5em;

color: var(--text-blue);
}

.contactus__say {

font-family: "Gantari", Arial, sans-serif;

font-size: 2em;

line-height: 1;

color: var(--text-blue);
}

.contactus__hello {

font-family: "Gantari", Arial, sans-serif;

font-size: 3em;

line-height: 1;

color: var(--white);
}

.contact__form {

display: flex;

flex-direction: column;

width: 40em;

max-width: 90vw;

gap: 1em;

margin: 5em auto;
}
.contact__input {

border: solid 2px var(--bg-grey);

padding: 0.5em 1em;

resize: none;

transition: all 0.3s ease-in-out;
}
.contact__input:focus {
  border-color: var(--grey);
  outline: none;
}
.contact__submit {

cursor: pointer;

padding: 1em;

transition: all 0.3s ease-in-out;
}

.contact__submit:hover {
  background-color: var(--red);
  color: var(--white);
}

.contact h1 {
 color: var(--red);
}

.contact .contact__subtext {
 color: var(--black);
}

.accordion {

display: flex;

flex-direction: column;

gap: 2em;

padding: 1em;
}

.accordion__item {

background: var(--light-white);

border-radius: 5px;
}

.accordion__item--title {

font-family: "Gantari", Arial, sans-serif;

font-size: 1.2em;

line-height: 1;

color: var(--white);

background: var(--orange);

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: 5em auto;
}

.mySlides {
  display: none;
  text-align: center;
}

.mySlides img {
  width: 95%;
  max-height: 90vh;
  object-fit: cover;
  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(--red);
  font-size: 1em;
  line-height: 1;
  transition: .6s ease;
  padding: 1em 0.5em;
}

.next {
  right: -1em;
}

.prev {
  left: -1em;
}

.prev:hover,
.next:hover {
  background-color: var(--maroon);
  color: var(--white);
}

/*/////////////////////////////////////////////////////// HEADER
*/

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    background: var(--white);
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    width: 25em;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

header.fixed,
header.fixed-hold {
    background: var(--white);
}

.header__logo {

position: relative;

margin-top: 2em;
}
.header__logo img {

height: 10em;

object-fit: cover;

transition: all 0.3s ease-in-out;
}
header.fixed .header__logo img,
header.fixed-hold .header__logo img {

object-fit: cover;
}
.header__title {margin: 1em 0;}
.header__title .title {

color: var(--white);

margin: 0;

font-size: 1.3em;

font-weight: 500;
}
.header__title .subtitle {

font-size: 0.8em;

line-height: 1;

margin-left: 0.25em;

font-weight: 200;

text-align: center;
}
.header__nav {
    margin-top: 5em;
    overflow: hidden;
}

.header__nav ul {
list-style: none;
}

.header__nav--links {

display: flex;

align-items: center;

justify-content: space-around;

flex-direction: column;

gap: 2em;
}

.header__nav--link {
  position: relative;
  line-height: 1;
}

.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: "Gantari", Arial, sans-serif;
 font-weight: 500;
 font-size: 1.5em;
 line-height: 1;
 transition: all 0.3s ease-in-out;
}


.header__nav--link a:hover,
.header__nav--link.no-click:hover .header__nav--sublinktxt {
    color: var(--maroon) !important;
}

.header__nav--link.active a,
.header__nav--link.no-click.active .header__nav--sublinktxt {
  color: var(--red) !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(--bg-grey);
}

.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(--orange);

color: var(--white);

padding: 0.7em 1.5em;

border-radius: 500px;

opacity: 0.9;

font-family: "Gantari", 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;
}

/*/////////////////////////////////////////////////////// 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: "Open 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: "Gantari", Arial, sans-serif;
  font-size: 1.3em;
  line-height: 1;
  font-weight: 500;
  color: var(--orange);
}

.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: "Open Sans", Arial, sans-serif;
}

textarea.adminForm__input {
  height: 5.5em;
  resize: none;
}

optgroup {
  font-family: "Open 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: "Open Sans", Arial, sans-serif;
}

.adminForm__check input {
  display: inline-block;
  margin-right: 0.5em;
}

.adminForm__input--error {

color: var(--red);

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(--red);
}

.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(--orange);
  font-size: 1.2em;
  line-height: 1;
  margin-bottom: 1em;
  font-family: "Gantari", Arial, sans-serif;
  border-bottom: 1px solid var(--orange);
  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: "Gantari", 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(--orange);
  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;
}

.padding1 {
  padding: 1em 3em !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%;
}

/*/////////////////////////////////////////////////////// MAIN
*/

.home {
  background-color: var(--red);
  height: 100vh;
  padding: 0;
  position: relative;
}

.home__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.home h4 {

font-family: 'Open Sans', Arial, sans-serif;

color: var(--white);

font-size: 1.5em;

line-height: 1;

margin: 0;

font-weight: 400;

letter-spacing: 0.5em;
}

.home h1 {
  
color: var(--white);
  
font-size: 7em;
  
line-height: 1.2;
  
margin: 0;
  
font-weight: 600;
  
letter-spacing: 0.15em;
  
margin-top: 0.1em;
}

.home h2 {
  
font-family: "Gantari", Arial, sans-serif;
  
color: var(--white);
  
font-size: 4.5em;
  
line-height: 1;
  
margin: 0;
  
font-weight: 400;
  
letter-spacing: 0.2em;
}

.homeCards {

display: flex;

align-items: center;

justify-content: center;
}

.homeCard {

flex-grow: 1;

height: 25em;

position: relative;
}

.homeCard__img {

height: 100%;

width: 100%;

object-fit: cover;

filter: grayscale(0.4);

transition: all 0.3s ease-in-out;
}

.homeCard__name {

font-family: "Gantari", Arial, sans-serif;

position: absolute;

bottom: 0;

left: 50%;

transform: translateX(-50%);

text-align: center;

color: var(--white);

background: var(--bg-black);

width: 100%;

padding: 1em 1em 2em;

font-size: 2em;

box-sizing: border-box;

transition: all 0.3s ease-in-out;
}

.homeCard__description {

position: absolute;

top: 0;

left: 0;

height: 100%;

width: 100%;

padding: 2em;

box-sizing: border-box;

color: var(--white);

background: var(--bg-red);

opacity: 0;

transition: all 0.3s ease-in-out;

font-size: 0.9em;
}

.homeCard__description b {
  
font-family: "Gantari", Arial, sans-serif;
  
font-size: 1.5em;
}

.homeCard__description p {
  
margin-top: 3em;
}

.homeCard:hover .homeCard__img {
  filter: grayscale(1) saturate(2) contrast(1) brightness(0.5);
}

.homeCard:hover .homeCard__name {
  opacity: 0;
}

.homeCard:hover .homeCard__description {
  opacity: 1;
}

.tileText {

position: absolute;

z-index: 1;

bottom: 0;

left: 0;

padding: 2em 3em;
}

.tileText__title {

font-family: "Gantari", Arial, sans-serif;

color: var(--white);

font-size: 2em;

line-height: 1.2;

font-weight: 600;
}

.tileText__subtitle {

font-family: "Gantari", Arial, sans-serif;

color: var(--light-white);

font-size: 1.2em;
}

.tileText__text {

color: var(--white);

font-size: 0.8em;

line-height: 1.5;

margin-top: 2em;
}

.youTube {
  
padding: 3em;
  
font-size: 2em;
  
line-height: 1.2;
  
text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c2a {

height: 25em;

position: relative;

display: flex;

flex-direction: column;

align-items: flex-start;

justify-content: center;

padding: 3em 10em;

box-sizing: border-box;
}

.c2a__img {

height: 100%;

width: 100%;

object-fit: cover;

position: absolute;

z-index: -1;

top: 0;

left: 0;
}

.c2a h2 {

text-align: left;

margin: unset;

font-size: 2em;

line-height: 1.5;

font-weight: 600;
}

.c2a p {

color: var(--white);
}

.c2a a {

border: solid 1px var(--white);

padding: 0.5em 3em;

color: var(--white);

margin-top: 2em;

transition: all 0.3s ease-in-out;
}

.c2a a:hover {
  background-color: var(--red);
  color: var(--light-white);
}

.register {

height: 50em;

position: relative;

display: flex;

flex-direction: column;

align-items: flex-end;

justify-content: flex-start;

padding: 10em;

box-sizing: border-box;

}
  
  .register__img {
  
  height: 100%;
  
  width: 100%;
  
  object-fit: cover;
  
  position: absolute;
  
  z-index: -1;
  
  top: 0;
  
  left: 0;
  }
  
  .register h2 {
  
text-align: right;
  
margin: unset;
  
font-size: 3em;
  
line-height: 1.2;
  
font-weight: 600;
  
max-width: 15em;
  }
  
  .register p {
  
color: var(--white);
  
text-align: right;
  
margin-top: 2em;
  }
  
  .register a {
  
  border: solid 1px var(--white);
  
  padding: 0.5em 3em;
  
  color: var(--white);
  
  margin-top: 2em;
  
  transition: all 0.3s ease-in-out;
  }
  
  .register a:hover {
    background-color: var(--red);
    color: var(--light-white);
  }


/*/////////////////////////////////////////////////////// CONTENT PAGE
*/

.banner {
  background-color: var(--red);
  height: 60vh;
  padding: 0;
  position: relative;
}

.banner h1 {
  
margin: 0;
  
position: absolute;
  
right: 0;
  
bottom: -0.15em;
  
font-size: 15em;
  
font-weight: 500;
  
line-height: 1;
}

.banner__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.faculty {

display: flex;

justify-content: space-around;

gap: 2em;

padding: 5em;
}
.faculty__item {

width: 35em;
max-width: 100vw;
}
.faculty__item--img-wrapper {

width: 35em;

max-width: 100vw;

height: 30em;

position: relative;
}
.faculty__item--img {

width: 100%;

height: 100%;

object-fit: cover;
}
.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;
}
.faculty__item--desc p,
.faculty__item--desc li {
  color: var(--white);
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.faculty__item--desc-pos {

color: var(--red);

font-family: "Gantari", Arial, sans-serif;

font-size: 2em;

font-weight: 600;

margin-bottom: 2em;
}

/*/////////////////////////////////////////////////////// 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 {
    width: 100%;
    height: 20em;
    background: var(--black);
    color: var(--white);
    padding: 1em 5em;
    box-sizing: border-box;
}

.footer-spacer {
  height: 28em;
}

footer .logo {
    font-size: calc((75vw - 4.5rem) / 7);
    font-family: "Open 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;
    max-width: 20em;
    line-height: 1.5;
    margin-bottom: 1em;
}

footer .menus__panel ul li a {
    font-family: "Open 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-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);
}

.error h1 {
  color: var(--black);
}

.error .button {
background-color: var(--red);
}

.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(--red);
}

.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(--red);
}

.green svg .fil1 {
  fill: var(--green);
}

.yellow svg .fil1 {
  fill: var(--yellow);
}

.blue svg .fil1 {
  fill: var(--blue);
}

.font-regular {
  font-family: "Open Sans", Arial, sans-serif !important;
}

.font-script {
  font-family: "Script", 'Brush Script MT', cursive !important;
}


/*/////////////////////////////////////////////////////// BURGER MENU
*/

.burger {
  top: 1.5em;
  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: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .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: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .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(--orange);
  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: "Gantari", Arial, sans-serif;

color: var(--orange);

left: 0;
}
.burger__menu--back {

top: 0;

left: -3em;

cursor: pointer;
}

.burger__menu--back svg {
  fill: var(--orange);
  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(--orange);

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(--orange);
  border-color: var(--orange);
}
.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(--orange);
  border-color: var(--white);
}

/*/////////////////////////////////////////////////////// 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(--red);
  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.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-bottom 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) both;
            animation: slide-out-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.050, 0.550, 0.950) both;
    animation: scale-up-center 0.8s cubic-bezier(0.445, 0.050, 0.550, 0.950) 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.250, 0.460, 0.450, 0.940) both;
            animation: zoom-out-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) 1s;
-moz-animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
-o-animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
-ms-animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) 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.250, 0.460, 0.450, 0.940) 6s forwards;
-webkit-animation: fadeInOut cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s forwards;
-moz-animation: fadeInOut cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s forwards;
-o-animation: fadeInOut cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s forwards;
-ms-animation: fadeInOut cubic-bezier(0.250, 0.460, 0.450, 0.940) 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(--orange);
  }
  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,.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);    
  }  
}