html {
  margin: 0;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
}

a:link, a:visited {
  text-decoration: none;
}

a {
  color: black;
}

label {
  margin: 0;
}

.m-l-5 {
  margin-left: 5px;
}

#content {
  display: grid;
}

.edit-mode-content {
  margin-top: 100px;
}

/* --- OVERRIDE BOOTSTRAP --- */
.btn-primary {
  background-color: #d12121;
  border-color: #d12121;
  color: white;
}

.btn-primary.disabled {
  background-color: #ff6d6d;
  border-color: #ff6d6d;
  pointer-events: none;
  cursor: auto;
}

.btn-primary:hover {
  background-color: #ff4444;
  border-color: #ff4444;
}

.top-pad-100 {
  padding-top: 100px;
}

.btn-primary {
  cursor: pointer;
}

.btn-primary > a {
  color: white;
}

.btn-primary > a:hover {
  color: white;
}

.btn-primary.btn-margin {
  margin-bottom: 16px;
}

.opacity-80 {
  opacity: 0.8;
}

.divider {
  width: 80%;
  height: 2px;
  background-color: #cbcbcb;
  margin: 20px 0;
}

/* NAVBAR */
#nav {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 999;
  width: 100%;
}

.nav-scrolled {
  box-shadow: #5d5d5d 3px 4px 14px;
}

.nav-bg {
  width: 100%;
  position: absolute;
  height: 100%;
  background: white;
  z-index: -1;
  transition: opacity 0.2s;
}

.menu-btn {
  display: none;
}

.navigation {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 55%;
  max-width: 1200px;
  margin: 0 25% 0 0;
}

.secondary-menu {
  display: flex;
  flex-direction: column;
}

.navigation .secondary .secondary-menu {
  position: absolute;
  opacity: 0;
}

.navigation .secondary:hover .secondary-menu {
  opacity: 1;
}

.navicon {
  filter: brightness(0);
  width: 20px;
}

.navicon-wrap {
  position: absolute !important;
  top: 20%;
  right: 8%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-height: 60px;
  padding: 10px 20px;
  border: solid 1px #d12121;
  border-radius: 10px;
}

.navlogo {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #d12121;
  font-weight: 600;
  margin-right: auto;
  margin-left: 20px;
}

.navlogo-img {
  width: 100px;
}

.navlogo-text {
  display: flex;
  flex-direction: column;
}

.navlink {
  font-size: 22px;
  font-weight: 400;
  color: #d12121;
}

.navlink:hover {
  color: #ff5858;
  opacity: 0.8;
}

.navlink.secondary {
  font-size: 18px;
  width: 100%;
  display: flex;
  white-space: nowrap;
  padding: 20px 5px;
}

.dashboard-box {
  transition: background-color ease-in-out 0.2s;
}

.dashboard-box:hover {
  background-color: #ff5858;
  color: white;
  cursor: pointer;
}

.active > svg {
  fill: white;
}

.dashboard-icon {
  fill: #d12121;
  margin-bottom: 5px;
  width: 32px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.5);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.my-tooltip {
  position: relative;
  display: inline-block;
}

.my-tooltip .my-tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #d12121;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: 0.9em;
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: opacity 0.2s;
}

.my-tooltip .my-tooltiptext::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #d12121 transparent transparent transparent;
  transform: rotate(180deg);
}

.my-tooltip:hover .my-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.cri-carousel {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-caption {
  text-shadow: 2px 3px 7px BLACK;
}

#heroCarousel {
  height: 100vh;
}

.carousel {
  z-index: 1;
  position: absolute;
  width: 100vw;
}

.carousel-caption {
  bottom: 25%;
}

.carousel-control {
  height: fit-content;
  top: 50%;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  opacity: 1;
}

.carousel-headline {
  font-size: 2.5em;
  color: white;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  margin: 5px 5px 0 4px;
}

.carousel-arrow-wrap {
  padding: 12px;
  border-radius: 6px;
  background-color: #d12121;
  transition: background-color 0.2s;
}

.carousel-arrow-wrap:hover {
  background-color: #ff4444;
}

/* --- FOOTER --- */
footer {
  min-height: 20vh;
  background-color: #b10909;
  display: flex;
  color: white;
  border-top: #b10909 1px solid;
}

.footer-section {
  display: flex;
  margin-left: 10px;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}

.footer-logo {
  width: 160px;
  margin: 0 30px;
}

.footer-logo-container {
  display: flex;
  width: fit-content;
  background: white;
  height: 100%;
}

