body {
  max-width: 100%;
}

.light-font-weight {
  font-weight: 300
}

.blue-text {
  color: #8DD3FE
}

.dark-blue-text {
  color: #70C4FB
}

.red-text {
  color: #F77E84
}

.dark-green-text {
  color: #00A80C
}

.green-text {
  color: #DBCB00
}

.yellow-text {
  color: #00A80C;
}

.neon-text-yellow {
  color: #00A80C;
  text-shadow:
    
    0 0 1px #00A80C,
    0 0 2px #DBCB00,
    0 0 3px #DBCB00; 
}

.neon-text-yellow-lg {
  color: #FFEE13;
  text-shadow:
    
    0 0 1px #FFEE13,
    0 0 2px #FFEE13,
    0 0 3px #DBCB00; 
    0 0 6px #DBCB00; 
}

.neon-text-yellow-small {
  font-size: 1.5rem;
  color: #00A80C;
  text-shadow:
    
    0 0 0px #00A80C,
    0 0 3px #DBCB00; 
}

.neon-text-green {
  color: #FFFFFF;
  text-shadow:
    0 0 0px  #FFFFFF,
    0 0 3px #FFFFFF,
    0 0 5px #DBCB00;
}

.neon-text-red {
    color: #A82A00; 
    text-shadow:
      0 0 12px #A82A00,
      0 0 16px #993300, 
      0 0 24px #993300,
      0 0 32px #993300;
}

.neon-text-red-lg {
    color: #FFFFFF; 
    text-shadow:
      0 0 5px #FFFFFF,
      0 0 12px #A82A00, 
      0 0 20px #A82A00;
}

.neon-text-red-small {
    font-size: 1.5rem;
    color: #A82A00; 
    text-shadow:
      0 0 0px #A82A00,
      0 0 2px #993300, 
      0 0 5px #993300;
}

.neon-text-red-xs-small {
    color: #fb5400; 
    text-shadow:
      0 0 0px #fb5400,
      0 0 1px #ff874a, 
      0 0 3px #ff874a;
}

.neon-text-blue {
    color: #ffffff; 
    text-shadow:
      0 0 12px #ffffff,
      0 0 16px #00032D, 
      0 0 24px #00032D;
}

.neon-text-blue-lg {
    color: #ffffff; 
    text-shadow:
      0 0 4px #ffffff,
      0 0 8px #00032D, 
      0 0 12px #00032D;
}


.custom-svg-color {
  fill: #DBCB00; /* Replace with the color you want */
}

.body {
  data-aos-duration: 800
  data-aos-easing: ease
  data-aos-delay: 0
  padding: 2rem
  margin: 5px
}

h5 {
  font-family: sans-serif;
  color: #F77E84;
}

.mission h3 {
  font-family: sans-serif;
  color: #F77E84;
}

.mission h2 {
  font-family: sans-serif
  color: #8DD3FE
  padding-bottom: 1em;
  line-height: calc(2rem + 1vw)
  
}

.mission p {
  color: #8DD3FE
}

.mission span {
  color: #FFFFFF
}

.mission h3 {
  color: #F77E84
}

.mission h2 {
  color: #8DD3FE
  font-weight: 300
}

a {
  text-decoration: none
}

.footer a, {
  color: #8DD3FE
}

