@font-face {
    font-family: 'Facto-Reular';
    src: url('../fonts/Facto.otf') format("opentype");
}
@font-face {
    font-family: 'Facto-Medium';
    src: url('../fonts/Facto-Medium.otf') format("opentype");
}
.container{
	width:100%;
	max-width:1170px;
	padding:0 15px;
}

@media (min-width: 1400px){

	.container, .home-slider-content, .inner-section-content{

		width:100%;
		max-width: 1300px !important;
	}

}

@media (min-width: 1600px){

	.container, .home-slider-content, .inner-section-content{

		width:100%;
		max-width: 1440px !important;
	}

}

@media (min-width: 2400px){

	.container, .home-slider-content, .inner-section-content{

		width:100%;
		max-width: 1640px !important;
	}

}
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0;
}
.has-dark-overlay {
    background-image: url(../images/dark-overlay.png);
    background-repeat: repeat;
}
embed, iframe, img, object, video {
    display: block;
    max-width: 100%;
	width: 100%;
}
a.rx-explore-btn{
	font: normal normal normal 21px/25px Facto;
	letter-spacing: 3px;
	color: #FFFFFF;
	text-transform: uppercase;
	opacity: 1;
	text-decoration: none;
	display: inline-block;
	width: fit-content;
}
a.rx-explore-btn i{
	background: #265FCB 0 0 no-repeat padding-box;
	width: 50px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	padding: 0 0 0 5px;
	margin: 0;
	font-size: 18px;
}
a.rx-explore-btn:hover{
	background: #265FCB 0 0 no-repeat padding-box;
	padding-left: 20px;
}
body{
	font-size:15px;
	font-family: 'Facto-Reular';
	line-height: 24px;
}
body*{
	box-sizing: border-box;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Facto-Medium';
}
.common-btn{
	display:inline-block;
	height:45px;
	color:#fff;
	line-height: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size:20px;
	position: relative;
	transition: all 0.5s ease-in-out;
}
.common-btn:hover{
	padding-left:20px;
	color:#fff;
}
.common-btn:after{
	content:'';
	position: absolute;
	top:0;
	right:0;
	width:45px;
	height:100%;
	background: #265FCB;
	z-index:-1;
	transition: all 0.5s ease-in-out;
}
.common-btn:hover:after{
	width:100%;
}
.common-btn i{
	display:inline-block;
	height:45px;
	line-height: 45px;
	width:45px;
	background: #265FCB;
	text-align: center;
	color:#fff;
}
section{
	padding:70px 0;
}
/*====HEADER START=====*/
.site-header{
	position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index:999;
	transition: all 0.5s ease-in-out;
}
.site-header.sticky{
	background: #0C2238;
}
.header-wrapper{
	padding:15px 0;
}
.header-wrapper .logo-holder{
	max-width:210px;
}
.header-wrapper .logo-holder a{
	display:block;
	width:100%;
}
.header-wrapper .logo-holder a img{
	width:100%;
}
.header-wrapper .back{
	color:#fff;
	letter-spacing: 2.5px;
	font-size:18px;
}
.header-search{
	height:40px;
	border-radius: 35px;
	max-width:40px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}
.header-search:hover{
	max-width:440px;
	background: #fff;
}
.header-search input[type="search"]{
	background: transparent;
	border:none;
	outline: none;
	width:0;
	display:none;
	transition: all 0.5s ease-in-out;
}
.header-search:hover input[type="search"]{
	display:block;
	width:300px;
	padding:0 15px;
}
.header-search input[type="submit"]{
	font-size: 0;
	background: transparent url('../images/search-w.png') no-repeat center;
	border:none;
	outline: none;
	height:40px;
	width:40px;
	transition: all 0.5s ease-in-out;
}
.header-search input[type="submit"]:hover{
	background: transparent url('../images/search.png') no-repeat center;
}
.menu-holder{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
}
.menu-trigger{
	display:inline-block;
	margin-left:30px;
	width:40px;
	position: relative;
	z-index:99999999;
}
.menu-trigger span {
	display: block;
	width: 100%;
	box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);
	border-radius: 3px;
	height: 3px;
	background: #fff;
	transition: all .3s;
	position: relative;
}

