body {
	background-image: url('../img/body-bg.jpg');
	background-repeat: repeat;
	background-size: 100% auto;
}

.outline-text {
	color: transparent;              /* Makes inside transparent */
	-webkit-text-stroke: 2px #0c4ca3; /* Outline color */
}

section {
	padding: 50px 0;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}

.section-title {
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 15px;
	color: var(--ap-primary);
	margin-bottom: 2rem;
}

/* Hero: swiper = background images only, content is a single layer on top */
.section-hero {
	position: relative;
	background-color: #000;
	color: #fff;
	padding: 200px 0;
}
.section-hero-bg-swiper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.section-hero-bg-swiper,
.section-hero-bg-swiper .swiper-wrapper,
.section-hero-bg-swiper .swiper-slide {
	height: 100%;
}
.section-hero-slide-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
	z-index: 1;
}
.section-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	text-align: center;
}
.section-hero-caption .subtitle {
	display: block;
	font-size: 20px;
	letter-spacing: 15px;
	font-weight: 300;
	text-transform: uppercase;
}
.section-hero-caption .ctas {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
}
.section-hero .swiper-button-prev,
.section-hero .swiper-button-next {
	color: var(--bs-white);
	z-index: 3;
}
.section-hero .swiper-pagination {
	z-index: 3;
}
.section-hero .swiper-pagination-bullet {
	background: var(--bs-white);
	opacity: 0.75;
}
.section-hero .swiper-pagination-bullet-active {
	opacity: 1;
}

/* Reusable gallery slider */
.ap-gallery-thumbs .swiper-slide {
	position: relative;
	opacity: 0.65;
	cursor: pointer;
	width: auto;
}
.ap-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}
.ap-gallery-thumbs .swiper-slide {
	height: 150px;
	border-radius: 20px;
	overflow: hidden;
}
.ap-gallery-thumbs .swiper-slide img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ap-gallery-swiper .ap-gallery-slide {
	position: relative;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
}
.ap-gallery-swiper .ap-gallery-slide > .ap-gallery-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.ap-gallery-swiper .ap-gallery-slide .ap-gallery-slide-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.ap-gallery-swiper .ap-gallery-slide > .ap-gallery-slide-bg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ap-gallery-swiper .ap-gallery-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05) 55%);
}
.ap-gallery-swiper .ap-gallery-slide-content {
	position: absolute;
	bottom: 0;
	color: var(--bs-white);
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 25px;
	z-index: 2;
}
.ap-gallery-swiper .ap-gallery-slide-content .caption {
	width: 100%;
	max-width: 1000px;
}
.ap-gallery-swiper .ap-gallery-slide-content .title {
	font-weight: bold;
	font-size: 32px;
}
.ap-gallery-swiper .ap-gallery-slide-content .ctas {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
}
.ap-gallery-swiper .ap-gallery-slide-content .btn {
	white-space: nowrap;
}

/* social icon link */
.social-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	border-radius: 30px;
	background-color: #fff !important;
	color: #0C3B66 !important;
	text-decoration: none;
}
.social-icon-link svg {
	width: 17px;
	height: 17px;
}
.social-icon-link:hover {
	background-color: #C2DD00 !important;
}

/* form controls */
.form-control {
	padding: 0.75rem 1.5rem;
}

