:root {
	--font-family: 'Bebas Neue', sans-serif;
	--font-family2: 'Montserrat', sans-serif;
	--mainColor: #0064fb;
	--secondColor: #2e2f46;
	--thirdColor: #ff414b;
	--thirdColorShadow: #ffeced;
	--backgroundColor: #ebebeb;
	--transparentColor: #fcebe5;
	--whiteColor: #ffffff;
	--fix-whiteColor: #ffffff;
	--fix-blackColor: #242424;
	--blackColor: #242424;
	--paragraphColor: #666666;
	--fontSize: 15px;
	--card-title-fontSize: 20px;
	--transition: 0.5s;
	--boxShadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

body {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
	overflow-x: hidden;
	font-family: 'Bebas Neue', sans-serif;
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0 !important;
}

a:hover {
	color: var(--mainColor);
	text-decoration: none;
}

:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

img {
	max-width: 100%;
	height: auto;
	
}

p {
	color: var(--paragraphColor);
	font-size: var(--fontSize);
	margin-bottom: 15px;
	line-height: 1.8;
	font-family: var(--fontFamily2);
}

p:last-child {
	margin-bottom: 0;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.pt-70 {
	padding-top: 70px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pt-30 {
	padding-top: 0px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-20 {
	padding-right: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.no-padding {
	margin: 0px;
	padding: 0px;
}

.section-content {
	margin-top: 10px;
}

.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #266dc4 !important;
	z-index: 9999999999999;
	padding: 0px;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky .white-logo {
	position: relative;
	top: 36px;
}



/*================================================
Go Top CSS
=================================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 100px;
	right: 20px;
	border-radius: 5px;
	background-color: #f7941d;
	color: #ffffff;
	z-index: 999;
	width: 40px;
	text-align: center;
	height: 40px;
	opacity: 0;
	visibility: hidden;
	font-size: 25px;
	-webkit-transition: var(--transition);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.go-top:hover {
	color: #ffffff;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	background-color: #f7941d;
	border: 1px solid #fff;
}
.go-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
	-webkit-animation: top-bottom 5s infinite linear;
	animation: top-bottom 5s infinite linear;
}
/*================================================
Go Top CSS
=================================================*/
/*================================================
Default Button Area CSS
=================================================*/

.default-button {
	overflow: hidden;
	padding: 10px 22px;
	border-radius: 5px;
	display: inline-block;
	color: #fff;
	background-color: #000;
	position: relative;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.default-button::before {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: #000;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.default-button::after {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: #000;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.default-button span {
	position: relative;
	z-index: 2;
}

.default-button:hover {
	color: #fff;
	border-color: #000;
	background: #000
}

.default-button:hover::before,
.default-button:hover::after {
	height: 51%;
}


.default-button2 {
	overflow: hidden;
	padding: 10px 22px;
	border-radius: 5px;
	display: inline-block;
	color: #fff;
	background-color: #F36C24;
	position: relative;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.default-button2::before {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: #F36C24;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.default-button2::after {
	content: '';
	width: 100%;
	height: 0%;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	background-color: #F36C24;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.default-button2 span {
	position: relative;
	z-index: 2;
}

.default-button2:hover {
	color: #fff;
	border-color: #F36C24;
	background: #F36C24
}

.default-button2:hover::before,
.default-button2:hover::after {
	height: 51%;
}


.more-info {
	background: none;
	color: #fff;
	border-radius: 2px;
	border: 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	background: #F7941D;
	text-decoration: none;
	font-size: 24px;
	border-radius: 5px 5px;


}


.more-info3 {
	background: none;
	color: #fff;
	border-radius: 5px;
	border: 1px solid #fff;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	text-decoration: none;
	font-size: 18px;
	height: 50px;
}



.more-info2 {
	background: #F7941D;
	color: #fff;
	border-radius: 5px;
	border: 1px solid #F7941D;
	margin: 0px 0px 0px 10px;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	text-decoration: none;
	font-size: 18px;
	height: 50px;
}






/*================================================
Default Button Area CSS
=================================================*/
/*================================================
Animation Area CSS
=================================================*/
@-webkit-keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

@keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

@-webkit-keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center;
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center;
	}
}

@keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center;
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center;
	}
}

@-webkit-keyframes video-play {
	0% {
		width: 50%;
		height: 50%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}

@keyframes video-play {
	0% {
		width: 50%;
		height: 50%;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}






/*================================================
nav Area CSS
=================================================*/


.stellarnav li {
	border: 0;
	position: relative;
}

.stellarnav.light {
	background: transparent;
}

.stellarnav.light li a {
	color: #000000;
	padding: 10px 12px;
	font-size: 20px;
	font-family: 'Bebas Neue', sans-serif;
}



.stellarnav.light li a:hover {
	color: #25408F;
	border-bottom: 1px solid #25408F;
}

.stellarnav.light li a.active {
	color: #25408F;
	border-bottom: 1px solid #25408F;
}


.nav-bar {
	width: 100%;
	z-index: 9;
	position: sticky;
}

.nav-bar .nav-menu {
	display: flex;
	align-items: center;
}

.stellarnav>ul>li.active::after {
	width: 75%;
}


.nav-bar-logo {
	display: flex;
	justify-content: center;

}

.scroll-navbar {
	transition: all 0.5s ease 0s;
}

.scroll-navbar.scroll {
	z-index: 999;
	transition: all 0.5s ease-in;
	top: 0;
	/*position: fixed;*/
	width: 100%;
	background: #edeef1;
	box-shadow: rgb(16 16 16 / 43%) 0px 2px 8px 0px;
	padding: 15px 0;
}

.scroll-navbar.scroll .nav_logo {
	width: 100%;
}

.scroll-navbar.scroll .nav_logo img {
	object-fit: cover;
}


.stellarnav {
	z-index: 9999;
}

.stellarnav ul {
	margin: 0;
	padding: 0;
	text-align: right;
}


/* .nav_sec {
	position: fixed;
	top: 0;
	padding: 15px 0 0;
	z-index: 99;
	width: 100%;
} */







.nav_logo {
	width: 100%;
	margin: 0px auto;
	text-align: center;
}

.nav_bar .stellarnav {
	width: 100%;
}

.nav-rboxsearch a i {
	color: #fc8e02;
}

.align-items_center {
	align-items: center;
}

.navbar_btn {
	width: 19%;
	float: right;
	display: flex;
	justify-content: end;
}


.nav_bar {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 19px;
}



.stellarnav.mobile.light ul {
	background: rgb(243, 108, 36);
}



.more-info-round {
	background: none;
	color: #fff;
	border-radius: 2px;
	border: 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	background: #F7941D;
	text-decoration: none;
	font-size: 24px;
	border-radius: 26px 26px;
	padding: 8px 35px;
}

/*================================================
nav Area CSS
=================================================*/
/*================================================
Topbar Area CSS
=================================================*/

/*********************header-area*****************/


.header-area {
	margin: 0px;
	padding: 20px 0px;
	position: relative;
	z-index: 999;
	border-radius: 10px;
	background: #fff;
	width: 100%;
}

.header-area .navbar-area {
	margin: 0px;
}

.navbar.navbar-expand-md.navbar-light {
	padding: 0px;
}

.navbar-light .navbar-brand {
	position: relative;
	top: -33px;
	left: 80px;
}

#navbarSupportedContent {
	margin-left: 140px;
}

/****************header******************************************/











/****************footer*******************************************/

.footer {
	background: #172C67;
	padding: 80px 0px;
	position: relative;
}





.footer-inner {
	top: 0px;
	width: 100%;
	position: absolute;
	height: 100%;
	opacity: 0.1;
	;
}






.footer-logo-area a img {
	width: 70%;
}





.footer-social-icon {
	margin: 40px 0px;
	padding: 0px;
}

.footer-social-icon ul {
	margin: 0px;
	padding: 0px;
}

.footer-social-icon ul li {
	list-style-type: none;
	background: #fff;
	width: 45px;
	height: 45px;
	text-align: center;
	float: left;
	border-radius: 50%;
	padding: 6px 0px;
	font-size: 22px;
	;
	border: 2px solid #fff;
	margin-right: 10px;
}

.footer-social-icon ul li a {
	color: #F7941D;
}

.footer-social-icon ul li:hover {
	background: #000;
	color: #fff;
}


.footer-social-icon ul li a img {
	width: 45%;
	padding: 0px;
	margin: 0px;
	display: inline-flex;
}

.footer-quick-links ul li span {
	color: #fff;
	font-size: 18px;
	margin-right: 7px;
}


.footer-links h3 {
	padding: 0px;
	margin-bottom: 10px;
	position: relative;
	color: #fff;
	font-size: 28px;
	font-family: 'Bebas Neue', sans-serif;
}

.footer-quick-links ul {
	margin: 0px;
	padding: 0;
	list-style: none;
}

.footer-quick-links ul li {
	margin-top: 6px;
	float: left;
	width: 100%;
}

.footer-quick-links ul li a {
	display: inline-block;
	color: #BECEFF;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
}

.footer-quick-links ul li a:hover {
	color: #F7941D;
}

.footer-contact-row h3 {
	padding: 0px;
	margin-bottom: 10px;
	position: relative;
	color: #fff;
	font-size: 28px;
	font-family: 'Bebas Neue', sans-serif;
}

.contact-list {
	padding: 0px;
	margin: 25px 0px;
}

.footer-contant ul li {
	position: relative;
	line-height: 1.2;
	display: block;
	padding-bottom: 14px;
	font-size: 16px;
	text-align: left;
	color: #BECEFF;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}

.footer-contant ul li a {
	position: relative;
	line-height: 1.2;
	display: block;
	padding-bottom: 14px;
	font-size: 16px;
	text-align: left;
	color: #BECEFF;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}




.footer-contant .contact-list li:first-child {
	line-height: 1.8;
}

.footer-contant .contact-list li:first-child i {
	margin-top: 4px;
}




.footer-contant ul li a:hover {
	color: #F7941D;
}

.footer-contant ul li span {
	float: left;
	margin-right: 15px;
}




.footer-butm {
	padding: 10px 0px;
	background: #172C67;
	margin: 0px;
	border-top: 1px solid #cccccc4a;
}

.footer-butm-left p {
	font-size: 14px;
	color: #BECEFF;
	font-family: 'Montserrat', sans-serif;
}

.footer-butm-left p a {
	color: #BECEFF;
}

.footer-butm-left p a:hover {
	color: #F7941D;
}

.footer-butm-right p {
	text-align: right;
	font-size: 14px;
	color: #BECEFF;
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
}

.footer-butm-right p a {
	color: #BECEFF;
}


.footer-butm-right p a:hover {
	color: #F7941D;
}




/******************************************************************/
/***************baner-section**************************************/

.main-banner {
	background: #000;
	padding: 0px;
	margin: 0px;
}

.banner-text {
	position: absolute;
	top: 300px;
	color: #fff;
	z-index: 99;
	width: 82%;

	text-align: center;
	margin: 0px auto;
	left: 139px;
}

.banner-text h1 {
	color: #fff;
	font-size: 66px;
	line-height: 80px;
	font-family: 'Bebas Neue', sans-serif;
	text-align: center;
	font-weight: 400;
}


.banner-text p {
	font-size: 30px;
	padding: 0px;
	margin: 0px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.banner-text p span {
	color: #F7941D;
}



.banner-text .default-button {
	background: #266DC4;
	color: #fff;
	margin: 30px 0px 0px;
	padding: 0px;
}

.banner-text .default-button {
	background: #266DC4;
	color: #fff;
	margin: 30px 0px 0px;
	padding: 13px 50px;
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	border-radius: 2px;
}

/***************baner-section**************************************/


.about-section {
	background: #fff;
	padding: 80px 0px;
	margin: 0px;
	position: relative;
}



.about-section-inner {
	top: 0px;
	width: 100%;
	position: absolute;
	height: 100%;
}


.about-section-inner img {
	width: 100%;
	background-size: cover;
}



.about-section h2 {
	color: #25408F;
	font-size: 60px;
	padding: 0px 0px 50px 0px;
	margin: 0px;
	width: 100%;
	font-family: 'Bebas Neue', sans-serif;
	text-align: center;
}



.about-section-inner-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: -1.04px -5.91px 38px #EEEEFC;
	border-radius: 5px;
	padding: 40px 40px;
	height: 230px;
	text-align: center;
}


.about-section-inner-box img {
	padding-bottom: 30px;
}



.about-section-inner-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: -1.04px -5.91px 38px #EEEEFC;
	border-radius: 5px;
	padding: 40px 40px;
	min-height: 300px;
	text-align: center;
	margin: 20px 0px 60px 0px;
}


.about-section-inner-box h5 {
	padding: 0px;
	margin: 20px 0px;
	font-size: 28px;
}




.about-left {
	padding: 0px 50px 0px 0px;
	margin: 0px;
}

.about-left h3 {
	color: #25408F;
	padding: 0px 0px 25px 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 48px;
}


.about-left p {
	color: #45455D;
	padding: 0px 0px 30px 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}




.about-right {
	padding: 0px;
	margin: 0px;
}

.about-right img {
	width: 100%;
	height: auto;
	object-fit: cover;
}





.about-left img {
	width: 100%;
	height: 100%;
}

.about-right {
	padding: 0px;
	background: #000;
	position: relative;
	border-radius: 10px;
}

.about-right-inner {
	top: 0px;
	width: 100%;
	position: absolute;
	height: 100%;
	opacity: 0.5;
}

.about-right img {
	width: 100%;
	height: auto;
	object-fit: cover;
	opacity: 0.6;

}



/*================================================
vedio Button Area CSS
=================================================*/


.play-button {
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.play-button a::before {
	content: '';
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #F7941D;
	border: 1px solid #F7941D;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: video-play 3s infinite linear;
	animation: video-play 3s infinite linear;
}

.play-button a i {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding-left: 5px;
	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;
	color: var(--whiteColor);
	/* background-color: #fbfcffb5; */
	border: 1px solid;
	position: relative;
	font-size: 30px;
}

.play-button a i {
	color: #fff;
	font-size: 30px;

}

@-webkit-keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}

@keyframes top-bottom {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	50% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}

@-webkit-keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center
	}
}

@keyframes half-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: center;
		transform-origin: center
	}

	50% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transform-origin: center;
		transform-origin: center
	}
}

