body {
  background: linear-gradient(180deg, #1290cb 0%, #8f1c8e 100%);
  color: #fff;
}

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

.offset {
  position: relative;
  z-index: 2;
}

.bold {
  font-weight: 700;
}

.titan-one-regular {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* NAV */
.nav-background {
  background-color: rgba(20, 144, 202, 0.7);
  backdrop-filter: blur(8px);
  width: 100%;
  position: fixed;
  z-index: 5;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 16px 24px;
}

.nav-link {
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: border 0.2s ease-in 0s;
  border-bottom: 1px solid transparent;
}

.nav-mobile {
  display: none;
}

#mobile-menu {
  border: none;
  background: unset;
  cursor: pointer;
}

.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-wrapper p {
  font-size: 32px;
  color: white;
  text-decoration: none;
}

.menu-to-hero {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

#close-mobile-menu {
  border: none;
  background: unset;
  cursor: pointer;
  width: fit-content;
  font-size: 40px;
  color: white;
}

.nav-mobile-menu {
  display: none;
}

.logo-img {
  width: 96px;
  height: 96px;
  transition: transform 0.9s ease-in-out 0s;
}

.logo-img:hover {
  transform: rotateZ(360deg);
}

.nav-link:hover {
  border-bottom: 1px solid #fff;
}

@media (max-width: 1024px) {
  .nav-wrapper {
    display: none;
  }

  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    background-color: #148fca;
    padding: 16px 24px;
    z-index: 5;
    transition: transform 0.3s ease-in 0s;
  }

  .nav-mobile {
    display: flex;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .nav-link {
    font-size: 16px;
  }

  .logo-img {
    width: 64px;
    height: 64px;
  }
}

.logo-img:hover {
  transform: rotateZ(360deg);
}

@media (max-width: 768px) {
  .nav-wrapper {
    gap: 16px;
    padding: 16px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logo-img {
    order: -1;
    display: block;
  }
}

/* NAV END */

/* HERO */

.hero-background {
  background: #1390cb;
  background: linear-gradient(
    180deg,
    rgba(19, 144, 203, 1) 0%,
    rgba(10, 104, 166, 1) 55%,
    rgba(8, 48, 100, 1) 97%
  );
  width: 100%;
  padding: 124px 24px 64px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto;
  gap: 120px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.hero-wrapper .konik {
  max-width: 425px;
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.hero-wrapper .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-wrapper .title {
  font-size: 120px;
  line-height: 0.9;
  color: #e0f7ff;
  margin-bottom: 48px;
}

.hero-wrapper .headline {
  font-size: 42px;
  line-height: 1.5;
  color: #e0f7ff;
  margin-bottom: 16px;
}

.hero-wrapper .description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 48px;
}

.hero-wrapper .button {
  position: relative;
  background-color: #fff;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.5;
  color: #083064;
  width: fit-content;
  padding: 20px 48px;
  transition:
    color 0.2s ease-in 0s,
    background-color 0.2s ease-in 0s;
}

.hero-wrapper .button:hover {
  background-color: #083064;
  color: #fff;
}

.hero-wrapper .button .bubbles-hero {
  width: 120px;
  height: 136px;
  position: absolute;
  right: -25%;
  top: -54%;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1024px) {
  .hero-background {
    padding: 96px 24px 0px;
  }
  .hero-wrapper {
    flex-direction: column;
    gap: 48px;
    padding: 24px 24px;
    text-align: center;
  }

  .hero-wrapper .content-wrapper {
    gap: 8px;
  }

  .hero-wrapper .konik {
    max-width: 225px;
    width: 100%;
  }

  .hero-wrapper .title {
    font-size: 64px;
    margin-bottom: 24px;
  }

  .hero-wrapper .headline {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-wrapper .description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-wrapper .button {
    font-size: 20px;
    padding: 16px 32px;
    margin: 0 auto;
  }

  .hero-wrapper .button .bubbles-hero {
    top: -70%;
  }
}

/* HERO END */

/* SECTION */

.section-background {
  background-color: #083064;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 24px 0px;
}

.section-wrapper {
  max-width: 1200px;
  width: 100%;
  height: 960px;
  position: relative;
}

.section-wrapper .koniki-1 {
  width: 207px;
  height: 320px;
  position: absolute;
  bottom: 4%;
  left: 9%;
}

.section-wrapper .koniki-2 {
  width: 624px;
  height: 737px;
  position: absolute;
  top: 12%;
  right: 5%;
}

.section-wrapper .section-content-primary {
  border-radius: 500px;
  background-color: #2c4b78;
  padding: 48px;
  width: 370px;
  height: 370px;
  max-width: 370px;
  max-height: 370px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8%;
  left: 6%;
  text-align: center;
  box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.section-content-primary h2 {
  font-size: 30px;
  line-height: 1.5;
}

.section-content-primary p {
  font-size: 16px;
  line-height: 1.5;
}

.section-wrapper .section-content-secondary {
  border-radius: 500px;
  background-color: #fff;
  color: #083064;
  padding: 40px;
  width: 312px;
  height: 312px;
  max-width: 312px;
  max-height: 312px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 52%;
  left: 32%;
  text-align: center;
  box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.section-content-secondary p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .section-background {
    padding: 124px 24px 16px;
  }

  .section-wrapper .koniki-1 {
    bottom: 0%;
    left: -11%;
    rotate: -10deg;
  }
}

@media (max-width: 576px) {
  .section-wrapper .section-content-primary {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 32px;
  }
  .section-wrapper .section-content-secondary {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-wrapper .koniki-2 {
    display: none;
  }
}

.slider-section-background {
  background: linear-gradient(180deg, #073063 0%, #8f1c8e 100%);
  height: 600px;
}

.slider-section-background {
  height: auto;
}

.slider-section-background p {
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
  text-align: center;
  padding: 148px 20px 96px;
}

.slider-section-background .slider-overflow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 0;
  margin-top: 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #8f1c8e #ffffff;
  white-space: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 24px;
  border-radius: 8px;
}

/* Custom scrollbar styling */
.slider-section-background .slider-overflow::-webkit-scrollbar {
  height: 4px;
  background: #ffffff;
}

.slider-section-background .slider-overflow::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 2px;
}

.slider-section-background .slider-overflow::-webkit-scrollbar-thumb {
  background: #8f1c8e;
  border-radius: 2px;
}

.slider-section-background .slider-overflow::-webkit-scrollbar-thumb:hover {
  background: #8f1c8e;
}

.slider-section-background .slider-item {
  min-width: 400px;
  height: 260px;
  background-color: #fff;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.slider-section-background .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1024px) {


  .slider-section-background p {
    padding: 112px 24px 48px;
  }

  .slider-section-background .slider-item {
    min-width: 200px;
    height: 160px;
  }
}

/* SLIDER END */

/* ANIMATION */

.animation-section-background {
  background-color: #8f1c8e;
  width: 100%;
  padding: 64px 24px 0px;
}

.animation-section-background .animation-wrapper {
  max-width: 1200px;
  width: 100%;
  height: 1000px;
  margin: 0 auto;
  position: relative;
}

.animation-wrapper .konik {
  width: 725px;
  height: 820px;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

.animation-wrapper .bubbles {
  height: 470px;
  width: 360px;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
}

.animation-wrapper .section-content-tertiary {
  border-radius: 500px;
  background-color: rgba(226, 64, 223, 0.2);
  padding: 48px;
  width: 370px;
  height: 370px;
  max-width: 370px;
  max-height: 370px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16%;
  right: 15%;
  text-align: center;
  box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
  backdrop-filter: blur(12px);
}

.section-content-tertiary h2 {
  font-size: 30px;
  line-height: 1.5;
}

.section-content-tertiary p {
  font-size: 16px;
  line-height: 1.5;
}

.plankton-1,
.plankton-2,
.plankton-3 {
  position: absolute;
  transition: all 0.7s ease-in-out;
  scale: 0.4;
  cursor: pointer;
}

.plankton-1 {
  left: 70%;
  top: 56%;
  transform: translate(-50%, -50%);
}

.plankton-2 {
  left: 78%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.plankton-3 {
  left: 76%;
  top: 60%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1248px) {
  .plankton-1 {
    left: 80%;
    top: 56%;
  }
  .plankton-2 {
    left: 88%;
    top: 50%;
  }
  .plankton-3 {
    left: 86%;
    top: 60%;
  }
}

@media (max-width: 1024px) {
  .plankton-1,
  .plankton-2,
  .plankton-3 {
    display: none;
  }
  .animation-section-background {
    padding: 124px 24px 0px;
  }

  .animation-section-background .animation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: start;
    padding: 24px;
  }

  .animation-wrapper .bubbles {
    width: 240px;
    height: auto;
    top: -64px;
  }

  .animation-wrapper .konik {
    width: 240px;
    height: 300px;
    left: 50%;
    bottom: 0;
    transform: translateX(-40%);
    z-index: 0;
  }

  .animation-section-background .animation-wrapper {
    height: 600px;
  }

  .animation-wrapper .section-content-tertiary {
    position: static;
    backdrop-filter: blur(8px);
  }
}

/* ANIMATION END */

/* IMAGE SECTION */

.image-section-background {
  background-color: #8f1c8e;
  width: 100%;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.image-section-transparent {
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #8f1c8e 0%, #073063 100%);
}

.image-section-background .image-section-wrapper {
  width: 100%;
  height: 100vh;
}

.image-section-background .image-section-wrapper img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .image-section-background {
    display: none;
    position: relative;
    top: 0;
    transform: translateY(0);
    background-color: #8f1c8e;
    padding: 0px 24px 32px;
  }
  .image-section-background .image-section-wrapper {
    height: auto;
    border-radius: 32px;
    overflow: hidden;
  }
  .image-section-transparent {
    display: none;
  }
}

.swiper-section-background {
  background-color: #073063;
  width: 100%;
  padding: 80px 24px 120px;
}

.swiper-section-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.swiper-section-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 670px;
  border-radius: 64px;
  backdrop-filter: blur(12px);
  z-index: 5;
  padding: 64px;
  background: linear-gradient(
    180deg,
    rgba(25, 140, 216, 0.575) 0%,
    rgba(164, 42, 213, 0.575) 100%
  );
  display: flex;
  flex-direction: row;
  gap: 64px;
  justify-content: space-evenly;
  align-items: center;
}

.swiper-section-content h2 {
  font-size: 42px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.swiper-section-content p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 476px;
  width: 100%;
}

.swiper-section-background .bubbles-1 {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: -240px;
  height: 510px;
  width: 370px;
  pointer-events: none;
  user-select: none;
}

.swiper-section-background .bubbles-2 {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: -240px;
  height: 460px;
  width: 390px;
  pointer-events: none;
  user-select: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 344px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
  border-radius: 32px;
  margin-bottom: 8px;
  pointer-events: none;
  user-select: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 12px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.4);
}

.prev {
  left: 12px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.4);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.text {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .swiper-section-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .swiper-section-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .swiper-section-content p {
    max-width: 100%;
    width: 100%;
  }
  .swiper-section-background {
    padding: 124px 24px 64px;
  }

  .swiper-section-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: start;
    padding: 32px;
    height: auto;
    width: 100%;
    border-radius: 32px;
  }
}

/* FOOTER */
.footer-background {
  padding: 64px 24px 96px;
  background-color: #792f98;
}

.footer-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 48px;
}

.footer-icon {
  min-width: 208px;
  min-height: 208px;
  border-radius: 500px;
  overflow: hidden;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.footer-copyright {
  margin-top: 64px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: end;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
}

.footer-contact b {
  font-size: 24px;
  line-height: 1.5;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.5;
  color: #f2f2f2;
}

.footer-contact a {
  font-size: 16px;
  line-height: 1.5;
  color: #f2f2f2;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-newsletter b {
  font-size: 24px;
  line-height: 1.5;
}

.footer-newsletter div {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.footer-newsletter div input {
  font-size: 16px;
  line-height: 1.5;
  color: #4d4d4d;
  border-radius: 500px;
  border: 1px solid #c4c4c4;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 240px;
  box-sizing: border-box;
}

.footer-newsletter div button {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4d4d4d;
  border-radius: 500px;
  border: 1px solid #c4c4c4;
  padding: 8px 24px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
  }

  .footer-background {
    padding: 0px;
  }
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: start;
    justify-content: start;
    padding: 24px;
  }

  .footer-icon {
    width: 160px;
    height: 160px;
  }

  .footer-contact {
    gap: 8px;
  }

  .footer-newsletter div {
    gap: 8px;
    flex-direction: column;
  }

  .footer-newsletter div input {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .footer-newsletter div button {
    width: 100%;
    box-sizing: border-box;
  }

  .footer-copyright {
    margin-top: 32px;
    padding-bottom: 64px;
  }
}