/* prefooter form */
.prefooter-form-block {
	position: relative;
	padding: 40px;
	border-radius: 18px;

	/* Glass effect */
	background: linear-gradient(
	135deg,
	rgba(255,255,255,0.18),
	rgba(255,255,255,0.05)
	);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	border: 1px solid rgba(255,255,255,0.25);
	box-shadow: 0 15px 25px rgba(0,0,0,0.25);

	color: #fff;
}
.prefooter-form-block .floating-img {
    position: absolute;
    top: -100px;
    right: -70px;
    max-width: 350px;
}
.prefooter-form-block .inner {
	position: relative;
}
.prefooter-form-block .form-control {
	background-color: #002445;
	border-color: #002445;
	color: #fff;
}
.prefooter-form-block .form-control::placeholder {
	color: rgba(255,255,255,0.5);
}
.prefooter-form-block .fg-header {
	padding-right: 70px;
}
.prefooter-form-block h2 {
	font-size: 72px;
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.prefooter-form-block p.subtitle {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	margin-bottom: 28px;
}

/* WPForms inside prefooter - match theme form styling */
.prefooter-form-block .prefooter-wpforms-wrap {
	margin-bottom: 0;
	text-align: left;
}
.prefooter-form-block .wpforms-form .wpforms-field input[type="text"],
.prefooter-form-block .wpforms-form .wpforms-field input[type="email"],
.prefooter-form-block .wpforms-form .wpforms-field input[type="tel"],
.prefooter-form-block .wpforms-form .wpforms-field input[type="number"],
.prefooter-form-block .wpforms-form .wpforms-field textarea {
	background-color: #002445;
	border: 1px solid #002445;
	color: #fff;
	padding: 0.75rem 1.5rem;
	width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
	border-radius: 0.375rem;
	height: auto;
}
.prefooter-form-block .wpforms-form .wpforms-field input::placeholder,
.prefooter-form-block .wpforms-form .wpforms-field textarea::placeholder {
	color: rgba(255,255,255,0.5);
}
.prefooter-form-block .wpforms-form .wpforms-field input[type="text"]:focus,
.prefooter-form-block .wpforms-form .wpforms-field input[type="email"]:focus,
.prefooter-form-block .wpforms-form .wpforms-field input[type="tel"]:focus,
.prefooter-form-block .wpforms-form .wpforms-field input[type="number"]:focus,
.prefooter-form-block .wpforms-form .wpforms-field textarea:focus {
	background-color: #002445;
	border: 1px solid #002445;
	color: #fff;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}
.prefooter-form-block .wpforms-form .wpforms-field-label {
	color: #fff;
	margin-bottom: 0.25rem;
	font-weight: inherit;
}
.prefooter-form-block .wpforms-form .wpforms-field {
	margin-bottom: 1rem;
	padding: 0;
}
.prefooter-form-block .wpforms-form .wpforms-submit-container {
	margin-top: 0.5rem;
	margin-bottom: 0;
}
.prefooter-form-block .wpforms-form .wpforms-submit[type="submit"] {
	background: #c7f000 !important;
	color: #000 !important;
	border: 1px solid #c7f000 !important;
	padding: 1rem 1.75rem !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	border-radius: 999px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	font-size: 1rem !important;
	line-height: 1 !important;
	transition: all 0.3s ease !important;
	height: auto !important;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 18px rgba(199, 240, 0, 0.35), 0 10px 22px rgba(0, 0, 0, 0.28);
}
.prefooter-form-block .wpforms-form .wpforms-submit:hover {
	opacity: 0.9;
}
.prefooter-form-block .wpforms-form .wpforms-error {
	color: #ff6b6b;
}
.prefooter-form-block .form-help {
	color: rgba(255,255,255,0.85);
}

/* section prefooter */
section.section-prefooter {
	position: relative;
	background-color: #1e4272;
	color: #fff;
	background-image: url('../img/prefooter-bg.jpg');
	background-position: bottom center;
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	padding-top: 100px;
	overflow: hidden;
}

/* main header */
header.main-header {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../img/header-bg.jpg');
	background-color: #fff;
	color: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* header.main-header:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 1;
} */
header.main-header .inner {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 1600px;
	z-index: 2;
}
header.main-header .nav-logo-link {
	text-decoration: none;
	outline: none;
}
header.main-header .navbar-nav {
	color: #fff;
	--bs-nav-link-color: #000;
	--bs-nav-link-hover-color: #007ADD;
}

/* Mobile menu offcanvas (side drawer) */
#mobileMenuOffcanvas {
	--bs-offcanvas-width: min(85vw, 320px);
}
#mobileMenuOffcanvas .offcanvas-header {
	background: #1e4272;
	color: #fff;
}
#mobileMenuOffcanvas .offcanvas-title {
	color: #fff;
	font-weight: 600;
}
#mobileMenuOffcanvas .btn-close {
	filter: invert(1);
}
#mobileMenuOffcanvas .offcanvas-body {
	background: #1e4272;
	display: flex;
	flex-direction: column;
}
#mobileMenuOffcanvas .navbar-nav {
	--bs-nav-link-color: #fff;
	--bs-nav-link-hover-color: #C2DD00;
	--bs-nav-link-padding-x: 1rem;
	--bs-nav-link-padding-y: 0.85rem;
}
#mobileMenuOffcanvas .navbar-nav .nav-link {
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#mobileMenuOffcanvas .navbar-nav .nav-link:hover {
	color: #C2DD00;
}
#mobileMenuOffcanvas .navbar-nav .nav-item:last-child .nav-link {
	border-bottom: none;
}

/* main footer */
footer.main-footer {
	background-color: #1e4272;
	color: #fff;
	padding: 50px 0;
}
footer.main-footer h5 {
	/* color: #C2DD00; */
	font-weight: bold;
	font-size: 20px;
}
footer.main-footer a {
	color: inherit;
}
footer.main-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
footer.main-footer ul a {
	text-decoration: none;
}

