:root {
	--primary-color: #1e87c1;
	--secondary-color: #0c3344
}

#preloader {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
	transition: 0.3s ease opacity;
	text-align: center;
	width: 100%;
	height: 100%
}

#preloader:before,
#preloader:after {
	content: "";
	width: 80px;
	height: 80px;
	border: 3px solid #1e87c1;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation-name: LoaderCicle;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear
}

#preloader:after {
	animation-delay: 1s
}

@keyframes LoaderCicle {
	0% {
		width: 0;
		height: 0;
		opacity: 0
	}

	10% {
		width: 10px;
		height: 10px;
		opacity: 1
	}

	80% {
		width: 60px;
		height: 60px;
		opacity: 0.1
	}

	100% {
		width: 70px;
		height: 70px;
		opacity: 0
	}
}

a:hover,
a:active {
	color: #1e87c1;
	text-decoration: none
}

.card {
	color: #4a5257
}

.card .card-body {
	color: #4a5257
}

.ls-minus-2px {
	letter-spacing: -2px
}

.bg-primary {
	background-color: #15bce3 !important
}

.bg-secondary {
	background-color: #1e87c1 !important
}

.primary-overlay[data-overlay-dark]:before {
	background: #1e87c1
}

.secondary-overlay[data-overlay-dark]:before {
	background: #0c3344
}

.left-overlay-secondary[data-overlay-dark]:before {
	background: rgba(0, 55, 81, 0.76);
	background: linear-gradient(-90deg, transparent, #0c3344 65%)
}

.left-overlay-dark-three[data-overlay-dark]:before {
	background: rgba(12, 50, 70, 0.76);
	background: linear-gradient(-90deg, transparent, #0c3246 65%)
}

.bg-light {
	background-color: rgba(1, 146, 151, 0.065) !important
}

.text-primary,
.text-primary-hover:hover {
	color: #1e87c1 !important
}

.text-secondary,
.text-secondary-hover:hover {
	color: #0c3344 !important
}

a.text-primary:focus,
a.text-primary:hover,
a.text-primary:active {
	color: #1e87c1 !important
}

a.text-primary.text-secondary-hover:focus,
a.text-primary.text-secondary-hover:hover,
a.text-primary.text-secondary-hover:active {
	color: #0c3344 !important
}

.cursor-pointer {
	cursor: pointer
}

.box-shadow-style1 {
	box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05)
}

@media screen and (min-width: 768px) {
	.min-width-100vw {
		min-width: 100vw
	}
}

.map-h500 {
	height: 500px;
	width: 100%
}

.bg-white-light {
	background-color: rgba(255, 255, 255, 0.1)
}

.sticky-top-style {
	position: sticky;
	top: 130px;
	z-index: 1
}

.g-6,
.gx-6 {
	--bs-gutter-x: 6rem
}

a.text-white-hover:hover {
	color: #fff !important
}

.border-radius-top {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px
}

@media screen and (min-width: 992px) {
	.service-position {
		margin: 0% -55% 0% 0%
	}
}

.primary-shadow {
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1)
}

.height-470px {
	min-height: 470px
}

@media screen and (max-width: 1199px) {
	.height-470px {
		min-height: 460px
	}
}

@media screen and (max-width: 575px) {
	.min-vh-355 {
		min-height: 355px
	}
}

.lr-padding {
	padding-right: 4rem;
	padding-left: 4rem
}

@media screen and (max-width: 1599px) {
	.lr-padding {
		padding-right: 2.5rem;
		padding-left: 2.5rem
	}
}

@media screen and (max-width: 1399px) {
	.lr-padding {
		padding-right: 1rem;
		padding-left: 1rem
	}
}

@media screen and (max-width: 1199px) {
	.lr-padding {
		padding-right: 0;
		padding-left: 0
	}
}

.borders-color {
	border-color: #dee2e6 !important
}

.img-01,
.img-02 {
	margin-left: -14px
}

.position-right-bottom {
	position: absolute;
	right: 30px;
	bottom: 30px
}

.bg-linear-gradient {
	position: relative;
	overflow: hidden
}

.bg-linear-gradient::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: transparent;
	background-image: linear-gradient(180deg, rgba(1, 146, 151, 0.065) 20%, #fff 100%)
}

.bg-gradient-shade-1 {
	border-radius: 50rem;
	background-image: linear-gradient(-20deg, #e9defa 0, #fbfcdb 100%)
}

.floating-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden
}

.cd-headline {
	font-size: 18px;
	color: #0c3344
}

.cd-headline.clip .cd-words-wrapper:after {
	content: none
}

.image-hover {
	position: relative;
	overflow: hidden
}

.image-hover:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1
}

.image-hover:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent
}

.image-hover:active:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent
}

.image-hover:focus:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent
}

.ani-move {
	animation: ImageMove 4s infinite linear;
	animation-duration: 5s
}

@keyframes ImageMove {
	0% {
		transform: translate(0px, 0px)
	}

	25% {
		transform: translate(10px, 20px)
	}

	50% {
		transform: translate(30px, 30px)
	}

	75% {
		transform: translate(20px, 10px)
	}

	100% {
		transform: translate(0px, 0px)
	}
}

.ani-top-bottom {
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-name: TopBottom;
	animation-timing-function: ease-in-out
}

@keyframes TopBottom {
	0% {
		transform: translate(0px, 0px)
	}

	65% {
		transform: translate(0, 30px)
	}

	100% {
		transform: translate(0px, 0px)
	}
}

.contact-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #1e87c1;
	color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	margin-inline-start: -22px
}

.display-custom-1 {
	font-size: 150px;
	letter-spacing: -8px;
	line-height: 1
}

@media screen and (max-width: 1399px) {
	.display-custom-1 {
		font-size: 135px
	}
}

@media screen and (max-width: 1199px) {
	.display-custom-1 {
		font-size: 125px;
		letter-spacing: -5px
	}
}

@media screen and (max-width: 991px) {
	.display-custom-1 {
		font-size: 94px;
		letter-spacing: -3px
	}
}

@media screen and (max-width: 767px) {
	.display-custom-1 {
		font-size: 74px;
		letter-spacing: -2px
	}
}

@media screen and (max-width: 575px) {
	.display-custom-1 {
		font-size: 55px
	}
}

.display-custom-2 {
	font-size: 104px
}

@media screen and (max-width: 991px) {
	.display-custom-2 {
		font-size: 94px
	}
}

@media screen and (max-width: 767px) {
	.display-custom-2 {
		font-size: 74px
	}
}

@media screen and (max-width: 575px) {
	.display-custom-2 {
		font-size: 55px
	}
}

[data-top-bottom] {
	transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1)
}

.border-text {
	text-fill-color: transparent;
	text-stroke-color: #fff;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px
}

.border-text.primary {
	text-fill-color: transparent;
	text-stroke-color: #1e87c1;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: #1e87c1;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px
}

.border-text.dark {
	text-fill-color: transparent;
	text-stroke-color: #0c3344;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: #0c3344;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px
}

.border-text.secondary {
	text-fill-color: transparent;
	text-stroke-color: #063232;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: #063232;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px
}

.border-color-primary {
	border-color: #1e87c1 !important
}

@media screen and (min-width: 992px) {
	.vw-lg-50 {
		width: 50vw
	}
}

.list-style01 {
	margin: 0;
	padding: 0;
	list-style: none
}

.list-style01 li {
	margin-bottom: 10px
}

.list-style01 li:last-child {
	margin-bottom: 0
}

.list-style01 li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	padding: 15px 20px 15px 20px;
	border: 1px solid #ededed;
	font-weight: 600;
	background: #ffffff;
	transition: all 0.3s ease 0s;
	border-radius: 0.375rem
}

.list-style01 li a:before {
	position: absolute;
	content: '\e628';
	font-weight: 500;
	font-family: 'themify';
	transition: width 0.3s linear;
	font-size: 18px;
	top: 12px;
	right: 20px
}

.list-style01 li a:hover {
	background-color: #1e87c1;
	color: #ffffff
}

.list-style01 li.active a {
	background-color: #1e87c1;
	color: #ffffff
}

.list-style02 li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px
}

.list-style02 li:after {
	content: "\e64c";
	font-family: 'themify';
	position: absolute;
	left: 0px;
	top: 1px;
	z-index: 1;
	font-weight: 600;
	color: #1e87c1
}

.list-style02 li:last-child {
	padding-bottom: 0;
	margin-bottom: 0
}

.list-style03 li {
	border-bottom: 1px solid #e4e4e4;
	font-weight: 500;
	padding: 20px 0
}

.list-style03 li:last-child {
	border-bottom: 0
}

.list-style03 li i {
	margin-right: 12px;
	font-size: 14px;
	color: #0c3344;
	font-weight: 700
}

.list-style04 li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #f1f1f1;
	padding: 15px 0
}

.list-style04 li:last-child {
	border-bottom: unset;
	padding-bottom: 0
}

.list-style05 li {
	position: relative;
	padding-left: 25px
}

.list-style05 li:before {
	content: "\f00c";
	font-family: "Font Awesome 7 Free";
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	justify-content: center;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top: 8px;
	line-height: 1;
	color: #1e87c1
}

.list-style06 li {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.6)
}

.list-style06 li:last-child {
	margin-bottom: 0
}

.list-style06 li span {
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 3px;
	color: #fff;
	font-size: 16px
}

.arrow-circle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	-webkit-transition: .3s;
	transition: .3s;
	margin-right: 20px;
	width: 50px;
	height: 50px;
	border: 2px solid #1e87c1;
	border-radius: 50%
}

