/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Montserrat", sans-serif;
	--font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
	--color-default: #2b180d;
	--color-primary: #56b8e6;
	--color-secondary: #1b2f45;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: var(--font-default);
	color: var(--color-default);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: #82cbed;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
	overflow: hidden;
	padding: 80px 0;
}

.section-header {
	text-align: center;
	padding-bottom: 30px;
}

.section-header h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-header h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-header p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 140px 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.breadcrumbs:before {
	content: "";
	background-color: rgba(27, 47, 69, 0.7);
	position: absolute;
	inset: 0;
}

.breadcrumbs h2 {
	font-size: 56px;
	font-weight: 500;
	color: #fff;
	font-family: var(--font-secondary);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
}

.breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}

.breadcrumbs ol a:hover {
	text-decoration: underline;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.scroll-top:hover {
	background: rgba(86, 184, 230, 0.8);
	color: #fff;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--color-primary);
	border-top-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition: all 0.5s;
	z-index: 997;
	padding: 24px 0;
}

@media (max-width: 1200px) {
	.header {
		padding: 12px 0;
	}
}

.header.sticked {
	background: rgba(27, 47, 69, 0.9);
	padding: 12px 0;
}

.header .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.header .logo h1 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-secondary);
	margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 0 15px 30px;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.6);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: #fff;
	}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 14px;
		top: calc(100% + 30px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.2s;
	}
}

@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {
	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgba(27, 47, 69, 0.9);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: #fff;
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: rgba(20, 35, 51, 0.6);
	}

	.navbar .dropdown > .dropdown-active,
	.navbar .dropdown .dropdown > .dropdown-active {
		display: block;
	}

	.mobile-nav-show {
		color: rgba(255, 255, 255, 0.9);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
	}

	.mobile-nav-hide {
		color: rgba(255, 255, 255, 0.9);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 15px;
		top: 15px;
		z-index: 9999;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}

	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(27, 47, 69, 0.7);
		z-index: 9996;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	background: url("../img/john-schnobrich-2FPjlAyMQTA-unsplash.jpg") top center;
	background-size: cover;
	position: relative;
	padding: 120px 0;
	z-index: 3;
}

@media (min-width: 1034px) {
	.hero:after {
		position: absolute;
		content: "";
		width: 40%;
		background: var(--color-secondary);
		top: 0;
		bottom: 0;
	}
}

.hero:before {
	position: absolute;
	content: "";
	background: rgba(27, 47, 69, 0.6);
	inset: 0;
}

@media (max-width: 1034px) {
	.hero:before {
		background: rgba(27, 47, 69, 0.7);
	}
}

.hero .container {
	z-index: 1;
}

@media (min-width: 1365px) {
	.hero {
		background-attachment: fixed;
	}
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	font-family: var(--font-secondary);
}

/*

Sign Up and Sign In Button

*/

.button {
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.5s;
	color: #fff;
	background: var(--color-primary);
}

.button:active {
	transform: scale(0.98);
}

.button :hover {
	background: rgba(86, 184, 230, 0.8);
}

@media (max-width: 640px) {
	.hero h2 {
		font-size: 36px;
		line-height: 1;
	}
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
	padding-bottom: 0;
}

.why-us .img-bg {
	min-height: 500px;
	background-size: cover;
}

.why-us .slides {
	background-color: #f7f9fc;
}

.why-us h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-secondary);
}

.why-us h4 {
	font-size: 18px;
	font-weight: 400;
	color: #29486a;
	font-family: var(--font-secondary);
}

.why-us .swiper {
	margin: 140px 140px 120px 140px;
	overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
	font-size: 24px;
	color: var(--color-secondary);
}

.why-us .swiper-button-prev {
	left: 80px;
}

.why-us .swiper-button-next {
	right: 80px;
}

.why-us .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--color-secondary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}

@media (max-width: 1200px) {
	.why-us .swiper {
		margin: 60px 60px 40px 60px;
	}

	.why-us .swiper-button-prev,
	.why-us .swiper-button-next {
		display: none;
	}
}

@media (max-width: 575px) {
	.why-us .swiper {
		margin: 40px 40px 20px 40px;
	}
}

.page-about .why-us {
	padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
	font-weight: 700;
	font-size: 36px;
	font-family: var(--font-secondary);
	color: var(--color-secondary);
}

.about .content p {
	margin: 30px 0;
	color: #29486a;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding: 0 0 15px 26px;
	position: relative;
	font-size: 15px;
	font-weight: 600;
}

