@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	outline: 0 !important
}

:root {
	--primary-font-family: 'Lato', sans-serif;
	--secondary-font-family: 'Merriweather', serif;
	--first-color: #010101;
	--second-color: #3f378a;
	--grey-bg-color: #f2f4f6;
}

body {
	font-family: var(--primary-font-family);
	margin: 0.1px auto 0;
	padding: 0;
	color: var(--first-color);
	font-size: 16px;
	width: 100%;
	font-weight: 400;
	background-color: #fff;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: var(--secondary-font-family);
}

p {
	margin: 0 0 8px;
}

p,
ul li {
	font-size: 16px;
	line-height: 28px;
}

ol,
ul {
	padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--second-color);
	font-weight: 900;
}

a,
button,
input[type=submit] {
	color: var(--second-color);
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	-webkit-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out
}

a:focus,
a:hover,
button:focus,
button:hover {
	color: var(--second-color);
	text-decoration: none;
	outline: 0 !important;
}

.navigation-area {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.menu-area {
	background-color: #fff;
	padding: 15px 0;
}

.navigation-area.menu-fix {
	animation-name: fadeInDown;
	animation-fill-mode: none;
}

.logo-area img {
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
	animation-fill-mode: none;
}

.menu-fix .logo-area img {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-fill-mode: none;
}


@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.navigation-area.menu-fix {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

.nav-item {
	margin-left: 35px;
}

.nav-link.btn-main.menu-cta {
	padding: 11px 20px !important;
	text-transform: none;
}

.nav-link {
	color: var(--first-color);
	font-size: 16px;
	padding: 0;
	position: relative;
	padding: 10px 0 !important;
}

.nav-link:hover {
	color: var(--second-color);
}

.navbar.navbar-expand-xl {
	padding: 0
}

.nav-item.active .nav-link {
	text-decoration: none !important;
	color: var(--second-color);
}

.menu__block_wrap {
	display: flex;
	justify-content: flex-end
}

.nav-link.nav-btn {
	background-color: var(--second-color);
	color: #fff;
	padding: 10px 25px !important;
	border-radius: 30px;
	text-align: center;
	box-shadow: 0 5px 25px rgba(75, 132, 255, .2)
}

.nav-link.nav-btn:hover {
	background-color: var(--second-color);
	color: #fff
}

.navbar.navbar-expand-lg {
	padding: 0
}

.tp-area {
	padding: 12px 0;
	-webkit-transition: 0.1s all ease-in-out;
	transition: 0.1s all ease-in-out;
	background-color: var(--second-color);
}

.menu-fix .tp-area {
	max-height: 0;
	overflow: hidden;
	padding: 0;
}

.menu-fix .top-call-btns {
	display: none !important;
}

.menu-fix .top-call-btns {
	margin-left: 15px;
}

.menu-fix .ada-switch p {
	color: #111;
}

.top-call-btns {
	color: #fff;
	margin-left: 30px;
	font-size: 14px;
}

.top-call-btns:hover {
	color: #fff
}

.tp-call-panel {
	display: flex;
	align-items: center;
}

.head-links {
	display: flex;
	justify-content: flex-end;
}

.top-call-btns i {
	margin-right: 5px;
}

.tp-call p {
	color: #fff;
	font-weight: 600;
	text-align: right;
	margin: 0;
	padding: 12px 0
}

.scroll-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	-webkit-transition: .5s easeIn;
	transition: .3s all;
	opacity: 0;
	z-index: 99;
	transform-origin: bottom center;
	transform: rotate(-90deg) scale(0) translateX(85px);
	width: 50px;
	height: 50px;
	display: inline-block;
	background-color: var(--second-color);
	border-radius: 50%;
	padding: 0;
	text-align: center;
	line-height: 50px;
	color: #fff;
	font-size: 25px;
	box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
}

.scroll-to-top.fade.in {
	opacity: 1;
	transform: rotate(0) scale(1) translateX(0)
}

.scroll-to-top:hover {
	color: #fff;
	background-color: #1b1b1b;
}

::-moz-selection {
	color: #fff;
	background: var(--second-color);
}

::selection {
	color: #fff;
	background: var(--second-color);
}

.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
}

.open>.dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
	height: auto
}

.dropdown-toggle::after {
	display: none
}

