/* Basic Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Variables */
:root {
	--color-primary: #001689;
	--color-alpha-primary: rgba(0, 22, 137, .72);
	--color-light-primary: #0054a4;
	--color-accent: #fad107;
	--color-light: #FFFFFF;
	--color-slight-light: #eceff6;
	--color-dark: #58595b;
	--font-primary: korolev, 'Arial Narrow', sans-serif;
	--font-secondary: korolev, 'Arial Narrow', sans-serif;
}


/* Base */
body {
	font-family: var(--font-primary);
	color: var(--color-dark);
	line-height: 1.2;
	min-width: 360px;
}

.homepage-2025 section {
	padding:0 15px;
}

.homepage-2025 .container {
	width: 100%;
	max-width: 1200px;
	padding:0 30px;
	margin: 0 auto;
}

.homepage-2025 h1,
.homepage-2025 h2,
.homepage-2025 h3,
.homepage-2025 h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: bold;
}
.homepage-2025 h1 {
	font-size: 2rem;
}
.homepage-2025 h2 {
	font-size: 1.5rem;
}
.homepage-2025 h3 {
	font-size: 1.15rem;
}
.homepage-2025 h4 {
	font-size: 1rem;
}

.homepage-2025 .button {
	display: inline-block;
	font-size: 1.15rem; 
	color: var(--color-primary);
	padding: 10px 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	background-color: transparent;
	border: 3px solid var(--color-accent);
	border-radius: 0;
}
.homepage-2025 .button:hover {
	background-color: var(--color-accent);
}

.homepage-2025 .rule {
	margin:0 -30px;
}
.homepage-2025 .rule div {
	width: 100%;
	height: 15px;
	border: 3px solid var(--color-accent);
	border-top: none;
}
.homepage-2025 .rule div:nth-child(2) {
	border-bottom: none;
}

/* Sections */

.homepage-2025 section.hero {
	background-size: cover;
	background-position: center;
}
.homepage-2025 section.hero .container {
	padding: 0;
}
.homepage-2025 section.hero .hero-content {
	position:relative;
	display:inline-block;
	color: var(--color-accent);
	background-color: var(--color-alpha-primary);
	padding:80px 30px 80px 30px;
}
.homepage-2025 section.hero .hero-content h1 {
	margin:0;
}
.homepage-2025 section.hero .arrow-container {
	position: absolute;
	width:100px;
	left:-100px;
	top:0;
	bottom:0;
	background-color: var(--color-alpha-primary);
}
.homepage-2025 section.hero .arrow-container .arrow-line {
	position: absolute;
	right: 50px;
	width: calc(50vw - 650px);
	height:150px;
	top:50%;
	margin-top: -75px;
	background-color: var(--color-accent);
}
.homepage-2025 section.hero .arrow-container .arrow-head {
	position: absolute;
	right: 1px;
	top:50%;
	margin-top: -75px;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 75px solid transparent;
	border-bottom: 75px solid transparent;
	border-left: 50px solid #fad107;
	border-right: 0;
}


.homepage-2025 section.intro {
	color: var(--color-primary);
	background-color: var(--color-slight-light);
	padding-top: 35px;
	padding-bottom: 70px;
}
.homepage-2025 section.intro p {
	color: var(--color-primary);
}
.homepage-2025 section.intro .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}
.homepage-2025 section.intro .intro-text {
	width: 100%;
}
.homepage-2025 section.intro .intro-text h2 {
	padding-right: 0;
}
.homepage-2025 section.intro .intro-text p {
	font-size: 1.25rem;
	font-weight: bold;
}
.homepage-2025 section.intro .intro-cta {
	width: 100%;
	padding-top: 30px;
	padding-left: 0;
	padding-bottom: 30px;
	border-top: 3px solid var(--color-accent);
	border-left: none;
}
.homepage-2025 section.intro .intro-cta p {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 15px;
}


