/* ========= */
/* Variables */
/* ========= */
/* navbar */
/* ========== */
/* Animations */
/* ========== */
@-webkit-keyframes scrollDown {
  0% {
    bottom: 2rem;
  }
  38% {
    bottom: .75rem;
  }
  75% {
    bottom: 2rem;
  }
  100% {
    bottom: 2rem;
  }
}
@keyframes scrollDown {
  0% {
    bottom: 2rem;
  }
  38% {
    bottom: .75rem;
  }
  75% {
    bottom: 2rem;
  }
  100% {
    bottom: 2rem;
  }
}

@-webkit-keyframes slideThroughLeftPercentage {
  0% {
    left: 0%;
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  70% {
    left: 65%;
    opacity: 0;
  }
}

@keyframes slideThroughLeftPercentage {
  0% {
    left: 0%;
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  70% {
    left: 65%;
    opacity: 0;
  }
}

@-webkit-keyframes horizontalBounce {
  0% {
    left: 0;
  }
  23% {
    left: 5px;
  }
  46% {
    left: 0;
  }
  69% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}

@keyframes horizontalBounce {
  0% {
    left: 0;
  }
  23% {
    left: 5px;
  }
  46% {
    left: 0;
  }
  69% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}

.hoverHorizontalBounce {
  position: relative;
}

.hoverHorizontalBounce:hover {
  -webkit-animation: .7s ease-out horizontalBounce;
          animation: .7s ease-out horizontalBounce;
}

.scrollDown {
  -webkit-animation: 3s ease-out 1s scrollDown infinite;
          animation: 3s ease-out 1s scrollDown infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.slideThroughLeftPercentage {
  -webkit-animation: 6s linear infinite slideThroughLeftPercentage;
          animation: 6s linear infinite slideThroughLeftPercentage;
}

/* ============= */
/* Custom Styles */
/* ============= */
html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: Montserrat, sans-serif;
  scroll-behavior: smooth;
  background: #70D8DB;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: IBM Plex Sans, sans-serif;
}

main {
  position: relative;
}

#mainContentAnchor {
  position: absolute;
  top: 0;
  left: 0;
}

.button-primary {
  padding: 1rem 1.5rem;
  color: #0f2223;
  background: #7DF1F5;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: none;
  border-radius: 100px;
  font-size: 1.2rem;
}

.button-primary:hover {
  background: #5CB2B5;
}

/* =================== */
/* Overrides */
/* =================== */
.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row {
  width: 100%;
}

#newReleasesCarousel .carousel-button-next {
  position: absolute;
  height: 100%;
  width: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  border-radius: 8px;
  background: transparent;
}

#newReleasesCarousel .carousel-button-next img {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

#newReleasesCarousel .carousel-button-next:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

#newReleasesCarousel .carousel-button-prev {
  position: absolute;
  height: 100%;
  width: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  border-radius: 8px;
  background: transparent;
}

#newReleasesCarousel .carousel-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

#newReleasesCarousel .carousel-button-prev:hover img {
  -webkit-transform: rotate(180deg) scale(1.3);
          transform: rotate(180deg) scale(1.3);
}

#newReleasesCarousel::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 90;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(5%, #70d8db), color-stop(25%, rgba(112, 216, 219, 0)), color-stop(75%, rgba(112, 216, 219, 0)), color-stop(95%, #70d8db));
  background-image: linear-gradient(90deg, #70d8db 5%, rgba(112, 216, 219, 0) 25%, rgba(112, 216, 219, 0) 75%, #70d8db 95%);
}

#newReleasesCarousel .swiper-slide {
  background: #1B3536;
  border-radius: 8px;
  color: #7DF1F5;
  position: relative;
}

#newReleasesCarousel .swiper-slide img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#newReleasesCarousel .swiper-slide a {
  position: absolute;
  width: 100%;
  height: 80px;
  background: #1B3536;
  border-radius: 8px;
  left: 0;
  bottom: -300px;
}

#newReleasesCarousel .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(112, 216, 219, 0.8)), to(rgba(112, 216, 219, 0.4)));
  background-image: linear-gradient(to left, rgba(112, 216, 219, 0.8), rgba(112, 216, 219, 0.4));
}

#newReleasesCarousel .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(112, 216, 219, 0.8)), to(rgba(112, 216, 219, 0.4)));
  background-image: linear-gradient(to right, rgba(112, 216, 219, 0.8), rgba(112, 216, 219, 0.4));
}

#newReleasesCarousel .slideDescription {
  padding: 2rem;
}

#newReleasesCarousel .slideDescription h2 {
  font-size: 2.5rem;
  margin: 0;
}

#newReleasesCarousel .slideDescription h4 {
  font-family: Montserrat, sans-serif;
  font-style: italic;
  font-size: 1.2rem;
}

.form-group input {
  padding: .5rem 1.25rem;
  font-size: 1.5rem;
  border-radius: 50px;
  background: #1B3536;
  border: 2px solid #3C7375;
  width: 90%;
  max-width: 550px;
  margin-bottom: 1rem;
  color: #7DF1F5;
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out;
}