.about .content ul i {
	position: absolute;
	font-size: 20px;
	left: 0;
	top: -3px;
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
	position: relative;
}

.services-list .service-item .icon i {
	font-size: 32px;
	line-height: 0;
	margin-right: 20px;
	color: #38618e;
}

.services-list .service-item .title {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
}

.services-list .service-item .title a {
	color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
	color: #38618e;
}

.services-list .service-item .description {
	line-height: 24px;
	font-size: 14px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
	background: url("../img/contact-bg.png") left top no-repeat;
	background-size: contain;
	position: relative;
}

@media (max-width: 640px) {
	.contact {
		background-position: center 50px;
	}
}

.contact:before {
	content: "";
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.contact .info-item + .info-item {
	margin-top: 40px;
}

.contact .info-item i {
	font-size: 20px;
	background: var(--color-primary);
	color: #fff;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h4 {
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #1c88ba;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.contact .php-email-form {
	width: 100%;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	background: #1f98d1;
	border: 0;
	padding: 12px 40px;
	color: #fff;
	transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
	background: var(--color-primary);
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Login Button Css*/

/* Home */
.home {
	position: relative;
	height: 100vh;
	width: 100%;
	background-image: url("bg.jpg");
	background-size: cover;
	background-position: center;
}
.home::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease-out;
}
.home.show::before {
	opacity: 1;
	pointer-events: auto;
}

/* Frorm */

.form_container {
	position: fixed;
	max-width: 320px;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.2);
	z-index: 101;
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-out;
}
.home.show .form_container {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}
.signup_form {
	display: none;
}
.form_container.active .signup_form {
	display: block;
}
.form_container.active .login_form {
	display: none;
}
.form_close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #0b0217;
	font-size: 22px;
	opacity: 0.7;
	cursor: pointer;
}
.form_container h2 {
	font-size: 22px;
	color: #0b0217;
	text-align: center;
}
.input_box {
	position: relative;
	margin-top: 30px;
	width: 100%;
	height: 40px;
}
.input_box input {
	height: 100%;
	width: 100%;
	border: none;
	outline: none;
	padding: 0 30px;
	color: #333;
	transition: all 0.2s ease;
	border-bottom: 1.5px solid #aaaaaa;
}
.input_box input:focus {
	border-color: #56b8e6;
}
.input_box i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #707070;
}
.input_box i.email,
.input_box i.password {
	left: 0;
}
.input_box input:focus ~ i.email,
.input_box input:focus ~ i.password {
	color: #56b8e6;
}
.input_box i.pw_hide {
	right: 0;
	font-size: 18px;
	cursor: pointer;
}
.option_field {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form_container a {
	color: #56b8e6;
	font-size: 12px;
}
.form_container a:hover {
	text-decoration: underline;
}
.checkbox {
	display: flex;
	column-gap: 8px;
	white-space: nowrap;
}
.checkbox input {
	accent-color: #56b8e6;
}
.checkbox label {
	font-size: 12px;
	cursor: pointer;
	user-select: none;
	color: #0b0217;
}
.form_container .button {
	background: #56b8e6;
	margin-top: 30px;
	width: 100%;
	padding: 10px 0;
	border-radius: 10px;
}
.login_signup {
	font-size: 12px;
	text-align: center;
	margin-top: 15px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	font-size: 14px;
}

.footer .footer-content {
	background-color: #1b2f45;
	background-size: contain;
	padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
	line-height: 0;
	margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	color: white;
	font-family: var(--font-secondary);
	margin-top: 3px;
}

.footer .footer-content .footer-info p {
	font-size: 15px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: white;
}

.footer .footer-content .social-links a {
	font-size: 14px;
	line-height: 0;
	display: inline-block;
	width: 32px;
	height: 32px;
	color: rgba(27, 47, 69, 0.5);
	margin-right: 10px;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
	background-color: #38618e;
}

.footer .footer-content h4 {
	font-size: 16px;
	font-weight: bold;
	color: white;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links {
	margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-content .footer-links ul i {
	margin-right: 2px;
	color: var(--color-primary);
	font-size: 16px;
	line-height: 0;
}

.footer .footer-content .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-content .footer-links ul a {
	color: white;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
	line-height: 26px;
	color: var(--color-secondary);
}

.footer .footer-legal {
	background: #1b2f45;
	padding: 30px 0;
}

.footer .footer-legal .copyright {
	text-align: center;
	color: white;
}