@-webkit-keyframes "scrollToTop" {
	0% {
		-webkit-transform: translate3d(0, 80%, 0);
		transform: translate3d(0, 80%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes "scrollToTop" {
	0% {
		-webkit-transform: translate3d(0, 80%, 0);
		transform: translate3d(0, 80%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.scroll-top-percentage {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	position: fixed;
	bottom: 40px;
	color: #fff;
	right: 50px;
	-webkit-transform: scale(0);
	transform: scale(0);
	display: -ms-grid;
	display: grid;
	place-items: center;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 100
}

.scroll-top-percentage.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
	animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
	-webkit-transition: 0.3s;
	transition: 0.3s
}

#scroll-value {
	height: calc(100% - 6px);
	width: calc(100% - 6px);
	color: var(--rr-common-white);
	border-radius: 50%;
	display: -ms-grid;
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 600
}

#scroll-value i {
	font-size: 20px
}

@media (max-width: 575px) {
	.scroll-top-percentage {
		right: 30px;
		bottom: 20px
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.scroll-top-percentage {
		right: 30px;
		bottom: 20px
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.scroll-top-percentage {
		right: 30px;
		bottom: 20px
	}
}

.butn-style01 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #1e87c1;
	color: #fff;
	line-height: 1.5;
	font-weight: 700;
	position: relative;
	outline: none;
	transition: all 0.4s ease;
	overflow: hidden;
	white-space: normal;
	word-wrap: break-word;
	font-size: 14px !important;
	padding: 15px 34px !important;
	z-index: 9;
	border-radius: 4px;
	text-transform: uppercase
}

.butn-style01:hover {
	color: #fff;
	background: #0c3344
}

.butn-style01:active {
	color: #fff;
	background: #0c3344
}

.butn-style01:focus {
	color: #fff;
	background: #0c3344
}

.butn-style01.md {
	padding: 12px 30px !important
}

.butn-style01.sm {
	padding: 10px 26px !important
}

.butn-style01.white {
	background: #fff;
	color: #1e87c1 !important
}

.butn-style01.white:hover {
	background-color: #1e87c1;
	color: #fff !important
}

.butn-style01.secondary {
	background: #0c3344;
	color: #fff !important
}

.butn-style01.secondary:hover {
	background-color: #1e87c1;
	color: #fff !important
}

.butn-style01.white-hover:hover {
	background-color: #fff !important;
	color: #1e87c1 !important
}

.butn-style01.white-hover:active {
	background-color: #fff !important;
	color: #1e87c1 !important
}

.butn-style01.white-hover:focus {
	background-color: #fff !important;
	color: #1e87c1 !important
}

.butn-style02 {
	background-color: #1e87c1;
	color: #fff !important;
	font-size: 14px !important;
	padding: 12px 30px !important;
	display: inline-block;
	border: 2px solid transparent;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-weight: 600;
	width: auto;
	white-space: normal;
	word-wrap: break-word;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 0.15rem
}

.butn-style02:hover {
	color: #fff !important;
	-webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0)
}

.butn-style02.white {
	background-color: #fff;
	color: #1e3238 !important
}

.butn-style02.secondary {
	background-color: #1e87c1;
	color: #fff !important
}

.butn-style02.md {
	padding: 10px 26px !important
}

.butn-style02.sm {
	padding: 8px 24px !important
}

@-webkit-keyframes "btn_shine" {
	100% {
		left: 200%
	}
}

@keyframes "btn_shine" {
	100% {
		left: 200%
	}
}

.butn-style03 {
	font-size: 15px;
	font-weight: 700;
	padding: 12px 34px !important;
	-webkit-transition: all 200ms linear 0ms;
	-khtml-transition: all 200ms linear 0ms;
	-moz-transition: all 200ms linear 0ms;
	-ms-transition: all 200ms linear 0ms;
	-o-transition: all 200ms linear 0ms;
	transition: all 200ms linear 0ms;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	position: relative;
	overflow: hidden !important;
	display: inline-block;
	text-align: center;
	border: 2px solid #1e87c1;
	color: #fff;
	z-index: 1;
	white-space: normal;
	word-wrap: break-word;
	background-color: #1e87c1;
	vertical-align: middle;
	text-transform: uppercase
}

.butn-style03:after {
	content: '';
	position: absolute;
	top: 0;
	left: -200%;
	width: 200%;
	height: 100%;
	-webkit-transform: skewX(-20deg);
	-khtml-transform: skewX(-20deg);
	-moz-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	-o-transform: skewX(-20deg);
	transform: skewX(-20deg);
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
	z-index: -1
}

.butn-style03:hover {
	background-color: #1e87c1;
	color: #fff
}

.butn-style03:hover:after {
	-webkit-animation: btn_shine 1.2s ease;
	animation: btn_shine 1.2s ease;
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}

.butn-style03:focus {
	background-color: #1e87c1;
	color: #fff
}

.butn-style03:focus:after {
	-webkit-animation: btn_shine 1.2s ease;
	animation: btn_shine 1.2s ease;
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}

.butn-style03:active {
	background-color: #1e87c1;
	color: #fff
}

.butn-style03:active:after {
	-webkit-animation: btn_shine 1.2s ease;
	animation: btn_shine 1.2s ease;
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}

.butn-style03.secondary {
	border: 2px solid #0c3344;
	background-color: #0c3344
}

.butn-style03.md {
	padding: 8px 26px !important;
	font-size: 15px
}

.butn-style03.sm {
	padding: 6px 20px !important
}

@media screen and (max-width: 1399px) {
	.butn-style03 {
		padding: 10px 30px !important;
		font-size: 16px
	}
}

@media screen and (max-width: 767px) {
	.butn-style03 {
		padding: 8px 25px !important;
		font-size: 14px
	}
}

.button-text {
	padding: 0;
	position: relative;
	text-decoration: none;
	border: 0;
	background-color: transparent;
	display: inline-block;
	font-size: 15px;
	text-transform: uppercase;
	white-space: normal;
	word-wrap: break-word;
	width: auto;
	font-weight: 500
}

.button-text a {
	border-bottom: 2px solid
}

.button-text:hover {
	border-color: #25cdc7
}

.button-link {
	padding: 0 0 2px;
	position: relative;
	border: 0;
	border-bottom: 2px solid;
	letter-spacing: 0;
	background-color: transparent;
	font-size: 14px;
	display: inline-block;
	text-transform: uppercase;
	white-space: normal;
	word-wrap: break-word;
	width: auto;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.button-link:hover {
	opacity: 0.7
}

.button-link.contact-link {
	font-size: 14px
}

.top-bar-info {
	display: inline-block;
	vertical-align: middle
}

.top-bar-info ul {
	margin-bottom: 0
}

.top-bar-info li {
	font-weight: 500;
	color: #fff;
	list-style-type: none;
	font-size: 12px;
	padding: 0 5px 0;
	display: inline-block;
	margin-bottom: 0
}

.top-bar-info li i {
	font-size: 16px;
	color: #fff;
	margin-right: 8px;
	margin-top: 0;
	display: inline-block;
	vertical-align: text-bottom
}

.top-bar {
	display: block;
	position: relative;
	z-index: 999;
	padding: 7px 0
}

.top-social-icon {
	padding: 0;
	float: right;
	margin: 0
}

.top-social-icon li {
	font-size: 14px;
	list-style-type: none;
	float: left;
	text-align: center;
	margin: 0;
	padding: 0 7px
}

.top-social-icon li:last-child {
	padding-right: 0
}

.top-social-icon li:last-child a {
	padding-right: 0
}

.top-social-icon li a {
	color: #fff;
	line-height: 28px;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	padding: 0 3px
}

.top-social-icon li a:hover {
	color: rgba(255, 255, 255, 0.65)
}

.navbar-nav li.current>a {
	color: #1e87c1 !important
}

.navbar-nav li.active>a {
	color: #1e87c1 !important
}

.attr-nav>ul>li>a.butn {
	color: #fff
}

.navbar>ul>li.current>a:after {
	border-color: transparent #1e87c1 #1e87c1 transparent !important
}

.menu_area-light .navbar-nav li.current>a {
	color: #1e87c1
}

.menu_area-light .navbar-nav li.active>a {
	color: #1e87c1
}

.menu_area-light .navbar>ul>li.current>a:after {
	border-color: transparent #1e87c1 #1e87c1 transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
	color: #1e87c1
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
	color: #1e87c1
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
	color: #1e87c1
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
	border-color: transparent #1e87c1 #1e87c1 transparent
}

@media screen and (min-width: 992px) {
	.menu_area-light .navbar ul ul li.active>a {
		color: #1e87c1
	}

	.menu_area-light .navbar>ul>li.has-sub>a:hover:after {
		border-color: #1e87c1
	}

	.menu_area-light .navbar-nav li.has-sub a:hover {
		color: #1e87c1
	}

	.menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
		color: #1e87c1
	}

	.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
		color: #1e87c1
	}

	.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2.scrollHeader .navbar-nav li.current>a {
		color: #1e87c1
	}

	.header-style2.scrollHeader .navbar-nav li.current>a:hover {
		color: #1e87c1
	}

	.header-style2.scrollHeader .navbar>ul>li.current>a:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2 .navbar>ul>li.has-sub>a:hover:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2 .navbar>ul>li.has-sub>a:active:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2 .navbar>ul>li.has-sub>a:focus:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style2 .navbar ul ul li.active>a {
		color: #1e87c1
	}

	.header-style2 .navbar-nav li.has-sub a:hover {
		color: #1e87c1
	}

	.header-style2 .navbar-nav li.has-sub a:active {
		color: #1e87c1
	}

	.header-style2 .navbar-nav li.has-sub a:focus {
		color: #1e87c1
	}

	.header-style2 .navbar-nav li.current>a {
		color: #1e87c1
	}

	.header-style2 .navbar-nav li.active>a {
		color: #1e87c1
	}

	.menu_area-light .navbar-light .navbar-nav>li>a:hover,
	.menu_area-light .navbar-light .navbar-nav>li>a:active,
	.menu_area-light .navbar-light .navbar-nav>li>a:focus {
		color: #1e87c1
	}
}

@media screen and (max-width: 991px) {
	.header-style1 .navbar-toggler {
		background: #1e87c1
	}

	.header-style1 .navbar-toggler:after {
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}

	.header-style1 .navbar-toggler:before {
		background: #fff
	}

	.header-style1 .navbar-toggler.menu-opened:after {
		background: #fff
	}

	.header-style1 .navbar-toggler.menu-opened:before {
		background: #fff
	}
}

.header-style2 .navbar-nav li.current>a {
	color: #1e87c1
}

.header-style2 .navbar>ul>li.current>a:after {
	border-color: transparent #1e87c1 #1e87c1 transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
	color: #1e87c1
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
	color: #1e87c1
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
	border-color: transparent #1e87c1 #1e87c1 transparent
}

@media screen and (min-width: 992px) {
	.header-style2 .navbar ul ul li.active>a {
		color: #1e87c1
	}

	.header-style2 .butn.secondary:before {
		background: #ffffff
	}

	.header-style2 .butn.secondary:hover {
		color: #0c3344 !important
	}

	.header-style2 .butn.secondary:focus {
		color: #0c3344 !important
	}

	.header-style2 .butn.secondary:active {
		color: #0c3344 !important
	}

	.header-style2.scrollHeader .butn.secondary:before {
		background: #1e87c1
	}

	.header-style2.scrollHeader .butn.secondary:hover {
		color: #fff !important
	}

	.header-style2.scrollHeader .butn.secondary:focus {
		color: #fff !important
	}

	.header-style2.scrollHeader .butn.secondary:active {
		color: #fff !important
	}
}

.header-style3 .navbar-nav li.current>a {
	color: #1e87c1
}

.header-style3 .navbar-nav li.active>a {
	color: #1e87c1
}

@media screen and (min-width: 992px) {
	.header-style3 .navbar-nav li.active>a {
		color: #1e87c1
	}

	.header-style3 .navbar-nav>li>a:hover {
		color: #1e87c1
	}

	.header-style3 .navbar-nav>li>a:active {
		color: #1e87c1
	}

	.header-style3 .navbar-nav>li>a:focus {
		color: #1e87c1
	}

	.header-style3 .navbar-nav li.has-sub a:hover {
		color: #1e87c1
	}

	.header-style3 .navbar-nav li.current>a {
		color: #1e87c1
	}

	.header-style3 .navbar-nav>li.has-sub>a:hover {
		color: #1e87c1
	}

	.header-style3 .navbar ul ul li.active>a {
		color: #1e87c1
	}

	.header-style3 .navbar>ul>li.has-sub>a:hover:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style3 .navbar>ul>li.current>a:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
		color: #1e87c1
	}

	.header-style3.scrollHeader .navbar-nav>li.active>a {
		color: #1e87c1
	}

	.header-style3.scrollHeader .navbar-nav li.current>a {
		color: #1e87c1
	}

	.header-style3.scrollHeader .navbar-nav li.current>a:hover {
		color: #1e87c1
	}

	.header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}

	.header-style3.scrollHeader .navbar>ul>li.current>a:after {
		border-color: transparent #1e87c1 #1e87c1 transparent
	}
}

@media screen and (max-width: 991px) {
	.header-style3 .navbar-toggler {
		background: #1e87c1
	}

	.header-style3 .navbar-toggler:after {
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}

	.header-style3 .navbar-toggler:before {
		background: #fff
	}

	.header-style3 .navbar-toggler.menu-opened:after {
		background: #fff
	}

	.header-style3 .navbar-toggler.menu-opened:before {
		background: #fff
	}
}

@-webkit-keyframes "rotated_circle" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

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

@keyframes "rotated_circle" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

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

.banner-style01 .banner-left-content {
	padding: 150px 105px;
	border-radius: 0.375rem;
	overflow: hidden
}

.banner-style01 .banner-left-content:before {
	content: "";
	position: absolute;
	border: 60px solid #fff;
	top: -90px;
	right: -90px;
	border-radius: 50%;
	background-color: #1e87c1;
	width: 300px;
	height: 300px;
	opacity: 0.2
}

.banner-style01 .banner-text {
	width: 184px;
	height: 184px;
	color: white;
	padding: 25px;
	font-weight: 600;
	position: relative;
	border-radius: 50%;
	background: #fff
}

.banner-style01 .banner-text .coloring {
	fill: #191919;
	text-transform: uppercase;
	word-spacing: 17px
}

.banner-style01 .banner-text svg {
	-webkit-animation: rotated_circle 12s linear infinite;
	animation: rotated_circle 12s linear infinite
}

.banner-style01 .banner-text .banner-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center
}

@media screen and (max-width: 1399px) {
	.banner-style01 .banner-left-content {
		padding: 85px 78px
	}
}

@media screen and (max-width: 1199px) {
	.banner-style01 .banner-left-content {
		padding: 70px 55px
	}
}

@media screen and (max-width: 575px) {
	.banner-style01 .banner-left-content {
		padding: 40px 20px
	}
}

.gradient-overlay[data-overlay-dark]:before {
	background: rgba(12, 51, 68, 0.76);
	background: linear-gradient(-45deg, #1e87c1, #0c3344 45%)
}

.gradient-banner {
	background: rgba(12, 51, 68, 0.76);
	background: linear-gradient(-45deg, #1e87c1, #0c3344 45%)
}

.gradient-banner h1 {
	letter-spacing: -5px;
	font-size: 130px;
	line-height: 120px
}

.gradient-banner .floating-particles {
	z-index: 9
}

@media screen and (max-width: 1199px) {
	.gradient-banner h1 {
		font-size: 110px;
		line-height: 100px
	}
}

@media screen and (max-width: 991px) {
	.gradient-banner h1 {
		font-size: 90px;
		line-height: 85px
	}
}

@media screen and (max-width: 767px) {
	.gradient-banner h1 {
		letter-spacing: -4px;
		font-size: 72px;
		line-height: 60px
	}
}

@media screen and (max-width: 575px) {
	.gradient-banner h1 {
		letter-spacing: -2px;
		font-size: 60px;
		line-height: 48px
	}
}

.title-style01 .sm-title {
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	display: inline-block;
	margin-bottom: 12px;
	padding-bottom: 12px;
	color: #1e87c1;
	z-index: 9
}

.title-style01 h2 {
	position: relative;
	z-index: 9
}

.title-style01 .sm-title:before {
	position: absolute;
	content: '';
	height: 2px;
	width: 80px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #dedede
}

.title-style01 .sm-title:after {
	position: absolute;
	content: '';
	height: 8px;
	width: 8px;
	border-radius: 50px;
	background-color: #1e87c1;
	right: 0;
	left: 50%;
	bottom: -3px;
	transform: translateX(-40px);
	animation: pulsex 5s ease-in-out infinite alternate
}

.title-style01.left .sm-title:before {
	left: 0;
	transform: unset
}

@keyframes pulsex {
	0% {
		transform: translateX(-40px)
	}

	100% {
		transform: translateX(40px)
	}
}

.title-style02>.sub-title {
	position: relative;
	color: #1e87c1;
	font-size: 18px;
	font-weight: 700;
	padding-right: 50px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px
}

.title-style02>.sub-title:before {
	position: absolute;
	content: '';
	right: 0px;
	bottom: 9px;
	width: 40px;
	height: 2px;
	background-color: #0c3344
}

.title-style02>.sub-title:after {
	position: absolute;
	content: '';
	right: 10px;
	bottom: 14px;
	width: 30px;
	height: 2px;
	background-color: #48ade5
}

.title-style02.line-white>.sub-title:before {
	content: '';
	background-color: #FFF
}

.title-style02.white>.sub-title:before {
	background-color: #fff
}

.page-title-section {
	padding: 160px 0 60px;
	text-align: center
}

.page-title-section h1 {
	font-size: 72px;
	line-height: 1;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	color: #ffffff;
	margin-bottom: 10px;
	position: relative;
	z-index: 9;
	text-transform: uppercase;
	word-wrap: break-word;
	white-space: normal
}

.page-title-section ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	line-height: 1.2
}

.page-title-section ul li {
	display: inline-block;
	color: #ffffff;
	opacity: 0.80;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px
}

.page-title-section ul li:last-child {
	color: #ffffff;
	opacity: 0.70;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px
}

.page-title-section ul li:last-child a {
	color: #ffffff;
	opacity: 0.70;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px
}

.page-title-section ul li:last-child:after {
	content: none
}

.page-title-section ul li:after {
	content: "";
	font-weight: 700;
	vertical-align: middle;
	background-color: #fff;
	width: 10px;
	padding: 0 5px 0 10px;
	height: 2px;
	display: inline-block;
	margin: 0 15px
}

.page-title-section ul li a {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px
}

.page-title-section .active a {
	color: #fff
}

.page-title-section li.active:last-child a {
	color: #fff
}

@media screen and (max-width: 1199px) {
	.page-title-section {
		padding: 180px 0 80px 0
	}

	.page-title-section h1 {
		font-size: 60px;
		margin-bottom: 10px
	}
}

@media screen and (max-width: 991px) {
	.page-title-section {
		padding: 160px 0 80px 0
	}

	.page-title-section h1 {
		font-size: 54px
	}
}

@media screen and (max-width: 575px) {
	.page-title-section {
		padding: 140px 0 70px 0
	}

	.page-title-section h1 {
		font-size: 42px
	}
}

.height-400 {
	height: 400px
}

.card-style01 {
	padding: 62px 75px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	height: 100%;
	border-radius: 0
}

.card-style01 .card-header .top-content h3 {
	letter-spacing: -0.5px !important;
	line-height: 30px;
	display: block;
	margin-bottom: 0
}

@media screen and (max-width: 1399px) {
	.card-style01 {
		padding: 52px 54px
	}
}

@media screen and (max-width: 991px) {
	.card-style01 {
		padding: 48px 45px
	}
}

@media screen and (max-width: 575px) {
	.card-style01 {
		padding: 30px
	}
}

.card-style02 {
	border: none;
	border-radius: 0.375rem;
	height: 100%;
	box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08)
}