.homepage-2025 section.feature {
	margin-top: -35px;
	padding-bottom: 60px;
}
.homepage-2025 section.feature .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}
.homepage-2025 section.feature .feature-image {
	position: relative;
	width: 100%;
	margin-left: -45px;
}
.homepage-2025 section.feature .feature-image img {
	display: block;
	width:100%;
	height:auto;
}
.homepage-2025 section.feature .feature-image .feature-image-caption {
	position: absolute;
	bottom:0;
	right:0;
	max-width: 400px;
	background-color: var(--color-primary);
	padding: 10px 20px;
	margin-left: 15px;
}
.homepage-2025 section.feature .feature-image .feature-image-caption p {
	font-size: 0.9rem;
	line-height: 1.1rem;
	color: var(--color-light);
	margin: 0;
}
.homepage-2025 section.feature .feature-text {
	width: 100%;
	padding-top: 0;
}
.homepage-2025 section.feature .feature-text h2 {
	color: var(--color-primary);
}
.homepage-2025 section.feature .feature-text p {
	color: var(--color-dark);
	font-size: 1.0rem;
	line-height: 1.35rem;
	margin-bottom: 15px;
}
.homepage-2025 section.feature .feature-text p strong,
.homepage-2025 section.feature .feature-text p b {
	font-size: 1.25rem;
	color: var(--color-primary);
}



.homepage-2025 section.services {
	background-size: cover;
	background-position: top center;
	padding-top: 60px;
	padding-bottom: 130px;
}
.homepage-2025 section.services h2 {
	color: var(--color-primary);
	margin-bottom: 0;
}
.homepage-2025 section.services .rule {
	margin-bottom: 25px;
}
.homepage-2025 section.services .services-grid {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	margin:0 -30px;
}
.homepage-2025 section.services .service-card {
	flex-basis: calc(33% - 20px);
	background-color: var(--color-light);
}
.homepage-2025 section.services .service-card-image img {
	width: 100%;
	height: auto;
}
.homepage-2025 section.services .service-card-text p {
	color: var(--color-dark);
	font-size: 1.0rem;
	line-height: 1.35rem;
	margin-bottom: 15px;
}
.homepage-2025 section.services .service-card-text {
	padding: 30px 30px;
}
.homepage-2025 section.services .service-card h3 {
	color: var(--color-primary);
	margin-bottom: 15px;
}
.homepage-2025 section.services .service-card h3:after {
	content: "";
	display: block;
	width: 40px;
	height: 15px;
	border-bottom: 3px solid var(--color-accent);
}


.homepage-2025 section.highlights {
	margin-top: -70px;
	padding-bottom: 60px;
}
.homepage-2025 section.highlights .container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	background-color: var(--color-primary);
	color: var(--color-light);
	padding: 60px 30px;
	max-width: 1230px;
}
.homepage-2025 section.highlights .container p {
	color: var(--color-light);
}
.homepage-2025 section.highlights .container .box {
	position: absolute;
	width:1px;
	left:0;
	top:0;
	bottom:0;
	background-color: var(--color-primary);
}
.homepage-2025 section.highlights .container .box .line {
	position: absolute;
	right:1px;
	top:0;
	bottom:0;
	width: calc(50vw - 600px);
	min-width: 30px;
	background-color: var(--color-primary);
}
.homepage-2025 section.highlights .highlights-text {
	position: relative;
	width: 100%;
}
.homepage-2025 section.highlights .highlights-image {
	margin-bottom: 20px;
}
.homepage-2025 section.highlights .highlights-image img {
	width: 100%;
	height: auto;
}
.homepage-2025 section.highlights .highlights-text h2 {
	color: var(--color-accent);

}
.homepage-2025 section.highlights .highlights-text p {
	font-size: 1.5rem;
	padding-right: 0;
}
.homepage-2025 section.highlights .highlights-grid {
	width: 100%;
}
.homepage-2025 section.highlights .highlight-card {
	padding-bottom: 20px;
	border-bottom: 3px solid var(--color-accent);
	margin-bottom: 20px;
}
.homepage-2025 section.highlights .highlight-card:last-child {
	padding-bottom: 0;
	border: none;
	margin-bottom: 0;
}
.homepage-2025 section.highlights .highlight-card h3 {
	color: var(--color-accent);
	margin-bottom: 0;
}
.homepage-2025 section.highlights .highlight-card p {
	font-size:1.25em;
}