.footer-line {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-titles {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
}

.footer-line.footer-title {
  margin-bottom: 20px;
}

.footer-line > a {
  color: white;
}

.footer-line > a:hover {
  color: #ffb1b1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  column-gap: 10px;
  max-width: 20vw;
}

.footer-column-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-img > .pimcore_area_gallery-single-images > section {
  flex-wrap: nowrap;
  justify-content: start;
}

#footer-img > .pimcore_area_gallery-single-images > section > div {
  flex: none;
}

/* ---- DASHBOARD ---- */
#login {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

#loginForm {
  display: flex;
  flex-direction: column;
  width: 300px;
  gap: 20px;
  margin: 20px 0;
}

#loginForm input[type=email],
#loginForm input[type=password] {
  margin-bottom: 10px;
  padding: 10px;
  border: solid 2px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  font-size: 18px;
  border-bottom: solid 6px #b10909;
}

#loginForm button {
  padding: 10px;
  background-color: #b10909;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
}

#loginForm button:hover {
  background-color: #d12121;
}

#loginMessage {
  margin-top: 10px;
  color: #ff0000;
  font-size: 14px;
}

/* ---- HOMEPAGE ---- */
#centers {
  justify-self: center;
  justify-content: center;
  z-index: 23;
  width: 98%;
  bottom: -30%;
  background-color: white;
  padding: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.spacing {
  pointer-events: none;
  height: 85vh;
}