.form-group input:focus, .form-group input:focus-visible, .form-group input:focus-within {
  outline: none;
}

.form-submit {
  display: inline-block;
  position: relative;
  border-radius: 50px;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: .7;
}

input[type=submit] {
  background: #3C7375;
}

.active .form-group input {
  border-color: #70D8DB;
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out;
}

.validation input[type=submit] {
  background: #70D8DB;
}

.validation input[type=submit]:hover {
  background: #5CB2B5;
}

.validation .form-submit::after {
  content: unset;
}

/* ====== */
/* Navbar */
/* ====== */
#mainNavDesktop {
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.navbar-custom {
  background: #1B3536;
  height: 95px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}

.navbar-custom .row {
  width: 100%;
  position: relative;
}

.navbar-custom .row #navbarDecoration {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: #1B3536;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.navbar-custom.nav-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar-custom.nav-desktop .navbar-brand {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 5;
  margin: 0 3rem;
  padding: 0;
}

.navbar-custom.nav-desktop .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  gap: 2rem;
  z-index: 5;
}

.navbar-custom.nav-desktop .nav-link {
  color: #7DF1F5;
  position: relative;
}

.navbar-custom.nav-desktop .nav-link::after {
  content: "";
  position: absolute;
  width: 103%;
  height: 3px;
  bottom: 2px;
  left: 50%;
  -webkit-transform: scaleX(0) translateX(-50%);
          transform: scaleX(0) translateX(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
  -webkit-transition: opacity .15s ease-out, -webkit-transform .3s ease-out;
  transition: opacity .15s ease-out, -webkit-transform .3s ease-out;
  transition: transform .3s ease-out, opacity .15s ease-out;
  transition: transform .3s ease-out, opacity .15s ease-out, -webkit-transform .3s ease-out;
  background: #7DF1F5;
}

.navbar-custom.nav-desktop .nav-link:hover::after, .navbar-custom.nav-desktop .nav-link:focus::after {
  -webkit-transform: scaleX(1) translateX(-50%);
          transform: scaleX(1) translateX(-50%);
  opacity: 1;
  -webkit-transition: opacity .15s ease-out, -webkit-transform .3s ease-out;
  transition: opacity .15s ease-out, -webkit-transform .3s ease-out;
  transition: transform .3s ease-out, opacity .15s ease-out;
  transition: transform .3s ease-out, opacity .15s ease-out, -webkit-transform .3s ease-out;
}

.navbar-custom.nav-mobile {
  display: none;
}

.navbar-custom .navbar-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ==== */
/* Hero */
/* ==== */
.hero {
  background: url("../images/backgrounds/hero_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 95px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero-content {
  max-width: 650px;
  width: 100%;
  min-width: 450px;
}

.hero-content-brand {
  position: relative !important;
}

.hero-content .slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.hero-content .slogan span {
  font-family: Montserrat, sans-serif;
  color: white;
  position: relative;
  opacity: 0;
  margin-bottom: .75rem;
}

.hero-content .slogan span:last-child {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.scrollDownLink:hover {
  cursor: pointer;
}

/* ======== */
/* Sections */
/* ======== */
section {
  background: #70D8DB;
  padding: 5rem 0;
  margin: 2rem 0 7rem 0;
}

.blocker {
  padding: 7rem 0;
  background: url("../images/backgrounds/blocker_background.jpg") center top/cover no-repeat;
  color: #7DF1F5;
}

.section-headline {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.section-byline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 5rem;
}

/* ====== */
/* Footer */
/* ====== */
footer {
  padding: 5rem 0 3rem;
  color: #fff;
  background: #0f2223;
}

footer a {
  color: #fff;
  border-bottom: 1px solid white;
  padding-bottom: 3px;
  margin-bottom: -3px;
}

footer a:hover {
  color: white;
  text-decoration: none;
}

footer h3 {
  font-style: italic;
  margin-bottom: 2rem;
}

footer ul {
  margin: 0;
}

footer ul li {
  line-height: 1.8;
  list-style: none;
}

footer ul li::before {
  content: '';
  background: url("../images/svg/footer-list-style-icon.svg");
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-left: -28px;
  margin-right: 15px;
  margin-bottom: 2px;
}

footer ul li a {
  border: none;
  padding-bottom: 1px;
  margin-bottom: -1px;
}

footer ul li a:hover {
  border-bottom: 1px solid white;
}

footer .footer-col {
  position: relative;
}

footer .footer-col .copyright-info {
  position: absolute;
  bottom: 0;
  font-size: .8rem;
  display: block;
  width: 50%;
}

footer .footer-col .copyright-info img {
  width: 100%;
}

/* =========================== */
/* Responsive !!!Ganz unten!!! */
/* =========================== */
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 919px) {
  .navbar-custom .row col.col-4.align-items-center.justify-content-end {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .navbar-custom .row .navbar-brand {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 767px) {
  .navbar-custom.nav-desktop {
    display: none;
  }
  .navbar-custom.nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=style.css.map */