.dropdown-menu .dropdown-item {
	padding: 8px 12px;
	display: block;
	color: var(--first-color);
	font-size: 14px;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	white-space: unset;
}

.dropdown-menu .dropdown-item:last-child {
	border-bottom: none;
}

.dropdown-menu {
	width: 220px;
	padding: 0;
	border: none;
	background-color: #eff6fe;
	margin: 0;
	box-shadow: 0 10px 35px rgb(0 0 0 / 7%);
	left: 0;
	right: 0;
	margin: 0 auto;
	visibility: hidden;
	transform: translateY(20px);
	display: block;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	opacity: 0;
}

.dropdown-menu .dropdown-item:hover {
	background-color: var(--second-color);
	color: #fff
}

.footer-bg {
	background-color: var(--grey-bg-color);
	padding: 60px 0 45px;
}

.footer-left-block img {
	margin: 0 0 15px;
}

.footer-links li {
	list-style-type: none;
	margin-bottom: 5px;
	display: flex;
	align-items: center
}

.footer-links li i {
	margin-right: 8px;
}

.footer-links li a,
.footer-links li p {
	display: flex;
	align-items: baseline
}

.footer-bg a,
.footer-bg p {
	font-size: 14px;
	line-height: 25px;
}

.foot-address-single {
	display: flex;
	align-items: center;
	margin-bottom: 15px
}

.address-foot-desc p {
	margin: 0;
	line-height: 22px;
	color: #fff;
	font-weight: 400
}

.address-foot-desc p a {
	color: #e5cc96
}

.get-social a {
	color: #fff;
	margin-right: 20px;
}

.footer-bg .get-social a {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin-right: 12px;
	margin-left: 0;
	background-color: transparent;
	font-size: 14px;
	color: var(--second-color);
	border: 2px solid var(--second-color);
}

.footer-bg .get-social a:hover {
	color: #fff;
	background-color: var(--second-color);
	transform: none;
}

.copyright-r .get-social a {
	margin-left: 20px;
	margin-right: 0;
}

.get-social a:hover {
	transform: scale(1.05);
}

.get-social {
	display: flex
}

.address-icon-foot {
	font-size: 24px;
	color: #e5cc96;
	margin-right: 12px
}

.dropdown-submenu {
	position: relative
}

.btn-main {
	background-color: var(--second-color);
	border: 1px solid var(--second-color);
	color: #fff;
	padding: 12px 30px;
	font-size: 14px;
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	border-radius: 5px;
	text-align: center;
}

.btn-main:focus,
.btn-main:hover,
.btn-main.btn-white:hover {
	color: #fff;
	background-color: var(--first-color);
	border: 1px solid var(--first-color);
}

.btn-main.btn-bdr {
	background-color: transparent;
	border: 1px solid var(--second-color);
	color: var(--second-color);
}

.btn-main.btn-bdr:hover {
	background-color: var(--second-color);
	color: #fff;
}

.btn-main.btn-white,
.btn-main.btn-white.btn-bdr:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: var(--second-color);
}