.centers-wrapper {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.center-description-wrapper {
  display: flex;
  overflow: hidden;
  object-fit: cover;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.center-description-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.center-description-wrapper > img {
  object-fit: cover;
  width: 60%;
}

.center-description {
  width: 10rem;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.round-frame {
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: solid 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.round-frame-title {
  font-size: 20px;
  font-weight: bold;
}

.round-frame.center {
  width: 480px;
  height: 320px;
}

.center-title {
  display: flex;
  text-align: center;
  font-size: 28px;
  /* height: 100px; */
  min-height: 80px;
  width: 100%;
  margin-bottom: 5px;
  justify-content: space-between;
}

.center-title > img {
  object-fit: contain;
  height: 100%;
  width: 30%;
}

.center-title > span {
  width: 60%;
}

.signup-strip {
  background-color: #b10909;
  color: white;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding: 10px 8%;
  align-items: center;
}

.strip-title {
  font-weight: bold;
  font-size: 26px;
}

.strip-btn {
  border: solid 1px white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  border-radius: 4px;
  padding: 10px 60px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: white;
}

.strip-btn:hover {
  background-color: white;
  color: #b10909;
}

.round-frame.cert {
  width: 360px;
  align-items: center;
}

.cert > .btn {
  margin-top: auto;
  width: 40%;
}

.cert > span {
  margin-bottom: 6px;
}

.divider-cbrn {
  width: 100%;
  height: 8px;
  background-color: #b10909;
}

.cert-section {
  width: 100%;
  display: flex;
  margin: 40px 0;
  padding: 0 20px;
  justify-content: space-around;
}

.cert-section > img {
  width: 30%;
  margin: 20px 0;
}

.cert-boxes {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 20px;
}

.cert-textbox {
  width: 60%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-svg-logo {
  position: relative;
  display: flex;
}

.cert-svg-logo > img {
  width: 25%;
  margin: 10px 0 20px 0;
}

.cert-svg {
  position: absolute;
  left: 40%;
  top: 25%;
}

.cert-textbox > span {
  width: 90%;
  margin: 5px 0 30px 0;
}

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

.cert-desc {
  width: 90%;
}

#next-courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

/* nxtcrs = next courses */
.nxtcrs-title {
  border-top: solid 1px lightgray;
  width: 50%;
  font-size: 36px;
  text-align: center;
}

.nxtcrs-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.nxtcrs-courseslist,
.courseslist {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.nxtcrs-date {
  color: #b10909;
  font-weight: bold;
}

.courseslist-wrapper {
  margin: 40px 0;
  display: flex;
  width: 70%;
  max-width: 1920px;
  justify-self: center;
  flex-direction: column-reverse;
}

.courseslist {
  margin-top: 20px;
  justify-self: center;
}

.courseslist-filters {
  width: 95%;
  display: grid;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.filter-select {
  padding: 10px;
  border: solid 0;
  background: white;
}

.filter-select-label {
  font-size: 20px;
  font-weight: 300;
}

.apply-filters-btn {
  width: 180px;
  height: fit-content;
  margin-top: auto;
}

.nxtcrs-course {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 270px;
  height: auto;
  padding: 20px;
  margin: 0 6px 12px 6px;
  gap: 10px;
  background: white;
  border: solid 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.nxtcrs-course > span {
  padding: 3px;
}

.nxtcrs-course > .btn-primary {
  margin-bottom: 10px;
}

.nxtcrs-course.hiddenDate,
.nxtcrs-course.hiddenType,
.nxtcrs-course.hiddenMode {
  visibility: hidden;
  width: 0;
  margin: 0;
  gap: 0;
  border: 0;
}

.nxtcrs-info {
  font-size: 18px;
  align-items: center;
  display: flex;
  gap: 5px;
}

.nxtcrs-img {
  width: 100%;
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
}

.nxtcrs-allbtn, .returnbtn {
  width: fit-content;
  font-size: 1.6rem;
  padding: 0.5rem 2.5rem;
}

.nxtcrs-warning {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.returnbtn {
  justify-self: center;
}

.page-description-wrap {
  margin: 10px;
  display: flex;
  height: min-content;
}

.page-description,
#content > p {
  text-align: justify;
  justify-self: center;
  line-height: 28px;
  width: 50%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}

.page-description > .header-title,
.page-description > p > .header-title,
.page-description > .header-subtitle,
.page-description > p > .header-subtitle {
  text-shadow: none;
  color: #212529;
}

.page-description > h1 {
  text-align: center;
  justify-content: center;
  display: flex;
  color: #212529;
}

.page-description > h1 > em {
  text-align: center;
  justify-content: center;
  display: flex;
  font-style: normal;
}

.page-description > h1 > em > strong {
  font-size: 24px;
  text-align: center;
}

#content > p {
  width: 65%;
}

#header {
  object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.header-img, .footer-img {
  position: relative;
}

.header-img > picture > img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

#footer-img > div > section > div > a > picture > img {
  object-fit: cover;
  min-width: 150px;
  max-width: 150px;
}

.header-wrap {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: white;
  left: 0;
  right: 0;
  bottom: 40%;
}

.header-title {
  text-shadow: 2px 2px 3px BLACK;
  font-size: 32px;
}

.header-subtitle {
  text-shadow: 2px 2px 3px BLACK;
  font-size: 24px;
}

.header-path {
  line-height: 40px;
  font-size: 14px;
  background-color: #efefef;
  color: #656565;
  width: 100%;
  overflow-x: hidden;
}

.header-path > a {
  color: #656565;
}

.header-path > a:hover {
  color: #878787;
}

.header-path > a:first-child {
  margin-left: 30px;
}

/* COURSES AND SINGLE COURSE */
#course {
  width: 100%;
  margin-top: 1%;
  /* max-width: 1700px; */
  display: flex;
  justify-content: center;
}

.course-content {
  width: 70%;
  max-width: 1700px;
}

.course-wrapper {
  display: flex;
}

.course-main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.course-main > picture > img {
  width: 100%;
  height: 100%;
}

.course-under {
  margin-top: 10px;
  background-color: #ebebeb;
  border-radius: 10px;
  padding: 10px;
}

.course-return-btn {
  width: 240px;
  margin-bottom: 20px;
}

.course-description.hidden {
  max-height: 14em;
}

.course-description {
  overflow: hidden;
  text-overflow: ellipsis;
  content: "";
  position: relative;
  text-justify: inter-character;
  text-align: justify;
  line-height: 32px;
  letter-spacing: 1px;
  max-height: none;
}

.course-reserved {
  letter-spacing: 0;
  font-weight: bold;
}

.course-reserved > a {
  color: #b10909;
}

.course-wysiwyg > h1 {
  font-size: 1.4em;
}

.course-description.hidden:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(transparent 5px, white);
}

.more {
  font-size: 20px;
  color: #696969;
  font-weight: 600;
  cursor: pointer;
}

.more:hover {
  color: #4b4b4b;
}

#warning.hidden {
  visibility: hidden;
  height: 0;
}

.more.hidden {
  visibility: hidden;
  height: 0;
}

.course-side {
  width: 40%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 42px;
}

.course-side > .round-frame {
  width: auto;
  gap: 5px;
}

.course-title {
  font-size: 28px;
  color: black;
  font-weight: bold;
  width: 100%;
}

.course-img {
  margin-bottom: 20px;
}

.course-info-btn {
  background-color: #2e2eb7;
  color: white;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.course-info-btn:hover {
  background-color: #3939d9;
}

.course-info-btn > a,
.course-info-btn > a:hover {
  color: white;
}

#datepicker {
  font-size: 20px;
}

.filter-blobs {
  gap: 10px;
  margin-top: 10px;
  display: flex;
  padding-bottom: 10px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}

.filter-blob {
  display: flex;
  align-items: center;
  background: rgba(255, 0, 0, 0.13);
  padding: 6px;
  border-radius: 10px;
}

.filter-blob-btn {
  border: 1px solid gray;
  border-radius: 999px;
  padding: 0 9px;
  padding-bottom: 2px;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.filter-blob-btn:hover {
  background-color: #ff5858;
  border-color: #b10909;
  color: white;
}

.filter-blob-btn:hover > svg {
  fill: white;
}

.filter-blob-text {
  left: 36px;
}

/* CONTACT-US */
#contact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

#center-select {
  border: solid 0;
}

#warning {
  color: #d12121;
}

.select-center-frame {
  gap: 20px;
  padding: 40px;
}

.select-center-title {
  font-weight: bold;
  font-size: 28px;
  color: #b10909;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.contact-form > .divider {
  width: 100%;
}

.contact-form.hidden {
  visibility: hidden;
}

.contact-form-center-info > .contact-form-row {
  gap: 0;
}

.contact-form-row {
  display: flex;
  gap: 30px;
  margin: 10px 0;
}

.contact-form-center-info.hidden {
  visibility: hidden;
  height: 0;
  margin: 0;
}

.contact-frame {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border-bottom: solid 6px #b10909;
}

.contact-label {
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 20px;
}

.contact-label > span {
  color: #d12121;
}

.contact-input {
  border-bottom: solid 6px #b10909;
  padding: 40px 20px 20px 20px;
}

.contact-info-title {
  font-weight: bold;
}

#send-btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  margin: 20px 0;
}

textarea.contact-input {
  min-height: 240px;
}

.round-frame > input {
  border: none;
}

.round-frame > textarea {
  border: none;
}

.contact-frame > a {
  color: inherit;
}

.privacy-fineprint {
  font-size: 12px;
}

.contact-frame > a:hover {
  color: #b10909;
}

#lessons {
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#lessons td, #lessons th {
  border: 1px solid #ddd;
  padding: 8px;
}

