@font-face {
  font-family: Oxygen;
  src: url("../fonts/Oxygen/Oxygen-Regular.d5ea9b254845.ttf");
}
.site {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  height: 100vh;
  margin: 0rem;
  font-family: Oxygen;
  background-color: #F5F5F5;
  text-align: justify;
}
.site:has(#menu-toggle:checked) {
  overflow: hidden;
}
.site__content {
  flex: 1;
}
.site--error-page {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.banner {
  padding: 0 1rem 0 1rem;
  background-color: #922E2D;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.banner__text-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
}
.banner__text-wrapper__title, .banner__text-wrapper__news-title {
  font-weight: 700;
}
.banner__text-wrapper__read-more {
  text-decoration: underline;
}
@media screen and (max-width: 1190px) {
  .banner {
    overflow: hidden;
    min-height: 7.5%;
  }
  .banner__text-wrapper {
    animation: text-shifting 15s linear infinite;
    transform: translateX(100%);
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  @keyframes text-shifting {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
}

.arrow:hover {
  cursor: pointer;
}

.button {
  padding: 1rem;
  background-color: #922E2D;
  color: white;
  border-radius: 0.5rem;
}
.button:hover {
  background-color: #7f2827;
}

.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.card__image {
  width: 100%;
  height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  margin: 1rem;
}
.card__content__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
}
.card__content__list__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
}
.card__content__info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.card--news {
  width: 30rem;
  transition: transform 0.2s;
}
.card--news:hover {
  cursor: pointer;
  transform: scale(1.025);
}
.card--member {
  width: 14rem;
}
.card--sponsor {
  width: 20rem;
  transition: transform 0.2s;
}
.card--sponsor:hover {
  transform: scale(1.025);
}
.card--sponsor .card__image {
  -o-object-fit: contain;
     object-fit: contain;
}

.carousel {
  margin: 3rem 0 3rem 0;
}

.carousel-nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.slide {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 5rem 0 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.slide__img {
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1190px) {
  .slide {
    margin: 0 0.5rem 0 0.5rem;
  }
}

.slick-dots {
  position: relative !important;
  bottom: 0 !important;
}

.contact-form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  margin: 3rem auto 3rem auto;
  gap: 1rem;
}
@media screen and (max-width: 1190px) {
  .contact-form {
    width: 100%;
  }
}
.contact-form__wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width: 1190px) {
  .contact-form__wrapper {
    flex-direction: column;
  }
}
.contact-form__field {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
  flex: 1;
}
.contact-form__field input,
.contact-form__field textarea {
  padding: 0.5rem;
  font-family: Oxygen;
  font-size: medium;
  outline: none;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border: 2px solid #922E2D;
}
.contact-form__button {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.contact-form__button .button__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-form__button.button--loading {
  cursor: default;
}
.contact-form__button.button--loading .button__text {
  display: none;
}
.contact-form__button.button--loading .button__loader {
  display: block;
}

.errorlist {
  margin: 0rem 0 0rem 0;
  padding: 0 0rem 0 0rem;
  color: red;
  list-style: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.link {
  color: #000000;
  text-decoration: none;
}
.link--footer {
  color: #AAAAAA;
}
.link--footer:hover {
  text-decoration: underline;
}
.link--header {
  font-size: 1.2em;
}
.link--header:hover {
  color: #922E2D;
}
.link--active {
  font-weight: 700;
  color: #922E2D;
}

.link-img--home {
  width: 7.5rem;
  z-index: 2;
  position: relative;
}
.link-img--social {
  width: 2rem;
}

.link-u {
  color: #000000;
}
.link-u:hover {
  color: #922E2D;
}

.link-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0rem 0 0rem;
}
@media screen and (max-width: 1190px) {
  .link-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
}
.link-list__li {
  margin: 0 1rem 0 1rem;
  list-style: none;
}
@media screen and (max-width: 1190px) {
  .link-list__li {
    margin: 0.5rem;
  }
}

.list__li {
  margin: 1rem 0 1rem 0;
}
.list--no-bullet {
  padding: 0 0rem 0 0rem;
  margin: 0rem 0 0rem 0;
  list-style: none;
}

.menu > li {
  overflow: hidden;
}

.menu-button-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
  display: none;
  width: 30px;
  z-index: 2;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: black;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1190px) {
  .menu-button-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .menu {
    width: 100%;
    margin: 9rem 0rem 0rem 0rem;
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #menu-toggle:checked ~ .menu:after {
    width: 100%;
    height: 100vh;
    content: "";
    position: relative;
    background-color: #FFFFFF;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    padding: 1rem;
    height: 2.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0.5em 0;
    z-index: 1;
  }
}
.notification {
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 0.5rem;
}
.notification--INFO {
  background-color: #d0e2fe;
  border: 1px solid #adccfd;
  color: #022a67;
}
.notification--WARN {
  background-color: #ffefbf;
  border: 1px solid #ffe69b;
  color: #594300;
}
.notification--CRIT {
  background-color: #f7d7da;
  border: 1px solid #f1b9be;
  color: #581218;
}
.notification--SUCC {
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  color: #1c372b;
}