.menu-trigger span + span {
	margin-top: 10px;
}

.menu-trigger.active span:nth-child(1) {
	animation: ease .7s top forwards;
}

.menu-trigger.not-active span:nth-child(1) {
	animation: ease .7s top-2 forwards;
}

.menu-trigger.active span:nth-child(2) {
	animation: ease .7s scaled forwards;
}

.menu-trigger.not-active span:nth-child(2) {
	animation: ease .7s scaled-2 forwards;
}

.menu-trigger.active span:nth-child(3) {
	animation: ease .7s bottom forwards;
}

.menu-trigger.not-active span:nth-child(3) {
	animation: ease .7s bottom-2 forwards;
}

@keyframes top {
	0% {
		top: 0;
		transform: rotate(0);
	}
	50% {
		top: 13px;
		transform: rotate(0);
	}
	100% {
		top: 13px;
		transform: rotate(45deg);
	}
}

@keyframes top-2 {
	0% {
		top: 13px;
		transform: rotate(45deg);
	}
	50% {
		top: 13px;
		transform: rotate(0deg);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
	}
}

@keyframes bottom {
	0% {
		bottom: 0;
		transform: rotate(0);
	}
	50% {
		bottom: 13px;
		transform: rotate(0);
	}
	100% {
		bottom: 13px;
		transform: rotate(130deg);
	}
}

@keyframes bottom-2 {
	0% {
		bottom: 13px;
		transform: rotate(130deg);
	}
	50% {
		bottom: 13px;
		transform: rotate(0);
	}
	100% {
		bottom: 0;
		transform: rotate(0);
	}
}

@keyframes scaled {
	50% {
		transform: scale(0);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes scaled-2 {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
.main-menu{
	width:100%;
	position: absolute;
	top:0;
	right:0 !important;
	background: #0C2238;
	height:100vh;
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	overflow: auto;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 0.5s ease-in-out;
}
.main-menu.active{
	transform: scaleY(1);
	width:30%;
	opacity: 0.9;
}
.main-menu ul li{
	font-size:30px;
	line-height: 37px;
}
.main-menu ul li+li{
	margin-top:20px;
}
.main-menu ul li a{
	color:#fff;
	transition: all 0.5s ease-in-out;
}
.main-menu ul li a:hover{
	margin-left:20px;
}
/*====HEADER END=====*/

/*====FOOTER START=====*/
.site-footer{
	background: #0B101A;
}
.footer-top{
	padding:40px 0;
}
.footer-columns{
	margin:0 -30px;
}
.footer-columns .footer-column{
	padding:0 30px;
	width:25%;
}
.ft-logo{
	margin-bottom:30px;
}
.ft-logo a{
	display:inline-block;
}
.footer-column h5{
	color:#265FCB;
	font-size:18px;
	margin-bottom:15px;
}
.footer-column ul li{
	color:#fff;
	font-size:18px;
}
.footer-column ul li+li{
	margin-top:10px;
}
.footer-column ul li a{
	color:#fff;
	transition: all 0.5s ease-in-out;
}
.footer-column ul li a:hover{
	margin-left:10px;
}
.footer-column:first-child ul li+li{
	margin-top:6px;
}
.footer-column p{
	color:#fff;
	font-size:18px;
	margin-bottom:30px;
}
.footer-column p strong{
	display:block;
	color:#fff;
}
.footer-column p strong a{
	color:#fff;
}
.ft-social li+li{
	margin-left:25px;
}
.ft-social li a{
	color:#808080 !important;
	font-size:25px;
}
.ft-social li a:hover{
	margin-left:0 !important;
	color:#265FCB !important;
}
.footer-copy-right{
	border-top:1px solid #6A6A6A;
	padding:20px 0;
	font-size:16px;
}
.footer-copy-right p{
	color:#DDDDDD;
}
.footer-copy-right ul li+li{
	margin-left:50px;
}
.footer-copy-right ul li a{
	color:#DDDDDD;
	transition: all 0.5s ease-in-out;
}
.footer-copy-right ul li a:hover{
	color:#265FCB
}
/*====FOOTER END=====*/