#lessons tr:nth-child(even) {
  background-color: #f2f2f2;
}

#lessons tr:hover {
  background-color: #ddd;
}

#lessons th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #b10909;
  color: white;
}

.renderedtable > tbody > tr > td {
  padding: 8px;
}

/* ------------- */
a:hover {
  color: #656565;
}

/* ---- PIMCORE ---- */
.pimcore_area_content {
  padding: 0 1%;
}

.x-tree-view {
  padding-left: 10px;
}

.x-grid-with-col-lines .x-grid-cell {
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
}

.courses-calendar {
  display: flex;
  justify-content: center;
  gap: 10px;
  min-width: 100vw;
  max-width: 100vw;
}

.latest-card {
  position: relative;
  min-width: 470px;
  max-width: 470px;
  min-height: 400px;
  max-height: 400px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  background-color: red;
}
.latest-card .top, .latest-card .bottom {
  min-width: 100%;
  max-width: 100%;
}
.latest-card .top {
  min-height: 70%;
  max-height: 70%;
  background-color: green;
}
.latest-card .top img {
  object-fit: cover;
  min-width: 100%;
  max-width: 100%;
  min-height: 280px;
  max-height: 280px;
}
.latest-card .bottom {
  display: flex;
  min-height: 30%;
  max-height: 30%;
  border-top: 1px solid white;
  background-color: #b10909;
}
.latest-card .bottom .calendar, .latest-card .bottom .course-btn {
  min-width: 50%;
  max-width: 50%;
  min-height: 120px;
  max-height: 120px;
  padding: 10px;
}
.latest-card .bottom .calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  color: white;
}
.latest-card .bottom .calendar .calendar-text {
  min-height: 50%;
  max-height: 50%;
  font-size: 1rem;
}
.latest-card .bottom .course-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.latest-card .bottom .course-btn .btn-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 80px;
  font-size: 2rem;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
  transition: all 0.4s;
}
.latest-card .bottom .course-btn .btn-arrow:hover {
  background-color: white;
  color: gray;
  transition: all 0.4s;
}

.gap-10 {
  gap: 10px;
}

/* IMPORTANT, KEEP HERE */
.mobile {
  display: none;
}

.mobile-only {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
  height: 100%;
}