.homepage-2025 section.capabilities .capabilities-header {
	background-size: cover;
	background-position: center;
	padding:60px 15px 90px 15px;
	margin:0 -15px;
}
.homepage-2025 section.capabilities .capabilities-header h2 {
	color: var(--color-accent);
	margin-bottom: 0;
}
.homepage-2025 section.capabilities .capabilities-header p {
	color: var(--color-light);
	font-size: 1.5rem;
}
.homepage-2025 section.capabilities .capabilities-grid {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding-bottom: 60px;
	margin:-60px -30px 0 -30px;
}
.homepage-2025 section.capabilities .capability-card {
	background-color: var(--color-slight-light);
	width: 100%;
	padding: 30px 30px;
}
.homepage-2025 section.capabilities .capability-card h3 {
	color: var(--color-primary);
	margin-bottom: 15px;
}
.homepage-2025 section.capabilities .capability-card h3:after {
	content:"";
	display:block;
	width:40px;
	height:15px;
	border-bottom: 3px solid var(--color-accent);
}
.homepage-2025 section.capabilities .capability-card p {
	color: var(--color-dark);
	font-size:1.0rem;
	line-height: 1.35rem;
	margin-bottom:15px;
}


.homepage-2025 section.testimonial {
	padding-bottom: 60px;
}
.homepage-2025 section.testimonial .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding:0 30px;
}
.homepage-2025 section.testimonial .testimonial-image {
	position: relative;
	width: 100%;
}
.homepage-2025 section.testimonial .testimonial-image img {
	width: 100%;
	height: auto;
}
.homepage-2025 section.testimonial .testimonial-image .quotation-mark {
	position: absolute;
	top: inherit;
	bottom: -30px;
	left: 0;
	right: inherit;
	width: 60px;
}
.homepage-2025 section.testimonial .testimonial-text {
	width: 100%;
}
.homepage-2025 section.testimonial .testimonial-text .testimonial-quote {
	margin-bottom: 15px;
}
.homepage-2025 section.testimonial .testimonial-text .testimonial-quote p {
	color: var(--color-primary);
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: none;
	padding-right: 0;
}
.homepage-2025 section.testimonial .testimonial-text .testimonial-quote:after {
	content:"";
	display:block;
	width:90px;
	height:15px;
	border-bottom: 3px solid var(--color-accent);
}
.homepage-2025 section.testimonial .testimonial-source p {
	color: var(--color-light-primary);
	font-size: 1.15rem;
	font-weight: bold;
}


footer.homepage-2025 .footer-top {
	background-color: var(--color-slight-light);
	padding-top: 60px;
	padding-bottom: 60px;
}
footer.homepage-2025 .footer-top .rule {
	margin-bottom: 40px;
}
footer.homepage-2025 .footer-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}
footer.homepage-2025 .footer-col {
	width: 100%;
}
footer.homepage-2025 .footer-col.contact {
	width: 100%;
}
footer.homepage-2025 .footer-col.contact p {
	color: var(--color-primary);
	font-size: 1.5rem;
	font-weight: bold;
	padding-right: 0;
	margin-bottom: 15px;
}
footer.homepage-2025 .footer-col h4 {
	color: var(--color-primary);
}
footer.homepage-2025 .footer-col ul {
	list-style: none;
}
footer.homepage-2025 .footer-col ul li {
	margin-bottom: 10px;
}
footer.homepage-2025 .footer-col ul li a {
	color: var(--color-light-primary);
	font-size: 1.0em;
	font-weight: bold;
	text-decoration: none;
}
footer.homepage-2025 .footer-bottom {
	background-color: var(--color-primary);
	padding-top:60px;
	padding-bottom: 60px;
}
footer.homepage-2025 .footer-bottom .container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
footer.homepage-2025 .footer-logo {
	width: 40%;
	padding-right: 30px;
	margin-bottom: 30px;
}
footer.homepage-2025 .footer-logo img {
	width:100%;
	max-width: 310px;
	min-width: 240px;
	height: auto;
}
footer.homepage-2025 .footer-text {

}
footer.homepage-2025 .corporate {
	display: flex;
	margin-bottom: 30px;
}
footer.homepage-2025 .corporate-icon {
	width: 35px;
	height: 35px;
	padding-right: 60px;
	border-right: 3px solid var(--color-accent);
}
footer.homepage-2025 .corporate-icon a,
footer.homepage-2025 .corporate-icon a img {
	display: block;
	width: 35px;
	min-width: 35px;
	height: 35px;
}
footer.homepage-2025 .corporate-link {
	font-size: 1.0rem;
	line-height: 35px;
	padding-left: 25px;
	vertical-align: middle;
}
footer.homepage-2025 .corporate-link a {
	color: var(--color-accent);
	font-weight: bold;
	text-decoration: none;

}
footer.homepage-2025 .subfooter {
	display: flex;
	flex-direction: column;
	color: var(--color-light);
}
footer.homepage-2025 .subfooter-icon {
	padding-right: 30px;
	margin-bottom: 30px;
}
footer.homepage-2025 .subfooter-text {
	margin-bottom: 30px;
}
footer.homepage-2025 .subfooter-icon img {
	display: block;
	width: 50px;
	min-width: 50px;
	height: auto;
}
footer.homepage-2025 .subfooter .contact {
	display: flex;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--color-accent);
	margin-bottom: 10px;
}
footer.homepage-2025 .subfooter .contact-address {
	padding-right: 10px;
	border-right: 1px solid var(--color-accent);
}
footer.homepage-2025 .subfooter .contact-address br {
	display: none; 
}
footer.homepage-2025 .subfooter .contact-phone {
	padding-left: 10px;
}
footer.homepage-2025 .subfooter .fine-print {
	font-size:0.8rem;
}
footer.homepage-2025 .subfooter .fine-print a {
	color: var(--color-light);
	text-decoration: none;
}

