/* Main/global container width */
.main-container {
	max-width: 1380px;
	margin: 0 auto;
}
/* Main/global container width ends */

.mb-0 {
	margin-bottom: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.pt-large {
	padding-top: 96px !important;
}

.pt-medium {
	padding-top: 48px !important;
}

.pt-small {
	padding-top: 32px !important;
}

.mt-large {
	margin-top: 96px !important;
}

.mt-medium {
	margin-top: 48px !important;
}

.mt-small {
	margin-top: 32px !important;
}

.pb-large {
	padding-bottom: 96px !important;
}

.pb-medium {
	padding-bottom: 48px !important;
}

.pb-small {
	padding-bottom: 32px !important;
}

.mb-large {
	margin-bottom: 96px !important;
}

.mb-medium {
	margin-bottom: 48px !important;
}

.mb-small {
	margin-bottom: 32px !important;
}

.title-has-border {
	position: relative;
	margin-bottom: 124px;
}

.title-has-border::after {
	content: '';
	position: absolute;
	top: 92%;
	left: 50%;
	z-index: 1;
	height: 96px;
	margin-top: 20px;
	margin-bottom: 29px;
	border-left: 0.5px solid #fff;
	transform: translateX(-50%);
}

.title-has-border.dark::after {
	border-color: #0f0f0f;
}

.cta-has-arrow {
	transition: all 300ms ease-out;
}

.cta-wrapper:hover .cta-has-arrow {
	transform: translate(215px, 0);
}

.cta-has-arrow::before {
	content: url('/wp-content/uploads/2025/07/Arrow.svg');
	position: absolute;
	transform: translate(-186px, 0);
}

.cta-has-arrow.dark::before {
	content: url('/wp-content/uploads/2025/07/Arrow-Dark.svg');
	transform: translate(-171px, 0);
}

.entry-content > section:not(.homepage-banner):not(.software-features) {
    margin-top: 96px;
    margin-bottom: 96px;
}

/* 404 */
.error-404,
.error-404 * {
	box-sizing: border-box;
}

.error-404 {
	width: 100%;
	padding: 64px 30px 80px;
	background: var(--error-404-background, #eaf1fa);
	color: #333;
}

.error-404__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
}

.error-404__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	width: 100%;
	text-align: center;
}

.error-404__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.error-404__heading-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.error-404__number {
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 140px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -4.2px;
	text-align: center;
}

.error-404__heading {
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.72px;
	text-align: center;
}

.error-404__description {
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.18px;
	text-align: center;
}

.error-404__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 33px;
	padding: 6px 16px;
	border-radius: 4px;
	background: #1169ec;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.error-404__button:hover,
.error-404__button:focus-visible {
	background: #0e5dcc;
	color: #fff;
	transform: translateY(-1px);
}

.error-404__button:focus-visible {
	outline: 2px solid #333;
	outline-offset: 3px;
}

.error-404__media {
	position: relative;
	width: 100%;
	max-width: 716px;
	aspect-ratio: 716 / 345;
	overflow: hidden;
	border-radius: 8px;
}

.error-404__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.error-404__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.error404 .site-content {
    justify-content: center;
}

.error404 .error-404 {
    margin-top: 32px;
}

div.wpforms-container-full .wpforms-form input[type=checkbox]+label, 
div.wpforms-container-full .wpforms-form input[type=radio]+label {
	vertical-align: unset;
}

body.separate-containers .comments-area, 
body.separate-containers .inside-article, 
body.separate-containers .page-header, 
body.separate-containers .paging-navigation {
	padding: 112px 30px 96px;
}

/* WP FORMS */
.wpforms-confirmation-container-full {
    background-color: #EFF6FF !important;
    border: 1px solid #2563EB !important;
    color: #1E3A8A !important;
    border-radius: 8px;
    padding: 15px;
}

@media (max-width: 1024px) {
	.error-404 {
		padding: 56px 24px 64px;
	}

	.error-404__inner {
		gap: 48px;
	}

	.error-404__number {
		font-size: 120px;
		letter-spacing: -3.6px;
	}

	.error-404__media {
		max-width: 650px;
	}
}

@media (max-width: 767px) {
	.title-has-border {
		margin-bottom: 100px;
	}

	.title-has-border::after {
		height: 64px;
	}
	
	.entry-content > section:not(.homepage-banner):not(.software-features) {
		margin-top: 32px;
		margin-bottom: 32px;
	}
	.error-404 {
		padding: 48px 16px 32px;
	}

	.error-404__inner {
		gap: 48px;
	}

	.error-404__content {
		gap: 32px;
	}

	.error-404__copy {
		gap: 16px;
	}

	.error-404__number {
		font-size: 96px;
		line-height: 1.1;
		letter-spacing: -2.88px;
	}

	.error-404__heading {
		font-size: 24px;
		line-height: 1.1;
		letter-spacing: -0.72px;
	}

	.error-404__description {
		max-width: 358px;
		font-size: 18px;
		line-height: 1.1;
		letter-spacing: 0.18px;
	}

	.error-404__media {
		width: 100%;
		max-width: 358px;
		aspect-ratio: 358 / 240;
		border-radius: 16px;
	}

	.error-404__image {
		object-position: center;
	}
	body.separate-containers .comments-area, 
	body.separate-containers .inside-article, 
	body.separate-containers .page-header, 
	body.separate-containers .paging-navigation {
		padding: 112px 16px 96px;
	}
}