.table {
  margin: 0 3rem 0 3rem;
  background-color: white;
  text-align: center;
  border-collapse: collapse;
}
.table__thead {
  text-transform: uppercase;
}
.table__cell {
  padding: 1rem;
  border: 1px solid black;
}
.table--center {
  margin: 0 5rem 0 5rem;
}
@media screen and (max-width: 1190px) {
  .table__cell {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  .table--center {
    margin: 0 0rem 0 0rem;
  }
}

.link-widget {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 300px;
  background-color: white;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.link-widget__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link-widget__content {
  margin: 1rem 3rem 1rem 3rem;
  flex: 1;
}
.link-widget__content__title {
  margin: 0.5rem 0 0.5rem 0;
}
.link-widget__content__text {
  font-size: 0.9rem;
  color: #6c6c6c;
  line-height: 1.25rem;
}
.link-widget__content__space {
  height: 14rem;
}
.link-widget__price {
  font-size: 0.9rem;
  color: #6c6c6c;
}
.link-widget__button {
  width: 100%;
  padding: 13.5px 0 13.5px;
  background-color: #922E2D;
  color: white;
}
.link-widget:hover {
  cursor: pointer;
  transform: scale(1.025);
}

/*
#haWidget{
    width: auto !important;
    height: 617.750px !important;
    border-radius: $radius !important;

    box-shadow: $shadow;

    transition: transform .2s;

    &:hover{
        cursor: pointer;
        transform: scale(1.025);
    }
}
*/
.header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 5rem 1rem 5rem;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  gap: 1rem;
}
@media screen and (max-width: 1190px) {
  .header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
  }
}

.section {
  margin: 5rem 5rem 5rem 5rem;
}
@media screen and (max-width: 1190px) {
  .section {
    margin: 3rem 2rem 3rem 2rem;
  }
}
.section__profileimg {
  width: 14rem;
  margin: 0 auto 0 auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.home-section__part {
  margin: 3rem 0 3rem 0;
}

.team-section__members {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  margin: 3rem 0 3rem 0;
  gap: 3rem;
}

.course-section {
  background-color: #E7E7E7;
  border-radius: 0.5rem;
  overflow: hidden;
}
.course-section__title {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.course-section__title__h2 {
  position: absolute;
  color: white;
}
.course-section__title__img {
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.course-section__title::before {
  width: 100%;
  height: 14rem;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
}
.course-section__content {
  padding: 2rem 3rem 2rem 3rem;
}
@media screen and (max-width: 1190px) {
  .course-section__title__h2 {
    padding: 0 1rem 0 1rem;
    text-align: center;
  }
  .course-section__content {
    padding: 1rem 2rem 1rem 2rem;
  }
}

.price-section__content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1190px) {
  .price-section__content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}

.hour-section__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.news-section__news {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  margin: 3rem 0 3rem 0;
  gap: 3rem;
}
.news-section__pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.news-section__no-news {
  margin: 5rem 0 5rem 0;
  text-align: center;
}

.news-details-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 5rem 15rem 5rem 15rem;
}
@media screen and (max-width: 1190px) {
  .news-details-section {
    margin: 3rem 2rem 3rem 2rem;
  }
}
.news-details-section__line {
  width: 25rem;
  align-self: center;
  border-top: thin solid black;
}
@media screen and (max-width: 1190px) {
  .news-details-section__line {
    width: 14rem;
  }
}
.news-details-section__img {
  width: 100%;
  height: 14rem;
  margin: 0rem 0rem 1rem 0rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.news-details-section p > span {
  background-color: transparent !important;
}
.news-details-section figure {
  align-self: center;
}
.news-details-section figure img {
  width: 100%;
  height: 100%;
}

.gallery-section__images {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
}
.gallery-section__images__img {
  width: 25rem;
  margin: 1rem;
  flex-basis: 30%;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1190px) {
  .gallery-section__images__img {
    width: 20rem;
  }
}
.gallery-section__pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.inscriptions-section__ins-info {
  margin: 5rem 0 5rem 0;
  text-align: center;
}

.form-links-section__notifications {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 2rem 0 2rem 0;
  gap: 1rem;
}
.form-links-section__widgets {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  margin: 2rem 0rem 0rem 0rem;
  gap: 10rem;
}
@media screen and (max-width: 1190px) {
  .form-links-section__widgets {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
}

.section-error-page {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.section-error-page__img {
  width: 14rem;
}

.sponsors-section__sponsors {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  margin: 3rem 0 3rem 0;
  gap: 3rem;
}

.title {
  margin: 1rem 0 1rem 0;
}
.title--h1 {
  font-size: 2rem;
}
@media screen and (max-width: 1190px) {
  .title--h1 {
    font-size: 1.8rem;
  }
}
.title--h4 {
  font-size: 1.2em;
}
@media screen and (max-width: 1190px) {
  .title--h4 {
    font-size: 1rem;
  }
}
.title--upper {
  text-transform: uppercase;
}

.text--bold {
  font-weight: 700;
}
.text--secondary {
  color: #AAAAAA;
}
.text--center {
  text-align: center;
}

.footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  color: #AAAAAA;
  text-align: center;
}
.footer__links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: stretch;
  background-color: #333333;
}
@media screen and (max-width: 1190px) {
  .footer__links {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 1rem 0 1rem;
  }
}
.footer__standard {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: stretch;
  background-color: #282828;
}
@media screen and (max-width: 1190px) {
  .footer__standard {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
  }
}/*# sourceMappingURL=main.css.map */