@-webkit-keyframes video-play {
	0% {
		width: 50%;
		height: 50%
	}

	100% {
		width: 100%;
		height: 100%
	}
}

@keyframes video-play {
	0% {
		width: 50%;
		height: 50%
	}

	100% {
		width: 100%;
		height: 100%
	}
}

/*================================================
vedio Button Area CSS
=================================================*/





/***************baner-section**************************************/





.tag-row {
	background-color: #25408F;
	padding: 40px 0px;
	margin: 0px;
	position: relative;
	height: 520px;
}

.tag-row-innner {
	position: absolute;
	top: 0px;
	left: 0px;
}



.tag-row-text {
	position: relative;

}



.tag-row-text-inner {
	position: absolute;
	right: -60px;
	top: 25px;
	width: 50%;
}

.tag-row-text-inner h2 {
	position: relative;
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	padding: 0px 0px 20px 0px;
	margin: 0px;
	font-size: 60px;
}

.tag-row-text-inner h6 {
	position: relative;
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	padding: 0px 0px 20px 0px;
	font-size: 60px;
}

.tag-row-text-inner h6 a{
color: #fff;
}

.tag-row-text-inner h6 span {
	margin-right: 20px;
}



.tag-row-text-inner h4 {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	padding: 0px 0px 20px 0px;
	margin: 0px;
	color: #fff;
}

