
header {
    position: absolute;
}

body {
    background: rgb(10, 10, 10);
	/*background: #0B0C10;*/
}

/* Hero Section */

.hero {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 580px;
    padding: 40px 0 0 0;
    background-image: linear-gradient(
            to top,
            rgba(10, 10, 10, 1),
            rgba(10, 10, 10, 0.75)
        ),
        url("../images/kbs-floor.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    align-items: stretch;
}

@media (max-width: 991px) {
	.hero {
		background-attachment: scroll;
	}
}

.hero-body {
    display: flex;
    flex-flow: column wrap;
    flex: 0 0 99%;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 0 50px;
}

.hero .hero-body strong {
	font-weight: 300;
	text-transform: uppercase;
	font-size: .750rem;
	letter-spacing: 2px;
}

.hero .hero-body h1 {
	color: white;
	text-transform: uppercase;
	line-height: 1;
	margin-top: .75rem;
	margin-bottom: .5rem;
	font-size: 4.4rem;	
}

.hero .hero-body h1:after {
    content: '';  /* No need for '-' content since we're using a background gradient */
    display: none;  /* Makes the pseudo-element block-level */
    width: 200px;  /* Length of the dash (can adjust this) */
    height: 2px;  /* Thickness of the dash */
    margin: .8rem auto;  /* Centers the dash horizontally */
    
    /* Background gradient to create the fade effect */
    background: linear-gradient(to right, transparent 0%, #1A33CC 30%, #1A33CC 70%, transparent 100%);
}


.hero .hero-body p {
	margin-bottom: 20px;
	color: #f5f5f5;
	line-height: 1.65;
	font-family: "Reakt";
	font-weight: 300;
	overflow-wrap: break-word;
	font-size: 1.5rem;
	text-align: left;
}

.hero .hero-body .hero-btn a,
.hero .hero-body .hero-btn button {
	background: transparent;
	border: 1px solid #1A33CC;
	background: #DAFF45;
    padding: 8px 36px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0px;
    border-radius: 20px;
    line-height: 1;
	color: #1A33CC;
	color: black;
	font-family: 'Reakt';
	font-weight: 700;
	
	display: none;
}
.hero .hero-body .hero-btn a:hover,
.hero .hero-body .hero-btn button:hover {
    color: black;
	background: #1A33CC;
    cursor: pointer;
}

/* Container for centering the button */
.hero-button {
	display: inline-block;
	margin: 0px;  /* Add some space around the button */
}

/* Button Styling */
.hero-button a {
	display: inline-block;
	padding: 6px 35px;
	background: linear-gradient(45deg, #DAFF45, #DAFF45);  /* Gradient background */
	color: black;  /* Dark text color */
	font-size: .750rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;  /* Rounded corners */
	position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Soft shadow for depth */
	transition: all 0.3s ease;  /* Smooth transition for hover effects */
}

/* Hover effect: subtle background shift and scaling */
.hero-button a:hover {
	background: linear-gradient(45deg, #DAFF45, #DAFF45);  /* Inverted gradient */
}

/* Focus state: Light focus ring for accessibility */
.hero-button a:focus {
	outline: none;
}


/* CTA Section */

.cta {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 680px;
    padding: 40px 0 0 0;
    background-image: linear-gradient(
            to bottom,
            rgba(10, 10, 10, 1),
            rgba(10, 10, 10, 0.75),
			rgba(10, 10, 10, 1)
        ),
        url("../images/graham-mansfield-2j6IzAIbifQ-unsplash.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    align-items: stretch;
}

.cta {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 680px;
    padding: 40px 0 0 0;
    background-image: linear-gradient(
            to bottom,
            rgba(10, 10, 10, 1),
            rgba(10, 10, 10, 1),
			rgba(10, 10, 10, 1)
        ),
        url("../images/graham-mansfield-2j6IzAIbifQ-unsplash.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    align-items: stretch;
}

.cta-body {
    display: flex;
    flex-flow: column wrap;
    flex: 0 0 99%;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 0 50px;
	margin-bottom: 20px;
}

.cta .cta-body h1 {
    letter-spacing: 0px;
    color: white;
    text-transform: uppercase;
	line-height: 1;
}

.cta .cta-body p {
    color: #f5f5f5;
	margin-bottom: 20px;
}

.cta .cta-body .cta-btn a,
.cta .cta-body .cta-btn button {
    background: #DAFF45;
	border: 1px solid #DAFF45;
    color: black;
    padding: 8px 36px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0px;
    border-radius: 20px;
    line-height: 1;
	font-family: 'Reakt';
	font-weight: 700;
}
.cta .cta-body .cta-btn a:hover,
.cta .cta-body .cta-btn button:hover {
    color: black;
	background: #DAFF45;
    cursor: pointer;
}


/* Figures with images */

figure.main {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    min-height: 420px;
	margin: 0 auto;
	background: none;
	margin-bottom: 5px;
	border-radius: 4px;
	width: 98%;
	margin-left: 1%;
	border-top: 2px solid #111;
}

figure .button {
	background: transparent;
	border: 1px solid #DAFF45;
    color: #DAFF45;
    padding: 7px 36px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 20px;
    line-height: 1;
	margin-top: 1rem;
	max-width: 180px;
	font-family: 'Reakt';
	font-weight: 700;
}
figure .button:hover {
    color: black;
	background: #DAFF45;
    cursor: pointer;
	&.gold {
		 background: rgba(212, 175, 55, 1);
		 color: white;
	}	
}
figure.main:nth-of-type(2) {
	border-bottom: 0px solid #181818;
}
figure.main:nth-of-type(12) {
	border-top: 2px solid #181818;
}
figure.main:nth-of-type(9) {
	border-top: 2px solid #181818;
    background-image: linear-gradient(
            to top,
            rgba(10, 10, 10, 0.75),
            rgba(10, 10, 10, 0.75)
        ),
        url("../images/graham-mansfield-2j6IzAIbifQ-unsplash.jpg");
	background: none;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    align-items: stretch;
	& figcaption p {}
	& picture {}
	& .button {
		border: 1px solid rgba(107, 122, 187, 1);
		color: rgba(107, 122, 187, 1);
	}
	& .button:hover {
		background: rgba(107, 122, 187, 1);
		color: white;
	}
	
}

figure.main figcaption {
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 30%;
    padding: 50px 2.5% 50px 2.5%;
    align-content: center;
    justify-content: center;
}

figure.main figcaption h2 {
    color: white;
    line-height: 1.15;
	margin-bottom: 0px;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-size: 1.35rem;
}

figure.main figcaption h3 {
    font-family: "Roboto Mono";
    font-weight: normal;
    font-size: 0.75rem;
    padding: 0 0 0 0;
    color: rgba(192, 192, 192, 1);
    line-height: 1.5;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0px;
	span {
		color: #DAFF45;
	}
	span.gray {
		color: rgba(150 ,150 ,150, 1)
	}	
	span.purple {
		color: rgba(107, 122, 187, 1);
	}	
}	

figure.main figcaption > p {
	font-size: 1rem;
	color: #777;
	color: #f5f5f5;
	margin-bottom: 1rem;
}

figure.main figcaption li p {
	font-size: .875rem;
}

figure.main picture {
    display: flex;
    flex-flow: column nowrap;
    padding: 50px 2.5% 50px 7.5%;
    flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

figure.main picture img {
    width: 300px;
    height: 300px;
    border: 0;
    border: none;
    border-radius: 50%;
    margin: auto;
    box-shadow: 0px 0px 3px 3px rgba(8, 8, 8, 0.45);
	outline: 0px solid rgba(18, 18, 18, 1);
	object-fit: cover;
}


/* Animations */
	.fade-on-scroll {
		opacity: 0;
	}
	@keyframes fadeInUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
	}
	.fade-in-up {
		animation: 0.75s both fadeInUp;
	} 	

@media (max-width: 576px) {
    .hero {
        background-position: bottom;
    }	
    figure.main {
        flex-flow: column wrap;
    }		
    figure.main figcaption {
        text-align: left;
		margin: auto;
    }	
    figure.main a {
        margin: 20px auto 0 auto;
    }	
}