/* --------- RESPONSIVENESS MOBILE ---------- */
@media screen and (max-width: 992px) {
  .mobile-hidden {
    display: none !important;
  }
  .mobile-max-width {
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
  .mobile-gap-10 {
    gap: 10px;
  }
  .privacy {
    margin: 10px 0;
  }
  #nav {
    justify-content: space-between;
    align-items: center;
  }
  #nav .nav-bg {
    top: 0;
    left: 0;
    min-width: 100vw;
    max-width: 100vw;
  }
  #nav .navigation {
    position: absolute;
    top: 100px;
    left: -200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 40px;
    margin: 0 !important;
    background-color: white;
    min-width: 200px !important;
    max-width: 200px !important;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0 !important;
    transition: left 1s;
  }
  #nav .navigation .navitem {
    min-height: 50px;
    max-height: 50px;
  }
  #nav .navigation .dropdown-content {
    top: -190px;
    left: 120px;
    min-width: 140px;
    font-size: 0.9rem;
  }
  #nav .slide-side {
    left: 0px;
    transition: all 1s;
  }
  #nav .navlogo {
    margin: 0 !important;
  }
  #nav .navlogo-text {
    display: none;
  }
  #nav .navicon-wrap {
    position: static;
    text-align: center;
    line-height: 60px;
    min-height: 60px;
    max-height: 60px;
    aspect-ratio: 1;
    padding: 0 !important;
  }
  #nav .dashboard-text {
    display: none;
  }
  #nav svg:focus {
    outline: none;
    border: none;
  }
  #nav .menu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: none;
  }
  #nav .line {
    fill: none;
    stroke: red;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  #nav .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #nav .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  #nav .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #nav .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  #nav .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  #nav .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  footer {
    flex-direction: column;
    min-width: 100vw;
    max-width: 100vw;
  }
  footer #footer-img > .pimcore_area_gallery-single-images > section {
    justify-content: start;
  }
  footer .footer-column {
    align-items: center;
    min-width: 100vw;
    max-width: 100vw;
  }
  footer .footer-column #footer-img {
    text-align: center;
    min-width: 100%;
    max-width: 100%;
  }
  footer .footer-logo-text-container .footer-logo-container {
    justify-content: center;
    width: 100%;
  }
  footer .footer-section {
    flex-direction: column;
    margin: 0 !important;
  }
  footer .footer-section .first-col {
    display: none;
  }
  footer #footer-img > .pimcore_area_gallery-single-images > section > .col-md-4 {
    min-width: 100%;
    max-width: 100%;
  }
  .divider-cbrn {
    min-width: 100vw;
    max-width: 100vw;
  }
  .cert-section {
    flex-direction: column;
    min-width: 100vw;
    max-width: 100vw;
  }
  .cert-section img {
    min-width: 100%;
    max-width: 100%;
  }
  .cert-section .cert-textbox {
    min-width: 100%;
    max-width: 100%;
  }
  .cert-section .cert-textbox .cert-boxes {
    flex-direction: column;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame img {
    position: relative;
    left: -105px;
    min-height: 70px;
    max-height: 70px;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame svg {
    position: absolute;
    left: unset;
  }
  #strip {
    min-width: 100vw;
    max-width: 100vw;
  }
  #next-courses, .courseslist-wrapper {
    padding: 0 20px;
    min-width: 100vw;
    max-width: 100vw;
  }
  #next-courses .nxtcrs-header .nxtcrs-title, .courseslist-wrapper .nxtcrs-header .nxtcrs-title {
    width: 100%;
  }
  #next-courses .nxtcrs-header .nxtcrs-subtitle, .courseslist-wrapper .nxtcrs-header .nxtcrs-subtitle {
    margin-top: 20px;
  }
  #next-courses .nxtcrs-courseslist .nxtcrs-course, #next-courses .courseslist .nxtcrs-course, .courseslist-wrapper .nxtcrs-courseslist .nxtcrs-course, .courseslist-wrapper .courseslist .nxtcrs-course {
    min-width: 48%;
    max-width: 48%;
  }
  #next-courses .courses-calendar, .courseslist-wrapper .courses-calendar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  #next-courses .courses-calendar .latest-card, .courseslist-wrapper .courses-calendar .latest-card {
    position: relative;
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .nxtcrs-header .nxtcrs-title {
    width: 100%;
  }
  .nxtcrs-header .nxtcrs-subtitle {
    margin-top: 20px;
  }
  .nxtcrs-courseslist .nxtcrs-course, .courseslist .nxtcrs-course {
    min-width: 48%;
    max-width: 48%;
  }
  .spacing {
    min-height: 100vh;
    max-height: 100vh;
  }
  #header {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 80vh;
    max-height: 80vh;
  }
  #header .header-img {
    min-height: calc(80vh - 40px);
    max-height: calc(80vh - 40px);
  }
  #header .header-img img {
    min-height: calc(80vh - 40px);
    max-height: calc(80vh - 40px);
  }
  #header .header-path {
    min-height: 40px;
    max-height: 40px;
  }
  .page-description-wrap {
    flex-direction: column-reverse;
    margin: 0 !important;
    min-width: 100vw;
    max-width: 100vw;
  }
  .page-description-wrap img {
    min-width: 100vw;
    max-width: 100vw;
  }
  .page-description-wrap .page-description {
    min-width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 20px;
  }
  .page-description-wrap .page-description .prova {
    overflow-x: scroll;
  }
  .page-description-wrap .page-description .renderedtable {
    width: 0 !important;
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 !important;
  }
  .page-description-wrap .page-description .renderedtable td {
    width: 25%;
    font-size: 0.7rem;
    line-height: 11px;
  }
  .page-description-wrap .page-description .renderedtable ul {
    padding-inline-start: 20px !important;
  }
  .page-description {
    min-width: 100vw;
    max-width: 100vw;
    padding: 0 20px !important;
  }
  #centers {
    min-width: 100vw;
    max-width: 100vw;
    padding: 40px 0 !important;
  }
  .centers-wrapper {
    justify-content: space-around;
    gap: 10px;
    min-width: 100%;
    max-width: 100%;
  }
  .centers-wrapper .center-description-wrapper img {
    object-fit: cover;
    width: 50%;
  }
  .centers-wrapper .round-frame.center {
    min-width: 49vw;
    max-width: 49vw;
    height: 320px;
  }
  .centers-wrapper .round-frame.center .mobile-images img {
    width: 100% !important;
  }
  .centers-wrapper .round-frame.center .center-title {
    font-size: 1.5rem !important;
  }
  .centers-wrapper .round-frame.center .center-title span {
    width: 100%;
  }
  #course {
    min-width: 100vw;
    max-width: 100vw;
  }
  #course .course-content {
    min-width: 100%;
    max-width: 100%;
  }
  #course .course-content .course-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
  #course .course-content .course-wrapper .course-side {
    min-width: 100%;
    max-width: 100%;
    margin: 0 !important;
  }
  #contact-us {
    min-width: 100vw;
    max-width: 100vw;
  }
  #contact-us .contact-form {
    min-width: 100vw;
    max-width: 100vw;
    padding: 0 20px;
  }
  #contact-us .contact-form .contact-form-row {
    flex-direction: column;
  }
  .courseslist-wrapper {
    min-width: 100vw;
    max-width: 100vw;
  }
}
@media screen and (max-width: 600px) {
  .mobile, .mobile-only {
    display: flex !important;
  }
  .mobile-hidden {
    display: none !important;
  }
  .desktop {
    display: none;
  }
  .mobile-gap-10 {
    gap: 10px;
  }
  #nav {
    justify-content: space-between;
    align-items: center;
  }
  #nav .nav-bg {
    top: 0;
    left: 0;
    min-width: 100vw;
    max-width: 100vw;
  }
  #nav .navigation {
    position: absolute;
    top: 100px;
    left: -200px;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    background-color: white;
    min-width: 200px !important;
    max-width: 200px !important;
    padding: 0 !important;
    transition: left 1s;
  }
  #nav .navigation .navitem {
    min-height: 50px;
    max-height: 50px;
  }
  #nav .slide-side {
    left: 0px;
    transition: all 1s;
  }
  #nav .navlogo {
    margin: 0 !important;
  }
  #nav .navlogo-text {
    display: none;
  }
  #nav .navicon-wrap {
    position: static;
    text-align: center;
    line-height: 60px;
    min-height: 60px;
    max-height: 60px;
    aspect-ratio: 1;
    padding: 0 !important;
  }
  #nav .dashboard-text {
    display: none;
  }
  #nav svg:focus {
    outline: none;
    border: none;
  }
  #nav .menu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: none;
  }
  #nav .line {
    fill: none;
    stroke: red;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  #nav .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #nav .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  #nav .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  #nav .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  #nav .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  #nav .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  footer {
    flex-direction: column;
    min-width: 100vw;
    max-width: 100vw;
  }
  footer .footer-column {
    align-items: center;
    min-width: 100vw;
    max-width: 100vw;
  }
  footer .footer-column #footer-img {
    min-width: 250px;
    max-width: 250px;
  }
  footer .footer-logo-text-container .footer-logo-container {
    justify-content: center;
    width: 100%;
  }
  footer .footer-section {
    flex-direction: column;
    margin: 0 !important;
  }
  footer .footer-section .first-col {
    display: none;
  }
  #heroCarousel .carousel-caption {
    top: 40%;
    transform: translateY(-50%);
  }
  .spacing {
    min-height: 100vh;
    max-height: 100vh;
  }
  #header {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 80vh;
    max-height: 80vh;
  }
  #header .header-img {
    min-height: calc(80vh - 40px);
    max-height: calc(80vh - 40px);
  }
  #header .header-img img {
    min-height: calc(80vh - 40px);
    max-height: calc(80vh - 40px);
  }
  #header .header-path {
    min-height: 40px;
    max-height: 40px;
  }
  .page-description-wrap {
    flex-direction: column-reverse;
    margin: 0 !important;
    min-width: 100vw;
    max-width: 100vw;
  }
  .page-description-wrap .page-description {
    min-width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 20px;
  }
  .page-description-wrap .page-description .prova {
    overflow-x: scroll;
  }
  .page-description-wrap .page-description .renderedtable {
    width: 0 !important;
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 !important;
  }
  .page-description-wrap .page-description .renderedtable td {
    width: 25%;
    font-size: 0.7rem;
    line-height: 11px;
  }
  .page-description-wrap .page-description .renderedtable ul {
    padding-inline-start: 20px !important;
  }
  .centers-wrapper {
    min-width: 100vw;
    max-width: 100vw;
  }
  .centers-wrapper .center-description-wrapper img {
    object-fit: cover;
    width: 50%;
  }
  .centers-wrapper .round-frame.center {
    flex-direction: row;
    min-width: 100vw;
    max-width: 100vw;
    height: 320px;
  }
  .centers-wrapper .round-frame.center .center-title, .centers-wrapper .round-frame.center .center-description {
    flex-direction: column;
    justify-content: space-between;
    min-width: calc(50vw - 40px) !important;
    max-width: calc(50vw - 40px) !important;
  }
  .centers-wrapper .round-frame.center .center-title img, .centers-wrapper .round-frame.center .center-description img {
    object-fit: cover;
    min-height: 110px;
    max-height: 110px;
  }
  .centers-wrapper .round-frame.center .center-title .title-img, .centers-wrapper .round-frame.center .center-description .title-img {
    object-fit: contain;
  }
  .centers-wrapper .round-frame.center .mobile-images img {
    width: 100% !important;
  }
  .centers-wrapper .round-frame.center .center-title {
    font-size: 1.5rem !important;
  }
  .courseslist-wrapper {
    min-width: 100vw;
    max-width: 100vw;
  }
  #centers {
    display: flex;
    justify-self: start !important;
    padding: 0 !important;
    min-width: 100vw;
    max-width: 100vw;
  }
  #centers .centers-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin: 0 !important;
  }
  #centers .centers-wrapper .round-frame.center {
    flex-direction: row;
    min-width: 100vw;
    max-width: 100vw;
    height: 320px;
  }
  #centers .centers-wrapper .round-frame.center .center-title, #centers .centers-wrapper .round-frame.center .center-description {
    flex-direction: column;
    justify-content: space-between;
    min-width: calc(50vw - 40px) !important;
    max-width: calc(50vw - 40px) !important;
  }
  #centers .centers-wrapper .round-frame.center .center-title img, #centers .centers-wrapper .round-frame.center .center-description img {
    object-fit: cover;
    min-height: 110px;
    max-height: 110px;
  }
  #centers .centers-wrapper .round-frame.center .center-title .title-img, #centers .centers-wrapper .round-frame.center .center-description .title-img {
    object-fit: contain;
  }
  #centers .centers-wrapper .round-frame.center .mobile-images img {
    width: 100% !important;
  }
  #centers .centers-wrapper .round-frame.center .center-title {
    font-size: 1.5rem !important;
  }
  .divider-cbrn {
    min-width: 100vw;
    max-width: 100vw;
  }
  .cert-section {
    flex-direction: column;
    min-width: 100vw;
    max-width: 100vw;
  }
  .cert-section img {
    min-width: 100%;
    max-width: 100%;
  }
  .cert-section .cert-textbox {
    min-width: 100%;
    max-width: 100%;
  }
  .cert-section .cert-textbox .cert-boxes {
    flex-direction: column;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame img {
    position: relative;
    left: -105px;
    min-height: 70px;
    max-height: 70px;
  }
  .cert-section .cert-textbox .cert-boxes .round-frame svg {
    position: absolute;
    left: unset;
  }
  #next-courses, .courseslist-wrapper {
    padding: 0 20px;
  }
  #next-courses .nxtcrs-header .nxtcrs-title, .courseslist-wrapper .nxtcrs-header .nxtcrs-title {
    width: 100%;
  }
  #next-courses .nxtcrs-header .nxtcrs-subtitle, .courseslist-wrapper .nxtcrs-header .nxtcrs-subtitle {
    margin-top: 20px;
  }
  #next-courses .nxtcrs-courseslist .nxtcrs-course, #next-courses .courseslist .nxtcrs-course, .courseslist-wrapper .nxtcrs-courseslist .nxtcrs-course, .courseslist-wrapper .courseslist .nxtcrs-course {
    min-width: 100%;
    max-width: 100%;
  }
  #next-courses .courses-calendar .latest-card .calendar .calendar-text, .courseslist-wrapper .courses-calendar .latest-card .calendar .calendar-text {
    font-size: 0.9rem;
  }
  #contact-us {
    min-width: 100vw;
    max-width: 100vw;
  }
  #contact-us .contact-form {
    min-width: 100vw;
    max-width: 100vw;
    padding: 0 20px;
  }
  #contact-us .contact-form .contact-form-row {
    flex-direction: column;
  }
}
.search-wrapper {
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
}
.search-wrapper .sidebar-filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
  height: 100%;
  padding: 10px;
}
.search-wrapper .sidebar-filter .input-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100px;
}
.search-wrapper .sidebar-filter .input-row label,
.search-wrapper .sidebar-filter .input-row input, .search-wrapper .sidebar-filter .input-row select, .search-wrapper .sidebar-filter .input-row option {
  width: 100%;
}
.search-wrapper .sidebar-filter .input-row label {
  display: flex;
  align-items: center;
  height: 40%;
}
.search-wrapper .sidebar-filter .input-row input {
  height: 60%;
}
.search-wrapper .sidebar-filter .input-row select {
  height: 60%;
}
.search-wrapper .sidebar-filter .input-row input[type=range] {
  accent-color: #d12121;
  margin-bottom: 20px;
}
.search-wrapper .sidebar-filter .input-row .radio {
  display: flex;
  justify-content: start;
}
.search-wrapper .courses-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  height: 100%;
  overflow-y: scroll;
}
.search-wrapper .courses-container .course-card {
  position: relative;
  width: 33.3333333333%;
  height: 50%;
  padding: 10px;
}
.search-wrapper .courses-container .course-card .card-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.search-wrapper .courses-container .course-card .card-content .card-image {
  object-fit: cover;
  width: 100%;
  height: 40%;
}
.search-wrapper .courses-container .course-card .card-content .card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  height: 60%;
}
.search-wrapper .courses-container .course-card .card-content .absolute-center {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.calendar {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: #d12121;
}
.calendar h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  margin-bottom: -15px;
  font-size: 1.8rem;
  color: white;
}
.calendar .calendar-carou {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50vh;
}
.calendar .calendar-carou .nxtcrs-course {
  border: none !important;
}
.calendar .calendar-carou .slick-slide {
  margin: 0 5px;
}
.calendar .calendar-carou .slick-arrow {
  z-index: 99;
}
.calendar .bottom-arrows .slick-prev,
.calendar .bottom-arrows .slick-next {
  top: unset;
  bottom: 0px !important;
  width: 80px !important;
  height: 50px !important;
}
.calendar .bottom-arrows .slick-prev {
  right: 50% !important;
  left: unset !important;
}
.calendar .bottom-arrows .slick-next {
  right: 45% !important;
  left: unset !important;
}
.calendar .bottom-arrows .slick-prev:before {
  content: "<";
  color: white;
  font-size: 70px;
}
.calendar .bottom-arrows .slick-next:before {
  content: ">";
  color: white;
  font-size: 70px;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
  transition: 1s all;
}