.tag-row-text-inner h4 span {
	color: #F7941D;
}


.price-tag {
	position: absolute;
	top: 10px;
	left: 360px;
}






/***************Portfolio-section**************************************/



.portfolio {
	background: #FFFFFF;
	padding: 80px 0px 0px;
	margin: 0px;
	text-align: center;
	color: #000;
	position: relative;
}


.portfolio-inner {
	top: 0px;
	width: 100%;
	position: absolute;
	height: 100%;
}





.portfolio h2 {
	font-size: 60px;
	color: #25408F;
	padding: 0px 0px 30px 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;

}

.portfolio #portfolio-flters {
	padding: 80px 0px;
	margin: 0px auto;
	list-style: none;
	text-align: center;
	background: #fff;
	border-radius: 50px;
	padding: 2px 15px;
}

.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	color: #444444;
	margin: 0 4px 8px 4px;
	transition: 0.3s;
	border-radius: 50px;
	border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
	color: #4154f1;
	border-color: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
	margin-right: 0;
}

.portfolio .portfolio-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(255, 255, 255, 0.75);
	background: #ccc;
	margin-bottom: 25px;
	border-radius: 5px;
}

.portfolio .portfolio-wrap img {
	transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	top: 35px;
	left: 35px;
	border-top: 3px solid rgba(1, 41, 112, 0.2);
	border-left: 3px solid rgba(1, 41, 112, 0.2);
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 35px;
	right: 35px;
	border-bottom: 3px solid rgba(1, 41, 112, 0.2);
	border-right: 3px solid rgba(1, 41, 112, 0.2);
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
	font-size: 20px;
	color: #012970;
	font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	padding: 0px;
	margin: 0;
	z-index: 99;
	text-align: left;
	line-height: 28px;
	left: 24px;
}