.promotion main, {
  background-color: #F5FFEF
  color: #F5FFEF
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 2px 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff; 
  text-shadow:
    0 0 12px #ffffff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  min-width: max-content;
  left: 14px;
  top: calc(100% + 15px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  color: #FFF;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 250px;
}

.navbar .dropdown ul a {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  font-size: 1.1rem;
  color: #ffffff; 
  text-shadow:
    0 0 12px #ffffff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  background-color: #000; 
}

.navbar .dropdown .dropdown ul {
  min-width: max-content;
  top: 0;
  left: -100%;
  visibility: hidden;
  background-color: #000; 
}

.navbar .dropdown .dropdown:hover>ul {
  min-width: max-content;
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

.navbar .dropdown .dropdown .dropdown ul {
  top: 0; 
  left: -100%;  
  min-width: max-content;
  background-color: #000; 
}

.navbar .dropdown .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0; 
  left: -100%; 
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #f6b024;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: scroll;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff; 
  text-shadow:
    0 0 12px #ffffff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffffff; 
  text-shadow:
    0 0 12px #ffffff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #000;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 14px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffffff; 
  text-shadow:
    0 0 12px #ffffff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: 0;
  }
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary {
  background: #00A80C;
  border-color: #00A80C;
  color: #38b6ff; 
  text-shadow:
    0 0 12px #38b6ff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus {
  background: #00A80C;
  border-color: #00A80C;
  color: #38b6ff; 
  text-shadow:
    0 0 12px #38b6ff,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

/* button modifiers
 * ------------------------------------------------- */

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #00A80C;
  color: #FFFFFF; 
  text-shadow:
    0 0 12px #FFFFFF,
    0 0 16px #00032D, 
    0 0 24px #00032D;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #00A80C !important;
  border: 0.2rem solid #DBCB00;
  color: #FFFFFF;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}


.breadcrumb-chevron {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  gap: .35rem;
}
.breadcrumb-chevron .breadcrumb-item {
  display: flex;
  gap: inherit;
  align-items: center;
  padding-left: .5rem;
  line-height: 1;
}
.breadcrumb-chevron .breadcrumb-item::before {
  gap: inherit;
  float: none;
  width: 1rem;
  height: 1rem;
}

.breadcrumb-custom .breadcrumb-item {
  position: relative;
  flex-grow: .5;
  padding: .5rem;
}
.breadcrumb-custom .breadcrumb-item::before {
  display: none;
}
.breadcrumb-custom .breadcrumb-item::after {
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 1;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  content: "";
  background-color: var(--bs-dark-bg);
  border-top-right-radius: .5rem;
  box-shadow: 1px -1px var(--bs-border-color);
  transform: scale(.707) rotate(45deg);
}
.breadcrumb-custom .breadcrumb-item:first-child {
  padding-left: .5rem;
}
.breadcrumb-custom .breadcrumb-item:last-child {
  padding-right: .75rem;
}
.breadcrumb-custom .breadcrumb-item:last-child::after {
  display: none;
}

/* ===================================================================
 * # buttons - (_button.scss)
 *
 * ------------------------------------------------------------------- */


/* =================================================================== 
 * # additional components - (_others.scss)
 *
 * ------------------------------------------------------------------- */

/* ===================================================================
 * # home - (_site-layout.scss) 
 *
 * ------------------------------------------------------------------- */
.s-home {
  
  display: table;
  width: 100%;
  height: 100%;
  min-height: 1200px;
  background-color: #111111;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;  
  height: 100vh;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.s-home--static {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/hero-bg.jpg);
}

.s-home--particles {
  background: #141414;
  background: radial-gradient(circle, #141414 0%, black 100%);
}

.s-home--particles::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
  background: #000000;
}

.s-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  background-color: #000000;
}

.s-home .gradient-overlay {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  background: linear-gradient(to right, black 0%, black 20%, transparent 100%);
}

.info-is-visible .s-home {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}


/* -------------------------------------------------------------------
 * ## home slides  - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-slider-img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100vh;
}

.home-slider-img::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  background: linear-gradient(to right, black 0%, black 20%, transparent 100%);
}


/* -------------------------------------------------------------------
 * ## home particles   - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0;
  margin: 0;
  opacity: .35;
}

.home-particles canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* -------------------------------------------------------------------
 * ## site logo  - (_site-layout.scss) 
 * ------------------------------------------------------------------- */

.home-logo img {
  width: 100px;
  height: 25px;
}


/* ------------------------------------------------------------------- 
 * ## home content - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-content {
  display: table-cell;
  margin: 1em;
  padding-top: 0px;
}

.home-content h3 {
  font-family: "metropolis-medium", sans-serif;
  text-transform: uppercase;
  color: white;
}

.home-content h3::before {
  background-color: rgba(236, 0, 140, 0.6);
}

.home-content h1 {
  font-size: 6.4rem;
  color: #FFFFFF;
  letter-spacing: 0;
}

.home-content__main {
  position: relative;
  
}

.home-content__text p {
  font-size: 1.8rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.3);

}

.home-content__subscribe {
  max-width: 420px;
  margin: 4.2rem 0 0 0;
  padding: 0;
  position: relative;
}

#mc-form {
  width: 100%;
}

#mc-form input[type="email"] {
  width: 100%;
  height: 5.4rem;
  font-size: 1.5rem;
  line-height: 3rem;
  padding: 1.2rem 170px 1.2rem 24px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  margin-bottom: 1.8rem;
}

#mc-form input[type="email"]::-webkit-input-placeholder {
  color: white;
}

#mc-form input[type="email"]:-moz-placeholder {
  color: white;
}

#mc-form input[type="email"]::-moz-placeholder {
  color: white;
}

#mc-form input[type="email"]:-ms-input-placeholder {
  color: white;
}

#mc-form input[type="email"].placeholder {
  color: white !important;
}

#mc-form input[type=submit] {
  color: #FFFFFF;
  background: #00A80C;
  border-color: #00A80C;
  padding: 0 25px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

#mc-form label {
  color: #FFFFFF;
  font-family: "metropolis-regular", sans-serif;
  font-size: 1.3rem;
  padding: 0 2rem;
}

#mc-form label i {
  padding-right: 6px;
}

/* ------------------------------------------------------------------- 
 * ## home animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    -ms-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

.home-content__counter .days {
  font-family: "metropolis-extralight", sans-serif;
  font-size: 17.5rem;
  letter-spacing: -.5rem;
  padding-right: 6rem;
  margin-top: -0.9rem;
  color: #DBCB00;
}

.home-content__counter .days span {
  display: inline-block;
  font-family: "metropolis-regular", sans-serif;
  letter-spacing: 0;
  color: #FFFFFF;
  padding: 9px 12px;
  bottom: 1.3em;
  margin-left: 1.3em;
}

.home-content__line {
  display: block;
  width: 1px;
  height: 12rem;
  background-color: #ec008c;
}


/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: "metropolis-regular", sans-serif;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 6.6rem;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.home-social a {
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social li {
  position: relative;
  padding: .9rem 0;
}

.home-social li a {
  display: block;
  width: 36px;
  height: 36px;
}

.home-social i,
.home-social span {
  position: absolute;
  top: 0;
  line-height: 36px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social i {
  font-size: 20px;
  right: 0;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 36px;
}

.home-social span {
  font-size: 1.2rem;
  color: #ec008c;
  right: 6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.home-social span::after {
  display: block;
  content: "";
  width: 8px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 50%;
  right: -18px;
}

.home-social li:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


/* ------------------------------------------------------------------- 
 * ## home copyright - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-copyright {
  z-index: 502;
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.2);
  padding: 30px 60px 42px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.home-copyright a {
  color: rgba(255, 255, 255, 0.7);
}

.home-copyright span {
  display: inline-block;
}

.home-copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 .5rem 0 .8rem;
  color: rgba(255, 255, 255, 0.1);
}


/* animate .home-content__main
 * ------------------------------------------------------------------- */
html.ss-preload .home-content__main {
  opacity: 0;
}

html.ss-loaded .home-content__main {
  animation-duration: 2s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

html.no-csstransitions .home-content__main {
  opacity: 1;
}


/* ------------------------------------------------------------------- 
 * ## home animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    -ms-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}


@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    -ms-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    -ms-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    -ms-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

}

/*# sourceMappingURL=main.css.map */
