/*Start:: Common styles*/
body{
	background-color: #FFCC2A;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #060D15;
	overflow-x: hidden;
}
a{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-decoration: none;
}
a:hover, a:focus, a:active:focus{
	text-decoration: none;
	outline: none;
}
.bg-dark{
	background-color: #060D15 !important;
}
.bg-dark-red{
	background-color: #C22325 !important;
}
.bg-red{
	background-color: #E74D3B !important;
}
.bg-dark-blue{
	background-color: #051F38 !important;
}
.text-yellow{
	color: #FFF200;
}
.vertical-text{
	width: 100%;
	height: 100%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-top: 130px;
	padding-bottom: 20px;
}
.vertical-text a{
	font-size: 16px;
	font-weight: 600;
	border: 2px solid #E74D3B;
	border-radius: 8px;
	padding: 10px 5px;
	margin-bottom: 0px;
	text-align: center;
	min-width: 30%;
	color: black;
	height: auto;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-text-orientation: sideways;
	text-orientation: sideways;
	-webkit-transform: scale(-1, -1);
	-ms-transform: scale(-1, -1);
	transform: scale(-1, -1);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*End:: Common styles*/
/*Start:: Header CSS*/
header {
	background-color: #060D15;
}
.navbar-dark .navbar-nav .nav-link {
	color: rgba(255,255,255,1);
	padding-top: 20px;
	margin: 0px 10px;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	padding-bottom: 20px;
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link:hover{
	background-color: #E74D3B;
	color: #fff;
}
.navbar-nav .dropdown-menu {
	margin-top: 0px;
	border-radius: 0px;
	border: none;
}
.navbar-nav .dropdown-menu a:not(:last-child){
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.navbar-nav .dropdown-menu a.active, .navbar-nav .dropdown-menu a:hover{
	background-color: #E74D3B;
	color: #fff;
}
/*End:: Header CSS*/
/*Start:: Page CSS*/
.main-banner-section{
	padding-top: 30px;
}
.banner-content {
	padding-top: 70px;
}
.banner-content h2 {
	font-size: 56px;
	line-height: 1.5;
}
.banner-content h2 strong{
	background-color: #E74D3B;
	padding: 0px 8px;
}
.main-content-section {
	margin-top: -150px;
	position: relative;
	overflow: hidden;
}
.tab-content, .long-white-bg{
	position: relative;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.tab-content:before, .long-white-bg:before{
	position: absolute;
	width: 100vw;
	height: 100%;
	content: "";
	top:0;
	left: 0;
	background-color: #fff;
	-webkit-transform: translateZ(-1px);
	transform: translateZ(-1px);
	z-index: -1;
}
.tab-title {
	text-align: center;
	background-color: #E74D3B;
	padding: 15px 50px;
	margin: 0px 40px;
	color: #fff;
	border-radius: 20px 20px 0px 0px;
	min-height: 110px;
}
.tab-title h2{
	font-size: 28px;
	margin-bottom: 0px;
}
.tab-content {
	background-color: #fff;
	padding: 15px 40px;
	font-weight: 600;
	padding-bottom: 30px;
}
.blue-box {
	padding: 25px 20px;
	background-color: #00AEEF;
	border-radius: 0px 0px 20px 20px;
}
.blue-box h6{
	font-size: 18px;
	font-weight: 600;
}
.blue-box a{
	font-size: 18px;
	font-weight: 600;
	color:black;
}
/*End:: Page CSS*/
/*Start:: Footer CSS*/
.footer-links-listings li a{
	font-size: 20px;
	font-weight: 400;
	padding: 25px 20px;
	background-color: #E74D3B;
	border-radius: 20px 20px 0px 0px;
	color: #fff;
	display: inline-block;
}
.footer-links-listings li:nth-child(even) a{
	background-color: #C22325;
}
.footer-links-listings li:last-child a{
	background-color: #005AAA;
}
.footer-links-listings li.list-inline-item:not(:last-child){
	margin-right: 15px;
}
footer{
	position: relative;
	overflow:hidden;
	--whiteBgLeft : 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
footer:before{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	top:0;
	left: var(--whiteBgLeft);
	background-color: #fff;
	-webkit-transform: translateZ(-1px);
	transform: translateZ(-1px);
	z-index: -1;
}
.footer-dark-bg {
	position: relative;
	z-index: 1;
}
/*End:: Footer CSS*/
/*Start:: Responsive CSS*/
@media (max-width: 1199px){
	.footer-links-listings li a {
		font-size: 18px;
		padding: 20px 15px;
	}
	.tab-title h2 {
		font-size: 26px;
	}
}
@media(min-width:992px){
	.navbar-nav .dropdown:hover>.dropdown-menu {
		display: block;
	}
	.navbar-nav .dropdown>.dropdown-toggle:active {
		pointer-events: none;
	}
}
@media (max-width: 991px){
	ul.navbar-nav {
		margin-top: 15px;
		padding-bottom: 15px;
	}
	.navbar-dark .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}
	.navbar-dark .navbar-toggler {
		color: rgba(255,255,255,1);
		border: 1px solid rgba(255,255,255,1);
		border-color: rgb(255,255,255);
		opacity: 1;
	}
	.navbar-dark .navbar-nav .nav-link {
		color: rgba(255,255,255,1);
		padding: 8px 15px;
		margin: 0px;
		font-size: 16px;
	}
	.vertical-text{
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-top: 0px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-bottom: 0px;
	}
	.vertical-text a{
		background-color: #fff;
	-webkit-writing-mode: horizontal-tb;
	    -ms-writing-mode: lr-tb;
	        writing-mode: horizontal-tb;
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
	}
	.banner-content h2 {
		font-size: 46px;
	}
	.main-content-section {
		margin-top: -155px;
	}
	.banner-content {
		padding-top: 40px;
	}
	footer:before, .tab-content:before, .long-white-bg:before{
		content: none;
	}
	.tab-title {
		padding: 15px 30px;
	}
	.tab-title h2 {
		font-size: 24px;
	}
	.ie-footer-white-bg{
		display: none;
	}
}
@media (max-width: 767px){
	.banner-content h2 {
		font-size: 36px;
	}
	.footer-links-listings li a{
		border-radius: 10px;
		padding: 15px;
		font-size: 16px;
	}
	.tab-title {
		min-height: 80px;
	}
	.footer-links-listings li.list-inline-item:not(:last-child) {
		margin-right: 10px;
	}
	.footer-links-listings li.list-inline-item{
		margin-bottom: 10px;
	}
	.tab-title {
		padding: 15px 20px;
	}
	.tab-title h2 {
		font-size: 22px;
	}
}
@media(max-width: 575px){
	.navbar-brand img {
		max-height: 60px;
		max-width: 60px;
	}
	.tab-title h2 {
		font-size: 20px;
	}
	.tab-content {
		padding: 15px 20px;
	}
	.banner-content {
      padding-top: 0;
    }
	.banner-content h2 {
		font-size: 36px;
	}
}
/*End:: Responsive CSS*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	footer:before{
		content: none;
	}
	footer{
		position: relative;
	}
	.IE-w-100{
		width: 100%;
	}
	.ie-footer-white-bg{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: -1;
	}
}


.accordion>.card>.card-header {
    background-color: #EEEEEE;
    cursor: pointer;
    color:#525252;
}

.top-bottom-arrow-blk{
    position: relative;
}
.top-bottom-arrow-blk:before, .top-bottom-arrow-blk:after{
    content: "\f309";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 27px;
    color: #333;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    line-height: 0.9;
}
.top-bottom-arrow-blk:before{
    bottom: calc(100% + 5px);
}
.top-bottom-arrow-blk:after{
    top: calc(100% - 5px);
}

.panel-default {
    border-color: #ddd;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-body {
    padding: 15px;
}