.portfolio .portfolio-wrap .portfolio-links {
	text-align: center;
	z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
	color: #fff;
	/* background: #4154f1; */
	margin: 0px;
	/* width: 65px; */
	/* height: 59px; */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* border-radius: 50%; */
	/* transition: 0.3s; */
	font-size: 20px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
}

.portfolio .portfolio-wrap .portfolio-links a i {
	font-size: 24px;
	line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
	color: #000;
}

.portfolio .portfolio-wrap:hover img {
	transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
	opacity: 0.7;
	background: #162A64;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
	top: 15px;
	left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
	bottom: 15px;
	right: 15px;
}

.portfolio-container {
	margin: 40px 0px;
}

.portfolio-wrap-right {
	margin-bottom: 48px;
}

.portfolio-links h6 {
	font-size: 36px;
	color: #fff;
	left: 20px;
	position: absolute;
	bottom: 106px;
	font-family: 'Bebas Neue', sans-serif;
}

.portfolio-links p {
	font-size: 20px;
	color: #fff;
	left: 35px;
	position: absolute;
	bottom: 50px;
	font-family: 'Montserrat', sans-serif;
}








/***************gallery-section**************************************/



/*================================================ 
inner Banner Area CSS
=================================================*/





.uni-banner-text-area ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.uni-banner-text-area ul li {
	display: inline-block;
	margin: 0px 10px;
	position: relative;
	color: #fff;
	font-size: 14px;
}