.btn-main.btn-white.btn-bdr {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.foot-head {
	font-size: 20px;
	line-height: 30px;
	margin: 0px 0 20px;
}

.copyright-bg {
	background-color: var(--second-color);
	padding: 15px 0;
}

.copyright-bg p,
.copyright-bg a {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
}

.copyright-r .get-social {
	justify-content: flex-end;
}

.center-head .heading {
	color: #86ad3f;
}

.heading {
	font-size: 28px;
	line-height: 38px;
	margin: 0 0 30px;
	padding: 0 0 10px;
	position: relative;
}

.heading:after,
.heading:before {
	position: absolute;
	left: 0;
}

.heading:after {
	content: "";
	width: 129px;
	height: 2px;
	bottom: 0;
	background-color: var(--second-color);
}

.heading.text-white:after {
	background-color: #fff;
}

.heading:before {
	content: "";
	font-family: 'Font Awesome 6 Pro';
	font-size: 16px;
	bottom: -8px;
	line-height: 16px;
}

.heading.text-center:after,
.heading.text-center:before {
	right: 0;
	margin: 0 auto;
}

.heading span {
	display: block;
	color: var(--second-color);
	font-size: 18px;
	line-height: 28px;
}

.heading.w-pattern:after,
.heading.w-pattern:before {
	display: none;
}

.text-white.heading span {
	color: #fff;
}

.section-divider {
	margin: 0 0 60px
}

.form-control {
	height: 48px;
	border: none;
	font-size: 14px;
	background-color: var(--grey-bg-color);
	border-radius: 0;
}

.form-group {
	margin-bottom: 30px
}

.form-control:focus {
	box-shadow: none;
	background-color: #f5f5f5;
}

textarea.form-control {
	min-height: 130px;
}

.sub-head {
	font-size: 24px;
	line-height: 34px;
	margin: 20px 0 10px;
	position: relative;
	padding-left: 12px;
}

.sub-head:after {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 4px;
	height: 27px;
	background-color: var(--second-color);
}

.copyright-r {
	text-align: right;
}

@media(min-width:1200px) {
	.navbar-expand-xl .navbar-collapse {
		display: block
	}

	.navbar-nav {
		flex-direction: row;
		align-items: center
	}

	.drp-arrow.submenu-arrow {
		transform: rotate(-90deg);
		display: inline-block;
		position: absolute;
		top: 10px;
		right: 10px;
		color: #fff
	}

	.dropdown:hover>.dropdown-menu,
	.dropdown-submenu:hover>.dropdown-menu {
		right: 0;
		opacity: 1;
		transform: translateY(0px);
		visibility: visible;
	}

	.dropdown.second-level .dropdown-menu {
		right: -100%;
		left: auto;
		top: 0;
	}

	.dropdown.second-level>.dropdown-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.offcanvas-start {
		width: 100%;
	}
}

@media(max-width:1199px) {

	.dropdown.second-level.show-drop .dropdown-menu {
		max-height: 500px;
		background-color: #0c0c0c;
	}

	.dropdown.second-level .drp-arrow {
		width: 38px;
		line-height: 30px;
		background-color: #0c0c0c;
	}

	.dropdown.second-level .dropdown-toggle i {
		transform: rotate(0deg) !important;
	}

	.dropdown.second-level.show-drop .dropdown-toggle i {
		transform: rotate(45deg) !important;
	}

	.dropdown.second-level .dropdown-menu .dropdown-item {
		border-bottom: 1px solid #1b1b1b;
	}

	.nav-link {
		padding: 12px 0 !important;
		font-size: 14px;
		color: #fff;
	}

	.nav-item.active .nav-link {
		background-color: transparent;
		font-weight: 600;
		color: #fff;
	}

	.drp-arrow {
		display: block;
	}

	.nav-open {
		position: relative;
		transition: .3s all
	}

	.dropdown-item:focus,
	.dropdown-item:hover {
		background-color: transparent;
	}

	.drp-arrow {
		position: absolute;
		top: 3px;
		right: 3px;
		width: 43px;
		line-height: 39px;
		background-color: #fff;
		color: var(--first-color);
		text-align: center;
		font-size: 16px;
		z-index: 99
	}

	.dropdown-submenu .dropdown-menu {
		background-color: #c8e1fe;
		padding: 0 10px
	}

	.dropdown .drp-arrow i {
		transform: rotate(0deg);
		-webkit-transition: 0.3s all ease-in-out;
		transition: 0.3s all ease-in-out;
		display: inline-block
	}

	.dropdown>.drp-arrow.show i {
		transform: rotate(45deg);
	}

	.offcanvas-start {
		width: 260px;
		border-right: none;
		background-color: var(--second-color);
	}

	.nav-item {
		display: block;
		width: 100%;
		padding: 5px 10px
	}

	.nav-item.dropdown.show .dropdown-menu {
		display: block;
		visibility: visible;
		opacity: 1;
	}

	.navbar-nav .dropdown-menu {
		width: 100%;
		transform: none;
		padding: 0;
	}

	.drpdown-img {
		display: none !important
	}

	.dropdown-item {
		flex-basis: 100%;
		white-space: pre-line;
		font-size: 13px
	}

	#hamburger {
		background-color: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
	}

	#hamburger .line {
		fill: none;
		stroke: var(--second-color);
		stroke-width: 6;
		transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
	}

	#hamburger .line1 {
		stroke-dasharray: 60 207;
		stroke-width: 6;
	}

	#hamburger .line2 {
		stroke-dasharray: 60 60;
		stroke-width: 6;
	}

	#hamburger .line3 {
		stroke-dasharray: 60 207;
		stroke-width: 6;
	}

	#hamburger.open .line1 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6;
	}

	#hamburger.open .line2 {
		stroke-dasharray: 1 60;
		stroke-dashoffset: -30;
		stroke-width: 6;
	}

	#hamburger.open .line3 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6;
	}

	.heading {
		font-size: 26px;
		line-height: 34px;
	}

	.footer-social a {
		font-size: 16px
	}

	.dropdown-menu {
		max-height: 0;
		overflow: hidden;
		transition: .4s ease-in-out;
		display: block;
		min-width: 10px;
		padding: 0 7px;
		border-radius: 0;
		background-color: #fff;
		box-shadow: 0 5px 10px rgb(0 0 0 / 3%) inset;
	}

	.dropdown-menu.show {
		max-height: 500px;
		overflow: visible;
		visibility: visible;
		opacity: 1;
	}

	.nav-item {
		padding: 0 10px;
		border-bottom: 1px solid #073360;
		margin: 0;
	}

	.nav-item:last-child {
		border: none;
	}

	.nav-link {
		padding: 12px
	}

	.nav-link.nav-btn {
		margin-top: 15px
	}

	.nav-item.dropdown.show .dropdown-toggle i {
		transform: rotate(45deg)
	}

	.dropdown-menu .dropdown-item {
		color: var(--first-color);
		background-color: transparent;
		border-bottom: 1px solid #eee;
	}

	.dropdown-submenu.show .drp-submenu {
		max-height: 500px;
		overflow: visible;
		background-color: #dbe8fb
	}

	.dropdown-submenu.show .drp-arrow i {
		transform: rotate(45deg)
	}

	.head-links {
		text-align: center;
	}

	.nav-link.btn-main.menu-cta {
		display: block;
		margin: 10px 0 0;
		background-color: #fff;
		color: var(--first-color);
	}
}


