@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@100..900&display=swap");
html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .container {
    width: 1080px;
  }
}

.nav-link {
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.gradient-text {
  background: #BCF573;
  /*background: linear-gradient(to left, #BCF573 30%, #119EAF 100%);*/
  background: linear-gradient(to left, #BCF573 30%, #e5ff6e 100%);  
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-size-small,
.text-size-regular,
.text-size-medium {
  font-weight: 300;
}
.text-size-small strong,
.text-size-regular strong,
.text-size-medium strong {
  font-weight: 600;
  color: #BCF573;
}
.text-size-small.bold,
.text-size-regular.bold,
.text-size-medium.bold {
  font-weight: 600;
}
.text-size-small a,
.text-size-regular a,
.text-size-medium a {
  color: #BCF573;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-size-mini {
  font-size: 1rem;
  line-height: 1.6rem;
}

.text-size-small {
  font-size: 1.4rem;
  line-height: 2rem;
}

.text-size-regular {
  font-size: 1.7rem;
  line-height: 2.2rem;
}

.text-size-medium {
  font-size: 2.2rem;
  line-height: 2.2rem;
}
@media (max-width: 480px) {
  .text-size-medium {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

.text-size-large {
  font-size: 4rem;
  line-height: 4rem;
}
@media (max-width: 480px) {
  .text-size-large {
    font-size: 3rem;
    line-height: 3rem;
  }
}

.num-box {
  color: #BCF573;
  font-size: 3rem;
  padding-right: 10px;
}

.btn-primary {
  background: #BCF573;
  color: #000000;
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  border-radius: 16px;
  font-weight: 500;
}
.btn-primary:hover {
  background: #119EAF;
}

.btn-filter {
  background: #333;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 16px;
  font-weight: 500;
}
.btn-filter.selected, .btn-filter:hover {
  background: #BCF573;
  color: #000;
}

#header-hero {
  height: 950px;
  background: url("../images/hero_image_new_fade_dx.png") no-repeat center center/cover;
  padding-top: 150px;
}
#header-hero h1 {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 4.5rem;
}

.container-fluid-left {
  margin-left: 12px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .container-fluid-left {
    margin-left: calc((100% - 1050px)/2);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .container-fluid-left {
    margin-left: calc((100% - 940px)/2);
  }
}

.complex-card {
  height: 430px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 1px rgba(188, 245, 115, 0.46);
  width: 100%;
}
.complex-card a {
  text-decoration: none;
  width: 100%;
}
.complex-card a figure {
  width: 100%;
  margin: 0;
}
.complex-card a figure .image-container {
  overflow: hidden;
}
.complex-card a figure .image-container .inner {
  width: 100%;
  transition: all 0.5s ease-out;
}
@media (max-width: 768px) {
  .complex-card a figure {
    flex-direction: column-reverse;
  }
  .complex-card a figure .image-container {
    height: 60%;
  }
}
.complex-card a:hover figure .image-container .inner {
  transform: scale(1.1);
}

.carousel-cell {
  width: 80%;
}
@media (min-width: 1200px) {
  .carousel-cell {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .carousel-cell {
    margin: 15px 20px 15px 0;
  }
}
.carousel-cell.carousel-cell {
  margin-right: 20px;
}

.section-title-header {
  font-size: 3.2rem;
}
@media (max-width: 480px) {
  .section-title-header {
    font-size: 2.8rem;
  }
}

.card__content {
  background: linear-gradient(140.499deg, #1a8e9c 0%, #6acb90 70%, #bcf573 100%);
  width: 100%;
}
.card__content span.date {
  color: #BCF573;
  font-weight: 600;
  font-size: 2.4rem;
}
.card__content span.hour {
  color: #ffffff;
  font-size: 1.5rem;
}
.card__content h3 {
  color: #000000;
  font-size: 2.8rem;
  font-weight: 600;
}
@media (max-width: 480px) {
  .card__content h3 {
    overflow: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.card__content p {
  color: #ffffff;
}
@media (max-width: 768px) {
  .card__content span.date {
    font-size: 1.8rem;
  }
  .card__content span.hour {
    color: #ffffff;
    font-size: 1.4rem;
  }
  .card__content h3 {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 600;
  }
  .card__content p {
    font-size: 1.4rem;
  }
}

.compact-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(188, 245, 115, 0.9) 100%);
}
.compact-card h3 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 600;
}
.compact-card p {
  color: #ffffff;
}
@media (max-width: 768px) {
  .compact-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
  }
  .compact-card p {
    font-size: 1.2rem;
  }
}

#wrapper {
  margin-top: -120px;
}

#highlights .carousel-cell {
  width: auto;
}
@media (min-width: 1200px) {
  #highlights .carousel-cell {
    width: 43%;
  }
}

#pre-footer {
  margin-top: -80px;
  padding-top: 80px;
}