.uni-banner-text-area ul li a {
	color: #fff;
}

.uni-banner-text-area ul li::after {
	content: '>';
	font-size: 18px;
	position: absolute;
	right: -16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uni-banner-text-area ul li:last-child::after {
	display: none;
}


















.uni-banner {
	background-size: cover;
	margin: 0px;
	padding: 0px;
	position: relative;
	background-color: #000;
}

.inner-banner-img {
	opacity: 0.5;
}

.uni-banner-text-area {
	position: absolute;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 0;
	margin: 0px auto;
	z-index: 9;
	top: 70px;
	left: 45%;
}

.uni-banner-text-area h1 {
	font-size: 50px;
	font-weight: 600;
	margin: 0px auto;
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	text-align: center;
	padding: 0px;
}

.uni-banner-text-area ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
}

.uni-banner-text-area ul li {
	display: inline-block;
	margin: 0px 10px;
	position: relative;
	color: #fff;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
}

.uni-banner-text-area ul li a {
	color: var(--fix-whiteColor);
}

.uni-banner-text-area ul li::after {
	content: '/';
	font-size: 18px;
	position: absolute;
	right: -16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uni-banner-text-area ul li:last-child::after {
	display: none;
}

.uni-banner-text-area ul li a:hover {
	color: #266DC4;
}




/*================================================ 
Uni Banner Area CSS
=================================================*/

/*================================================
Contact area CSS
=================================================*/

.contact-section {
	background: #FFFFFF;
	padding: 80px 0px;
	margin: 0px;
	text-align: center;
	color: #000;
	position: relative;
}



.contact-section h2 {
	font-size: 50px;
	color: #fff;
	padding: 0px 0px 30px 0px;
	margin: 0px;
	font-family: 'Bebas Neue', sans-serif;
	text-align: left;
	color: #25408F;
}

.contact-card-area {
	padding: 40px 0px;
	margin: 0px;
}

.contact-card {
	padding: 30px 30px 30px 100px;
	margin-top: 30px;
	position: relative;
	background-color: var(--whiteColor);
	-webkit-box-shadow: var(--boxShadow);
	box-shadow: var(--boxShadow);
}


.contact-section-left .form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #818181;
	background-color: #fff;
	background-clip: padding-box;
	border: 2px solid #818181;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	font-family: 'Montserrat', sans-serif;
}