.card-style02 .blog-img img {
	will-change: transform;
	-webkit-transition: -webkit-transform .3s ease;
	-ms-transition: -ms-transform .3s ease;
	transition: transform .3s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: scale(1.01, 1.01);
	-ms-transform: scale(1.01, 1.01);
	transform: scale(1.01, 1.01)
}

.card-style02:hover .blog-img img {
	-webkit-transform: scale(1.07, 1.07);
	-ms-transform: scale(1.07, 1.07);
	transform: scale(1.07, 1.07)
}

.card-style02:active .blog-img img {
	-webkit-transform: scale(1.07, 1.07);
	-ms-transform: scale(1.07, 1.07);
	transform: scale(1.07, 1.07)
}

.card-style02:focus .blog-img img {
	-webkit-transform: scale(1.07, 1.07);
	-ms-transform: scale(1.07, 1.07);
	transform: scale(1.07, 1.07)
}

.card-style02 .post-date {
	position: absolute;
	right: 30px;
	top: -42px;
	background: #1e87c1;
	color: #fff;
	border-radius: 3px;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	padding: 14px 15px;
	min-width: 78px
}

.card-style02 .post-date .month {
	font-size: 12px;
	text-transform: uppercase
}

.card-style02 .text-uppercase.display-31 a {
	margin-right: 15px;
	margin-top: 5px;
	display: inline-block;
	vertical-align: top
}

.card-style02 .blog-tag:before {
	content: "";
	margin: 0 0.75em;
	width: 3px;
	height: 3px;
	background-color: #8E919D;
	top: 50%;
	transform: translateY(-50%);
	left: -30%;
	display: inline-block;
	position: absolute;
	border-radius: 50%
}

.card-style02>.card-body:nth-child(1) .post-date {
	display: none
}

.card-style03 {
	position: relative;
	-webkit-transition: 0.8s cubic-bezier(0, 1, 0.5, 1);
	-o-transition: 0.8s cubic-bezier(0, 1, 0.5, 1);
	transition: 0.8s cubic-bezier(0, 1, 0.5, 1);
	transform: scale(1);
	-ms-transform: scale(1)
}

.card-style03 .card-body {
	overflow: hidden;
	position: relative;
	background: linear-gradient(90deg, #1e87c1 0%, #1e87c1 100%) !important
}

.card-style03 .card-body:after {
	content: "\e628";
	font-family: themify;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	right: inherit;
	font-size: 60px;
	width: auto;
	font-weight: 400;
	line-height: 60px;
	margin-top: -30px;
	transform: translateX(-50px);
	transition: 0.75s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: .1s;
	opacity: 0;
	pointer-events: none
}

.card-style03:hover .card-body:after {
	opacity: 1;
	transform: translateX(-30px)
}

.card-style03:hover .card-content h3:before {
	width: 100%
}

.card-style03:hover h3:before {
	background-color: #1e87c1
}

.card-style03:hover .card-image {
	transform: scale(1.05);
	opacity: .1
}

.card-style03 .card-image {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	background-color: initial;
	transition: .2s all ease
}

.card-style03 h3 {
	margin: 25px 0 0;
	padding-bottom: 6px;
	font-size: 20px;
	position: relative;
	display: inline-block
}

.card-style03 h3:before {
	content: "";
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	left: 0;
	height: 3px;
	width: 50px;
	bottom: 0;
	background-color: #1e87c1;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1)
}

.card-style03+.card-content {
	display: flex;
	justify-content: center;
	background: 0 0 !important;
	border: none !important;
	position: absolute;
	top: 0;
	width: 100%;
	padding: 0;
	height: 100%;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	opacity: 0;
	pointer-events: none;
	margin: 0;
	color: #fff !important;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
	overflow: visible;
	align-items: end;
	transform: translateY(-30px)
}

.card-style04 .card-body .team-icons {
	position: absolute;
	right: 0;
	bottom: 10px;
	content: "";
	transition: all .4s ease-in-out;
	z-index: 2;
	display: inline-block;
	overflow: hidden;
	cursor: pointer
}

.card-style04 .card-body .team-icons ul {
	transform: translateY(100px);
	transition: all .6s ease-in-out;
	opacity: 0;
	visibility: hidden
}

.card-style04 .card-body .team-icons ul li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	display: block;
	background: #1e87c1;
	color: #fff;
	transition: all .4s ease-in-out;
	text-align: center;
	border-radius: 50%;
	margin: 0 auto 10px;
	font-size: 14px
}

.card-style04 .card-body .team-icons ul li a:hover {
	background-color: #0c3344
}

.card-style04 .card-body .team-icons span {
	z-index: 2;
	cursor: pointer;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	background: transparent;
	color: #1e87c1;
	transition: all .3s ease-in-out;
	border-radius: 50%;
	border: 1px solid #e6e6e6
}

.card-style04 .card-body .team-icons:hover ul {
	transform: translateY(0);
	opacity: 1;
	visibility: visible
}

.card-style05 {
	background: transparent;
	border-radius: 0
}

.card-style05 .card-body {
	padding: 6.2em 3em 5em 3em
}

.card-style05 .service-btn {
	position: relative;
	display: inline-block;
	top: auto;
	left: auto;
	height: auto;
	width: auto;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.card-style05 .service-btn .btn-text {
	position: relative;
	margin-right: 0;
	display: inline-block;
	vertical-align: middle;
	text-indent: -110px;
	visibility: hidden;
	white-space: nowrap;
	opacity: 0;
	-webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
	-ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
	transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
	will-change: visibility, margin-right, text-indent, opacity
}

.card-style05 .service-btn .btn-arrow {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.4em;
	text-align: center
}

.card-style05 .service-btn .btn-arrow:before {
	font-size: 18px;
	line-height: inherit;
	font-weight: 400;
	font-style: inherit;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	content: "\e628";
	font-family: 'themify';
	transition: .4s
}

.card-style05:hover .service-btn .btn-text {
	opacity: 1;
	text-indent: 0;
	margin-right: 6px;
	visibility: visible;
	-webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
	-ms-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
	transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease
}

.card-style05:hover .service-btn .btn-arrow:before {
	font-size: 11px
}

.card-style05 .service-bg-color {
	border-radius: inherit;
	position: absolute;
	z-index: 1;
	inset: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s;
	transition-duration: 0.5s;
	transition-delay: 0s;
	margin: 0
}

.card-style05 .service-bg-color:before {
	content: '';
	width: 150%;
	padding-bottom: 150%;
	border-radius: 0;
	position: absolute;
	left: 50%;
	bottom: 55%;
	filter: blur(35px);
	opacity: .1;
	transform: translateX(-50%);
	background-image: conic-gradient(from 205deg at 50% 50%, transparent 0deg, #1e87c1 25deg, rgba(1, 146, 151, 0.2) 295deg, transparent 360deg)
}

.card-style05:hover .service-bg-color {
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0s
}

.card-style05 .service-bg-box {
	border-radius: inherit;
	position: absolute;
	inset: 0;
	overflow: hidden;
	-webkit-mask-image: radial-gradient(circle at 60% 5%, #fff 0%, #fff 15%, transparent 60%);
	mask-image: radial-gradient(circle at 60% 5%, #fff 0%, #fff 15%, transparent 60%);
	margin: 0
}

.card-style05 .service-bg-box .item-box {
	opacity: 0;
	transition: opacity .25s
}

.card-style05 .service-bg-box .item-box .item-box-1 {
	position: absolute;
	top: 0;
	left: 0;
	height: 10%;
	width: 22.5%;
	background-color: rgba(1, 146, 151, 0.07);
	animation-duration: 8s;
	animation-iteration-count: infinite;
	opacity: 0
}

.card-style05 .service-bg-box .item-box .item-box-2 {
	left: 22.5%;
	height: 10%;
	width: 27.5%;
	animation-delay: -6s
}

.card-style05 .service-bg-box .item-box .item-box-3 {
	left: 50%;
	height: 10%;
	width: 27.5%;
	animation-delay: -4s
}

.card-style05 .service-bg-box .item-box .item-box-4 {
	left: 77.5%;
	height: 10%;
	width: 22.5%;
	animation-delay: -2s
}

.card-style05 .service-bg-box .item-box .item-box-5 {
	top: 10%;
	left: 0;
	height: 22.5%;
	width: 22.5%;
	animation-delay: -4s
}

.card-style05 .service-bg-box .item-box .item-box-6 {
	top: 10%;
	left: 22.5%;
	height: 22.5%;
	width: 27.5%;
	animation-delay: -2s
}

.card-style05 .service-bg-box .item-box .item-box-7 {
	top: 10%;
	left: 50%;
	height: 22.5%;
	width: 27.5%
}

.card-style05 .service-bg-box .item-box .item-box-8 {
	top: 10%;
	left: 77.5%;
	height: 22.5%;
	width: 22.5%;
	animation-delay: -4s
}

.card-style05 .service-bg-box .item-box .item-box-9 {
	top: 32.5%;
	left: 50%;
	height: 22.5%;
	width: 27.5%;
	animation-delay: -6s
}

.card-style05 .service-bg-box .item-box .item-box-10 {
	top: 32.5%;
	left: 77.5%;
	height: 22.5%;
	width: 22.5%;
	animation-delay: -2s
}

.card-style05 .service-bg-box .item-line-1 {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .35s
}

.card-style05 .service-bg-box .item-line-1:before {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	left: 0;
	right: 0;
	height: 1px;
	transform-origin: 0 50%;
	transform: scaleX(0);
	top: 10%;
	transition-delay: .3s
}

.card-style05 .service-bg-box .item-line-1:after {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	top: 0;
	bottom: 0;
	width: 1px;
	transform-origin: 50% 0;
	transform: scaleY(0);
	left: 22.5%;
	transition-delay: .3s
}

.card-style05 .service-bg-box .item-line-2 {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .35s
}

.card-style05 .service-bg-box .item-line-2:before {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	left: 0;
	right: 0;
	height: 1px;
	transform-origin: 0 50%;
	transform: scaleX(0);
	top: 32.5%;
	transition-delay: .15s
}

.card-style05 .service-bg-box .item-line-2:after {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	top: 0;
	bottom: 0;
	width: 1px;
	transform-origin: 50% 0;
	transform: scaleY(0);
	left: 50%;
	transition-delay: .15s
}

.card-style05 .service-bg-box .item-line-3 {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .35s
}

.card-style05 .service-bg-box .item-line-3:before {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	left: 0;
	right: 0;
	height: 1px;
	transform-origin: 0 50%;
	transform: scaleX(0);
	top: 55%
}

.card-style05 .service-bg-box .item-line-3:after {
	content: '';
	position: absolute;
	background-color: rgba(225, 225, 225, 0.08);
	transition: transform .35s;
	top: 0;
	bottom: 0;
	width: 1px;
	transform-origin: 50% 0;
	transform: scaleY(0);
	right: 22.5%
}

.card-style05:hover .service-bg-box .item-box {
	opacity: 1
}

.card-style05:hover .service-bg-box .item-box .items {
	animation-name: tile
}

.card-style05:hover .service-bg-box .item-line-1 {
	opacity: 1;
	transition-duration: .15s
}

.card-style05:hover .service-bg-box .item-line-1:before {
	transition-delay: .0s;
	transform: scaleX(1)
}

.card-style05:hover .service-bg-box .item-line-1:after {
	transition-delay: .0s;
	transform: scaleY(1)
}

.card-style05:hover .service-bg-box .item-line-2 {
	opacity: 1;
	transition-duration: .15s
}

.card-style05:hover .service-bg-box .item-line-2:before {
	transition-delay: .15s;
	transform: scaleX(1)
}

.card-style05:hover .service-bg-box .item-line-2:after {
	transition-delay: .15s;
	transform: scaleY(1)
}

.card-style05:hover .service-bg-box .item-line-3 {
	opacity: 1;
	transition-duration: .15s
}

.card-style05:hover .service-bg-box .item-line-3:before {
	transition-delay: .3s;
	transform: scaleX(1)
}

.card-style05:hover .service-bg-box .item-line-3:after {
	transition-delay: .3s;
	transform: scaleY(1)
}

@keyframes tile {

	0%,
	12.5%,
	100% {
		opacity: 1
	}

	25%,
	82.5% {
		opacity: 0
	}
}

@media screen and (max-width: 1399px) {
	.card-style05 .card-body {
		padding: 4em 2.3em 4em 2.3em
	}
}

@media screen and (max-width: 1199px) {
	.card-style05 .card-body {
		padding: 4em 1.3em 4em 1.3em
	}
}

@media screen and (max-width: 767px) {
	.card-style05 .card-body {
		padding: 3em 1.3em 3em 1.3em
	}
}

.card-style06 .card-body .card-img-text a {
	display: inline-block;
	font-size: 12px;
	background: #eef8f8;
	border-radius: 100px;
	padding: 8px 16px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	text-transform: uppercase;
	line-height: 1;
	margin: 2px
}

.card-style06 .card-body .card-img-text a:hover {
	background: #0a9396;
	color: #fff
}

.card-style06 .card-body .card-text .card-line {
	position: relative
}

.card-style06 .card-body .card-text .card-line span::before {
	content: "";
	position: absolute;
	left: 10%;
	top: 50%;
	background-color: #001827;
	width: 20px;
	height: 1px;
	transform: translateY(-50%)
}

.card-style07 {
	background-color: transparent;
	position: relative;
	overflow: hidden;
	border-radius: 0.375rem;
	min-height: 579px;
	padding: 40px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.1)
}

.card-style07 .card-content {
	position: relative;
	z-index: 2
}

.card-style07 .card-content .service-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #1e87c1;
	padding: 19px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease 0.35s
}

.card-style07 .card-content p {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.175);
	transition: all 0.4s ease;
	color: rgba(255, 255, 255, 0.5)
}

.card-style07 .card-content a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff
}

