
/* ====================================================================
*** 	Brainwork FrontEnd Web Design Framework
*** 	Version 4.00.0001, mobile-first
*** 	Copyright 2025, Brainwork Factory AB
*** 	Created: 3/3/2025, by Daniel Back, Brainwork Factory
*** 	Latest Update: 3/4/2025, by Daniel Back, Brainwork Factory
*
======================================================================== */

/* || SITE ROOT STYLE
======================== */
:root {
  --border-radius: .5625rem;
  --button-border-radius: .25rem;
}

/* || MAIN STYLE
===================== */

/* || HERO STYLE
=================== */
.hero-box {
/*	grid-row: 1; */
	position: relative;
	margin-top: .195rem;
	margin-right: .425rem;
	margin-bottom: 0;
	margin-left: .275rem;
  justify-content: center;
	align-items: center;
	background-color: #7bff00;
	border-bottom: 3px solid #7bff00;
	border-right: 3px solid #7bff00;
	border-left: 1px solid #7bff00;
	border-top: 1px solid #7bff00;
	border-radius: .5625em;
	box-shadow: 3px 3px 3px #323232, 2px 2px 2px 1px rgba(255, 255, 255, 0.7) inset,
		3px 3px 9px 3px rgba(0, 0, 0, 0.7) inset, 3px 3px 9px 3px rgba(0, 0, 0, 0.4) inset;
}

h1.hero-heading {
	margin-left: .75rem;
	color: #d90368;
	text-shadow: 2px 3px 4px #000;
}

.hero-sub-heading {
	margin-left: 1.25rem;
  margin-top: .5rem;
	color: #d90368;
	text-shadow: 1px 1px 2px #000;
}

.hero-text {
	padding-left: 1rem;
	padding-right: .75rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .0625em;
}

button.hero-cta,
	.button.hero-cta {
    display: block;
    margin: 0 auto;
  	margin-bottom: .625rem;
		padding-top: .5rem;
	  padding-bottom: .5rem;
	  padding-left: 6.75rem;
	  padding-right: 6.75rem;
	  background-color: #d90368;
  	border: 2px solid #d90368;
    border-radius: 2rem;
    font-size: 1rem;
		box-shadow: 0px 0px 5px #FA0378, 2px 2px 2px 1px rgba(255, 255, 255, 0.4) inset,
		  2px 2px 9px 2px rgba(0, 0, 0, 0.7) inset, 2px 2px 9px 2px rgba(0, 0, 0, 0.4) inset;
}

button.hero-alt,
	.button.hero-alt {
    display: block;
    margin: 0 auto;
  	margin-bottom: 1.25rem;
	  padding-top: .5rem;
	  padding-bottom: .5rem;
	  padding-left: 6.75rem;
	  padding-right: 6.75rem;
    background-color: #fff;
	  color: #d90368;
	  border: 2px solid #fff;
    border-radius: 2rem;
    font-size: 1rem;
    box-shadow: 0px 0px 3px #D4D2D2, 2px 2px 2px 1px rgba(255, 255, 255, 0.4) inset,
		  2px 2px 9px 2px rgba(0, 0, 0, 0.7) inset, 2px 2px 9px 2px rgba(0, 0, 0, 0.4) inset;
}

section {
  margin: 0;
 /* margin-top: .375rem; */
  padding: 0; /* .375rem; */
  background: transparent;
  border: 1px solid #333;
}
/*
article {
  padding-left: 1rem;
}
*/

/*
section {
  margin: 0;

  padding: 0;
  background: transparent;
  border: 1px solid #333;
}
*/

article {
  margin-top: .375rem;
  padding: .375rem;
  padding-top: 0;
  background-color: transparent;
  border: 0px solid #0c32f0;
}

article h1,
article h2 {
  margin: 0;
  padding: .25rem;
  padding-top: .775rem;
  padding-left: 0;
  padding-right: 0;
  border: 0px solid #333;
}

aside {
  margin: 0;
  margin-top: .375rem;
  padding: .375rem;
  border: 1px solid #f0320c;
  background: transparent;
  color: #fff;
}

/*
@media screen and (min-width: 75em) {
  main {
    background-color: #2f2f2f;
  }
}
*/

/* || SLIDESHOW STYLE
======================== */
/* Slideshow container */
.slideshow-container {
  max-width: 100%; /* 1000px; */
  position: relative;
  margin: 0 auto;
}

/* Hide the images by default */
.mySlides {
  display: 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;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/4 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.x-active, .dot:hover {
  background-color: #1c53de;  /* #717171; */
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}