@charset "UTF-8";
/* CSS Document */

.hero {
	background-color: var(--act-primary-light);
	border-bottom: 5px solid var(--act-alt);
	background-image: url('/wp-content/uploads/2024/07/hexagon-shape.svg');
	background-repeat: no-repeat;
	background-size: 70%;
	background-position: left -60% top 12%;
}

/*.hero .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-image: linear-gradient(to right, var(--act-primary-dark), var(--black));
	opacity: 1;
}*/

.hero .boxed {
	position: relative;
	z-index: 9;
}

.hero .col-2 {
	gap: 100px;
}

.hero .img-col img {
	width: 100%;
	min-height: 400px;
}

.hero .text-box {
	align-items: center;
	justify-content: end;
}

.hero .text-box h1 {
	color: var(--text);
	font-weight: 300;
	font-size: 70px;
	line-height: 80px;
}

.hero .text-box h1::after {
	background-color: var(--act-alt);
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
	margin-left: 4px;
}

.hero .text-box act {
	background: repeating-linear-gradient(135deg, rgba(0,0,0,0), rgba(0,0,0,0) 8px, var(--act-alt) 8px, var(--act-alt) 10px);
	padding: 0 10px;
	font-size: 100px;
	line-height: 110px;
	text-shadow: 0 0 10px var(--act-primary-dark);
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	
}

@media screen and (max-width: 768px) {
    .hero .text-box h1 {
		font-size: 50px;
		line-height: 60px;
	}
}