@font-face {
	font-family: raleway;
	src: url(Raleway-Regular.ttf);

}

@font-face {
	font-family: abrilfatface;
	src: url(AbrilFatface-Regular.ttf);
}

@font-face {
	font-family: volkorn-bold;
	src: url(Vollkorn-Bold.ttf);
}

@font-face {
	font-family: hammersmith;
	src: url(HammersmithOne-Regular.ttf);
}

/*******************************/
/********* General CSS *********/
/*******************************/

body {
	color: black;
	background: #e5e5e5;
	font-family: 'raleway', sans-serif;
	overflow-x: hidden;
	font-size: 18px;
}

#app {
	/* // opacity: 0 !important;
	// visibility: hidden; */
	z-index: 100;
}

#app {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	/* padding-bottom: 4vmin; */
	/* height: 100vh; */
	max-height: 100vh;
	width: 100%;
	background: #f6f8ff;
	color: #3a3535;
}

.title {
	padding-left: 1em;
	grid-column: 1 / -1;
	grid-row: 1;
	font-family: "raleway", serif;
	font-size: 5vw;
	width: 100%;
	z-index: 2;

	/* // start */

	>.title-inner {
		display: inline-block;
	}
}

@keyframes text-clip {
	from {
		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	}

	to {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

@keyframes outer-left {
	from {
		transform: translateX(50%);
	}

	to {
		transform: none;
	}
}

@keyframes inner-left {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: none;
	}
}

.manjit,
.mozart {
	animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
	/* // outline: 1px solid red; */
}

/* // [class*='inner'] {
  //   outline: 1px solid blue;
  // }
   */
.title-inner {
	display: inline-block;
	animation: inner-left 1s 1s ease both;
}

.manjit-inner {
	display: inline-block;
	animation: inner-left 1s 1s ease both,
		text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.mozart-inner {
	animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.title {
	animation: outer-left 1s 1s ease both;
}

.manjit {

	/* // start */
	>.manjit-inner {
		display: inline-block;
	}
}

.mozart {
	display: inline-block;
}

.image {
	grid-row: 1;
	grid-column: 2;
	margin-left: -2rem;
	opacity: 0.7;
	animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
	animation-duration: 1s;
	/* Specify the animation duration */
	animation-fill-mode: backwards;
	/* Specify the animation fill mode */

}

@keyframes image-in {
	from {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	to {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}


/* Replay animation! */
/* body:active * {
	animation: none !important;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #212A3E;
	font-family: 'raleway', sans-serif;
	font-size: 25px;
}

h1 {
	font-size: 50px;
	font-weight: 600;
}

a {
	color: #454545;
	transition: 0.3s;
}

a:hover,
a:active,
a:focus {
	color: #092a49;
	outline: none;
	text-decoration: none;
}

/* 
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 2px solid #0796fe;
    width: 50%;
    margin-left: 0;
} */

.btn:focus,
.form-control:focus {
	box-shadow: none;
}

.container-fluid {
	width: 100%;
}

.back-to-top {
	position: fixed;
	display: none;
	background: #0796fe;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 22px;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 9;
}

.back-to-top i {
	color: #092a49;
	padding-top: 10px;
}

.back-to-top:hover {
	background: #092a49;
}

.back-to-top:hover i {
	color: #0796fe;
}

@media (min-width: 992px) {
	.mt-125 {
		margin-top: 125px;
	}

	#app {
		height: 100vh;
	}

	.image img {
		height: 100vh !important;
	}
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
	position: relative;
	height: 40px;
	background-image: linear-gradient(to right, #0796fe, #092a49);
}

.top-bar .top-bar-left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.top-bar .top-bar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-bar .text {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	height: 35px;
	padding: 0 10px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text i {
	font-size: 15px;
	color: #ffffff;
	margin-right: 5px;
}

.top-bar .text h2 {
	color: #eeeeee;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
	margin: 0;
}

.top-bar .text p {
	color: #eeeeee;
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 0 5px;
}

.top-bar .social {
	display: flex;
	height: 35px;
	font-size: 0;
	justify-content: flex-end;
}

.top-bar .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 100%;
	font-size: 16px;
	color: #ffffff;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social a:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social a:hover {
	color: #092a49;
	background: #ffffff;
}

@media (min-width: 992px) {
	.top-bar {
		padding: 0 60px;
	}
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
	position: relative;
	transition: 0.5s;
	z-index: 999;
}

.navbar.nav-sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: 0.5s;
}

.navbar .navbar-brand {
	margin: 0;
	color: #ffffff;
	font-size: 45px;
	line-height: 0px;
	font-weight: 200;
	text-transform: uppercase;
}

.navbar .navbar-brand img {
	max-width: 100%;
	max-height: 55px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link {
	padding: 10px 10px 8px 10px;
	color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #0796fe;
	transition: none;
}

.navbar .dropdown-menu {
	margin-top: 0;
	border: 0;
	border-radius: 0;
	background: #f8f9fa;
}



@media (min-width: 992px) {
	.navbar {
		position: absolute;
		width: 100%;
		top: 35px;
		/* padding: 10px 60px; */
		background: #092a49 !important;
		z-index: 9;
	}

	.navbar.nav-sticky {
		padding: 10px 60px;
		background: #092a49 !important;
	}

	.page .navbar {
		background: #092a49 !important;
	}

	.navbar a.nav-link {
		padding: 8px 15px;
		font-size: 15px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
}

@media (max-width: 991.98px) {
	.navbar {
		padding: 15px;
		background: #092a49 !important;
	}

	.navbar a.nav-link {
		padding: 5px;
	}

	.navbar .dropdown-menu {
		box-shadow: none;
	}

	.navbar .navbar-brand img {
		max-width: 100%;
		max-height: 40px;
	}
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
	position: relative;
	width: 100%;
	height: calc(100vh - 35px);
	min-height: 400px;
	background: #092a49;
	/* margin-bottom: 45px; */
}

.carousel .container-fluid {
	padding: 0;
}

.carousel .carousel-item {
	position: relative;
	width: 100%;
	height: calc(100vh - 35px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}


.carousel .carousel-img {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: right;
	overflow: hidden;
}

.carousel .carousel-img::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(9 42 73 / 20%);
	z-index: 1;
}

.carousel .carousel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel .carousel-text {
	position: absolute;
	width: 90vw;
	height: calc(100vh - 35px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
	margin-top: 35px;
}

.carousel .carousel-text h1 {
	font-family: 'hammersmith';
	color: #fff;
	font-size: 55px;
	-webkit-animation: mainFadeIn 1s forwards;
	-o-animation: mainFadeIn 1s forwards;
	animation: mainFadeIn 1s forwards;
	animation-delay: 1.2s;
	opacity: 0;
	display: flex;
	align-items: baseline;
	letter-spacing: 8px;
	position: relative;
	text-shadow: 2px 2px #092a49;
}

.carousel .carousel-text h1 span {
	font-size: 70px;
	margin-left: 20px;
}

.carousel .carousel-text .secondtext {
	animation: secFadeIn 1s forwards;
	animation-delay: 2s;
	opacity: 0;
	font-weight: 400;
	font-family: 'raleway';
	color: #ffffff;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 1;
	text-shadow: 2px 2px black;
	margin-top: 15px;
}

.carousel .carousel-text p {
	color: white;
}

.carousel .carousel-text .btn {
	padding: 15px 30px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #ffffff;
	background: none;
	border: 2px solid #ffffff;
	border-radius: 0;
	transition: 0.3s;
}

.carousel .carousel-text .btn i {
	margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
	color: #0796fe;
	background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
	margin-right: 15px;
}

.carousel .owl-nav {
	position: absolute;
	width: 122px;
	right: 2px;
	bottom: 2px;
	display: flex;
	z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0796fe;
	background: #092a49;
	font-size: 22px;
	transition: 0.3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
	color: #ffffff;
	background: #0796fe;
}

.carousel .owl-nav .owl-prev {
	margin-right: 2px;
}

.carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}

#videoModal .modal-dialog {
	position: relative;
	max-width: 800px;
	margin: 60px auto 0 auto;
}

#videoModal .modal-body {
	position: relative;
	padding: 0px;
}

#videoModal .close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: -30px;
	z-index: 999;
	font-size: 30px;
	font-weight: normal;
	color: #ffffff;
	background: #000000;
	opacity: 1;
}

@media (max-width: 991.98px) {

	.carousel,
	.carousel .carousel-item,
	.carousel .carousel-text {
		height: calc(100vh - 105px);
	}

	.carousel .carousel-text h1 {
		font-size: 35px;
	}

	.carousel .carousel-text p {
		font-size: 16px;
	}

	.carousel .carousel-text .btn {
		padding: 12px 30px;
		font-size: 15px;
		letter-spacing: 0;
	}

	.carousel .carousel-text h1 span {
		font-size: 60px;
		margin-left: 5px;
	}
}

@media (max-width: 767.98px) {

	.carousel,
	.carousel .carousel-item,
	.carousel .carousel-text {
		height: calc(100vh - 70px);
	}

	.carousel .carousel-text h1 {
		font-size: 30px;
	}

	.carousel .carousel-text .btn {
		padding: 10px 25px;
		font-size: 15px;
		letter-spacing: 0;
	}

	.carousel .carousel-text h1 span {
		font-size: 50px;
		margin-left: 5px;
	}
}

@media (max-width: 575.98px) {
	.carousel .carousel-text h1 {
		font-size: 25px;
	}

	.carousel .carousel-text .btn {
		padding: 8px 20px;
		font-size: 14px;
		letter-spacing: 0;
	}

	.carousel .carousel-text h1 span {
		font-size: 35px;
		margin-left: 5px;
	}
}



/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
	position: relative;
	text-align: left;
	margin-bottom: 45px;
}

.section-header p {
	margin-bottom: 5px;
	position: relative;
	font-size: 16px;
}

.section-header h2 {
	margin: 0 0 0 40px;
	position: relative;
	font-size: 50px;
	font-weight: 200;
}

.section-header h2::after {
	content: "";
	position: absolute;
	width: 200px;
	height: 0;
	top: 23px;
	left: -40px;
	border-bottom: 30px solid;
	border-image: repeating-linear-gradient(60deg,
			rgba(0, 0, 0, 0.05),
			rgba(0, 0, 0, 0.05) 1.5%,
			rgba(0, 0, 0, 0.1) 1.5%,
			rgba(0, 0, 0, 0.1) 3%) 30;
}

.section-header h2:hover::after {
	border-image: repeating-linear-gradient(60deg,
			rgba(0, 0, 0, 0.1),
			rgba(0, 0, 0, 0.1) 1.5%,
			rgba(0, 0, 0, 0.05) 1.5%,
			rgba(0, 0, 0, 0.05) 3%) 30;
}

@media (max-width: 991.98px) {
	.section-header h2 {
		font-size: 45px;
	}
}

@media (max-width: 767.98px) {
	.section-header h2 {
		font-size: 40px;
	}
}

@media (max-width: 575.98px) {
	.section-header h2 {
		font-size: 35px;
	}
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
	position: relative;
	width: 100%;
	padding: 45px 0 15px 0;
}

.fact .fact-item {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	padding: 30px 0 25px 0;
	text-align: center;
	background: #ffffff;
	border: 1px solid transparent;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

.fact .fact-item:hover {
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: none;
}

.fact .fact-item img {
	max-height: 50px;
	margin-bottom: 15px;
}

.fact .fact-item h2 {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
	position: relative;
	width: 100%;
	padding: 45px 0px 50px 0px;
	z-index: 2;
	background-color: #e5e5e5;
	text-align: center;
}

.about .section-header {
	margin-bottom: 30px;
	margin-left: 0;
}

.about .about-img {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: 0.5s;
}

/* .about .about-img::after {
	position: absolute;
	content: "";
	top: 60px;
	right: 60px;
	bottom: 60px;
	left: 60px;
	background: transparent;
	border: 30px solid;
	border-image: repeating-linear-gradient(45deg,
			rgba(0, 0, 0, 0.05),
			rgba(0, 0, 0, 0.05) 0.5%,
			rgba(0, 0, 0, 0.1) 0.5%,
			rgba(0, 0, 0, 0.1) 1%) 30;
	z-index: 1;
}

.about .about-img:hover::after {
	border-image: repeating-linear-gradient(45deg,
			rgba(0, 0, 0, 0.1),
			rgba(0, 0, 0, 0.1) 0.5%,
			rgba(0, 0, 0, 0.05) 0.5%,
			rgba(0, 0, 0, 0.05) 1%) 30;
} */

.about .about-img-1 {
	position: relative;
	height: 100%;
	height: 100%;
	margin: 0 150px 150px 0;
}

.about .about-img-2 {
	position: absolute;
	height: 100%;
	height: 100%;
	top: 150px;
	left: 150px;
	z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
	position: relative;
	width: 100%;
}

.about .about-text p {
	font-size: 18px;
	text-align: justify;
}

.about .about-text a.btn {
	position: relative;
	margin-top: 15px;
	padding: 12px 25px;
	font-size: 18px;
	letter-spacing: 1px;
	color: #092a49;
	border: 2px solid #092a49;
	border-radius: 0;
	background: white;
	transition: 0.3s;
}

.about .about-text a.btn:hover {
	color: white;
	background: #092a49;
}

@media (max-width: 767.98px) {
	.about .about-img {
		margin-bottom: 30px;
		height: auto;
	}
}

.about-logo img {
	--c: #212A3E;
	/* the border color */
	--b: 10px;
	/* the border thickness*/
	--g: 5px;
	/* the gap on hover */

	padding: calc(var(--g) + var(--b));
	--_g: #0000 25%, var(--c) 0;
	background:
		conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
		conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
	transition: .3s, background-position .3s .3s;
	cursor: pointer;
}

.about-logo img:hover {
	--_i: 100%;
	transition: .3s, background-size .3s .3s;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
	position: relative;
	width: 100%;
	padding: 45px 0px 50px 0px;
	z-index: 2;
	background-color: #e5e5e5;
	text-align: lft;
}

.service .service-item,
.service-item2 {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	padding: 30px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

/* .service a {
	color: #0796fe;
	text-decoration: underline;
}

.service a:hover {
	color: #092a49;
	text-decoration: underline;
} */

.service .service-item2 img {
	height: 80px;
	width: 90px;
	margin-bottom: 35px;
}

.service .service-item:hover {
	border-color: transparent;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* .service .service-item img {
	height: 300px;
	width: 100%;
} */

.service .service-item h3 {
	margin-bottom: 40px;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
}

.service .service-item p {
	margin-bottom: 10px;
	font-size: 17px;
	text-align: justify;
}

/* .service .service-item a {
	position: relative;
	font-size: 16px;
	color: #0796fe;
	transition: 0.3s;
}

.service .service-item a::after {
	content: "";
	position: absolute;
	width: 80%;
	height: 2px;
	bottom: -3px;
	left: 10%;
	background: #0796fe;
}

.service .service-item:hover a.btn {
	color: #092a49;
	background: #1d2434;
	border-color: #1d2434;
} */

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
	position: relative;
	width: 100%;
	padding: 45px 0px 0px 0px;
	z-index: 2;
	background-color: #e5e5e5;
	/* text-align: center; */
}

.feature .col-md-6 {
	height: 100%;
}

.feature img {
	--c: #ffffff;
	/* the border color */
	--b: 10px;
	/* the border thickness*/
	--g: 5px;
	/* the gap on hover */

	padding: calc(var(--g) + var(--b));
	--_g: #0000 25%, var(--c) 0;
	background:
		conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
		conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
	transition: .3s, background-position .3s .3s;
	cursor: pointer;
}

.feature img:hover {
	--_i: 100%;
	transition: .3s, background-size .3s .3s;
}

.feature2 img {
	--c: #212A3E;
	/* the border color */
	--b: 10px;
	/* the border thickness*/
	--g: 5px;
	/* the gap on hover */

	padding: calc(var(--g) + var(--b));
	--_g: #0000 25%, var(--c) 0;
	background:
		conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
		conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
	transition: .3s, background-position .3s .3s;
	cursor: pointer;
}

.feature2 img:hover {
	--_i: 100%;
	transition: .3s, background-size .3s .3s;
}

.feature .feature-img {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.feature .feature-img::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 70%;
	top: 30%;
	left: 0;
	border: 30px solid;
	border-image: repeating-linear-gradient(45deg,
			rgba(0, 0, 0, 0.05),
			rgba(0, 0, 0, 0.05) 0.5%,
			rgba(0, 0, 0, 0.1) 0.5%,
			rgba(0, 0, 0, 0.1) 1%) 30;
	z-index: 1;
}

.feature .feature-img:hover::after {
	border-image: repeating-linear-gradient(45deg,
			rgba(0, 0, 0, 0.1),
			rgba(0, 0, 0, 0.1) 0.5%,
			rgba(0, 0, 0, 0.05) 0.5%,
			rgba(0, 0, 0, 0.05) 1%) 30;
}

.feature .feature-img img {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	margin: 0 30px 30px 30px;
	z-index: 2;
}

@media (max-width: 767.98px) {
	.feature .feature-img {
		margin-bottom: 45px;
	}
}

.feature .counters .col-6 {
	padding-top: 25px;
	display: flex;
	flex-direction: row;
}

.feature .counters i {
	padding: 5px 15px 0 0;
	font-size: 28px;
	color: #0796fe;
}

.feature .counters h2 {
	position: relative;
	display: inline-block;
	color: #0796fe;
	font-size: 30px;
	font-weight: 300;
}

.feature .counters h2::after {
	position: absolute;
	content: "+";
	top: -15px;
	right: -15px;
}

.feature .counters p {
	color: #092a49;
	font-size: 20px;
	margin: 0;
}

.feature p {
	text-align: justify;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
	position: relative;
	width: 100%;
	padding: 45px 0 15px 0;
}

.team .team-item {
	position: relative;
	margin-bottom: 75px;
}

.team .team-img {
	position: relative;
}

.team .team-img img {
	width: 100%;
}

.team .team-text {
	position: absolute;
	width: calc(100% - 30px);
	height: 96px;
	bottom: -46px;
	left: 15px;
	padding: 25px 15px;
	text-align: center;
	background: rgba(256, 256, 256, 0.9);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	overflow: hidden;
}

.team .team-text h2 {
	color: #0796fe;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.team .team-text p {
	margin-bottom: 20px;
	color: #092a49;
}

.team .team-social {
	position: relative;
	font-size: 0;
}

.team .team-social a {
	display: inline-block;
	width: 35px;
	height: 35px;
	margin: 0 3px;
	padding: 5px 0;
	text-align: center;
	font-size: 14px;
	color: #092a49;
	border: 2px solid #092a49;
	transition: 0.3s;
}

.team .team-social a:hover {
	color: #0796fe;
	border-color: #0796fe;
}

.team .team-item:hover .team-text {
	height: 160px;
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
	position: relative;
	width: 100%;
	padding: 45px 0;
}

.testimonial .testimonials-carousel {
	position: relative;
	width: calc(100% + 30px);
	margin: 0 -15px;
}

.testimonial .testimonial-item {
	position: relative;
	width: 100%;
	padding: 0 15px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}

.testimonial .testimonial-item img {
	position: relative;
	width: 80px;
	border-radius: 80px;
	margin-bottom: 15px;
}

.testimonial .testimonial-item p {
	margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
	position: relative;
	color: #092a49;
	font-size: 16px;
	letter-spacing: 1px;
	margin-bottom: 5px;
	padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 2px;
	bottom: 0;
	left: 0;
	background: #0796fe;
	transition: 0.3s;
}

.testimonial .testimonial-item:hover h2::before {
	width: 60px;
}

.testimonial .testimonial-item h3 {
	color: #999999;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
}

.testimonial .owl-nav {
	position: relative;
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
	position: relative;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0796fe;
	font-size: 25px;
	transition: 0.3s;
}

.testimonial .owl-nav .owl-prev {
	padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
	padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
	color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
	position: absolute;
	content: "";
	width: 80px;
	height: 3px;
	top: 11px;
	background: #0796fe;
	transition: 0.3s;
}

.testimonial .owl-nav .owl-prev::after {
	left: 9px;
}

.testimonial .owl-nav .owl-next::after {
	right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
	background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
	background: #092a49;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
	position: relative;
	width: 100%;
	padding: 45px 0px 0px 0px;
	z-index: 2;
	background-color: #e5e5e5;
}

.blog .section-header {
	margin-bottom: 75px;
}

.blog .blog-carousel {
	position: relative;
	width: calc(100% + 30px);
	left: -15px;
	right: -15px;
}

.blog .blog-item {
	position: relative;
	margin: 0 15px;
}

.blog.blog-page .blog-item {
	margin: -30px 0 0 0;
}

.blog .blog-img {
	position: relative;
	width: 100%;
	z-index: 1;
}

.blog .blog-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.blog .blog-content {
	position: relative;
	width: calc(100% - 60px);
	top: -60px;
	left: 30px;
	padding: 25px 30px;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	z-index: 2;
	min-height: 210px;
}

.blog .blog-content2 {
	position: relative;
	width: calc(100% - 60px);
	top: -60px;
	left: 30px;
	padding: 25px 30px;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.blog .blog-img2 img {
	width: 100%;
	/* height: 400px; */
	object-fit: cover;
}

.blog .blog-content h2.blog-title {
	font-size: 25px;
	font-weight: 400;
	letter-spacing: 1px;
}

.blog .blog-meta {
	position: relative;
	margin-bottom: 15px;
}

.blog .blog-meta * {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 300;
	color: #797979;
}

.blog .blog-meta i {
	color: #0796fe;
	margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
	margin-left: 0;
}

.blog .blog-text {
	position: relative;
}

.blog .blog-text p {
	margin-bottom: 10px;
	/* text-align: justify; */
}

.blog .blog-item a.btn {
	position: relative;
	padding: 0 0 0 35px;
	font-size: 14px;
	letter-spacing: 1px;
	color: #0796fe;
	transition: 0.3s;
}

.blog .blog-item a.btn:hover {
	color: #092a49;
}

.blog .blog-item a.btn::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 2px;
	top: 10px;
	left: 0;
	background: #0796fe;
}

.blog .owl-nav {
	position: relative;
	width: 100%;
	margin-top: -30px;
	display: flex;
	justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
	position: relative;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0796fe;
	font-size: 25px;
	transition: 0.3s;
}

.blog .owl-nav .owl-prev {
	padding-right: 80px;
}

.blog .owl-nav .owl-next {
	padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
	color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
	position: absolute;
	content: "";
	width: 80px;
	height: 3px;
	top: 11px;
	background: #0796fe;
	transition: 0.3s;
}

.blog .owl-nav .owl-prev::after {
	left: 9px;
}

.blog .owl-nav .owl-next::after {
	right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
	background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
	background: #092a49;
}

.blog .pagination {
	margin-bottom: 0;
}

.blog .pagination .page-link {
	margin-top: -30px;
	color: #092a49;
	border-radius: 0;
	border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
	color: #0796fe;
	background: #092a49;
}

.blog .pagination .disabled .page-link {
	color: #999999;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
	position: relative;
	width: 100%;
	padding: 45px 0px 50px 0px;
	z-index: 2;
	background-color: #e5e5e5;
}

.contact .contact-info {
	position: relative;
	display: flex;
	padding: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	transition: 0.3s;
	background: #212A3E;
	color: white;
}

.contact .contact-info:hover {
	border-color: transparent;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-icon {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid rgb(255 255 255);

}

.contact .contact-icon i {
	font-size: 18px;
	color: #0796fe;
}

.contact .contact-text {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 15px;
}

.contact .contact-text h3 {
	font-size: 25px;
	font-weight: 400;
	color: white;
	letter-spacing: 1px;
}

.contact .contact-text p {
	margin: 0;
	font-size: 17px;
	color: white;
}

.contact a {
	color: white
}

.contact .contact-form {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	transition: 0.3s;
	background: #212a3e;
	color: white;
}

.contact .contact-form:hover {
	border-color: transparent;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-form input {
	padding: 15px;
	background: none;
	border-radius: 0;
	border: 1px solid rgb(255 255 255);
	background: white;
}

.contact .contact-form textarea {
	height: 100px;
	padding: 8px 15px;
	background: none;
	border-radius: 0;
	border: 1px solid rgb(255 255 255);
	background: white;
}

.contact .contact-form .btn {
	padding: 15px 30px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #092a49;
	background: white;
	border: 2px solid #092a49;
	border-radius: 0;
	transition: 0.3s;
}

.contact .contact-form .btn:hover {
	color: white;
	background: #092a49;
}

.contact .help-block ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
	position: relative;
	width: 100%;
	padding: 45px 0 15px 0;
}

.single img {
	width: 100%;
	margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
	margin-bottom: 30px;
}

.single .ul-group {
	padding: 0;
	list-style: none;
}

.single .ul-group li {
	margin-left: 2px;
}

.single .ul-group li::before {
	position: relative;
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.single .ol-group {
	padding-left: 18px;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
	position: relative;
	/* margin-top: 45px; */
	padding-top: 90px;
	background: #092a49;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
	position: relative;
	margin-bottom: 45px;
	color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
	color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
	position: absolute;
	content: "";
	width: 45px;
	height: 2px;
	bottom: 0;
	left: 0;
	background: #0796fe;
}

.footer .footer-link a {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	transition: 0.3s;
}

.footer a {
	text-decoration: none;
	color: white;
}

.footer .footer-link a::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .footer-link a:hover {
	color: #0796fe;
	letter-spacing: 1px;
}

.footer .footer-contact p i {
	width: 25px;
}

.footer .button1 {
	position: relative;
	margin-top: 15px;
	padding: 12px 25px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	color: white;
	background: #0796fe;
	border: 1px solid white;
	border-radius: 0;
	transition: 0.3s;
}

.footer .button1:hover {
	color: #0796fe;
	background: white;
}

.footer .copyright {
	/* padding: 0 30px; */
	font-size: 16px;
}

.footer .copyright .row {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright p {
	margin: 0;
	color: #999999;
}

.footer .copyright .col-md-6:last-child p {
	text-align: right;
}

.footer .copyright p a {
	color: #ffffff;
}

.footer .copyright p a:hover {
	color: #0796fe;
}

@media (max-width: 767.98px) {

	.footer .copyright p,
	.footer .copyright .col-md-6:last-child p {
		margin: 5px 0;
		text-align: center;
	}
}

.btn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
	margin-bottom: 10px;
}

.responsive {
	width: 100%;
	height: auto;
}

.subhead {
	margin-bottom: 0;
	letter-spacing: 2px;
}

.srvice {
	margin: 10px;
	background-color: #e5e5e5;
	/* border-radius: 5px; */
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 125px;
	color: #212a3e !important;
	font-weight: 400;
	text-align: center;
	font-size: 20px;


}

.srvice:hover,
.srvice h2:hover {
	background-color: white;
	color: #092a49;
}


.srvice h2 {
	font-weight: 400;
	text-align: center;
	font-size: 20px;
	color: #212a3e;
}

/* .btn {
	position: relative;
	margin-top: 15px;
	padding: 12px 25px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #092a49;
	border: 2px solid #092a49;
	border-radius: 0;
	background: none;
	transition: 0.3s;
}

.btn:hover {
	color: #0796fe;
	background: #092a49;
} */

.section-plans {
	background-color: #000;
	padding: 4rem 0 4rem 0;
}

.card {
	-webkit-perspective: 150rem;
	perspective: 150rem;
	-moz-perspective: 150rem;
	position: relative;
	/* min-height: 550px !important; */
	height: auto;
	margin-bottom: 50px;
	border: 0px;
	border-radius: 0px;
}


.card__side {
	min-height: 550px;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	-webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.card__side--front {
	background-color: #fff;
}

.card__side--front-1 {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important
}

.card__side--back {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.card__side--back-1 {
	background: white;
}

.card__side--back-2 {
	background: linear-gradient(-45deg, #ffec61, #f321d7);
}

.card__side--back-3 {
	background: linear-gradient(-45deg, #9a4eff, #24ff72);
}

.card:hover .card__side--front-1,
.card:hover .card__side--front-2,
.card:hover .card__side--front-3 {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.card:hover .card__side--back {
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
}

.card__title {
	height: 20rem;
	padding: 4rem 2rem 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.card__title--1 .fas {
	font-size: 5rem;
}

.card__title--2 .fas {
	font-size: 5rem;
}

.card__title--3 .fas {
	font-size: 5rem;
}

.card__heading {
	font-size: 4rem;
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	width: 75%;
}

.card__heading-span {
	padding: 1rem 1.5rem;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.card__details {
	padding: 0 2rem 2rem;
}

.card__details ul {
	list-style: none;
	width: 80%;
	margin: 0 auto;
}

.card__details ul li {
	text-align: center;
	font-size: 1.5rem;
	padding: 1rem;
}

.card__details ul li:not(:last-child) {
	border-bottom: 1px solid #eee;
}

.card__cta {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90%;
	text-align: center;
}

.card__price-box {
	text-align: center;
	color: #fff;
	margin-bottom: 8rem;
}

.card__price-only {
	font-size: 1.4rem;
	text-transform: uppercase;
}

.card__price-value {
	font-size: 6rem;
	font-weight: 100;
}

.overlay {
	position: absolute;
	background: rgb(49 93 125 / 50%);
	/* center overlay text */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 20px;
}

.overlay h1 {
	color: white;
	text-align: center;
	font-size: 40px;
}

.overlay2 {
	background: #212A3E;
	margin: 10px;
	padding: 10px;
	width: 95%;
	height: 96%;
	color: white;
	font-size: 15px;
	min-height: 530px;
	text-align: left;

}

.overlay2 ul {
	list-style-type: square;
}

.overlay2 h2 {
	font-weight: bold;
	color: #092a49;
	background-color: white;
	text-align: center;
	padding: 8px;
}

.curved {
	position: relative;
	background: #2c3e50;
	height: 50vh;
	/* border-bottom-left-radius: 50% 10%;
	border-bottom-right-radius: 50% 10%; */
}

header {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 80vh;
	position: sticky;
	top: 0;
	z-index: 0;
	display: grid;
	align-items: center;
	justify-content: center;
}

header h1 {
	color: white;
	font-size: 60px;
	font-weight: 600;
	background-color: #212A3E;
	padding: 20px;
	letter-spacing: 5px;
}

article {
	position: relative;
	z-index: 1;
	background: white;
	padding: 20px;
}

.btn2 {
	border-radius: 0px;
	background: #092a49;
	border: 2px solid white;
}

.btn3 {
	position: relative;
	margin-top: 25px;
	padding: 12px 25px;
	font-size: 18px;
	letter-spacing: 1px;
	color: white;
	border: 2px solid white;
	border-radius: 0;
	background: none;
	transition: 0.3s;
}

a.btn3:hover {
	color: #092a49;
	background: white;
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 14px;
	right: 70px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}


.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff69;
	width: 100%;
	padding: 10px;
	text-align: center;
	letter-spacing: 2px;
	font-size: 50px;
	font-weight: 600;
	display: grid;
	align-items: center;
	min-height: 160px;
	display: grid;
	align-items: center;
	justify-content: center;
}



.flourish {
	display: block;
	overflow: hidden;
	text-align: center;
}

.flourish:before,
.flourish:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 50%;
	border-top-style: solid;
	border-top-width: 1px;
}

.flourish:before {
	right: -0.5em;
	margin-left: -50%;
}

.flourish:after {
	left: -0.5em;
	margin-right: -50%;
}

.flourish img {
	vertical-align: middle;
	/* width: 70%; */
}

@media (max-width: 768px) {
	.flourish img {
		width: 70%;
	}
}

@media (max-width: 426px) {
	header {

		height: 35vh !important;

	}

	.centered,
	header h1 {
		font-size: 35px;
		text-align: center;
		padding: 10px;
	}

}

.hero {
	width: 100%;
	height: 100vh;
	/* background: #232323; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero .box {
	width: 80vw;
	height: 250px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.hero .box .title2 {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	/* height: 120px; */
}

.hero .box .title2 .block {
	width: 0%;
	height: inherit;
	background: #092a49;
	position: absolute;
	animation: mainBlock 1.3s cubic-bezier(.74, .06, .4, .92) forwards;
	display: flex;
}

.hero .box .title2 h1 {
	font-family: 'hammersmith';
	color: #fff;
	font-size: 60px;
	-webkit-animation: mainFadeIn 1s forwards;
	-o-animation: mainFadeIn 1s forwards;
	animation: mainFadeIn 1s forwards;
	animation-delay: 1.2s;
	opacity: 0;
	display: flex;
	align-items: baseline;
	position: relative;
	text-shadow: 2px 2px #092a49;
}

.hero .box .title2 h1 span {
	width: 0px;
	height: 0px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #0793f8;
	-webkit-animation: load 0.6s cubic-bezier(.74, .06, .4, .92) forwards;
	animation: popIn 0.8s cubic-bezier(.74, .06, .4, .92) forwards;
	animation-delay: 2s;
	margin-left: 5px;
	margin-top: -10px;
	position: absolute;
	bottom: 13px;
	right: -20px;
}

.hero .box .role {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	height: 40px;
	/* margin-top: -10px; */
}

.hero .box .role .block {
	width: 0%;
	height: inherit;
	/* background: #0793f8; */
	position: absolute;
	animation: secBlock 1.3s cubic-bezier(.74, .06, .4, .92) forwards;
	animation-delay: 1.3s;
	display: flex;
}

.hero .box .role p {
	animation: secFadeIn 1s forwards;
	animation-delay: 2s;
	opacity: 0;
	font-weight: 400;
	font-family: 'raleway';
	color: #ffffff;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 1;
	text-shadow: 2px 2px black;
	margin-top: 15px;
}

@keyframes mainBlock {
	0% {
		width: 0%;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
	}

	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes secBlock {
	0% {
		width: 0%;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
	}

	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes mainFadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes popIn {
	0% {
		width: 0px;
		height: 0px;
		background: #e9d856;
		border: 0px solid #ddd;
		opacity: 0;
	}

	50% {
		width: 10px;
		height: 10px;
		background: #e9d856;
		opacity: 1;
		bottom: 55px;
	}

	65% {
		width: 7px;
		height: 7px;
		bottom: 0px;
		width: 15px;
	}

	80% {
		width: 10px;
		height: 10px;
		bottom: 30px;
	}

	100% {
		width: 15px;
		height: 15px;
		background: #e9d856;
		border: 0px solid #222;
		bottom: 23px;
	}
}

@keyframes secFadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.box .btn {
	width: fit-content;
	padding: 10px;
	border-radius: 0;
	background-color: white;
}

.box .btn:hover {
	color: white;
	background-color: #092a49;
}

.role2 {
	color: white;
	font-size: 20px;
	line-height: 1;
}

@media (max-width:426px) {
	.hero {
		height: 50vh;

	}

	.hero .box .title2 {
		height: 66px;
	}

	.hero .box .role p {
		margin-top: 0;
	}

	.role2 {
		font-size: 13px;
	}
}

.btn-2 {
	color: white;
	border: 1px solid white;
	border-radius: 0;
	padding: 15px 30px
}

.btn-2:hover{
	color: #092a49;
	background: #ffffff;
}