.card-style07 .card-content a i {
	margin-left: auto;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.175);
	transition: all 0.4s ease
}

.card-style07 .card-content a .butn-link {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	transition: all 0.4s ease
}

.card-style07 .card-body {
	opacity: 0;
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.1);
	transition: all 0.6s ease;
	z-index: 1
}

.card-style07 .card-body:before {
	position: absolute;
	content: "";
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 43, 63, 0) 0%, #0c3344 88.45%);
	z-index: 1;
	border-radius: 0.375rem
}

.card-style07:hover .card-body {
	opacity: 1;
	transform: scale(1)
}

.card-style07:hover p {
	border-color: #1e87c1;
	color: #fff
}

.card-style07:hover .card-content a i {
	border-color: #1e87c1;
	background-color: #1e87c1;
	color: #fff
}

.card-style07.active .card-body {
	opacity: 1;
	transform: scale(1)
}

.card-style07.active h3 a {
	color: #fff
}

.card-style07.active p {
	color: #fff;
	border-color: #1e87c1
}

.card-style07.active .butn-link {
	color: #fff
}

.card-style07.active .card-content a i {
	border-color: #1e87c1;
	background-color: #1e87c1;
	color: #fff
}

@media screen and (max-width: 575px) {
	.card-style07 {
		padding: 26px;
		min-height: 520px
	}
}

.pagination {
	border-radius: 0
}

.pagination ul {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin: 0 auto;
	padding: 0
}

.pagination li {
	display: inline
}

.pagination li:first-child a {
	border-left-width: 1px
}

.pagination a {
	float: left;
	padding: 0 16px;
	line-height: 40px;
	text-decoration: none;
	border: 1px solid #dbdbdb;
	border-left-width: 0;
	background: #fff
}

.pagination a:hover {
	background-color: #0c3344;
	color: #fff
}

.pagination .active a {
	background-color: #f7f7f7;
	color: #999;
	cursor: default
}

.pagination .disabled span {
	color: #999;
	background-color: transparent;
	cursor: default
}

.pagination .disabled a {
	color: #999;
	background-color: transparent;
	cursor: default
}

.pagination .disabled a:hover {
	color: #999;
	background-color: transparent;
	cursor: default
}

.page-item:not(:first-child) .page-link {
	margin-left: 0
}

.pagination-style01 {
	margin-top: 4%;
	width: 100%;
	display: flex;
	justify-content: center
}

.pagination-style01 ul {
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 0;
	padding-left: 0
}

.pagination-style01 ul li {
	list-style: none
}

.pagination-style01 ul li a {
	border: 0;
	padding: 0 2px;
	margin: 0 7px;
	background: 0 0;
	color: #828282;
	min-width: 45px;
	font-size: inherit;
	text-align: center;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	line-height: 45px;
	min-height: 45px;
	display: block;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.pagination-style01 ul li a i {
	line-height: 40px;
	font-size: 18px;
	display: inline-block
}

.pagination-style01 ul li.active a {
	background: #0c3344;
	color: #fff;
	box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

.pagination-style01 ul li a:hover {
	background: #fff;
	color: #0c3344;
	box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

@media screen and (max-width: 575px) {
	.pagination-style01 ul {
		margin-top: 10px
	}

	.pagination-style01 ul li a {
		min-width: 40px;
		min-height: 40px;
		line-height: 40px;
		margin: 0 4px
	}
}

ul.resp-tabs-list {
	margin: 0px;
	padding: 0px
}

.resp-tabs-list li {
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	padding: 13px 15px;
	margin: 0 4px 0 0;
	list-style: none;
	cursor: pointer
}

.resp-tabs-list li:last-child {
	margin-right: 0
}

.resp-tabs-list li i {
	font-size: 20px;
	padding-right: 5px;
	vertical-align: text-bottom
}

.resp-tabs-list li.resp-tab-active {
	border: 1px solid #0c3344;
	border-bottom: none;
	border-color: #0c3344 !important;
	margin-bottom: -1px;
	padding: 12px 14px 14px 14px;
	border-top: 4px solid #0c3344 !important;
	border-bottom: 0px #fff solid;
	border-bottom: none;
	background-color: #fff;
	color: #0c3344
}

.resp-tabs-container {
	padding: 0px;
	background-color: #fff;
	clear: left
}

.resp-tab-content {
	display: none;
	padding: 20px;
	border: 1px solid #c1c1c1;
	border-top-color: #c1c1c1;
	float: left;
	width: 100%
}

.resp-content-active {
	display: block
}

.resp-accordion-active {
	display: block
}

h2.resp-accordion {
	cursor: pointer;
	display: none;
	font-size: 14px;
	border: 1px solid #c1c1c1;
	border-top: 0px solid #c1c1c1;
	margin: 0px;
	padding: 14px 15px;
	float: left;
	width: 100%
}

h2.resp-tab-active {
	border-bottom: 0px solid #c1c1c1 !important;
	background-color: #0c3344 !important;
	color: #fff
}

h2.resp-tab-title:last-child {
	border-bottom: 12px solid #c1c1c1 !important;
	background: blue
}

.resp-vtabs ul.resp-tabs-list {
	float: left;
	width: 30%;
	margin-top: 0
}

.resp-vtabs .resp-tabs-list li {
	display: block;
	padding: 15px 15px !important;
	margin: 0 0 4px;
	cursor: pointer;
	float: none
}

.resp-vtabs .resp-tabs-container {
	padding: 0px;
	background-color: #fff;
	border: 1px solid #0c3344 !important;
	float: left;
	width: 70%;
	min-height: 250px;
	clear: none
}

.resp-vtabs .resp-tab-content {
	border: none;
	word-wrap: break-word
}

.resp-vtabs li.resp-tab-active {
	position: relative;
	z-index: 1;
	margin-right: -1px !important;
	padding: 14px 15px 15px 11px !important;
	border-top: 1px solid;
	border: 1px solid #0c3344 !important;
	border-left: 4px solid #0c3344 !important;
	margin-bottom: 4px !important;
	border-right: 1px #FFF solid !important
}

.resp-arrow {
	border-color: transparent #1e2022 #1e2022 transparent;
	border-style: solid;
	border-width: 0 1px 1px 0;
	float: right;
	display: block;
	height: 8px;
	transform: rotate(45deg);
	width: 8px;
	margin-top: 4px
}

h2.resp-tab-active span.resp-arrow {
	border-color: #fff transparent transparent #fff;
	border-style: solid;
	border-width: 1px 0 0 1px;
	float: right;
	display: block;
	height: 8px;
	transform: rotate(45deg);
	width: 8px;
	margin-top: 7px
}

.resp-easy-accordion h2.resp-accordion {
	display: block
}

.resp-easy-accordion .resp-tab-content {
	border: 1px solid #c1c1c1
}

.resp-easy-accordion .resp-tab-content:last-child {
	border-bottom: 1px solid #c1c1c1
}

.resp-jfit {
	width: 100%;
	margin: 0px
}

.resp-tab-content-active {
	display: block;
	border-color: #0c3344 !important
}

h2.resp-accordion:first-child {
	border-top: 1px solid #c1c1c1
}

h2.resp-accordion.resp-tab-active {
	border-color: #0c3344 !important
}

@media only screen and (max-width: 991px) {
	ul.resp-tabs-list {
		display: none
	}

	h2.resp-accordion {
		display: block
	}

	h2.resp-accordion i {
		margin-right: 8px;
		font-size: 18px
	}

	.resp-vtabs .resp-tab-content {
		border: 1px solid #C1C1C1
	}

	.resp-vtabs .resp-tab-content:last-child {
		border-bottom: 1px solid #c1c1c1 !important
	}

	.resp-vtabs .resp-tabs-container {
		border: none !important;
		float: none;
		width: 100%;
		min-height: 100px;
		clear: none
	}

	.resp-accordion-closed {
		display: none !important
	}

	.resp-tab-content {
		background-color: #fff
	}
}

.owl-carousel .owl-item img {
	width: auto;
	display: inline-block
}

.owl-carousel .owl-nav.disabled+.owl-dots {
	margin-top: 10px
}

.owl-carousel .owl-dots {
	margin-top: 20px;
	text-align: center;
	-webkit-tap-highlight-color: transparent
}

.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1
}

.owl-carousel .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px
}

.owl-carousel .owl-dots .owl-dot:hover span {
	background: #1e87c1
}

.owl-carousel .owl-dots .owl-dot.active span {
	background: #1e87c1
}

.services-carousel-one.owl-theme .owl-nav {
	margin-top: 40px
}

.services-carousel-one.owl-theme .owl-nav [class*='owl-']:hover {
	background: #0c3344;
	color: #fff
}

.services-carousel-one.owl-theme .owl-nav.disabled+.owl-dots {
	text-align: left
}

.services-carousel-one.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	transition: all 0.3s ease 0s;
	top: unset;
	width: 50px;
	margin: 0;
	height: 50px;
	font-size: 18px;
	border-radius: 50%;
	background-color: #1e87c1;
	color: #fff;
	line-height: 50px;
	left: 0
}

.services-carousel-one.owl-carousel .owl-nav button.owl-prev i {
	font-weight: 700
}

.services-carousel-one.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	transition: all 0.3s ease 0s;
	top: unset;
	width: 50px;
	margin: 0;
	height: 50px;
	font-size: 18px;
	border-radius: 50%;
	background-color: #1e87c1;
	color: #fff;
	line-height: 50px;
	left: 60px
}

.services-carousel-one.owl-carousel .owl-nav button.owl-next i {
	font-weight: 700
}

.services-carousel-one.owl-carousel .owl-dots {
	text-align: left
}

@media screen and (max-width: 991px) {
	.services-carousel-one.owl-carousel .owl-nav button.owl-prev {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 16px
	}

	.services-carousel-one.owl-carousel .owl-nav button.owl-next {
		width: 45px;
		height: 45px;
		line-height: 45px;
		font-size: 16px;
		left: 55px
	}
}