.contact-form-area {
	padding: 30px;
}

.contact-form-area form .form-control {
	padding: 12px 15px;
	border: 1px solid #eeeeee;
	margin: 10px 0px;
}

.contact-form-area form .default-button {
	margin-top: 20px;
}

.with-errors {
	color: red;
}

.google-map {
	width: 100%;
	height: 100%;
}

.google-map .g-map {
	width: 100%;
	height: 100%;
}

.contact-section-left {
	padding: 0px 50px 0px 0px;
	margin: 0px;
}




.contact-list {
	padding: 0px;
	margin: 25px 0px;
}

.footer-contant ul li {
	position: relative;
	line-height: 1.2;
	display: block;
	padding-bottom: 14px;
	font-size: 16px;
	text-align: left;
	color: #BECEFF;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}

.footer-contant ul li span {
	float: left;
	margin-right: 15px;
}

.footer-contant ul li a span {
	float: left;
	margin-right: 15px;
}






.contact-section-right .contact-list {
	padding: 0px;
	margin: 0px;
}




.contact-section-right .footer-contant ul li {
	position: relative;
	line-height: 1.2;
	display: block;
	padding-bottom: 25px;
	font-size: 20px;
	text-align: left;
	color: #272727;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}

.contact-section-right .footer-contant ul li a {
	color: #272727;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}



.location-map {
	margin: 80px 0px 0px;
	padding: 0px;
}

.contact-section-left textarea.form-control {
	height: auto;
}


.contact-section-left .more-info-round {
	float: left;
}



/*================================================
contact Area CSS
=================================================*/
/*================================================
About page CSS
=================================================*/

.about-section p {
	color: #45455D;
	padding: 0px 0px 30px 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}


/*================================================
About page CSS
=================================================*/


.stellarnav.light li.active a {
    color: #25408F;
    border-bottom: 1px solid #25408F;
}


.modal__container .modal__header button.modal__close {
    color: #fff;
}



main {
  column-count: 1;
  break-inside: avoid;
  gap: 0.5rem;
  padding: 0.5rem;

  & img {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}

@media (width > 700px) {
  main {
    column-count: 2;
  }
}

@media (width > 1000px) {
  main {
    column-count: 3;
  }
}

@media (width > 1300px) {
  main {
    column-count: 4;
  }
}