.m_modal {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  padding: 20px 50px;
  color: white;
  border-radius: 5px;
  z-index: 100;
  transition: 1s all;
}

.success {
  background-color: rgb(72, 153, 72);
}

.failure {
  background-color: rgb(153, 72, 72);
}

@media screen and (max-width: 900px) {
  .search-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100vw;
    height: auto;
  }
  .search-wrapper .sidebar-filter {
    width: 100%;
    height: auto;
  }
  .search-wrapper .courses-container {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    width: 100vw;
  }
  .search-wrapper .courses-container .course-card {
    width: 100%;
    height: 720px;
  }
  .calendar {
    min-height: 500px;
  }
  .calendar .calendar-carou {
    min-height: 500px;
    /* the parent */
  }
  .calendar .calendar-carou .slick-list {
    margin: 0 !important;
  }
  .calendar .calendar-carou .slick-dots {
    bottom: 0px;
  }
  .calendar .calendar-carou .nxtcrs-course {
    width: 100%;
    height: 400px;
    margin: 0 !important;
  }
  .calendar .calendar-carou .nxtcrs-course .nxtcrs-img {
    height: 190px;
  }
}
:root {
  --width: 100vw;
}

.full-width {
  min-width: 100vw;
  max-width: 100vw;
}

.web-cont {
  position: relative;
  min-width: var(--width);
  max-width: var(--width);
}

.flex-start {
  display: flex;
  justify-content: start;
}

.flex-center {
  display: flex;
  justify-content: center;
}

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

.flex-col-center {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1920px) {
  :root {
    --width: 1920px;
  }
}
@media screen and (max-width: 900px) {
  :root {
    --width: 100vw;
  }
  .mobile-col {
    flex-direction: column !important;
  }
  .nav-mobile {
    justify-content: space-between !important;
    padding: 0 20px;
  }
  .login-mobile {
    position: static !important;
    align-self: center;
  }
  .footer-mobile {
    flex-direction: column !important;
  }
  .cert-section {
    padding: 0px !important;
  }
}

/*# sourceMappingURL=global.css.map */