.testimonial-carousel-one .owl-nav {
	margin-top: 0;
	position: absolute;
	left: -104%;
	bottom: 0
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
	background-color: rgba(255, 255, 255, 0.1);
	width: 60px;
	height: 60px;
	line-height: 62px;
	border-radius: 50%;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: .3s;
	transition: .3s;
	margin: 5px
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev i,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next i {
	color: #fff;
	font-size: 18px
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next:hover {
	opacity: 0.8;
	color: #fff
}

@media screen and (max-width: 1199px) {
	.testimonial-carousel-one .owl-nav {
		left: 0;
		bottom: -50%
	}

	.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev,
	.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
		width: 50px;
		height: 50px;
		line-height: 50px
	}

	.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev span,
	.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next span {
		font-size: 16px
	}
}

.testimonial-carousel-two .owl-nav {
	text-align: start
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev {
	height: 56px;
	width: 56px;
	display: inline-flex;
	justify-content: center;
	border-radius: 100%;
	position: relative;
	bottom: inherit;
	left: 0;
	top: inherit;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: .3s;
	transition: .3s;
	border: 1px solid #e4e4e4
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev i {
	font-size: 18px;
	-webkit-transition: .3s;
	transition: .3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0c3344
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev:hover i {
	opacity: 0.4
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next {
	height: 56px;
	width: 56px;
	display: inline-flex;
	justify-content: center;
	border-radius: 100%;
	position: relative;
	bottom: inherit;
	left: 0;
	top: inherit;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: .3s;
	transition: .3s;
	border: 1px solid #e4e4e4
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next i {
	font-size: 18px;
	-webkit-transition: .3s;
	transition: .3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0c3344
}

.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next:hover i {
	opacity: 0.4
}

.testimonial-carousel-two.owl-theme .owl-nav [class*='owl-']:hover {
	background: transparent
}

.accordion-style .card {
	background: transparent;
	box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
	border: none;
	margin-top: 0 !important;
	border-radius: 0
}

.accordion-style .card-header {
	border: 0px;
	padding: 0;
	border-bottom: none;
	background: none
}

.accordion-style .btn-link {
	color: #1e87c1;
	line-height: 26px;
	position: relative;
	border: none;
	border-bottom: none;
	border-left: none;
	display: block;
	width: 100%;
	text-align: left;
	white-space: normal;
	border-radius: 0;
	padding: 20px 45px 20px 18px;
	font-weight: 700;
	text-decoration: none;
	background-color: #ffffff
}

.accordion-style .btn-link:hover {
	text-decoration: none;
	color: #1e87c1
}

.accordion-style .btn-link:active {
	text-decoration: none;
	color: #1e87c1
}

.accordion-style .btn-link:focus {
	text-decoration: none;
	color: #1e87c1
}

.accordion-style .btn-link:after {
	content: "-";
	right: 17px;
	left: inherit;
	font-size: 20px;
	transform: none;
	top: 20px;
	position: absolute;
	color: #1e87c1;
	background-color: transparent;
	border-radius: .3rem;
	line-height: 22px;
	width: 25px;
	height: 25px;
	text-align: center
}

.accordion-style .btn-link.collapsed {
	color: #42545e;
	line-height: 26px;
	position: relative;
	border: none;
	display: block;
	width: 100%;
	text-align: left;
	white-space: normal;
	border: none;
	padding: 20px 45px 20px 18px;
	font-weight: 700;
	text-decoration: none;
	background-color: #fff
}

.accordion-style .btn-link.collapsed:after {
	content: "+";
	right: 17px;
	left: inherit;
	font-size: 20px;
	transform: none;
	top: 22px;
	position: absolute;
	color: #212121;
	background-color: transparent;
	border-radius: .3rem;
	line-height: 20px;
	width: 25px;
	height: 25px;
	text-align: center
}

.accordion-style .card-body {
	padding: 0px 30px 25px 26px;
	line-height: 24px;
	text-align: left;
	border: none;
	border-left: none;
	background: #fff;
	border-top: none
}

@media screen and (max-width: 991px) {
	.accordion-style .card-body {
		padding: 10px 25px 30px 25px
	}
}

.accordion-style.style01 .card {
	background: rgba(255, 255, 255, 0.1)
}

.accordion-style.style01 .card .card-body {
	color: #ffffff
}

.accordion-style.style01 .card-header {
	border: 0
}

.accordion-style.style01 .btn-link {
	background: rgba(255, 255, 255, 0.1)
}

.accordion-style.style01 .card-body {
	background: rgba(255, 255, 255, 0.1)
}

.accordion-style.style01 .btn-link.collapsed {
	color: #ffffff
}

.accordion-style.style01 .btn-link.collapsed:after {
	color: #fff
}

.accordion .card {
	background: transparent;
	box-shadow: none;
	margin-bottom: 20px;
	border: 0;
	border-radius: 0
}

.accordion .card:last-child {
	margin-bottom: 0
}

.accordion .card-header {
	border: 0;
	padding: 0;
	background: none
}

.accordion .accordion-collapse {
	border: none
}

.accordion .accordion-button {
	border-bottom: none;
	color: #fff;
	font-size: 18px;
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	white-space: normal;
	box-shadow: none;
	font-weight: 500;
	padding: 16px 64px 16px 20px;
	text-decoration: none;
	background: #0c3344;
	border: 1px solid transparent;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px
}

.accordion .accordion-button:hover {
	text-decoration: none
}

.accordion .accordion-button.collapsed {
	background: #fff;
	color: #575a7b;
	border: 1px solid #ededed;
	border-radius: 5px
}

.accordion .accordion-button.collapsed:after {
	background: #0c3344;
	border: none;
	content: "+";
	right: 20px;
	left: inherit;
	font-size: 18px;
	transform: none;
	width: 25px;
	height: 25px;
	line-height: 20px;
	top: 14px;
	border-radius: 5px;
	text-align: center;
	color: #fff
}

.accordion .accordion-button:after {
	background: #fff;
	border: none;
	content: "-";
	right: 20px;
	border-radius: 5px;
	left: inherit;
	font-size: 18px;
	border: 1px solid #fff;
	transform: none;
	width: 25px;
	height: 25px;
	line-height: 21px;
	top: 14px;
	position: absolute;
	color: #1e87c1;
	text-align: center
}

.accordion .card-body {
	color: #575a7b;
	font-size: 16px;
	padding: 20px 25px;
	line-height: 28px;
	text-align: left;
	border-top: 0;
	border-bottom: 1px solid #ededed;
	border-left: 1px solid #ededed;
	border-right: 1px solid #ededed;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px
}

@media screen and (max-width: 991px) {
	.accordion .accordion-button {
		padding: 15px 50px 15px 15px;
		font-size: 16px
	}

	.accordion .accordion-button.collapsed:after,
	.accordion .accordion-button:after {
		right: 15px;
		font-size: 16px;
		height: 22px;
		line-height: 18px;
		width: 22px;
		top: 13px
	}

	.accordion .card-body {
		padding: 20px 15px
	}
}

@media screen and (max-width: 575px) {
	.accordion .accordion-button {
		padding: 15px 50px 15px 15px
	}
}

.sidebar .butn-style3 {
	box-shadow: none
}

.sidebar .input-group .form-control {
	min-height: 50px
}

.sidebar .blog-tags a {
	border: 1px solid #1e87c1;
	background-color: #fff;
	padding: 7px 25px;
	font-size: 14px;
	line-height: 20px;
	margin: 0.6rem 10px 0 0;
	display: inline-block;
	border-radius: .3rem
}

.sidebar .blog-tags a:hover {
	border: 1px solid #1e87c1;
	background-color: #1e87c1;
	color: #fff
}

.sidebar .blog-insta:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(28, 191, 170, 0.8);
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
	z-index: 1;
	border-radius: .3rem
}

.sidebar .blog-insta:hover:before {
	opacity: 0.85
}

.sidebar .blog-insta .insta-icon {
	position: absolute;
	font-size: 25px;
	color: #fff;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	top: 55%;
	transform: translateY(-55%);
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s
}

.sidebar .blog-insta:hover .insta-icon {
	opacity: 1;
	visibility: visible
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.cat-item {
	list-style: none;
	word-wrap: break-word
}

.cat-item:first-child {
	margin-top: 0;
	border-top: 0;
	padding-top: 0
}

.cat-item ul.children {
	margin-top: 0.5rem;
	margin-left: 10px
}

.wp-tag-cloud li {
	display: inline-block
}

.wp-tag-cloud a {
	border: 1px solid #efefef;
	padding: 7px 21px;
	font-size: 14px !important;
	line-height: 20px;
	margin: 5px 10px 5px 0;
	display: inline-block;
	border-radius: 0.25rem
}

.wp-tag-cloud a:hover {
	background-color: #1e87c1;
	border-color: #1e87c1;
	color: #fff
}

.sidebar .widget {
	margin-bottom: 3rem
}

.sidebar .widget:last-child {
	margin-bottom: 0;
	margin-bottom: 0 !important
}

.sidebar .widget p:last-child {
	margin-bottom: 0
}

.sidebar .widget-body {
	padding: 1.9rem
}

.sidebar .widget-title {
	background: #0c3344;
	padding: 20px;
	font-size: 1rem;
	margin-bottom: 0;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	border-radius: 0.375rem 0.375rem 0 0
}

.sidebar .contact-icon {
	display: block;
	color: #fff;
	background: #1e87c1;
	font-size: 20px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	transition: all .45s ease-out
}

.recent-post>div:first-child a {
	display: inline-block;
	width: 80px;
	height: auto
}

.widget_categories ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.widget_categories ul .cat-item {
	margin-bottom: 10px
}

.widget_categories ul .cat-item a {
	position: relative;
	display: block;
	text-transform: capitalize;
	padding: 15px 20px 15px 20px;
	border: 1px solid #ededed;
	font-weight: 600;
	background: #ffffff;
	transition: all 0.3s ease 0s;
	border-radius: 0.375rem
}

.widget_categories ul .cat-item a:hover {
	background-color: #1e87c1;
	color: #ffffff
}

.widget_categories ul .cat-item:first-child {
	padding-top: 0
}

.widget_categories ul .cat-item:last-child {
	margin-bottom: 0
}

.widget_categories ul .cat-item span.cat-name {
	padding-right: 5px
}

.widget .widget-brochure {
	margin-bottom: 0;
	padding: 0;
	list-style: none
}

.widget .widget-brochure li {
	position: relative;
	margin-bottom: 12px;
	display: inline-block;
	border: 1px solid #ededed;
	width: 100%;
	background: #fff
}

.widget .widget-brochure li a {
	position: relative;
	display: block;
	padding: 16px 15px 16px 75px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 800
}

.widget .widget-brochure li a i {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 100%;
	line-height: 3;
	text-align: center;
	font-size: 20px;
	background: #1e87c1;
	color: #ffffff
}

.widget .widget-brochure li:last-child {
	margin-bottom: 0
}

.blog-comment:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	top: 0;
	left: 10px;
	background-color: #1e87c1
}

.sidebar .widget {
	margin-bottom: 30px;
	box-shadow: 0 0 14px rgba(82, 85, 90, 0.1);
	border-radius: 0.375rem
}

.sidebar .widget .blog-tags a {
	font-size: 14px;
	background-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	display: -webkit-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-transition: 500ms all ease;
	transition: 500ms all ease;
	z-index: 9;
	padding: 5px 12px;
	margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags a:hover {
	color: #1e87c1
}

.sidebar .widget .blog-tags a:hover:before {
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.sidebar .widget .blog-tags a:before {
	width: 0%;
	content: "";
	height: 0%;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: #fff;
	z-index: -1
}

.sidebar .widget .blog-tags.sm-tags a {
	font-size: 14px;
	background-color: white;
	color: #0c3344;
	display: -webkit-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-transition: 500ms all ease;
	transition: 500ms all ease;
	z-index: 9;
	padding: 5px 12px;
	margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags.sm-tags a:hover {
	color: #1e87c1
}

.sidebar .widget.categories ul li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	margin-bottom: 20px
}

.sidebar .widget.categories ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: unset
}

.sidebar .widget.categories ul li a {
	color: #fff
}

.sidebar .widget.categories ul li:hover a {
	color: #1e87c1
}

.sidebar .widget.categories ul li:hover span {
	color: #1e87c1
}

.sidebar .widget.categories ul li:hover span:before {
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.sidebar .widget.categories ul li span {
	width: 27px;
	height: 27px;
	font-size: 14px;
	background-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-transition: 500ms all ease;
	transition: 500ms all ease;
	z-index: 9
}

.sidebar .widget.categories ul li span:before {
	width: 0%;
	content: "";
	height: 0%;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: #fff;
	z-index: -1
}

.sidebar .widget-info {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #f0f2f7;
	padding: 30px;
	margin-bottom: 40px;
	position: relative
}

.sidebar .widget-info .info-img {
	background: #fff;
	display: inline-block;
	padding: 15px 20px 15px 0;
	width: 150px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px
}

.sidebar .widget-info .info-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: -50px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: -1
}

.sidebar .widget-info h3 {
	margin-bottom: 30px;
	font-size: 22px;
	line-height: 36px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px
}

.banner-wrapper {
	overflow: hidden
}

.banner-wrapper img {
	margin-top: 0;
	margin-left: 1px;
	clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%)
}

.banner-wrapper .icon-boxs {
	position: absolute;
	top: -60px;
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
	width: 80px;
	height: 80px;
	border-radius: 50%
}

.banner-wrapper .icon-boxs i {
	line-height: 80px
}

.error-wrapper .number-wrap h1 {
	color: #fff;
	font-size: 250px;
	text-align: center;
	line-height: 1
}

@media screen and (max-width: 1199px) {
	.error-wrapper .number-wrap h1 {
		font-size: 230px;
		margin-bottom: 20px
	}
}

@media screen and (max-width: 991px) {
	.error-wrapper .number-wrap h1 {
		font-size: 220px;
		margin-bottom: 15px
	}
}

@media screen and (max-width: 767px) {
	.error-wrapper .number-wrap h1 {
		font-size: 200px;
		margin-bottom: 10px
	}
}

@media screen and (max-width: 575px) {
	.error-wrapper .number-wrap h1 {
		font-size: 150px
	}
}

.blogs .posts-wrapper .meta-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 30px;
	padding-left: 0;
	padding-bottom: 10px;
	position: relative;
	font-weight: 600
}

.blogs .posts-wrapper .meta-list:before {
	background: #ededed;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%
}

.blogs .posts-wrapper .meta-list li {
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	color: #777;
	margin-right: 20px
}

.blogs .posts-wrapper .post-content-details {
	padding: 1.75rem
}

.blogs .posts-wrapper .blog-detail-list {
	padding-left: 0;
	list-style: none;
	margin: 0
}

.blogs .posts-wrapper .blog-detail-list li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 25px;
	text-transform: capitalize;
	font-size: 16px
}

.blogs .posts-wrapper .blog-detail-list li:after {
	content: '\f0a9';
	font-family: Font Awesome\ 5 Free;
	position: absolute;
	left: 0px;
	top: 1px;
	z-index: 1;
	font-weight: 600;
	color: #1e87c1
}

.blogs .posts-wrapper .share-post {
	text-align: right;
	padding-left: 10px
}

.blogs .posts-wrapper .share-post ul li {
	display: inline-block;
	margin: 0 0 0 10px
}

@media screen and (max-width: 991px) {
	.blogs .posts-wrapper .meta-list {
		margin: 0 0 15px;
		padding-bottom: 15px
	}
}

@media screen and (max-width: 767px) {
	.blogs .posts-wrapper .blog-detail-list li {
		font-size: 14.4px
	}

	.blogs .posts-wrapper .share-post {
		text-align: unset
	}

	.blogs .posts-wrapper .share-post ul li {
		font-size: 15px;
		margin: 0 8px
	}

	.blogs .posts-wrapper .meta-list li {
		margin-right: 15px
	}

	.blogs .posts-wrapper .separator {
		margin-top: 20px
	}
}

.blog-tags {
	margin-bottom: 0;
	padding-left: 0
}

.blog-tags li {
	display: inline-block;
	list-style: none
}

.blog-tags li a {
	font-size: 14px;
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	padding: 3px 8px;
	margin: 4px 4px 4px 0;
	border: 1px solid #ededed;
	line-height: 30px;
	border-radius: 4px
}

.blog-tags li a:hover {
	background: #1e87c1;
	color: #ffffff;
	border: 1px solid #1e87c1;
	color: #fff
}

@media screen and (max-width: 991px) {
	.widget-title {
		font-size: 18px;
		margin-bottom: 25px
	}
}

@media screen and (max-width: 767px) {
	.side-bar .widget {
		margin-bottom: 25px
	}
}

@media screen and (max-width: 575px) {
	.side-bar .widget {
		padding: 20px
	}
}

.countdown {
	list-style: none;
	padding-left: 0
}

.countdown li {
	display: inline-block;
	padding: 15px 10px;
	text-align: center;
	background: #1e87c1;
	min-width: 150px;
	margin-right: 4px;
	border-radius: 10px
}

.countdown li span {
	font-size: 50px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 5px;
	position: relative
}

.countdown li span:before {
	content: "";
	height: 1px;
	position: absolute;
	width: 100%
}

.countdown li p.timeRefDays {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	color: #ffffff
}

.countdown li p.timeRefHours {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	color: #ffffff
}

.countdown li p.timeRefMinutes {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	color: #ffffff
}

.countdown li p.timeRefSeconds {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	color: #ffffff
}

.coming-soon .social-icon {
	margin: 0;
	padding: 0;
	list-style: none
}

.coming-soon .social-icon li {
	text-align: center;
	margin-right: 10px;
	display: inline-block
}

.coming-soon .social-icon li:last-child {
	margin-right: 0
}

.coming-soon .social-icon li a {
	color: #0c3344;
	height: 40px;
	width: 40px;
	line-height: 40px;
	display: inline-block;
	font-size: 16px;
	background: #ffffff;
	border-radius: 50px
}

.coming-soon .social-icon li a:hover {
	color: #ffffff;
	background-color: #1e87c1
}

@media screen and (max-width: 767px) {
	.countdown li {
		min-width: 120px
	}

	.countdown li span {
		font-size: 40px
	}
}

@media screen and (max-width: 575px) {
	.countdown li {
		margin-top: 10px;
		padding: 10px;
		min-width: 47%
	}

	.countdown li span {
		font-size: 35px
	}

	.countdown li p.timeRefDays {
		font-size: 14px
	}

	.countdown li p.timeRefHours {
		font-size: 14px
	}

	.countdown li p.timeRefMinutes {
		font-size: 14px
	}

	.countdown li p.timeRefSeconds {
		font-size: 14px
	}

	.coming-soon .social-icon li a {
		height: 35px;
		width: 35px;
		line-height: 35px;
		font-size: 14px
	}
}

.social-icon {
	margin-bottom: 0;
	list-style: none;
	padding: 0
}

.social-icon li {
	display: inline-block;
	margin-right: 5px
}

.social-icon li a {
	text-align: center;
	height: 35px;
	width: 35px;
	line-height: 35px;
	font-size: 14px;
	border-radius: 5px;
	display: inline-block;
	background: #1e87c1;
	color: #ffffff
}

.social-icon li a:hover {
	background-color: #0c3344
}

.social-icon li:last-child {
	margin-right: 0
}

.contact-style01 .conatct-form {
	padding: 3rem
}

.contact-style01 .quform-element>label {
	color: #fff;
	opacity: 0.7
}

.contact-style01 .contact-bg {
	height: 100%;
	border: 1px solid #dbe0e9;
	padding: 38px 22px 38px 22px;
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s
}

.contact-style01 .contact-bg:hover {
	border: 1px solid #1e87c1
}

.contact-style01 .contact-bg .icon {
	border: 1px solid #1e87c1;
	height: 77px;
	width: 77px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s
}

.contact-style01 .contact-bg:hover .icon {
	background-color: #0c3344;
	border: 0
}

.contact-style01 .contact-bg .icon i {
	color: #1e87c1;
	font-size: 25px
}

.contact-style01 .contact-bg:hover .icon i {
	color: #fff
}

@media screen and (max-width: 1199px) {
	.contact-style01 .conatct-form {
		padding: 2.5rem
	}

	.contact-style01 .contact-bg {
		padding: 27px 22px 27px 22px
	}
}

@media screen and (max-width: 991px) {
	.contact-style01 .contact-bg {
		padding: 20px
	}

	.contact-style01 .conatct-form {
		padding: 45px
	}
}

@media screen and (max-width: 575px) {
	.contact-style01 .contact-bg .icon {
		height: 66px;
		width: 66px
	}

	.contact-style01 .conatct-form {
		padding: 2rem
	}
}

.contact-map {
	width: 100%;
	height: 400px;
	vertical-align: top;
	border: 0
}

.lg-backdrop {
	z-index: 99999
}

.lg-outer {
	z-index: 999999
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #1e87c1
}

.lg-progress-bar .lg-progress {
	background-color: #1e87c1
}

.lg-backdrop.in {
	opacity: 0.85
}

.error-page span {
	font-size: 300px;
	writing-mode: vertical-lr;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
	color: transparent;
	-webkit-text-stroke: 2px #ffffff;
	vertical-align: middle
}

@media screen and (max-width: 1399px) {
	.error-page span {
		font-size: 258px
	}
}

@media screen and (max-width: 1199px) {
	.error-page span {
		font-size: 229px
	}
}

@media screen and (max-width: 991px) {
	.error-page span {
		font-size: 184px
	}
}

@media screen and (max-width: 767px) {
	.error-page span {
		writing-mode: inherit;
		font-size: 175px
	}
}

@media screen and (max-width: 575px) {
	.error-page span {
		writing-mode: inherit;
		font-size: 102px
	}
}

.filtering {
	margin-bottom: 40px
}

.filtering span {
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 5px;
	padding: 6px 15px;
	border-radius: 4px;
	background: #0c3344;
	color: #ffffff;
	text-transform: uppercase
}

.filtering span:last-child {
	margin: 0
}

.filtering .active {
	color: #ffffff;
	background: #1e87c1
}

@media screen and (max-width: 575px) {
	.filtering {
		margin-bottom: 30px
	}

	.filtering span {
		padding: 6px 8px;
		margin-right: 5px;
		font-size: 13px
	}
}

.portfolio-style01 .portfolio-overlay:before {
	background: #0c3344 none repeat scroll 0 0 padding-box content-box;
	content: "";
	height: 100%;
	width: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	left: 50%;
	top: 0;
	transition: all 500ms cubic-bezier(0.47, 0, 0.745, 0.715);
	transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715)
}

.portfolio-style01 .portfolio-icon-box {
	padding: 14px 18px;
	text-align: center;
	width: 100%;
	z-index: 9;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%)
}

.portfolio-style01 .portfolio-icon-box a {
	color: #ffffff !important;
	top: 50%;
	right: 50%;
	margin-top: -17px;
	display: inline-block;
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 55px;
	padding: 0;
	margin: 0 4px;
	text-align: center;
	background-color: #1e87c1;
	border-radius: 50%;
	transform: translateY(50px);
	opacity: 0;
	visibility: hidden;
	transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.portfolio-style01 .portfolio-icon-box:hover a {
	background: #6d8c54
}

.portfolio-style01 .portfolio-content {
	padding: 30px 25px;
	position: relative;
	background-color: #fff;
	transition: all 0.4s;
	box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08)
}

.portfolio-style01 .portfolio-content:before {
	position: absolute;
	bottom: 100%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 15px 15px;
	border-color: transparent transparent #fff transparent;
	z-index: 1;
	top: -14px;
	left: 42px
}

.portfolio-style01:hover .portfolio-overlay:before {
	opacity: .8;
	width: 100%;
	left: 0
}

.portfolio-style01:hover .portfolio-icon-box {
	opacity: 1
}

.portfolio-style01:hover .portfolio-icon-box a {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0.3s;
	background-color: #1e87c1
}

.portfolio-style01:hover .portfolio-content {
	background-color: #1e87c1
}

.portfolio-style01:hover .portfolio-content:before {
	border-color: transparent transparent #1e87c1 transparent
}

.portfolio-style01:hover .portfolio-content .h4 a {
	color: #ffffff
}

.portfolio-style01:hover .portfolio-content .h6 {
	color: #fff
}

.about-style01 .about-review {
	position: relative;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	z-index: 2
}

.about-style01 .about-review .about-review-content {
	width: calc(100% - 280px);
	text-align: center
}

.about-style01 .about-review .about-review-content ul {
	width: 100%;
	padding: 0;
	margin: 15px 0 0;
	list-style: none
}

.about-style01 .about-review .about-review-content ul li {
	display: inline-block;
	font-size: 19px;
	font-weight: 600;
	line-height: normal;
	margin-right: 10px;
	color: #0c3344
}

.about-style01 .about-review .about-box {
	max-width: 260px;
	background: #eef8f8;
	border-radius: 0.375rem;
	padding: 30px;
	position: absolute;
	bottom: 30px;
	left: 30px
}

.about-style01 .about-review .about-box .about-avatar {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 20px
}

.about-style01 .about-review .about-box .about-avatar .about-img {
	position: relative;
	width: calc(100% - 90px)
}

.about-style01 .about-review .about-box .about-avatar .about-img:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	background: #0a11191a;
	width: 1px;
	height: 100%
}