/* Mobile-first Media Queries */

/* sm - 544px */
@media (min-width:544px){
	.homepage-2025 h1 {
		font-size: 2rem;
	}
	.homepage-2025 h2 {
		font-size: 1.5rem;
	}
	.homepage-2025 h3 {
		font-size: 1.15rem;
	}
	.homepage-2025 h4 {
		font-size: 1rem;
	}
}

/* md - 768px */
@media (min-width:768px){
	.homepage-2025 h1 {
		font-size: 2.5rem;
	}
	.homepage-2025 h2 {
		font-size: 2rem;
	}
	.homepage-2025 h3 {
		font-size: 1.35rem;
	}
	.homepage-2025 h4 {
		font-size: 1rem;
	}
	.homepage-2025 section.intro .container {
		flex-direction: row;
	}
	.homepage-2025 section.feature .container {
		flex-direction: row;
	}
	.homepage-2025 section.services .services-grid {
		flex-direction: row;
	}
	.homepage-2025 section.highlights .container {
		flex-direction: row;
	}
	.homepage-2025 section.capabilities .capabilities-grid {
		flex-direction: row;
	}
	footer.homepage-2025 .footer-nav {
		flex-direction: row;
	}
	footer.homepage-2025 .subfooter {
		flex-direction: row;
	}
	footer.homepage-2025 .subfooter .contact {
		flex-direction: row;
	}

	.homepage-2025 .button {
		font-size: 1.35rem; 
		padding: 10px 15px;
	}
	.homepage-2025 section.hero .hero-content {
		padding:160px 80px 160px 30px;
	}
	.homepage-2025 section.intro {
		padding-top: 70px;
		padding-bottom: 140px;
	}
	.homepage-2025 section.intro .intro-text {
		width: 75%;
	}
	.homepage-2025 section.intro .intro-text p {
		font-size: 1.75rem;
	}
	.homepage-2025 section.intro .intro-cta {
		width: calc(25% - 3px);
		padding-top: 0;
		padding-left: 30px;
		border-top: none;
		border-left: 3px solid var(--color-accent);
	}
	.homepage-2025 section.intro .intro-cta p {
		font-size: 1.5rem;
	}
	.homepage-2025 section.feature {
		margin-top: -70px;
		padding-bottom: 85px;
	}
	.homepage-2025 section.feature .feature-image {
		width: 66%;
	}
	.homepage-2025 section.feature .feature-image .feature-image-caption {
		padding: 15px 30px;
	}
	.homepage-2025 section.feature .feature-text {
		width: 34%;
		padding-top: 100px;
	}
	.homepage-2025 section.feature .feature-text p {
		font-size: 1.15rem;
		line-height: 1.35rem;
	}
	.homepage-2025 section.feature .feature-text p strong,
	.homepage-2025 section.feature .feature-text p b {
		font-size: 1.5rem;
	}
	.homepage-2025 section.services {
		padding-top: 85px;
		padding-bottom: 240px;
	}
	.homepage-2025 section.services .service-card {
		flex-basis: calc(33% - 20px);
	}
	.homepage-2025 section.services .service-card-text p {
		font-size:1.15rem;
		line-height: 1.35rem;
	}
	.homepage-2025 section.services .service-card-text {
		padding:45px 30px;
	}
	.homepage-2025 section.highlights {
		margin-top: -145px;
		padding-bottom: 120px;
	}
	.homepage-2025 section.highlights .container {
		padding:65px 45px;
	}
	.homepage-2025 section.highlights .highlights-text {
		width: calc(45% - 30px);
	}
	.homepage-2025 section.highlights .highlights-text p {
		font-size: 1.75rem;
	}
	.homepage-2025 section.highlights .highlights-grid {
		width: 55%;
	}
	.homepage-2025 section.highlights .highlight-card p {
		font-size:1.5em;
	}
	.homepage-2025 section.capabilities .capabilities-header {
		padding:260px 15px 140px 15px;
	}
	.homepage-2025 section.capabilities .capabilities-header p {
		font-size: 1.75rem;
	}
	.homepage-2025 section.capabilities .capabilities-grid {
		padding-bottom: 175px;
		margin:-90px -30px 0 -30px;
	}
	.homepage-2025 section.capabilities .capability-card {
		width: calc(50% - 10px);
		padding: 45px 30px;
	}
	.homepage-2025 section.capabilities .capability-card p {
		font-size:1.15rem;
		line-height: 1.35rem;
	}
	.homepage-2025 section.testimonial {
		padding-bottom: 130px;
	}
	.homepage-2025 section.testimonial .container {
		flex-direction: row;
		padding:0;
	}
	.homepage-2025 section.testimonial .testimonial-image {
		width: 40%;
	}
	.homepage-2025 section.testimonial .testimonial-image .quotation-mark {
		top: -65px;
		bottom: inherit;
		left: inherit;
		right: -20px;
		width: 120px;
	}
	.homepage-2025 section.testimonial .testimonial-text {
		width: calc(60% - 30px);
	}
	.homepage-2025 section.testimonial .testimonial-text .testimonial-quote p {
		font-size: 1.75rem;
	}
	.homepage-2025 section.testimonial .testimonial-source p {
		font-size: 1.25rem;
	}
	footer.homepage-2025 .footer-top {
		padding-bottom: 95px;
	}
	footer.homepage-2025 .footer-col {
		width: 20%;
	}
	footer.homepage-2025 .footer-col.contact {
		width: 40%;
	}
	footer.homepage-2025 .footer-col.contact p {
		font-size: 1.75rem;
	}
	footer.homepage-2025 .footer-col ul li a {
		font-size: 1.15em;
	}
	footer.homepage-2025 .footer-logo {
		width: 100%;
	}
	footer.homepage-2025 .subfooter .contact-address {
		white-space: nowrap;
	}
	footer.homepage-2025 .subfooter .fine-print {
		white-space: nowrap;
	}
}

/* lg - 1024px */
@media (min-width:1024px){
	.homepage-2025 h1 {
		font-size: 2.75rem;
	}
	.homepage-2025 h2 {
		font-size: 2.25rem;
	}
	.homepage-2025 h3 {
		font-size: 1.5rem;
	}
	.homepage-2025 h4 {
		font-size: 1.15rem;
	}
	.homepage-2025 section.intro .intro-text h2 {
		padding-right: 31%;
	}
	.homepage-2025 section.highlights .highlights-text p {
		padding-right: 15%;
	}
	.homepage-2025 section.testimonial .testimonial-text .testimonial-quote p {
		padding-right: 15%;
	}
	footer.homepage-2025 .footer-bottom .container {
		flex-direction: row;
	}
	footer.homepage-2025 .footer-col.contact p {
		padding-right: 33%;
	}
}

/* xl - 1240px */
@media (min-width:1240px){
}