.illustration-col {
  width: 100%;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
  /*box-shadow: 0 0 300px 50px rgba(255, 255, 255, 0.8);*/
}

@media (min-width: 1024px) {
  header .illustration img {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  header .img-responsive {
    transform: perspective(1800px) rotatex(60deg) scale(1.55);
    transform-origin: center bottom;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -512px;
    box-shadow: 0 0 300px 50px rgb(255, 255, 255);
    animation: glow 2s infinite alternate, rotate 10s linear infinite, float 4s ease-in-out infinite;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 250px 50px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 300px 50px rgba(255, 255, 255, 0.9);
  }
}

@media (min-width: 1200px) {
  .illustration-col {
    width: 1200px;
    margin-left: -600px;
  }
}

@media (min-width: 1024px) {
  header .illustration-col {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    width: 1024px;
    margin-left: -512px;
  }
}

@media (max-width: 1023px) {
  header .img-responsive {
    transform: none;
    margin: auto;
  }
}

.pagination-dot.active {
}

* {
  box-sizing: border-box;
}

@media (min-width: 1600px) {
  header .img-responsive {
    transform-origin: center bottom;
  }
}

.masthead {
  overflow: hidden;
}

@media (min-width: 992px) {
  col-xl-4 {
    margin-left: 16.66666667%;
  }
}

.illustration-col {
  float: left;
  overflow: inherit;
}

@media (max-width: 1023px) {
  header .row {
    display: block;
  }
}

cd-md-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  header.masthead {
    height: 100vh;
    min-height: 775px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-entry-buttons {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  gap: 14px;
  margin: 18px auto 12px;
  flex-wrap: wrap;
}

.hero-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-entry-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-entry-btn--mobile {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 173, 66, 0.95), rgba(242, 145, 0, 0.95));
  border: 1px solid rgba(255, 196, 112, 0.45);
  box-shadow: 0 10px 24px rgba(242, 145, 0, 0.24);
}

.hero-entry-btn--mobile:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(242, 145, 0, 0.3);
}

.hero-entry-btn--web {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-entry-btn--web:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .hero-entry-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero-entry-btn {
    width: min(88vw, 320px);
    min-width: unset;
    height: 50px;
    font-size: 16px;
    padding: 0 18px;
  }
}