@media(max-width:990px) {
	.footer-bg .get-social a {
		margin: 0 5px;
	}

	.get-social {
		justify-content: center;
	}

	.newsletter-bg {
		text-align: center;
	}

	.newsletter-bg .input-group {
		margin: 25px 0 0;
	}

	.footer-left-block {
		text-align: center;
		margin: 0 0 25px;
	}

	.sub-head {
		font-size: 18px;
		line-height: 28px;
	}

	.foot-head {
		margin: 0px 0 15px;
	}

	.footer-bg {
		padding: 40px 0 20px;
	}

	.copyright-r .get-social {
		justify-content: center;
		margin: 0 0 10px;
	}

	.copyright-r .get-social a {
		margin: 0 15px;
	}
}

@media(max-width:767px) {
	.top-call-btns {
		margin-left: 10px;
		font-size: 13px;
	}

	.tp-area {
		padding: 8px 0;
	}

	.get-social a {
		margin-right: 15px;
	}

	.footer-links.useful-links li a {
		flex-direction: row;
	}

	.footer-links.useful-links li i {
		margin-right: 8px;
	}

	.img-block {
		margin: 0 0 30px;
	}

	.logo-area img {
		width: 160px;
	}

	.heading {
		font-size: 24px;
		line-height: 32px;
	}

	.section-divider {
		margin: 0 0 40px
	}

	.foot-logo {
		width: 220px
	}

	.footer-links li a,
	.footer-links li p {
		align-items: center;
		flex-direction: column
	}

	.footer-links li i {
		margin-right: 0;
		margin: 10px 0 5px
	}

	.foot-head:after {
		right: 0;
		margin: 0 auto
	}

	.footer-head {
		text-align: center;
		margin-bottom: 20px;
		margin-top: 25px
	}

	.footer-links ul li {
		text-align: center
	}

	.address-icon-foot {
		margin: 0 auto
	}

	.foot-address-single {
		display: block;
		text-align: center
	}

	.footer-social {
		justify-content: space-around
	}

	.footer-bg {
		text-align: center;
	}

	.footer-nav ul li {
		display: block;
		padding: 10px 0
	}

	.footer-links {
		text-align: center
	}

	.footer-links li {
		justify-content: center
	}

	.btn-main {
		padding: 10px 20px 10px;
	}

	.copyright-bg {
		padding: 15px 0;
		text-align: center;
	}

	.copyright-r {
		text-align: center;
		margin: 5px 0 0;
	}

	.footer-bg .get-social {
		width: 100%;
	}

	.get-social.top-call-btns.head-flex {
		justify-content: flex-end;
	}
}