/* section home a */
section.section-home-a .inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	background-color: #343434;
	color: #fff;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	background-image: url('../img/bg-3.jpg');
    background-size: cover;
    background-position: center;
	overflow: hidden;
}
section.section-home-a .inner > .caption {
	position: relative;
    max-width: 45%;
    margin-left: auto;
	padding: 50px;
	color: #fff;
	background-color: rgba(0,51,30,0.8);
	z-index: 2;
}
section.section-home-a .inner .badge {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--ap-primary);
	color: #fff;
	letter-spacing: 5px;
	font-weight: 300;
	border-radius: 0;
	padding: 10px 25px;
	min-width: 200px;
	z-index: 22;
}
section.section-home-a .inner .title {
	font-size: 70px;
	line-height: 70px;
	font-weight: 900;
}
section.section-home-a .inner .title span {
    display: block;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}
section.section-home-a .floating-ball-img {
	position: absolute;
	right: 0%;
	transform: translateY(-70%);
	max-width: 700px;
	width: 100%;
	height: auto;
	pointer-events: none;
	z-index: 2;
}

/* features */
.features-block {
	display: flex;
	flex-wrap: wrap;
	--items-per-row: 4;
	--items-space: 10px;
	gap: var(--items-space);
}
.features-block > .item {
	flex: 0 0 calc(calc(100% / var(--items-per-row)) - var(--items-space));
	max-width: calc(calc(100% / var(--items-per-row)) - var(--items-space));
}

/* accordion */
.accordion {
	--bs-accordion-active-color: #fff;
	--bs-accordion-active-bg: var(--ap-primary);
	--bs-accordion-btn-color: #fff;
	--bs-accordion-btn-bg: var(--ap-primary);
	--bs-accordion-border-color: var(--ap-primary);
	--bs-accordion-border-width: 2px;
	--bs-accordion-border-radius: var(--bs-border-radius);
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>");
	--bs-accordion-btn-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>");
}
.accordion .accordion-item {
	border-radius: var(--bs-border-radius);
	overflow: hidden;
	background: var(--bs-primary);
	margin-bottom: 15px;
	border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
}
.accordion .accordion-body {
	color: var(--ap-primary);
	background-color: #BBCEDE;
}

@media only screen and (max-width: 1400px) {

	.section-hero-caption img {
		max-width: 350px;
	}

	section.section-home-a .floating-ball-img {
		max-width: 500px;
	}

	section.section-home-a .inner .title {
		font-size: 50px;
		line-height: 50px;
	}

	.section-title {
		font-size: 40px;
	}

	.prefooter-form-block h2 {
		font-size: 50px;
	}
	
}

@media only screen and (max-width: 1199px) {

	.section-hero {
		padding: 50px 0;
	}

	.section-hero-caption img {
		max-width: 200px;
	}

	
}

@media only screen and (max-width: 991px) {

	header.main-header {
		padding: 0;
	}

	.section-hero {
		padding: 100px 0 150px;
	}

	.section-hero-caption img {
		max-width: 400px;
	}

	section.section-home-a {
		padding: 25px;
	}
	section.section-home-a .floating-ball-img {
		max-width: 400px;
		right: 0;
		left: 25%;
		transform: translateY(-35%);
	}
	section.section-home-a .inner > .caption {
		margin: 0 auto;
		max-width: 100%;
	}

	.features-block {
		--items-per-row: 2;
	}

	
}

@media only screen and (max-width: 767px) {

	section.section-home-a .floating-ball-img {
		left: 0;
	}

	.section-hero {
		padding-top: 50px;
	}
	.section-hero-caption img {
		max-width: 300px;
	}

	.section-title {
		letter-spacing: 5px;
	}

	.ap-gallery-swiper .ap-gallery-slide-content {
		display: block;
	}

	.ap-gallery-thumbs .swiper-slide {
		height: 70px;
		border-radius: 15px;
	}

	section.section-prefooter {
		background-image: url(../img/prefooter-bg-sm.jpg);
        background-position: top center;
        background-size: 100% auto;
		padding-top: 300px;
	}

	.prefooter-form-block .floating-img {
		max-width: 300px;
		top: -150px;
		right: 0;
		left: 0;
		margin: 0 auto;
	}
	.prefooter-form-block .fg-header {
		padding: 0;
	}
	.prefooter-form-block h2 {
		font-size: 40px;
	}
	.prefooter-form-block .inner .fg-header {
		text-align: center
	}
	.prefooter-form-block .form {
		text-align: left;
	}

	footer.main-footer {
		text-align: center;
	}

}

@media only screen and (max-width: 415px) {

	.features-block {
		--items-per-row: 1;
		max-width: 300px;
		margin: 0 auto;
	}

	.section-hero-caption .ctas {
		flex-direction: column;
	}

}