.navbar-top {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
.navbar-top.navbar-dark {
  background-color: transparent;
}

@media (max-width: 480px) {
  .navbar-collapse {
    background-color: #231d53;
  }
}
.navbar-collapse ul {
  padding-left: 10px;
}

.flickity-button {
  display: none;
  background: transparent;
}
.flickity-button:disabled {
  display: none;
}
.flickity-button:hover {
  background: transparent;
}

.flickity-prev-next-button {
  width: 100px;
  height: 100px;
}

.flickity-button-icon {
  fill: white;
}

.carousel .flickity-viewport {
  overflow: visible;
}
.carousel:hover .flickity-button {
  display: block;
}
@media (max-width: 480px) {
  .carousel:hover .flickity-button {
    display: none;
  }
}

#videoModal .modal-body {
  background-color: #000000;
  position: relative;
}
#videoModal .modal-body button.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
}

.separator {
  width: 30%;
  height: 4px;
  background: #fff;
}

.line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: -2px;
}
.line.alpha {
  background-color: rgba(255, 255, 255, 0.2);
}

#partners-container div {
  padding-left: 10px;
  padding-right: 10px;
  width: 45%;
}
@media (min-width: 1200px) {
  #partners-container div {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

footer {
  background-color: #231C52;
  font-family: "Inter", Helvetica, sans-serif;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .nav .nav-item a {
  font-size: 0.9rem;
}
footer .gradient-text {
  font-weight: 500;
}
footer .light-separator {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 760px) {
  footer .light-separator {
    border: none;
    margin-bottom: 15px;
  }
}
footer svg {
  width: 20px;
}
footer .nl-form {
  background-color: #ffffff;
  border-radius: 16px;
  border: 4px solid #BCF573;
  padding: 6px;
}
footer .nl-form input {
  margin: 0;
  border: none;
}
footer .nl-form input:focus {
  outline: none;
  box-shadow: none;
}
footer .nl-form .btn-primary {
  border-radius: 10px;
  font-size: 1rem;
  padding: 10px 20px;
}

.blurred-image-wrapper .blurred-image {
  opacity: 0.5;
  height: 500px;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
  filter: blur(30px);
  -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
}
.blurred-image-wrapper .gradient-mask {
  height: 600px;
  top: 0;
  width: 100%;
  z-index: 2;
  position: absolute;
  background: linear-gradient(0deg, #000000 0%, #00000033 55%, #00000000 66%);
}
.blurred-image-wrapper .content-wrapper {
  padding-top: 150px;
  min-height: 850px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
}

.background-image-wrapper .background-image {
  opacity: 0.5;
  height: 500px;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.background-image-wrapper .gradient-mask {
  height: 500px;
  top: 0;
  width: 100%;
  z-index: 2;
  position: absolute;
  background: linear-gradient(0deg, #000000 0%, #00000033 55%, #00000000 66%);
}
.background-image-wrapper .content-wrapper {
  padding-top: 150px;
  min-height: 850px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
}

.internal-image {
  border-radius: 16px;
}

.date-label {
  color: #BCF573;
}

.map-container {
  background-color: #222;
  padding: 20px;
  border-radius: 16px;
}
.map-container #map {
  border-radius: 16px;
}
.map-container .btn-primary {
  font-size: 1.2rem;
}

.contacts-container {
  background-color: #222;
  padding: 20px;
  border-radius: 16px;
}
.contacts-container .contact-item {
  border-bottom: 1px solid #333;
}
.contacts-container .contact-item .contact-heading {
  color: #BCF573;
}
.contacts-container .contact-item a {
  color: #fff;
}

.card-row {
  text-decoration: none;
}
.card-row figure {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .card-row figure {
    flex-direction: column;
  }
}
.card-row .card-container {
  background: linear-gradient(140.499deg, #1a8e9c 0%, #6acb90 70%, #bcf573 100%);
  flex-basis: 50%;
}
@media (max-width: 480px) {
  .card-row .card-container {
    flex-basis: auto;
  }
}
.card-row .image-container {
  background-color: #231C52;
  min-height: 250px;
  flex-basis: 50%;
}
@media (max-width: 480px) {
  .card-row .image-container {
    flex-basis: auto;
  }
}
.card-row .image-container img {
  padding: 0.25rem;
  max-width: 100%;
  height: auto;
}
.card-row h3 {
  color: #fff;
  font-size: 2rem;
}

#card-container {
  border-radius: 16px;
  background-color: #fff;
  color: #333;
}
#card-container .gradient-text {
  display: block;
  font-size: 2rem;
}
#card-container p {
  color: #666;
}
#card-container img {
  max-width: 150px;
}

#barcode {
  margin: 0 auto 15px auto;
  padding: 0px;
  overflow: auto;
  width: 345px;
  border-top: 15px solid #fff;
  border-bottom: 15px solid #fff;
  margin-bottom: 15px;
}