.about-style02 .num-text {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 90px
}

.about-style02 .num-text span {
	display: inline-block;
	position: relative;
	font-size: 12.5rem;
	line-height: 1;
	font-weight: 600;
	color: #1e87c1;
	padding: 0 20%;
	letter-spacing: -10px
}

.about-style02 .num-text span:before {
	content: "";
	display: inline-block;
	height: 1px;
	width: 100%;
	background: rgba(0, 81, 83, 0.2);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0
}

.about-style02 .about-text {
	position: absolute;
	right: 71px;
	top: 30px;
	text-align: right;
	line-height: 1
}

.about-style02 .about-text .inner-text {
	display: block;
	font-size: 46px;
	color: black;
	font-weight: 800;
	font-size: 1.75rem;
	line-height: 1
}

.about-style02 .about-text .about-num {
	display: block;
	font-weight: 600;
	color: #c3c3c3;
	font-size: 5.625rem;
	line-height: 1
}

.about-style02 .bg-img1 {
	position: absolute;
	right: 15px;
	bottom: -60px
}

.about-style02 img {
	box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1)
}

@media screen and (max-width: 1399px) {
	.about-style02 .about-text {
		right: 21px
	}

	.about-style02 .num-text span {
		font-size: 11rem
	}
}

@media screen and (max-width: 1199px) {
	.about-style02 .num-text {
		top: 40px
	}

	.about-style02 .num-text span {
		font-size: 7rem;
		padding: 0 10%
	}
}

.services-block {
	margin-top: -126px;
	position: relative;
	z-index: 9;
	overflow: visible;
	background-color: rgba(225, 225, 225, 0.2)
}

@media screen and (max-width: 991px) {
	.services-block {
		margin-top: 0;
		background-color: #0c3344
	}
}

.video-style01 .video-text {
	width: 200px;
	height: 200px;
	color: white;
	padding: 13px;
	font-weight: 600;
	border-radius: 50%;
	background: #0c3344;
	border: 1px solid #FFFFFF33;
	position: relative;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	margin: 0 auto
}

.video-style01 .video-text .coloring {
	fill: white;
	text-transform: uppercase;
	letter-spacing: 8px;
	font-weight: 600
}

.video-style01 .video-text svg {
	-webkit-animation: rotated_circle 12s linear infinite;
	animation: rotated_circle 12s linear infinite
}

.video-style01 .video-text .video-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center
}

@media screen and (max-width: 991px) {
	.video-style01 .video-text {
		width: 168px;
		height: 168px
	}
}

@media screen and (max-width: 575px) {
	.video-style01 .video-text {
		width: 145px;
		height: 145px
	}
}

