.thehole {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* -------------------------- */

/* CSS */
.neo-button {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border-radius: 10px;
	border: 1px solid rgb(255 255 255);
	background: radial-gradient(circle at 0% 0%, rgba(0, 255, 255, 0.35), transparent 55%), radial-gradient(circle at 100% 100%, rgba(255, 0, 255, 0.25), transparent 55%), rgba(10, 10, 20, 0.9);
	color: #f5f5ff;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(0, 200, 255, 0.35);
}

/* subtle animated glow sweep */
.neo-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 100%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

/* neon outline */
.neo-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(0, 255, 255, 0.55);
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.neo-button:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 200, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.6);
}

.neo-button:hover::before {
  animation: neo-sweep 0.7s ease-out forwards;
  opacity: 1;
}

.neo-button:hover::after {
  opacity: 1;
}

.neo-button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.8),
    0 0 18px rgba(0, 200, 255, 0.35);
}

/* keyboard focus */
.neo-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 5px rgba(0, 200, 255, 0.65),
    0 18px 40px rgba(0, 0, 0, 0.9);
}

/* shimmer animation */
@keyframes neo-sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

/* -------------------------- */

.custom-checkbox .custom-control-label::before {
    border-radius: 2px;
}
.custom-control-label::before {
    border: 1px solid #ced4da;
    background-color: #fff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #301b24;
    background-color: #301b24;
    color: #e2e0de;
}

hr.fader {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

hr.faderright {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.break-word {
  word-wrap: break-word;
}

.social {
  transition-duration: 500ms;
}

.social:hover {
  transform: scale(1.3);
}

.social-back {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 6px;
}

.contact-box {
  min-height: 40px;
  padding: 12px;
  border: 1px solid #969696;
}

.parallax {
  /* The image and height specified inline */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.imgfixed {
  /* The image and height specified inline */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mycard {
  margin: 10px;
}

#coreModal iframe {
	max-width:100%;
}

/* 
Define this in your CSS 
.ease-in-outAnimation = Replace it by the name you want to give your animation
.easeinoutAnimObj = Assign this class to the elements to which you want to apply the animation
*/

.easeinoutAnimObj {
	position: relative;
	/* Chrome, Safari*/
	-webkit-animation-name: ease-in-outAnimation;
	-webkit-animation-duration: 5s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-delay: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	/* Mozilla */
	-moz-animation-name: ease-in-outAnimation;
	-moz-animation-duration: 5s;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-delay: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	-moz-animation-play-state: running;	
	/* Standard syntax */
	animation-name: ease-in-outAnimation;
	animation-duration: 5s;
	animation-timing-function: ease-in-out;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}

/* 
Define the keyframe and changes
*/

/* Chrome, Safari */
@-webkit-keyframes ease-in-outAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}

/* Firefox */
@-moz-keyframes ease-in-outAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}

/* Standard syntax */
@keyframes ease-in-outAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}

/* Core Overrides */

@media (min-width: 576px) {
    .container-small {
        width: 540px;
    }
} 

@media (min-width: 768px) {
    .container-small {
        width: 720px;
    }
}
@media (min-width: 992px) {
    .container-small {
        width: 720px;
    }
} 
@media (min-width: 1200px) {
    .container-small {
        width: 720px;
    }
}

.container {
    margin-bottom: 20px;
}

.inner-container {
    padding: 15px;
    margin: 5px;
    background-color: rgb(0 53 88 / 65%);
    border-radius: 20px;  
}

.container-small {
    max-width: 100%;
}

.form-control:focus {
  border-color: #476786;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
}
.has-error .form-control:focus { -webkit-box-shadow: none; box-shadow: none; }

.bootstrap-iso .form-control:focus {
  border-color: #476786;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.33);
}
.bootstrap-iso .has-error .form-control:focus { -webkit-box-shadow: none; box-shadow: none; }