.btn-outline {
  border-radius: 16px;
  border: 1px solid #fff;
  font-size: 1.3rem;
  color: #fff;
  padding: 10px;
}
.btn-outline:hover {
  color: #BCF573;
  border: 1px solid #BCF573;
}

#payment-container {
  position: relative;
  border-radius: 16px;
  background-color: #333;
  color: #fff;
}
#payment-container #paypal-redirect {
  position: absolute;
  border-radius: 16px;
  background: #333;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teaser-container.dark-grey {
  background: #231C52 url("/images/graph_pattern.png") no-repeat 55% 40%;
}
.teaser-container .text-size-medium {
  font-weight: 500;
}

.form-group label {
  color: #333;
  font-size: 11px;
  font-family: "Inter", Helvetica, sans-serif;
}
.form-group input {
  font-family: "Inter", Helvetica, sans-serif;
}

#login-form,
#register-form {
  color: #333;
}

form .btn-outline,
form .btn-primary {
  font-size: 1.2rem;
  display: block;
  padding: 5px 20px;
  border-radius: 0.25rem;
}
form .btn-outline {
  border: 1px solid #231d53;
  color: #231d53;
}
form .btn-outline:hover {
  color: #1a8e9c;
}
form .error {
  border-color: var(--bs-red);
}

.gray-link {
  color: #666;
}

/*
.modal{
    #register-form{
        margin-left: 10px;
        margin-right: 10px;
    }
}

.modal-lg{
    #register-form{

        margin-right: 10px;
    }
}
*/
.project-card {
  border-radius: 16px;
  background: #231C52;
  overflow: hidden;
  box-shadow: 0px 0px 16px 1px rgba(188, 245, 115, 0.46);
}
.project-card span.date {
  color: #BCF573;
  font-weight: 600;
  font-size: 2rem;
}
.project-card .gradient-text {
  font-weight: 500;
  font-size: 3rem;
  line-height: 3.2rem;
}
.project-card .btn-primary {
  font-size: 1.5rem;
  padding: 10px 20px;
}
@media (max-width: 480px) {
  .project-card {
    flex-direction: column;
  }
  .project-card .p-5 {
    padding: 1.5rem !important;
  }
}

.loading {
  opacity: 0.5;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: block;
  margin: auto;
}
.loader::before, .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite;
}
.loader::after {
  transform: rotate3d(90, 90, 0, 180deg);
  border-color: #BCF573;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  75%, 100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
}

/*# sourceMappingURL=style.css.map */