.why-choose-style01 .why-choose-box .icon-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #1e87c1;
	position: absolute;
	top: 0;
	left: 10px;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.4s ease
}

.why-choose-style01 .why-choose-box:hover .icon-circle {
	opacity: 1;
	transform: scale(1)
}

@media screen and (max-width: 991px) {
	.min-vh-400 {
		min-height: 400px
	}
}

.why-choose-style02 .why-choose-content .why-choose-box {
	background: #1e87c1;
	padding: 35px;
	border-radius: 0.375rem;
	position: absolute;
	bottom: -35px;
	inset-inline-end: -35px;
	width: 283px
}

.why-choose-style02 .why-choose-content .why-choose-box p {
	font-size: 22px;
	color: #0c3344;
	font-weight: 500;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.33
}

@media screen and (max-width: 1199px) {
	.why-choose-style02 .why-choose-content .why-choose-box {
		padding: 29px;
		bottom: -89px;
		inset-inline-end: -16px;
		width: 273px
	}
}

@media screen and (max-width: 991px) {
	.why-choose-style02 .why-choose-content .why-choose-box {
		bottom: -34px;
		inset-inline-end: -22px
	}
}

@media screen and (max-width: 767px) {
	.why-choose-style02 .why-choose-content .why-choose-box {
		bottom: 0;
		inset-inline-end: 0
	}
}

@keyframes "loading-1" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg)
	}
}

@keyframes "loading-2" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(144deg);
		transform: rotate(144deg)
	}
}

@keyframes "loading-3" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(120deg);
		transform: rotate(120deg)
	}
}

@keyframes "loading-4" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(36deg);
		transform: rotate(36deg)
	}
}

@keyframes "loading-5" {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(70deg);
		transform: rotate(70deg)
	}
}

.progress-round {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background: none;
	margin: 0 auto;
	box-shadow: none;
	position: relative
}

.progress-round:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #f1f1f1;
	position: absolute;
	top: 0;
	left: 0
}

.progress-round>span {
	width: 50%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1
}

.progress-round .progress-left {
	left: 0
}

.progress-round .progress-left .progress-bar {
	left: 100%;
	border-top-right-radius: 80px;
	border-bottom-right-radius: 80px;
	border-left: 0;
	-webkit-transform-origin: center left;
	transform-origin: center left;
	animation: loading-5 1.2s linear forwards 1.8s
}

.progress-round .progress-left .progress-bar.progress-bar2 {
	animation: loading-3 1.2s linear forwards 1.8s
}

.progress-round .progress-bar {
	width: 100%;
	height: 100%;
	background: none;
	border-width: 2px;
	border-style: solid;
	position: absolute;
	top: 0;
	border-color: #0c3344
}

.progress-round .progress-right {
	right: 0
}

.progress-round .progress-right .progress-bar {
	left: -100%;
	border-top-left-radius: 80px;
	border-bottom-left-radius: 80px;
	border-right: 0;
	-webkit-transform-origin: center right;
	transform-origin: center right;
	animation: loading-1 1.8s linear forwards
}

.progress-round .progress-value {
	width: 90%;
	height: 90%;
	border-radius: 50%;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	color: #0c3344;
	line-height: 135px;
	text-align: center;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 5%;
	left: 5%
}

@media screen and (max-width: 991px) {
	.progress-round .progress-value {
		font-size: 14px
	}
}

.testimonials-style01 .left-content {
	margin-bottom: 15%
}

.testimonials-style01 .left-content .left-count {
	margin-right: 10px;
	color: #fff
}

.testimonials-style01 .left-content .start-content {
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 30px;
	letter-spacing: -2px;
	background-color: #1e87c1;
	font-size: 16px;
	color: #063232;
	padding-top: 3px;
	padding-bottom: 3px
}

.testimonials-style01 .left-content span {
	font-size: 13px;
	color: #fff;
	text-transform: uppercase
}

@media screen and (max-width: 991px) {
	.testimonials-style01 .left-content {
		margin-bottom: 5%
	}
}

@media screen and (max-width: 767px) {
	.testimonials-style01 .left-content {
		margin-bottom: 4%
	}

	.testimonials-style01 .left-content .start-content {
		font-size: 13px
	}

	.testimonials-style01 .left-content span {
		font-size: 11px
	}
}

@keyframes "float" {
	0% {
		transform: translateY(0px)
	}

	50% {
		transform: translateY(5px)
	}

	100% {
		transform: translateY(10px)
	}
}

.testimonials-style02 .left-box {
	position: absolute;
	left: 30px;
	bottom: 85px;
	width: 230px;
	border-radius: 0.375rem;
	background-color: #0f313a;
	animation: float 2s linear .5s infinite alternate both;
	-webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	text-align: center
}

.testimonials-style02 .left-box .inner-box {
	top: -1px;
	margin-bottom: 15px;
	padding-bottom: 35px;
	padding-top: 35px;
	background-color: #fff;
	position: relative
}

.testimonials-style02 .left-box .inner-box h1 {
	letter-spacing: -3px;
	color: #0f313a;
	font-size: 4.375rem;
	line-height: 4.375rem;
	word-spacing: -2px
}

.testimonials-style02 .left-box .inner-box .box-tag {
	padding: 0 20px;
	border-radius: 100px;
	background-color: #1e87c1;
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
	color: #fff;
	line-height: 30px;
	font-size: 12px;
	display: inline-block;
	text-transform: uppercase;
	margin-top: 3px
}

.testimonials-style02 .fas.fa-star {
	letter-spacing: -4px
}

@media screen and (max-width: 1199px) {
	.testimonials-style02 .left-box {
		left: -40px
	}

	.testimonials-style02 .left-box .inner-box {
		padding-bottom: 25px;
		padding-top: 15px
	}

	.testimonials-style02 .left-box .inner-box h1 {
		font-size: 2.875rem;
		margin-bottom: 0
	}
}

.extra-style01 {
	padding-bottom: 275px
}

.client-style01 .client-logo {
	opacity: 1;
	-webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
	-moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
	-ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
	-o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
	transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1)
}

.client-style01:hover .client-logo {
	-webkit-filter: blur(2px);
	filter: blur(2px);
	opacity: .6
}

.client-style01 .client-logo:hover {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0)
}

.client-style02 .client-box {
	width: 254px;
	height: 254px;
	background-color: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 0.375rem
}

.client-style02 .client-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../public/fondo_age.png") no-repeat center;
	background-size: cover;
	mix-blend-mode: luminosity;
	z-index: -1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
	opacity: 0
}

.client-style02 .client-box::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	opacity: 0;
	background: rgb(9 52 62 / 60%)
}

.client-style02 .client-box:hover {
	border-radius: 100%;
	background: rgb(9 52 62 / 60%)
}

.client-style02 .client-box:hover::before {
	opacity: 1
}

.client-style02 .client-box:hover::after {
	opacity: 1
}

@media screen and (max-width: 991px) {
	.client-style02 .client-box {
		width: 200px;
		height: 200px
	}
}

@media screen and (max-width: 575px) {
	.client-style02 .client-box {
		width: 170px;
		height: 170px
	}
}

.counter-style01 .counter-block .counter-inner {
    font-size: 65px;
    line-height: 1.7;
    font-weight: 700;
    color: #0c3344;
    letter-spacing: inherit;
    overflow: hidden;
}

.counter-style01 .counter-block .counter-inner .counter-no {
	display: flex;
	margin: 0 0 -0.36em 0;
	font-weight: inherit;
	position: relative;
	white-space: nowrap;
	justify-content: center
}

.counter-style01 .counter-block .counter-line {
	width: 100%;
	height: 1px;
	background: #dee2e6;
	margin: 0 0 21px
}

@media screen and (max-width: 1199px) {
	.counter-style01 .counter-block .counter-inner {
		font-size: 65px
	}

	.counter-style01 .counter-block .counter-inner .counter-no {
		margin: 0 0 -0.30em 0
	}

	.counter-style01 .counter-block .counter-line {
		margin: 0 0 12px
	}
}

@media screen and (max-width: 991px) {
	.counter-style01 .counter-block .counter-inner {
		font-size: 56px
	}
}

.process-style01 .process-box {
	text-align: center;
	position: relative;
	padding: 40px 20px;
	border-radius: 6px;
	transition: background-color 0.4s ease, box-shadow 0.4s ease
}

.process-style01 .process-box .process-step {
    padding: 10px 30px;
    color: #fff;
    background-color: #1e87c1;
    text-transform: uppercase;
    display: block;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    z-index: 1;
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
}

.process-style01 .process-box .process-line {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-color: #e9ecef;
	transition: background-color 0.4s ease;
	z-index: 0
}

.process-style01 .process-box:hover,
.process-style01 .process-box:active,
.process-style01 .process-box:focus {
	background-color: #1e87c1;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.process-style01 .process-box:hover .h5,
.process-style01 .process-box:active .h5,
.process-style01 .process-box:focus .h5 {
	color: #ffffff
}

.process-style01 .process-box:hover p,
.process-style01 .process-box:active p,
.process-style01 .process-box:focus p {
	color: #ffffff
}

.process-style01 .process-box:hover .process-step,
.process-style01 .process-box:active .process-step,
.process-style01 .process-box:focus .process-step {
	background-color: #ffffff;
	color: #1e87c1
}

.process-style01 .process-box:hover .process-line,
.process-style01 .process-box:active .process-line,
.process-style01 .process-box:focus .process-line {
	background-color: rgba(255, 255, 255, 0.2)
}

.process-style01 [class^="col-"]:first-child .process-line {
	left: 50%;
	transform: none;
	width: 50%
}

.process-style01 [class^="col-"]:last-child .process-line {
	left: 0;
	transform: none;
	width: 50%
}

@media screen and (max-width: 991px) {
	.process-style01 .process-box {
		padding: 20px 20px
	}

	.process-style01 .process-box .process-step {
		display: block
	}

	.process-style01 [class^="col-"] .process-line {
		display: none
	}
}

.faq-style01 {
	margin-top: -245px;
	position: relative;
	overflow: visible;
	z-index: 99;
	background: transparent
}

.faq-style01 .faq-video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.faq-style01 .faq-video a {
	display: block;
	width: 84px;
	height: 84px;
	background: #1e87c1;
	text-align: center;
	line-height: 84px;
	color: #ffffff;
	font-size: 30px;
	border-radius: 50%;
	position: relative;
	border: 1px solid #1e87c1
}

.faq-style01 .faq-video a:before {
	content: " ";
	width: 130%;
	height: 130%;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	position: absolute;
	left: -12px;
	top: -12px;
	-webkit-animation: pulse 1s infinite;
	animation: pulse 1s infinite;
	z-index: -1
}

.faq-style01 .faq-content {
	padding: 60px 60px 50px 60px;
	background-color: #eff7f6;
	border-radius: 0.375rem
}

.faq-style01 img {
	border-radius: 0.375rem
}

.faq-style01 .faq-img {
	position: relative
}

@media screen and (max-width: 1199px) {
	.faq-style01 .faq-content {
		padding: 40px 40px 30px 40px
	}
}

@media screen and (max-width: 767px) {
	.faq-style01 .faq-content {
		padding: 35px 35px 25px 30px
	}
}

.progress-style01 .progress {
	height: 8px
}

.progress-style01 .progress .progress-bar {
	background-color: #1e87c1
}

.faq-box-main {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-right: 45%;
	z-index: 9
}

.faq-box-inner {
	background: #1e87c1;
	padding: 10%
}

.scroll-section {
	width: 100%;
	overflow: hidden;
	position: relative
}

.scroll-track {
	display: flex;
	white-space: nowrap;
	will-change: transform;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running
}

.pause-on-hover:hover {
	animation-play-state: paused
}

.pause-on-hover:active {
	animation-play-state: paused
}

.pause-on-hover:focus {
	animation-play-state: paused
}

.scroll-left {
	animation-name: scroll-left
}

.scroll-right {
	animation-name: scroll-right
}

.scroll-group {
	display: inline-flex;
	white-space: nowrap
}

.scroll-item {
	display: inline-block;
	white-space: nowrap;
	line-height: 1
}

.scroll-item.with-img {
	min-width: 50px;
	height: auto;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: inline-flex
}

.scroll-item.with-img img {
	vertical-align: middle
}

@keyframes scroll-left {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-200%)
	}
}

@keyframes scroll-right {
	0% {
		transform: translateX(-200%)
	}

	100% {
		transform: translateX(0)
	}
}

.scroll-icon-rotated {
	-webkit-animation: icon-rotated 2s linear infinite;
	animation: icon-rotated 2s linear infinite
}

@keyframes icon-rotated {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

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

.scroll-speed-1 {
	animation-duration: 10s
}

.scroll-speed-2 {
	animation-duration: 15s
}

.scroll-speed-3 {
	animation-duration: 20s
}

.scroll-speed-4 {
	animation-duration: 30s
}

.scroll-speed-5 {
	animation-duration: 40s
}

.scroll-speed-6 {
	animation-duration: 60s
}

.scroll-speed-7 {
	animation-duration: 80s
}

.scroll-speed-8 {
	animation-duration: 100s
}

.scroll-speed-9 {
	animation-duration: 120s
}

@keyframes "campoutscrollingmarquee" {
	0% {
		transform: translate3d(0, 0, 0)
	}

	100% {
		transform: translate3d(-50%, 0, 0)
	}
}

@keyframes "campoutscrollingmarqueeReverse" {
	0% {
		transform: translate3d(-50%, 0, 0)
	}

	100% {
		transform: translate3d(0%, 0, 0)
	}
}

.scrolling-main {
	padding: 40px 0
}

.scrolling-text {
	width: 100%;
	overflow: hidden;
	line-height: 0
}

.scrolling-marquee {
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	animation: campoutscrollingmarqueeReverse 6s linear infinite
}

.scrolling-marquee h4 {
	margin: 0px;
	padding: 0px;
	display: inline-block;
	font-size: 26px;
	line-height: 38px;
	margin-bottom: 0
}

.scrolling-marquee h4.circle-marquee:before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 100%;
	border: 2px solid #fff;
	display: inline-block;
	margin: 0px 50px;
	vertical-align: middle
}

.scrolling-left-text .scrolling-marquee {
	animation: campoutscrollingmarquee 6s linear infinite;
	animation-duration: 20s
}

.scrolling-left-text .scrolling-marquee h4 {
	color: #fff
}

.circle-marquee {
	width: 10px;
	height: 10px;
	margin-top: auto;
	margin-bottom: auto;
	border-radius: 100%;
	border: 2px solid #fff;
	display: inline-block;
	vertical-align: middle
}

.page-navigation {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	background-color: #eff7f6
}

.prev-page {
	position: relative;
	width: 50%;
	max-width: 350px;
	margin: 10px
}

.prev-page:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
	transform: scale(1.04, 1.12);
	transition: .3s ease-in-out;
	pointer-events: none
}

.prev-page .page-info>a {
	display: flex;
	align-items: center;
	position: relative;
	padding: 16px 20px;
	min-height: 110px;
	transition: 0.8s
}

.prev-page .page-info .image-prev {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden
}

.prev-page .page-info .image-next {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden
}

.prev-page .page-info .prev-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 800;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s
}

.prev-page .page-info .prev-title:empty {
	display: none
}

.prev-page .page-info .next-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 800;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s
}

.prev-page .page-info .next-title:empty {
	display: none
}

.prev-page:hover:before {
	background-color: white;
	transform: scale(1);
	box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.prev-page a {
	justify-content: flex-start;
	text-align: left
}

.prev-page a:hover .image-prev:after {
	visibility: visible;
	opacity: 1
}

.prev-page a:hover .image-prev:before {
	visibility: visible;
	opacity: 1;
	margin-left: 0
}

.prev-page .image-prev {
	margin-right: 20px
}

.prev-page .image-prev:after {
	background-color: #1e87c1;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out
}

.prev-page .image-prev:before {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	margin-left: 20px;
	content: "\e64a";
	font-family: 'themify';
	font-size: 21px;
	line-height: 70px;
	color: #fff;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out
}

.next-page {
	position: relative;
	width: 50%;
	max-width: 350px;
	margin: 10px;
	margin-left: auto
}

.next-page:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
	transform: scale(1.04, 1.12);
	transition: .3s ease-in-out;
	pointer-events: none
}

.next-page .page-info>a {
	display: flex;
	align-items: center;
	position: relative;
	padding: 16px 20px;
	min-height: 110px;
	transition: 0.8s
}

.next-page .page-info .image-prev {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden
}

.next-page .page-info .image-next {
	position: relative;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	vertical-align: middle;
	transition: inherit;
	overflow: hidden
}

.next-page .page-info .prev-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 800;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s
}

.next-page .page-info .prev-title:empty {
	display: none
}

.next-page .page-info .next-title {
	display: inline-block;
	position: relative;
	max-width: 220px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 800;
	word-wrap: break-word;
	vertical-align: middle;
	transition: 0.45s
}

.next-page .page-info .next-title:empty {
	display: none
}

.next-page:hover:before {
	background-color: white;
	transform: scale(1);
	box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.next-page .image-next {
	margin-left: 20px
}

.next-page .image-next:after {
	background-color: #1e87c1;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out
}

.next-page .image-next:before {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	margin-right: 20px;
	content: "\e64a";
	font-family: 'themify';
	font-size: 21px;
	line-height: 70px;
	color: #fff;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease-in-out;
	transform: scaleX(-1)
}

.next-page a {
	justify-content: flex-end;
	text-align: right
}

.next-page a:hover .image-next:after {
	visibility: visible;
	opacity: 1
}

.next-page a:hover .image-next:before {
	visibility: visible;
	opacity: 1;
	margin-right: 0
}

.next-page .next-title {
	text-align: right
}

.prev-link-page-info>span {
	display: block
}

.prev-link-page-info .date-details {
	font-size: 14px;
	letter-spacing: .025em;
	line-height: 20px;
	margin-bottom: -2px
}

.prev-link-page-info .date-details>div {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500
}

.prev-link-page-info .date-details>span {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500
}

.prev-link-page-info .date-details:only-child {
	margin-top: 0
}

.next-link-page-info>span {
	display: block
}

.next-link-page-info .date-details {
	font-size: 14px;
	letter-spacing: .025em;
	line-height: 20px;
	margin-bottom: -2px
}

.next-link-page-info .date-details>div {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500
}

.next-link-page-info .date-details>span {
	line-height: inherit;
	transition: 0.45s;
	font-weight: 500
}

.next-link-page-info .date-details:only-child {
	margin-top: 0
}

@media (max-width: 767px) {
	.prev-page {
		width: calc(100% - 20px);
		max-width: unset
	}

	.next-page {
		width: calc(100% - 20px);
		max-width: unset
	}

	.prev-page+.next-page {
		margin-top: 0
	}

	.page-navigation {
		flex-direction: column
	}
}

@media (max-width: 575px) {
	.prev-page .page-info>a {
		padding: 10px
	}

	.prev-page .page-info .prev-title {
		max-width: 168px
	}

	.prev-page .page-info .next-title {
		max-width: 168px
	}

	.next-page .page-info>a {
		padding: 10px
	}

	.next-page .page-info .prev-title {
		max-width: 168px
	}

	.next-page .page-info .next-title {
		max-width: 168px
	}
}

.form-group {
	margin-bottom: 1rem
}

.form-group label {
	margin-bottom: .5rem
}

.form-control:focus {
	border-color: #1e87c1
}

.form-check-input:checked {
	border-color: #1e87c1;
	background-color: #1e87c1
}

.quform-input {
	position: relative
}

.quform-input .form-control {
	border-radius: 5px
}

.quform-input .quform-errors-wrap {
	position: absolute;
	right: 8px;
	top: 0;
	line-height: normal;
	z-index: 1
}

.quform-element>label {
	font-weight: normal;
	padding-bottom: 5px;
	margin-bottom: 0;
	color: #6a747b;
	font-size: 16px
}

.quform-element>label .quform-required {
	color: #cc0101;
	font-size: 10px
}

.quform-inner input {
	width: 100%
}

.quform-elements .quform-element textarea {
	margin-bottom: 0;
	padding: 8px 15px;
	vertical-align: top
}

.quform-elements .quform-element select {
	margin-bottom: 0;
	padding: 8px 35px 8px 15px
}

.quform-errors {
	padding: 0;
	margin: 0;
	line-height: normal
}

.quform-errors>.quform-error {
	padding: 0;
	background: none;
	border: none;
	float: none;
	color: #f5543f;
	font-size: 11px;
	line-height: normal;
	letter-spacing: normal
}

.quform-outer-no-js .quform-error {
	padding: 0;
	background: none;
	border: none;
	float: none;
	color: #f5543f;
	font-size: 11px;
	line-height: normal;
	letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
	padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type=file],
.quform-has-error .custom-file-label {
	border-color: #f5543f !important
}

.quform-success-message {
	padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
	float: none
}

.quform-loading-wrap {
	float: none
}

.quform-loading-wrap .quform-loading {
	display: inline-block
}

.light-validation .quform-errors>.quform-error {
	color: #fff
}

.newsletter-form .quform-submit-inner button {
	font-size: 18px;
	border: none;
	position: absolute;
	right: -10px;
	top: -1px;
	height: 55px;
	width: 55px;
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border: 0
}

.newsletter-form .quform-submit-inner button.newsletter-btn {
	right: 0;
	top: 0
}

.newsletter-form .quform-element .quform-input .form-control.news-box {
	min-height: 55px;
	border-radius: 5px;
	padding: 0 70px 0 20px
}

.newsletter-form-style1 .form-control {
	min-height: 54px
}

.newsletter-form-icon .quform-elements {
	position: relative;
	border-radius: 10px
}

.newsletter-form-icon .quform-submit-inner {
	position: absolute;
	right: 1px;
	top: 1px;
	width: auto;
	background: transparent;
	height: 48px
}

.newsletter-form-icon .quform-submit-inner .btn {
	padding: 0.500rem 1.15rem
}

.newsletter-form-icon .quform-submit-inner .btn:focus {
	border: 1px solid transparent
}

.newsletter-form-icon .quform-submit-inner .btn:active {
	border: 1px solid transparent
}

.newsletter-form-icon .quform-loading-wrap {
	margin-top: 15px;
	margin-bottom: 0;
	margin-left: 0
}

.newsletter-form-icon input {
	border: 1px solid transparent;
	background-color: rgba(255, 255, 255, 0.2);
	height: 50px;
	padding: 0.5rem 4rem 0.5rem 1rem;
	color: #fff
}

.newsletter-form-icon .form-control:focus {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff
}

.newsletter-form-icon .form-control:active {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff
}

.newsletter-form-icon .quform-has-error input {
	border-color: #1e87c1
}

.newsletter-form-icon .quform-has-error textarea {
	border-color: #1e87c1
}

.newsletter-form-icon .quform-has-error select {
	border-color: #1e87c1
}

.newsletter-form-icon .quform-input .quform-errors-wrap {
	right: 15px
}

.newsletter-form-icon i {
	font-size: 1.2rem;
	line-height: 2rem
}

.quform.dark .form-control {
	min-height: 60px;
	border-radius: 0.375rem;
	resize: none;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	color: #fff;
	opacity: 0.65
}

.quform.dark .form-control:focus {
	border-color: #1e87c1;
	background-color: transparent;
	color: #fff;
	opacity: 0.95
}

.quform.dark .form-control:active {
	border-color: #1e87c1;
	background-color: transparent;
	color: #fff;
	opacity: 0.95
}

.quform.dark .form-control:hover {
	border-color: #1e87c1;
	background-color: transparent;
	color: #fff;
	opacity: 0.95
}

.social-icon-style1 li {
	display: inline-block
}

.social-icon-style1 li a {
	display: inline-block;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	background: #1e87c1;
	height: 38px;
	line-height: 38px;
	width: 38px;
	border-radius: 3px
}

.social-icon-style1 li a:hover {
	color: #fff;
	background-color: #0c3344
}

.social-icon-style1 li:last-child {
	margin-right: 0
}

.social-icon-style2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px 0;
	padding: 35px 0;
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed
}

.social-icon-style2 ul {
	margin-left: 30px;
	padding-left: 0;
	margin-bottom: 0
}

.social-icon-style2 ul li {
	display: inline-block;
	list-style: none;
	margin: 4px
}

.social-icon-style2 ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #ededed;
	color: #0c3344;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s
}

.social-icon-style2 ul li a:hover {
	color: #fff;
	border-color: #1e87c1;
	background: #1e87c1
}

.social-icon-style3 li {
	display: inline-block;
	margin-right: 30px
}

.social-icon-style3 li:last-child {
	margin-right: 0
}

.social-icon-style3 li a {
	color: #fff
}

.social-icon-style3 li a:hover {
	color: #1e87c1
}

.social-icon-style4 {
	margin-bottom: 0;
	display: inline-block;
	padding-left: 0px;
	list-style: none
}

.social-icon-style4 li {
	vertical-align: middle;
	display: inline-block;
	margin-right: 5px
}

.social-icon-style4 li a {
	display: inline-flex;
	font-size: 14px;
	text-align: center;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 50%
}

.social-icon-style4 li a:hover {
	background: #1e87c1
}

.social-icon-style4 li:last-child {
	margin-right: 0
}

.footer-logo {
	max-width: 215px;
	width: 100%;
	display: inline-block
}

footer .email {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	display: inline-block;
	padding-bottom: 5px
}

footer .email a {
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	transition: all 0.8s ease
}

footer .email a:hover {
	color: #1e87c1 !important
}

footer .email a:hover:after {
	width: 100%
}

footer .email a:active {
	color: #1e87c1 !important
}

footer .email a:active:after {
	width: 100%
}

footer .email a:focus {
	color: #1e87c1 !important
}

footer .email a:focus:after {
	width: 100%
}

footer .email a:after {
	border-bottom: 1px solid #fff;
	transition: all 0.8s ease;
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 0
}

footer .phone {
	padding-bottom: 0;
	margin-bottom: 0
}

footer .phone a {
	padding-bottom: 0;
	letter-spacing: -0.05rem;
	color: white
}

footer .phone a:hover {
	color: #1e87c1 !important
}

footer .phone a:active {
	color: #1e87c1 !important
}

footer .phone a:focus {
	color: #1e87c1 !important
}

footer li {
	list-style: none;
	word-wrap: break-word
}

footer li:first-child {
	margin-top: 0;
	border-top: 0;
	padding-top: 0
}

footer li a {
	color: #fff
}

footer li a:hover {
	color: #1e87c1
}

footer li a:active {
	color: #1e87c1
}

footer li a:focus {
	color: #1e87c1
}

footer label {
	color: #fff
}

.left-icon i {
	margin-right: 6px;
	margin-left: 0
}

@media screen and (max-width: 767px) {
	footer .email a:after {
		bottom: -10px
	}
}

.footer-style01 .footer-icon {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1e87c1;
	border-radius: 50%;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out
}

.footer-style01 .footer-icon:hover {
	transform: scale(1.1)
}